Lines Matching defs:argR

125          /* (argL, argR, unused) */
127 UInt argR = cc_dep2;
128 UInt res = argL + argR;
133 /* (argL, argR, unused) */
135 UInt argR = cc_dep2;
136 UInt res = argL - argR;
141 /* (argL, argR, oldC) */
143 UInt argR = cc_dep2;
146 UInt res = argL + argR + oldC;
151 /* (argL, argR, oldC) */
153 UInt argR = cc_dep2;
156 UInt res = argL - argR - (oldC ^ 1);
205 /* (argL, argR, unused) */
207 UInt argR = cc_dep2;
208 UInt res = argL + argR;
213 /* (argL, argR, unused) */
215 UInt argR = cc_dep2;
216 UInt res = argL - argR;
221 /* (argL, argR, oldC) */
223 UInt argR = cc_dep2;
226 UInt res = argL + argR + oldC;
231 /* (argL, argR, oldC) */
233 UInt argR = cc_dep2;
236 UInt res = argL - argR - (oldC ^ 1);
286 /* (argL, argR, unused) */
288 UInt argR = cc_dep2;
289 UInt res = argL + argR;
294 /* (argL, argR, unused) */
296 UInt argR = cc_dep2;
297 UInt cf = argL >= argR;
301 /* (argL, argR, oldC) */
303 UInt argR = cc_dep2;
306 UInt res = argL + argR + oldC;
311 /* (argL, argR, oldC) */
313 UInt argR = cc_dep2;
316 UInt cf = oldC ? (argL >= argR) : (argL > argR);
367 /* (argL, argR, unused) */
369 UInt argR = cc_dep2;
370 UInt res = argL + argR;
371 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
375 /* (argL, argR, unused) */
377 UInt argR = cc_dep2;
378 UInt res = argL - argR;
379 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31;
383 /* (argL, argR, oldC) */
385 UInt argR = cc_dep2;
388 UInt res = argL + argR + oldC;
389 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
393 /* (argL, argR, oldC) */
395 UInt argR = cc_dep2;
398 UInt res = argL - argR - (oldC ^ 1);
399 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31;
595 /* EQ after SUB --> test argL == argR */
600 /* NE after SUB --> test argL != argR */
606 /* GT after SUB --> test argL >s argR
607 --> test argR <s argL */
612 /* LE after SUB --> test argL <=s argR */
618 /* LT after SUB --> test argL <s argR */
624 /* GE after SUB --> test argL >=s argR
625 --> test argR <=s argL */
631 /* HS after SUB --> test argL >=u argR
632 --> test argR <=u argL */
637 /* LO after SUB --> test argL <u argR */
643 /* LS after SUB --> test argL <=u argR */
648 /* HI after SUB --> test argL >u argR
649 --> test argR <u argL */
658 /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
660 --> oldC ? (argL >=u argR) : (argL >u argR)
661 --> oldC ? (argR <=u argL) : (argR <u argL)
835 /* Thunk args are (argL, argR, unused) */
836 /* C after SUB --> argL >=u argR
837 --> argR <=u argL */
844 /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
846 --> oldC ? (argL >=u argR) : (argL >u argR)
847 --> oldC ? (argR <=u argL) : (argR <u argL)
885 /* Thunk args are (argL, argR, unused) */
887 --> let res = argL - argR
888 in ((argL ^ argR) & (argL ^ res)) >> 31
889 --> ((argL ^ argR) & (argL ^ (argL - argR))) >> 31
892 IRExpr* argR = cc_dep2;
896 binop(Iop_Xor32, argL, argR),
897 binop(Iop_Xor32, argL, binop(Iop_Sub32, argL, argR))
905 /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
907 --> let res = argL - argR - (oldC ^ 1)
908 in (argL ^ argR) & (argL ^ res) & 1
915 // argL ^ argR
917 // argL ^ (argL - argR - (oldC ^ 1))