Home | History | Annotate | Download | only in priv

Lines Matching full:dep2

499 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)
510 stmt(IRStmt_Put(dep2_off, dep2));
545 IRExpr *op, *dep1, *dep2, *ndep;
549 dep2 = mkU64(0);
552 s390_cc_thunk_fill(op, dep1, dep2, ndep);
559 IRExpr *op, *dep1, *dep2, *ndep;
563 dep2 = s390_cc_widen(d2, sign_extend);
566 s390_cc_thunk_fill(op, dep1, dep2, ndep);
573 of the ndep field does matter and therefore we make the DEP2 field
576 DEP2 = original_DEP2 ^ NDEP
579 I.e. we xor the DEP2 value with the NDEP value to recover the
584 IRExpr *op, *dep1, *dep2, *ndep, *dep2x;
588 dep2 = s390_cc_widen(d2, sign_extend);
591 dep2x = binop(Iop_Xor64, dep2, ndep);
601 IRExpr *op, *dep1, *dep2, *ndep;
605 dep2
608 s390_cc_thunk_fill(op, dep1, dep2, ndep);
617 IRExpr *op, *dep1, *dep2, *ndep;
621 dep2 = s390_cc_widen(d2, False);
624 s390_cc_thunk_fill(op, dep1, dep2, ndep);
674 IRExpr **args, *call, *op, *dep1, *dep2, *ndep;
678 dep2 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP2), Ity_I64);
681 args = mkIRExprVec_4(op, dep1, dep2, ndep);
686 interested in DEP1 and DEP2. */
697 IRExpr **args, *call, *op, *dep1, *dep2, *mask;
702 dep2 = s390_cc_widen(op2, True);
707 dep2 = s390_cc_widen(op2, False);
717 args = mkIRExprVec_5(mask, op, dep1, dep2, mkU64(0) /* unused */);
722 checking. We're only interested in DEP1 and DEP2. */
733 IRExpr **args, *call, *op, *dep1, *dep2, *ndep, *mask;
738 dep2 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP2), Ity_I64);
741 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep);
746 checking. We're only interested in DEP1 and DEP2. */
755 #define s390_cc_thunk_putZZ(op,dep1,dep2) s390_cc_thunk_put2(op,dep1,dep2,False)
756 #define s390_cc_thunk_putSS(op,dep1,dep2) s390_cc_thunk_put2(op,dep1,dep2,True)
757 #define s390_cc_thunk_putFF(op,dep1,dep2) s390_cc_thunk_put2f(op,dep1,dep2)
758 #define s390_cc_thunk_putZZZ(op,dep1,dep2,ndep) \
759 s390_cc_thunk_put3(op,dep1,dep2,ndep,False)
760 #define s390_cc_thunk_putSSS(op,dep1,dep2,ndep) \
761 s390_cc_thunk_put3(op,dep1,dep2,ndep,True)