Home | History | Annotate | Download | only in priv

Lines Matching refs:argL

125          /* (argL, argR, unused) */
126 UInt argL = (UInt)cc_dep1;
128 UInt res = argL + argR;
133 /* (argL, argR, unused) */
134 ULong argL = cc_dep1;
136 ULong res = argL + argR;
141 /* (argL, argR, unused) */
142 UInt argL = (UInt)cc_dep1;
144 UInt res = argL - argR;
149 /* (argL, argR, unused) */
150 ULong argL = cc_dep1;
152 ULong res = argL - argR;
157 /* (argL, argR, oldC) */
158 UInt argL = cc_dep1;
162 UInt res = argL + argR + oldC;
167 /* (argL, argR, oldC) */
168 ULong argL = cc_dep1;
172 ULong res = argL + argR + oldC;
177 /* (argL, argR, oldC) */
178 UInt argL = cc_dep1;
182 UInt res = argL - argR - (oldC ^ 1);
187 /* (argL, argR, oldC) */
188 ULong argL = cc_dep1;
192 ULong res = argL - argR - (oldC ^ 1);
243 /* (argL, argR, unused) */
244 UInt argL = (UInt)cc_dep1;
246 UInt res = argL + argR;
251 /* (argL, argR, unused) */
252 ULong argL = cc_dep1;
254 ULong res = argL + argR;
259 /* (argL, argR, unused) */
260 UInt argL = (UInt)cc_dep1;
262 UInt res = argL - argR;
267 /* (argL, argR, unused) */
268 ULong argL = cc_dep1;
270 ULong res = argL - argR;
275 /* (argL, argR, oldC) */
276 UInt argL = cc_dep1;
280 UInt res = argL + argR + oldC;
285 /* (argL, argR, oldC) */
286 ULong argL = cc_dep1;
290 ULong res = argL + argR + oldC;
295 /* (argL, argR, oldC) */
296 UInt argL = cc_dep1;
300 UInt res = argL - argR - (oldC ^ 1);
305 /* (argL, argR, oldC) */
306 ULong argL = cc_dep1;
310 ULong res = argL - argR - (oldC ^ 1);
362 /* (argL, argR, unused) */
363 UInt argL = (UInt)cc_dep1;
365 UInt res = argL + argR;
366 ULong cf = res < argL;
370 /* (argL, argR, unused) */
371 ULong argL = cc_dep1;
373 ULong res = argL + argR;
374 ULong cf = res < argL;
378 /* (argL, argR, unused) */
379 UInt argL = (UInt)cc_dep1;
381 ULong cf = argL >= argR;
385 /* (argL, argR, unused) */
386 ULong argL = cc_dep1;
388 ULong cf = argL >= argR;
392 /* (argL, argR, oldC) */
393 UInt argL = cc_dep1;
397 UInt res = argL + argR + oldC;
398 ULong cf = oldC ? (res <= argL) : (res < argL);
402 /* (argL, argR, oldC) */
403 ULong argL = cc_dep1;
407 ULong res = argL + argR + oldC;
408 ULong cf = oldC ? (res <= argL) : (res < argL);
412 /* (argL, argR, oldC) */
413 UInt argL = cc_dep1;
417 ULong cf = oldC ? (argL >= argR) : (argL > argR);
421 /* (argL, argR, oldC) */
422 ULong argL = cc_dep1;
426 ULong cf = oldC ? (argL >= argR) : (argL > argR);
472 /* (argL, argR, unused) */
473 UInt argL = (UInt)cc_dep1;
475 UInt res = argL + argR;
476 ULong vf = (ULong)(((res ^ argL) & (res ^ argR)) >> 31);
480 /* (argL, argR, unused) */
481 ULong argL = cc_dep1;
483 ULong res = argL + argR;
484 ULong vf = ((res ^ argL) & (res ^ argR)) >> 63;
488 /* (argL, argR, unused) */
489 UInt argL = (UInt)cc_dep1;
491 UInt res = argL - argR;
492 ULong vf = (ULong)(((argL ^ argR) & (argL ^ res)) >> 31);
496 /* (argL, argR, unused) */
497 ULong argL = cc_dep1;
499 ULong res = argL - argR;
500 ULong vf = (((argL ^ argR) & (argL ^ res))) >> 63;
504 /* (argL, argR, oldC) */
505 UInt argL = cc_dep1;
509 UInt res = argL + argR + oldC;
510 ULong vf = (ULong)(((res ^ argL) & (res ^ argR)) >> 31);
514 /* (argL, argR, oldC) */
515 ULong argL = cc_dep1;
519 ULong res = argL + argR + oldC;
520 ULong vf = ((res ^ argL) & (res ^ argR)) >> 63;
524 /* (argL, argR, oldC) */
525 UInt argL = cc_dep1;
529 UInt res = argL - argR - (oldC ^ 1);
530 ULong vf = (ULong)(((argL ^ argR) & (argL ^ res)) >> 31);
534 /* (argL, argR, oldC) */
535 ULong argL = cc_dep1;
539 ULong res = argL - argR - (oldC ^ 1);
540 ULong vf = ((argL ^ argR) & (argL ^ res)) >> 63;
754 /* EQ after SUB --> test argL == argR */
759 /* NE after SUB --> test argL != argR */
766 /* CS after SUB --> test argL >=u argR
767 --> test argR <=u argL */
772 /* CC after SUB --> test argL <u argR */
779 /* LS after SUB --> test argL <=u argR */
784 /* HI after SUB --> test argL >u argR
785 --> test argR <u argL */
792 /* LT after SUB --> test argL <s argR */
797 /* GE after SUB --> test argL >=s argR
798 --> test argR <=s argL */
805 /* GT after SUB --> test argL >s argR
806 --> test argR <s argL */
811 /* LE after SUB --> test argL <=s argR */
820 /* EQ after SUB --> test argL == argR */
826 /* NE after SUB --> test argL != argR */
834 /* CS after SUB --> test argL >=u argR
835 --> test argR <=u argL */
841 /* CC after SUB --> test argL <u argR */
849 /* LS after SUB --> test argL <=u argR */
855 /* HI after SUB --> test argL >u argR
856 --> test argR <u argL */
864 /* LT after SUB --> test argL <s argR */
870 /* GE after SUB --> test argL >=s argR
871 --> test argR <=s argL */
879 /* GT after SUB --> test argL >s argR
880 --> test argR <s argL */
886 /* LE after SUB --> test argL <=s argR */
896 //ZZ /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
898 //ZZ --> oldC ? (argL >=u argR) : (argL >u argR)
899 //ZZ --> oldC ? (argR <=u argL) : (argR <u argL)
1030 //ZZ /* Thunk args are (argL, argR, unused) */
1031 //ZZ /* C after SUB --> argL >=u argR
1032 //ZZ --> argR <=u argL */
1039 //ZZ /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
1041 //ZZ --> oldC ? (argL >=u argR) : (argL >u argR)
1042 //ZZ --> oldC ? (argR <=u argL) : (argR <u argL)
1080 //ZZ /* Thunk args are (argL, argR, unused) */
1082 //ZZ --> let res = argL - argR
1083 //ZZ in ((argL ^ argR) & (argL ^ res)) >> 31
1084 //ZZ --> ((argL ^ argR) & (argL ^ (argL - argR))) >> 31
1086 //ZZ IRExpr* argL = cc_dep1;
1091 //ZZ binop(Iop_Xor32, argL, argR),
1092 //ZZ binop(Iop_Xor32, argL, binop(Iop_Sub32, argL, argR))
1100 //ZZ /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
1102 //ZZ --> let res = argL - argR - (oldC ^ 1)
1103 //ZZ in (argL ^ argR) & (argL ^ res) & 1
1110 //ZZ // argL ^ argR
1112 //ZZ // argL ^ (argL - argR - (oldC ^ 1))