• Home
  • Raw
  • Download

Lines Matching refs:dep2

539 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)  in s390_cc_thunk_fill()  argument
550 stmt(IRStmt_Put(dep2_off, dep2)); in s390_cc_thunk_fill()
585 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1() local
589 dep2 = mkU64(0); 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
603 dep2 = s390_cc_widen(d2, 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
628 dep2 = s390_cc_widen(d2, sign_extend); in s390_cc_thunk_put3()
631 dep2x = binop(Iop_Xor64, dep2, ndep); in s390_cc_thunk_put3()
641 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1f() local
653 dep2 = mkU64(0); 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
677 dep2 = s390_cc_widen(d2, False); 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
768 dep2 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP2), 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
792 dep2 = s390_cc_widen(op2, True); in s390_call_calculate_icc()
797 dep2 = s390_cc_widen(op2, 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
828 dep2 = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_DEP2), Ity_I64); in s390_call_calculate_cond()
831 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep); in s390_call_calculate_cond()
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)