HomeSort by: relevance | last modified time | path
    Searched refs:OverflowOp (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PoisonChecking.cpp 116 auto *OverflowOp =
118 Checks.push_back(B.CreateExtractValue(OverflowOp, 1));
121 auto *OverflowOp =
123 Checks.push_back(B.CreateExtractValue(OverflowOp, 1));
129 auto *OverflowOp =
131 Checks.push_back(B.CreateExtractValue(OverflowOp, 1));
134 auto *OverflowOp =
136 Checks.push_back(B.CreateExtractValue(OverflowOp, 1));
142 auto *OverflowOp =
144 Checks.push_back(B.CreateExtractValue(OverflowOp, 1))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 1692 Intrinsic::ID OverflowOp = IID == Intrinsic::sadd_sat
1699 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF,
1715 Intrinsic::ID OverflowOp = IID == Intrinsic::uadd_sat
1720 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 6585 unsigned OverflowOp;
6592 OverflowOp = TargetOpcode::G_UADDO;
6597 OverflowOp = TargetOpcode::G_SADDO;
6602 OverflowOp = TargetOpcode::G_USUBO;
6607 OverflowOp = TargetOpcode::G_SSUBO;
6612 MIRBuilder.buildInstr(OverflowOp, {Ty, BoolTy}, {LHS, RHS});
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 1428 auto *OverflowOp = dyn_cast<OverflowingBinaryOperator>(BO);
1429 if (OverflowOp && Q.IIQ.hasNoSignedWrap(OverflowOp)) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 7976 unsigned OverflowOp;
7979 OverflowOp = ISD::SADDO;
7982 OverflowOp = ISD::UADDO;
7985 OverflowOp = ISD::SSUBO;
7988 OverflowOp = ISD::USUBO;
8002 SDValue Result = DAG.getNode(OverflowOp, dl, DAG.getVTList(VT, BoolVT), LHS, RHS);

Completed in 36 milliseconds