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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
Combiner.cpp 148 MachineInstr *CurrInst = WorkList.pop_back_val();
149 LLVM_DEBUG(dbgs() << "\nTry combining " << *CurrInst;);
150 Changed |= CInfo.combine(WrapperObserver, *CurrInst, B);
IRTranslator.cpp 128 const Instruction *CurrInst = nullptr;
134 const Instruction *getCurrentInst() const { return CurrInst; }
135 void setCurrentInst(const Instruction *Inst) { CurrInst = Inst; }
146 LLVM_DEBUG(dbgs() << "Checking DILocation from " << *CurrInst
152 assert((CurrInst->getDebugLoc() == MI.getDebugLoc() ||
CombinerHelper.cpp 2805 MachineInstr *CurrInst = &MI;
2811 CurrInst->getOperand(0).getReg(), MRI,
2817 CurrInst = TmpInst;
2820 if (CurrInst->getOpcode() == TargetOpcode::G_INSERT_VECTOR_ELT)
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCBranchCoalescing.cpp 691 MachineInstr &CurrInst = *I;
693 if (CurrInst.isBranch())
694 CurrInst.eraseFromParent();
PPCTargetTransformInfo.cpp 408 if (Instruction *CurrInst = dyn_cast<Instruction>(J)) {
409 for (const auto &Op : CurrInst->operands()) {
411 CurrInst->getType()->getScalarType()->isHalfTy())
412 return !(ST->isISA3_0() && supportedHalfPrecisionOp(CurrInst));
PPCMIPeephole.cpp 257 MachineInstr *CurrInst = It->first;
260 if (It->second && MDT->dominates(MI, CurrInst))
263 if (MDT->dominates(CurrInst, MI)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
OpenMPOpt.cpp 2039 const Instruction *CurrInst = Worklist.pop_back_val();
2040 if (!Visited.insert(CurrInst).second)
2043 const BasicBlock *CurrBB = CurrInst->getParent();
2047 while ((CurrInst = CurrInst->getPrevNode())) {
2048 if (ValuesMap.count(CurrInst)) {
2049 Optional<Value *> NewReplVal = ValuesMap.lookup(CurrInst);
2064 Optional<Value *> NewReplVal = getValueForCall(A, CurrInst, ICV);

Completed in 31 milliseconds