Lines Matching refs:ndep
499 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep) in s390_cc_thunk_fill() argument
511 stmt(IRStmt_Put(ndep_off, ndep)); in s390_cc_thunk_fill()
545 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1() local
550 ndep = mkU64(0); in s390_cc_thunk_put1()
552 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put1()
559 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put2() local
564 ndep = mkU64(0); in s390_cc_thunk_put2()
566 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put2()
584 IRExpr *op, *dep1, *dep2, *ndep, *dep2x; in s390_cc_thunk_put3() local
589 ndep = s390_cc_widen(nd, sign_extend); in s390_cc_thunk_put3()
591 dep2x = binop(Iop_Xor64, dep2, ndep); in s390_cc_thunk_put3()
593 s390_cc_thunk_fill(op, dep1, dep2x, ndep); in s390_cc_thunk_put3()
601 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_put1f() local
606 ndep = mkU64(0); in s390_cc_thunk_put1f()
608 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_put1f()
617 IRExpr *op, *dep1, *dep2, *ndep; in s390_cc_thunk_putFZ() local
622 ndep = mkU64(0); in s390_cc_thunk_putFZ()
624 s390_cc_thunk_fill(op, dep1, dep2, ndep); in s390_cc_thunk_putFZ()
633 IRExpr *op, *hi, *lo, *ndep; in s390_cc_thunk_put1f128() local
638 ndep = mkU64(0); in s390_cc_thunk_put1f128()
640 s390_cc_thunk_fill(op, hi, lo, ndep); in s390_cc_thunk_put1f128()
649 IRExpr *op, *hi, *lo, *lox, *ndep; in s390_cc_thunk_put1f128Z() local
654 ndep = s390_cc_widen(nd, False); in s390_cc_thunk_put1f128Z()
656 lox = binop(Iop_Xor64, lo, ndep); /* convey dependency */ in s390_cc_thunk_put1f128Z()
658 s390_cc_thunk_fill(op, hi, lox, ndep); in s390_cc_thunk_put1f128Z()
674 IRExpr **args, *call, *op, *dep1, *dep2, *ndep; in s390_call_calculate_cc() local
679 ndep = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_NDEP), Ity_I64); in s390_call_calculate_cc()
681 args = mkIRExprVec_4(op, dep1, dep2, ndep); in s390_call_calculate_cc()
733 IRExpr **args, *call, *op, *dep1, *dep2, *ndep, *mask; in s390_call_calculate_cond() local
739 ndep = IRExpr_Get(S390X_GUEST_OFFSET(guest_CC_NDEP), Ity_I64); in s390_call_calculate_cond()
741 args = mkIRExprVec_5(mask, op, dep1, dep2, ndep); in s390_call_calculate_cond()
758 #define s390_cc_thunk_putZZZ(op,dep1,dep2,ndep) \ argument
759 s390_cc_thunk_put3(op,dep1,dep2,ndep,False)
760 #define s390_cc_thunk_putSSS(op,dep1,dep2,ndep) \ argument
761 s390_cc_thunk_put3(op,dep1,dep2,ndep,True)