Home | History | Annotate | Download | only in priv

Lines Matching refs:dep2

539 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)
550 stmt(IRStmt_Put(dep2_off, dep2));
585 IRExpr *op, *dep1, *dep2, *ndep;
589 dep2 = mkU64(0);
592 s390_cc_thunk_fill(op, dep1, dep2, ndep);
599 IRExpr *op, *dep1, *dep2, *ndep;
603 dep2 = s390_cc_widen(d2, sign_extend);
606 s390_cc_thunk_fill(op, dep1, dep2, ndep);
613 of the ndep field does matter and therefore we make the DEP2 field
616 DEP2 = original_DEP2 ^ NDEP
619 I.e. we xor the DEP2 value with the NDEP value to recover the
624 IRExpr *op, *dep1, *dep2, *ndep, *dep2x;
628 dep2 = s390_cc_widen(d2, sign_extend);
631 dep2x = binop(Iop_Xor64, dep2, ndep);
641 IRExpr *op, *dep1, *dep2, *ndep;
653 dep2 = mkU64(0);
656 s390_cc_thunk_fill(op, dep1, dep2, ndep);
665 IRExpr *op, *dep1, *dep2, *ndep;
677 dep2 = s390_cc_widen(d2, False);
680 s390_cc_thunk_fill(op, dep1, dep2, ndep);
764 IRExpr **args, *call, *op, *dep1, *dep2, *ndep;
768 dep2 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP2), Ity_I64);
771 args = mkIRExprVec_4(op, dep1, dep2, ndep);
776 interested in DEP1 and DEP2. */
787 IRExpr **args, *call, *op, *dep1, *dep2, *mask;
792 dep2 = s390_cc_widen(op2, True);
797 dep2 = s390_cc_widen(op2, False);
807 args = mkIRExprVec_5(mask, op, dep1, dep2, mkU64(0) /* unused */);
812 checking. We're only interested in DEP1 and DEP2. */
823 IRExpr **args, *call, *op, *dep1, *dep2, *ndep, *mask;
828 dep2 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP2), Ity_I64);
831 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep);
836 checking. We're only interested in DEP1 and DEP2. */
845 #define s390_cc_thunk_putZZ(op,dep1,dep2) s390_cc_thunk_put2(op,dep1,dep2,False)
846 #define s390_cc_thunk_putSS(op,dep1,dep2) s390_cc_thunk_put2(op,dep1,dep2,True)
847 #define s390_cc_thunk_putFF(op,dep1,dep2) s390_cc_thunk_put2f(op,dep1,dep2)
848 #define s390_cc_thunk_putZZZ(op,dep1,dep2,ndep) \
849 s390_cc_thunk_put3(op,dep1,dep2,ndep,False)
850 #define s390_cc_thunk_putSSS(op,dep1,dep2,ndep) \
851 s390_cc_thunk_put3(op,dep1,dep2,ndep,True)