Home
last modified time | relevance | path

Searched refs:OverflowOp (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPoisonChecking.cpp110 auto *OverflowOp = in generateCreationChecksForBinOp() local
112 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generateCreationChecksForBinOp()
115 auto *OverflowOp = in generateCreationChecksForBinOp() local
117 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generateCreationChecksForBinOp()
123 auto *OverflowOp = in generateCreationChecksForBinOp() local
125 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generateCreationChecksForBinOp()
128 auto *OverflowOp = in generateCreationChecksForBinOp() local
130 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generateCreationChecksForBinOp()
136 auto *OverflowOp = in generateCreationChecksForBinOp() local
138 Checks.push_back(B.CreateExtractValue(OverflowOp, 1)); in generateCreationChecksForBinOp()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h2063 Intrinsic::ID OverflowOp = IID == Intrinsic::sadd_sat in getTypeBasedIntrinsicInstrCost() local
2071 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF, in getTypeBasedIntrinsicInstrCost()
2085 Intrinsic::ID OverflowOp = IID == Intrinsic::uadd_sat in getTypeBasedIntrinsicInstrCost() local
2090 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF, in getTypeBasedIntrinsicInstrCost()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp7567 unsigned OverflowOp; in lowerAddSubSatToAddoSubo() local
7574 OverflowOp = TargetOpcode::G_UADDO; in lowerAddSubSatToAddoSubo()
7579 OverflowOp = TargetOpcode::G_SADDO; in lowerAddSubSatToAddoSubo()
7584 OverflowOp = TargetOpcode::G_USUBO; in lowerAddSubSatToAddoSubo()
7589 OverflowOp = TargetOpcode::G_SSUBO; in lowerAddSubSatToAddoSubo()
7594 MIRBuilder.buildInstr(OverflowOp, {Ty, BoolTy}, {LHS, RHS}); in lowerAddSubSatToAddoSubo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp10020 unsigned OverflowOp; in expandAddSubSat() local
10023 OverflowOp = ISD::SADDO; in expandAddSubSat()
10026 OverflowOp = ISD::UADDO; in expandAddSubSat()
10029 OverflowOp = ISD::SSUBO; in expandAddSubSat()
10032 OverflowOp = ISD::USUBO; in expandAddSubSat()
10046 SDValue Result = DAG.getNode(OverflowOp, dl, DAG.getVTList(VT, BoolVT), LHS, RHS); in expandAddSubSat()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1315 auto *OverflowOp = dyn_cast<OverflowingBinaryOperator>(BO); in computeKnownBitsFromOperator() local
1316 if (OverflowOp && Q.IIQ.hasNoSignedWrap(OverflowOp)) { in computeKnownBitsFromOperator()