Lines Matching refs:ndep

539 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)  in s390_cc_thunk_fill()  argument
551 stmt(IRStmt_Put(ndep_off, ndep)); in s390_cc_thunk_fill()
585 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1() local
590 ndep = 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
604 ndep = mkU64(0); 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
629 ndep = s390_cc_widen(nd, sign_extend); in s390_cc_thunk_put3()
631 dep2x = binop(Iop_Xor64, dep2, ndep); 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
654 ndep = 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
678 ndep = mkU64(0); in s390_cc_thunk_putFZ()
680 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_putFZ()
689 IRExpr *op, *hi, *lo, *ndep; in s390_cc_thunk_put1f128() local
694 ndep = mkU64(0); in s390_cc_thunk_put1f128()
696 s390_cc_thunk_fill(op, hi, lo, ndep); in s390_cc_thunk_put1f128()
705 IRExpr *op, *hi, *lo, *lox, *ndep; in s390_cc_thunk_put1f128Z() local
710 ndep = s390_cc_widen(nd, False); in s390_cc_thunk_put1f128Z()
712 lox = binop(Iop_Xor64, lo, ndep); /* convey dependency */ in s390_cc_thunk_put1f128Z()
714 s390_cc_thunk_fill(op, hi, lox, ndep); in s390_cc_thunk_put1f128Z()
723 IRExpr *op, *hi, *lo, *ndep; in s390_cc_thunk_put1d128() local
728 ndep = mkU64(0); in s390_cc_thunk_put1d128()
730 s390_cc_thunk_fill(op, hi, lo, ndep); in s390_cc_thunk_put1d128()
739 IRExpr *op, *hi, *lo, *lox, *ndep; in s390_cc_thunk_put1d128Z() local
744 ndep = s390_cc_widen(nd, False); in s390_cc_thunk_put1d128Z()
746 lox = binop(Iop_Xor64, lo, ndep); /* convey dependency */ in s390_cc_thunk_put1d128Z()
748 s390_cc_thunk_fill(op, hi, lox, ndep); in s390_cc_thunk_put1d128Z()
764 IRExpr **args, *call, *op, *dep1, *dep2, *ndep; in s390_call_calculate_cc() local
769 ndep = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_NDEP), Ity_I64); in s390_call_calculate_cc()
771 args = mkIRExprVec_4(op, dep1, dep2, ndep); in s390_call_calculate_cc()
823 IRExpr **args, *call, *op, *dep1, *dep2, *ndep, *mask; in s390_call_calculate_cond() local
829 ndep = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_NDEP), Ity_I64); in s390_call_calculate_cond()
831 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep); in s390_call_calculate_cond()
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)