Home | History | Annotate | Download | only in priv

Lines Matching full:dep1

499 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)
509 stmt(IRStmt_Put(dep1_off, dep1));
545 IRExpr *op, *dep1, *dep2, *ndep;
548 dep1 = s390_cc_widen(d1, sign_extend);
552 s390_cc_thunk_fill(op, dep1, dep2, ndep);
559 IRExpr *op, *dep1, *dep2, *ndep;
562 dep1 = s390_cc_widen(d1, sign_extend);
566 s390_cc_thunk_fill(op, dep1, dep2, ndep);
584 IRExpr *op, *dep1, *dep2, *ndep, *dep2x;
587 dep1 = s390_cc_widen(d1, sign_extend);
593 s390_cc_thunk_fill(op, dep1, dep2x, ndep);
601 IRExpr *op, *dep1, *dep2, *ndep;
604 dep1 = mkexpr(d1);
608 s390_cc_thunk_fill(op, dep1, dep2, ndep);
617 IRExpr *op, *dep1, *dep2, *ndep;
620 dep1 = mkexpr(d1);
624 s390_cc_thunk_fill(op, dep1, dep2, ndep);
674 IRExpr **args, *call, *op, *dep1, *dep2, *ndep;
677 dep1 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP1), Ity_I64);
681 args = mkIRExprVec_4(op, dep1, dep2, ndep);
686 interested in DEP1 and DEP2. */
697 IRExpr **args, *call, *op, *dep1, *dep2, *mask;
701 dep1 = s390_cc_widen(op1, True);
706 dep1 = s390_cc_widen(op1, 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;
737 dep1 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP1), Ity_I64);
741 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep);
746 checking. We're only interested in DEP1 and DEP2. */
752 #define s390_cc_thunk_putZ(op,dep1) s390_cc_thunk_put1(op,dep1,False)
753 #define s390_cc_thunk_putS(op,dep1) s390_cc_thunk_put1(op,dep1,True)
754 #define s390_cc_thunk_putF(op,dep1) s390_cc_thunk_put1f(op,dep1)
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)