HomeSort by relevance Sort by last modified time
    Searched refs:DefI (Results 1 - 23 of 23) sorted by null

  /external/llvm/lib/Target/Hexagon/
HexagonGenPredicate.cpp 211 MachineInstr *DefI = MRI->getVRegDef(Reg.R);
212 DefI->eraseFromParent();
234 MachineInstr *DefI = MRI->getVRegDef(Reg.R);
235 assert(DefI);
236 unsigned Opc = DefI->getOpcode();
238 assert(DefI->getOperand(0).isDef() && DefI->getOperand(1).isUse());
239 Register PR = DefI->getOperand(1);
245 MachineBasicBlock &B = *DefI->getParent();
246 DebugLoc DL = DefI->getDebugLoc()
    [all...]
HexagonExpandCondsets.cpp 371 MachineInstr *DefI = LIS->getInstructionFromIndex(NextI->start);
372 if (HII->isPredicated(*DefI))
456 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start);
457 if (LocalImpDefs.count(DefI))
459 Defs.insert(DefI->getParent());
460 if (HII->isPredicated(*DefI))
491 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start);
492 if (LocalImpDefs.count(DefI))
494 for (auto &Op : DefI->operands()) {
511 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start)
    [all...]
HexagonGenInsert.cpp     [all...]
HexagonSplitDouble.cpp 213 MachineInstr *DefI = MRI->getVRegDef(R);
217 if (!DefI || isFixedInstr(DefI))
381 MachineInstr *DefI = MRI->getVRegDef(DR);
382 int32_t P = profit(DefI);
    [all...]
HexagonEarlyIfConv.cpp 384 const MachineInstr *DefI = MRI->getVRegDef(R);
386 assert(DefI && "Expecting a reaching def in MRI");
387 if (DefI->isImplicitDef())
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 730 auto *DefI = dyn_cast<Instruction>(U.get());
731 if (!DefI)
737 auto *DefBlock = DefI->getParent();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopInfo.h 791 auto *DefI = dyn_cast<Instruction>(U.get());
792 if (!DefI)
798 auto *DefBlock = DefI->getParent();
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
LoopInfo.h 782 auto *DefI = dyn_cast<Instruction>(U.get());
783 if (!DefI)
789 auto *DefBlock = DefI->getParent();
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
LoopInfo.h 782 auto *DefI = dyn_cast<Instruction>(U.get());
783 if (!DefI)
789 auto *DefBlock = DefI->getParent();
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopInfo.h 791 auto *DefI = dyn_cast<Instruction>(U.get());
792 if (!DefI)
798 auto *DefBlock = DefI->getParent();
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
LoopInfo.h 782 auto *DefI = dyn_cast<Instruction>(U.get());
783 if (!DefI)
789 auto *DefBlock = DefI->getParent();
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
LoopInfo.h 782 auto *DefI = dyn_cast<Instruction>(U.get());
783 if (!DefI)
789 auto *DefBlock = DefI->getParent();
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
LoopInfo.h 870 auto *DefI = dyn_cast<Instruction>(U.get());
871 if (!DefI)
    [all...]
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 617 MachineRegisterInfo::def_iterator DefI = MRI->def_begin(VirtReg);
618 assert(!DefI.atEnd() && "Register has no defs");
619 DefMI = DefI->getParent();
620 DefOp = DefI.getOperandNo();
621 assert((++DefI).atEnd() && "Register has multiple defs");
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 205 auto *DefI = dyn_cast<Instruction>(Def);
206 if (!DefI)
209 assert(DT->dominates(DefI, InsertPt) && "def does not dominate all uses");
211 auto *L = LI->getLoopFor(DefI->getParent());
218 llvm_unreachable("DefI dominates InsertPt!");
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp     [all...]

Completed in 1271 milliseconds