• Home
  • Raw
  • Download

Lines Matching refs:dep1

539 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)  in s390_cc_thunk_fill()  argument
549 stmt(IRStmt_Put(dep1_off, dep1)); in s390_cc_thunk_fill()
585 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1() local
588 dep1 = s390_cc_widen(d1, sign_extend); in s390_cc_thunk_put1()
592 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put1()
599 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put2() local
602 dep1 = s390_cc_widen(d1, sign_extend); in s390_cc_thunk_put2()
606 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put2()
624 IRExpr *op, *dep1, *dep2, *ndep, *dep2x; in s390_cc_thunk_put3() local
627 dep1 = s390_cc_widen(d1, sign_extend); in s390_cc_thunk_put3()
633 s390_cc_thunk_fill(op, dep1, dep2x, ndep); in s390_cc_thunk_put3()
641 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1f() local
652 dep1 = mkexpr(d1); in s390_cc_thunk_put1f()
656 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put1f()
665 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_putFZ() local
676 dep1 = mkexpr(d1); in s390_cc_thunk_putFZ()
680 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_putFZ()
764 IRExpr **args, *call, *op, *dep1, *dep2, *ndep; in s390_call_calculate_cc() local
767 dep1 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP1), Ity_I64); in s390_call_calculate_cc()
771 args = mkIRExprVec_4(op, dep1, dep2, ndep); in s390_call_calculate_cc()
787 IRExpr **args, *call, *op, *dep1, *dep2, *mask; in s390_call_calculate_icc() local
791 dep1 = s390_cc_widen(op1, True); in s390_call_calculate_icc()
796 dep1 = s390_cc_widen(op1, False); in s390_call_calculate_icc()
807 args = mkIRExprVec_5(mask, op, dep1, dep2, mkU64(0) /* unused */); in s390_call_calculate_icc()
823 IRExpr **args, *call, *op, *dep1, *dep2, *ndep, *mask; in s390_call_calculate_cond() local
827 dep1 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP1), Ity_I64); in s390_call_calculate_cond()
831 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep); in s390_call_calculate_cond()
842 #define s390_cc_thunk_putZ(op,dep1) s390_cc_thunk_put1(op,dep1,False) argument
843 #define s390_cc_thunk_putS(op,dep1) s390_cc_thunk_put1(op,dep1,True) argument
844 #define s390_cc_thunk_putF(op,dep1) s390_cc_thunk_put1f(op,dep1) argument
845 #define s390_cc_thunk_putZZ(op,dep1,dep2) s390_cc_thunk_put2(op,dep1,dep2,False) argument
846 #define s390_cc_thunk_putSS(op,dep1,dep2) s390_cc_thunk_put2(op,dep1,dep2,True) argument
847 #define s390_cc_thunk_putFF(op,dep1,dep2) s390_cc_thunk_put2f(op,dep1,dep2) argument
848 #define s390_cc_thunk_putZZZ(op,dep1,dep2,ndep) \ argument
849 s390_cc_thunk_put3(op,dep1,dep2,ndep,False)
850 #define s390_cc_thunk_putSSS(op,dep1,dep2,ndep) \ argument
851 s390_cc_thunk_put3(op,dep1,dep2,ndep,True)