Home | History | Annotate | Download | only in priv

Lines Matching refs:argL

125          /* (argL, argR, unused) */
126 UInt argL = cc_dep1;
128 UInt res = argL + argR;
133 /* (argL, argR, unused) */
134 UInt argL = cc_dep1;
136 UInt res = argL - argR;
141 /* (argL, argR, oldC) */
142 UInt argL = cc_dep1;
146 UInt res = argL + argR + oldC;
151 /* (argL, argR, oldC) */
152 UInt argL = cc_dep1;
156 UInt res = argL - argR - (oldC ^ 1);
205 /* (argL, argR, unused) */
206 UInt argL = cc_dep1;
208 UInt res = argL + argR;
213 /* (argL, argR, unused) */
214 UInt argL = cc_dep1;
216 UInt res = argL - argR;
221 /* (argL, argR, oldC) */
222 UInt argL = cc_dep1;
226 UInt res = argL + argR + oldC;
231 /* (argL, argR, oldC) */
232 UInt argL = cc_dep1;
236 UInt res = argL - argR - (oldC ^ 1);
286 /* (argL, argR, unused) */
287 UInt argL = cc_dep1;
289 UInt res = argL + argR;
290 UInt cf = res < argL;
294 /* (argL, argR, unused) */
295 UInt argL = cc_dep1;
297 UInt cf = argL >= argR;
301 /* (argL, argR, oldC) */
302 UInt argL = cc_dep1;
306 UInt res = argL + argR + oldC;
307 UInt cf = oldC ? (res <= argL) : (res < argL);
311 /* (argL, argR, oldC) */
312 UInt argL = cc_dep1;
316 UInt cf = oldC ? (argL >= argR) : (argL > argR);
367 /* (argL, argR, unused) */
368 UInt argL = cc_dep1;
370 UInt res = argL + argR;
371 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
375 /* (argL, argR, unused) */
376 UInt argL = cc_dep1;
378 UInt res = argL - argR;
379 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31;
383 /* (argL, argR, oldC) */
384 UInt argL = cc_dep1;
388 UInt res = argL + argR + oldC;
389 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
393 /* (argL, argR, oldC) */
394 UInt argL = cc_dep1;
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
891 IRExpr* argL = cc_dep1;
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))