Lines Matching refs:ndep

560 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)  in s390_cc_thunk_fill()  argument
572 stmt(IRStmt_Put(ndep_off, ndep)); in s390_cc_thunk_fill()
606 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1() local
611 ndep = mkU64(0); in s390_cc_thunk_put1()
613 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put1()
620 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put2() local
625 ndep = mkU64(0); in s390_cc_thunk_put2()
627 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put2()
645 IRExpr *op, *dep1, *dep2, *ndep, *dep2x; in s390_cc_thunk_put3() local
650 ndep = s390_cc_widen(nd, sign_extend); in s390_cc_thunk_put3()
652 dep2x = binop(Iop_Xor64, dep2, ndep); in s390_cc_thunk_put3()
654 s390_cc_thunk_fill(op, dep1, dep2x, ndep); in s390_cc_thunk_put3()
662 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1f() local
675 ndep = mkU64(0); in s390_cc_thunk_put1f()
677 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put1f()
686 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_putFZ() local
699 ndep = mkU64(0); in s390_cc_thunk_putFZ()
701 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_putFZ()
710 IRExpr *op, *hi, *lo, *ndep; in s390_cc_thunk_put1f128() local
715 ndep = mkU64(0); in s390_cc_thunk_put1f128()
717 s390_cc_thunk_fill(op, hi, lo, ndep); in s390_cc_thunk_put1f128()
726 IRExpr *op, *hi, *lo, *lox, *ndep; in s390_cc_thunk_put1f128Z() local
731 ndep = s390_cc_widen(nd, False); in s390_cc_thunk_put1f128Z()
733 lox = binop(Iop_Xor64, lo, ndep); /* convey dependency */ in s390_cc_thunk_put1f128Z()
735 s390_cc_thunk_fill(op, hi, lox, ndep); in s390_cc_thunk_put1f128Z()
744 IRExpr *op, *hi, *lo, *ndep; in s390_cc_thunk_put1d128() local
749 ndep = mkU64(0); in s390_cc_thunk_put1d128()
751 s390_cc_thunk_fill(op, hi, lo, ndep); in s390_cc_thunk_put1d128()
760 IRExpr *op, *hi, *lo, *lox, *ndep; in s390_cc_thunk_put1d128Z() local
765 ndep = s390_cc_widen(nd, False); in s390_cc_thunk_put1d128Z()
767 lox = binop(Iop_Xor64, lo, ndep); /* convey dependency */ in s390_cc_thunk_put1d128Z()
769 s390_cc_thunk_fill(op, hi, lox, ndep); in s390_cc_thunk_put1d128Z()
791 IRExpr **args, *call, *op, *dep1, *dep2, *ndep; in s390_call_calculate_cc() local
796 ndep = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_NDEP), Ity_I64); in s390_call_calculate_cc()
798 args = mkIRExprVec_4(op, dep1, dep2, ndep); in s390_call_calculate_cc()
850 IRExpr **args, *call, *op, *dep1, *dep2, *ndep, *mask; in s390_call_calculate_cond() local
856 ndep = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_NDEP), Ity_I64); in s390_call_calculate_cond()
858 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep); in s390_call_calculate_cond()
875 #define s390_cc_thunk_putZZZ(op,dep1,dep2,ndep) \ argument
876 s390_cc_thunk_put3(op,dep1,dep2,ndep,False)
877 #define s390_cc_thunk_putSSS(op,dep1,dep2,ndep) \ argument
878 s390_cc_thunk_put3(op,dep1,dep2,ndep,True)