Searched refs:OverflowOp (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/ |
| H A D | PoisonChecking.cpp | 110 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 …]
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | BasicTTIImpl.h | 1849 Intrinsic::ID OverflowOp = IID == Intrinsic::sadd_sat in getTypeBasedIntrinsicInstrCost() local 1857 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF, in getTypeBasedIntrinsicInstrCost() 1871 Intrinsic::ID OverflowOp = IID == Intrinsic::uadd_sat in getTypeBasedIntrinsicInstrCost() local 1876 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF, in getTypeBasedIntrinsicInstrCost()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LegalizerHelper.cpp | 7001 unsigned OverflowOp; in lowerAddSubSatToAddoSubo() local 7008 OverflowOp = TargetOpcode::G_UADDO; in lowerAddSubSatToAddoSubo() 7013 OverflowOp = TargetOpcode::G_SADDO; in lowerAddSubSatToAddoSubo() 7018 OverflowOp = TargetOpcode::G_USUBO; in lowerAddSubSatToAddoSubo() 7023 OverflowOp = TargetOpcode::G_SSUBO; in lowerAddSubSatToAddoSubo() 7028 MIRBuilder.buildInstr(OverflowOp, {Ty, BoolTy}, {LHS, RHS}); in lowerAddSubSatToAddoSubo()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 8884 unsigned OverflowOp; in expandAddSubSat() local 8887 OverflowOp = ISD::SADDO; in expandAddSubSat() 8890 OverflowOp = ISD::UADDO; in expandAddSubSat() 8893 OverflowOp = ISD::SSUBO; in expandAddSubSat() 8896 OverflowOp = ISD::USUBO; in expandAddSubSat() 8910 SDValue Result = DAG.getNode(OverflowOp, dl, DAG.getVTList(VT, BoolVT), LHS, RHS); in expandAddSubSat()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 1515 auto *OverflowOp = dyn_cast<OverflowingBinaryOperator>(BO); in computeKnownBitsFromOperator() local 1516 if (OverflowOp && Q.IIQ.hasNoSignedWrap(OverflowOp)) { in computeKnownBitsFromOperator()
|