HomeSort by: relevance | last modified time | path
    Searched defs:CmpI (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstraintElimination.cpp 124 /// Turn a condition \p CmpI into a vector of constraints, using indices from \p
315 auto *CmpI = dyn_cast<CmpInst>(Br->getCondition());
316 if (!CmpI)
319 WorkList.emplace_back(DT.getNode(Br->getSuccessor(0)), CmpI, false);
321 WorkList.emplace_back(DT.getNode(Br->getSuccessor(1)), CmpI, true);
LowerExpectIntrinsic.cpp 274 ICmpInst *CmpI = dyn_cast<ICmpInst>(BSI.getCondition());
277 if (!CmpI) {
281 Predicate = CmpI->getPredicate();
285 CmpConstOperand = dyn_cast<ConstantInt>(CmpI->getOperand(1));
288 CI = dyn_cast<CallInst>(CmpI->getOperand(0));
327 if (CmpI)
328 CmpI->setOperand(0, ArgValue);
MergeICmps.cpp 205 assert(CmpI);
236 ICmpInst *CmpI = nullptr;
275 {Lhs_.GEP, Rhs_.GEP, Lhs_.LoadI, Rhs_.LoadI, CmpI, BranchI});
295 {Lhs_.GEP, Rhs_.GEP, Lhs_.LoadI, Rhs_.LoadI, CmpI, BranchI});
309 {Lhs_.GEP, Rhs_.GEP, Lhs_.LoadI, Rhs_.LoadI, CmpI, BranchI});
323 BCECmpBlock visitICmp(const ICmpInst *const CmpI,
331 if (!CmpI->hasOneUse()) {
335 if (CmpI->getPredicate() != ExpectedPredicate)
340 auto Lhs = visitICmpLoadOperand(CmpI->getOperand(0), BaseId);
343 auto Rhs = visitICmpLoadOperand(CmpI->getOperand(1), BaseId)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 1161 Instruction *CmpI = &Cond->front();
1162 assert(isa<CmpInst>(CmpI) && "First inst must compare IV with TripCount");
1163 return CmpI->getOperand(1);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMInstructionSelector.cpp 579 auto CmpI =
584 if (!constrainSelectedInstRegOperands(*CmpI, TII, TRI, RBI))
777 auto CmpI = BuildMI(MBB, InsertBefore, DbgLoc, TII.get(Opcodes.TSTri))
781 if (!constrainSelectedInstRegOperands(*CmpI, TII, TRI, RBI))
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonSplitDouble.cpp 507 const MachineInstr *CmpI = MRI->getVRegDef(PR);
508 while (CmpI->getOpcode() == Hexagon::C2_not)
509 CmpI = MRI->getVRegDef(CmpI->getOperand(1).getReg());
512 bool OkCI = TII->analyzeCompare(*CmpI, CmpR1, CmpR2, Mask, Val);
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 1255 Instruction *CmpI = &CLI->getCond()->front();
1256 assert(isa<CmpInst>(CmpI) && "First inst must compare IV with TripCount");
1257 CmpI->setOperand(1, TripCount);
2705 auto *CmpI = cast<CmpInst>(&Cond->front());
2706 assert(CmpI->getPredicate() == CmpInst::ICMP_ULT &&
2708 assert(CmpI->getOperand(0) == IndVar &&
2710 assert(CmpI->getOperand(1) == TripCount &&
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 7869 Instruction *CmpI = nullptr;
7871 CmpI = II;
7873 CmpI = F->getFastMathFlags().none() ? F : nullptr;
7875 if (CmpI && CmpI->hasOneUse()) {
7876 auto Op0 = CmpI->getOperand(0), Op1 = CmpI->getOperand(1);
7883 auto *F = new FreezeInst(Const0 ? Op1 : Op0, "", CmpI);
7885 CmpI->setOperand(Const0 ? 1 : 0, F);
7887 FI->replaceAllUsesWith(CmpI);
    [all...]

Completed in 25 milliseconds