Home | History | Annotate | Download | only in priv

Lines Matching defs:argL

124          /* (argL, argR, unused) */
125 UInt argL = cc_dep1;
127 UInt res = argL + argR;
132 /* (argL, argR, unused) */
133 UInt argL = cc_dep1;
135 UInt res = argL - argR;
140 /* (argL, argR, oldC) */
141 UInt argL = cc_dep1;
145 UInt res = argL + argR + oldC;
150 /* (argL, argR, oldC) */
151 UInt argL = cc_dep1;
155 UInt res = argL - argR - (oldC ^ 1);
204 /* (argL, argR, unused) */
205 UInt argL = cc_dep1;
207 UInt res = argL + argR;
212 /* (argL, argR, unused) */
213 UInt argL = cc_dep1;
215 UInt res = argL - argR;
220 /* (argL, argR, oldC) */
221 UInt argL = cc_dep1;
225 UInt res = argL + argR + oldC;
230 /* (argL, argR, oldC) */
231 UInt argL = cc_dep1;
235 UInt res = argL - argR - (oldC ^ 1);
285 /* (argL, argR, unused) */
286 UInt argL = cc_dep1;
288 UInt res = argL + argR;
289 UInt cf = res < argL;
293 /* (argL, argR, unused) */
294 UInt argL = cc_dep1;
296 UInt cf = argL >= argR;
300 /* (argL, argR, oldC) */
301 UInt argL = cc_dep1;
305 UInt res = argL + argR + oldC;
306 UInt cf = oldC ? (res <= argL) : (res < argL);
310 /* (argL, argR, oldC) */
311 UInt argL = cc_dep1;
315 UInt cf = oldC ? (argL >= argR) : (argL > argR);
366 /* (argL, argR, unused) */
367 UInt argL = cc_dep1;
369 UInt res = argL + argR;
370 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
374 /* (argL, argR, unused) */
375 UInt argL = cc_dep1;
377 UInt res = argL - argR;
378 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31;
382 /* (argL, argR, oldC) */
383 UInt argL = cc_dep1;
387 UInt res = argL + argR + oldC;
388 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
392 /* (argL, argR, oldC) */
393 UInt argL = cc_dep1;
397 UInt res = argL - argR - (oldC ^ 1);
398 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31;
594 /* EQ after SUB --> test argL == argR */
599 /* NE after SUB --> test argL != argR */
605 /* GT after SUB --> test argL >s argR
606 --> test argR <s argL */
611 /* LE after SUB --> test argL <=s argR */
617 /* LT after SUB --> test argL <s argR */
623 /* GE after SUB --> test argL >=s argR
624 --> test argR <=s argL */
630 /* HS after SUB --> test argL >=u argR
631 --> test argR <=u argL */
636 /* LO after SUB --> test argL <u argR */
642 /* LS after SUB --> test argL <=u argR */
647 /* HI after SUB --> test argL >u argR
648 --> test argR <u argL */
657 /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
659 --> oldC ? (argL >=u argR) : (argL >u argR)
660 --> oldC ? (argR <=u argL) : (argR <u argL)
784 /* Thunk args are (argL, argR, unused) */
785 /* C after SUB --> argL >=u argR
786 --> argR <=u argL */
793 /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
795 --> oldC ? (argL >=u argR) : (argL >u argR)
796 --> oldC ? (argR <=u argL) : (argR <u argL)
834 /* Thunk args are (argL, argR, unused) */
836 --> let res = argL - argR
837 in ((argL ^ argR) & (argL ^ res)) >> 31
838 --> ((argL ^ argR) & (argL ^ (argL - argR))) >> 31
840 IRExpr* argL = cc_dep1;
845 binop(Iop_Xor32, argL, argR),
846 binop(Iop_Xor32, argL, binop(Iop_Sub32, argL, argR))
854 /* thunk is: (dep1=argL, dep2=argR, ndep=oldC) */
856 --> let res = argL - argR - (oldC ^ 1)
857 in (argL ^ argR) & (argL ^ res) & 1
864 // argL ^ argR
866 // argL ^ (argL - argR - (oldC ^ 1))