Home | History | Annotate | Download | only in priv

Lines Matching refs:argR

124          /* (argL, argR, unused) */
126 UInt argR = cc_dep2;
127 UInt res = argL + argR;
132 /* (argL, argR, unused) */
134 UInt argR = cc_dep2;
135 UInt res = argL - argR;
140 /* (argL, argR, oldC) */
142 UInt argR = cc_dep2;
145 UInt res = argL + argR + oldC;
150 /* (argL, argR, oldC) */
152 UInt argR = cc_dep2;
155 UInt res = argL - argR - (oldC ^ 1);
204 /* (argL, argR, unused) */
206 UInt argR = cc_dep2;
207 UInt res = argL + argR;
212 /* (argL, argR, unused) */
214 UInt argR = cc_dep2;
215 UInt res = argL - argR;
220 /* (argL, argR, oldC) */
222 UInt argR = cc_dep2;
225 UInt res = argL + argR + oldC;
230 /* (argL, argR, oldC) */
232 UInt argR = cc_dep2;
235 UInt res = argL - argR - (oldC ^ 1);
285 /* (argL, argR, unused) */
287 UInt argR = cc_dep2;
288 UInt res = argL + argR;
293 /* (argL, argR, unused) */
295 UInt argR = cc_dep2;
296 UInt cf = argL >= argR;
300 /* (argL, argR, oldC) */
302 UInt argR = cc_dep2;
305 UInt res = argL + argR + oldC;
310 /* (argL, argR, oldC) */
312 UInt argR = cc_dep2;
315 UInt cf = oldC ? (argL >= argR) : (argL > argR);
366 /* (argL, argR, unused) */
368 UInt argR = cc_dep2;
369 UInt res = argL + argR;
370 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
374 /* (argL, argR, unused) */
376 UInt argR = cc_dep2;
377 UInt res = argL - argR;
378 UInt vf = ((argL ^ argR) & (argL ^ res)) >> 31;
382 /* (argL, argR, oldC) */
384 UInt argR = cc_dep2;
387 UInt res = argL + argR + oldC;
388 UInt vf = ((res ^ argL) & (res ^ argR)) >> 31;
392 /* (argL, argR, oldC) */
394 UInt argR = cc_dep2;
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
841 IRExpr* argR = cc_dep2;
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))