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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
Legalizer.cpp 281 SmallVector<MachineInstr *, 4> DeadInstructions;
283 if (ArtCombiner.tryCombineInstruction(MI, DeadInstructions,
286 for (auto *DeadMI : DeadInstructions) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
MVEVPTBlockPass.cpp 159 SmallVectorImpl<MachineInstr *> &DeadInstructions) {
207 DeadInstructions.push_back(&*Iter);
236 SmallVector<MachineInstr *, 4> DeadInstructions;
259 CreateVPTBlock(MBIter, EndIter, DeadInstructions);
290 for (MachineInstr *DeadMI : DeadInstructions)
292 DeadInstructions.clear();
MVETPAndVPTOptimisationsPass.cpp 678 SmallVector<MachineInstr *, 4> DeadInstructions;
738 DeadInstructions.push_back(&*Iter);
797 for (MachineInstr *DeadInstruction : DeadInstructions)
805 SmallVector<MachineInstr *, 4> DeadInstructions;
866 DeadInstructions.push_back(&Instr);
871 for (MachineInstr *DeadInstruction : DeadInstructions)
874 return !DeadInstructions.empty();
886 SmallSet<MachineInstr *, 4> DeadInstructions;
925 DeadInstructions.insert(Copy);
927 DeadInstructions.insert(MRI->getVRegDef(GPR))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopSimplifyCFG.cpp 370 SmallVector<Instruction *, 4> DeadInstructions;
372 DeadInstructions.push_back(&PN);
375 DeadInstructions.emplace_back(LandingPad);
377 for (Instruction *I : DeadInstructions) {
InferAddressSpaces.cpp 1058 SmallVector<Instruction *, 16> DeadInstructions;
1155 DeadInstructions.push_back(ASC);
1179 DeadInstructions.push_back(I);
1183 for (Instruction *I : DeadInstructions)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 2576 SmallVector<Instruction*, 4> DeadInstructions;
2643 auto Alloc = lowerNonLocalAlloca(AI, Shape, DeadInstructions);
2692 lowerLocalAllocas(LocalAllocas, DeadInstructions);
2694 for (auto I : DeadInstructions)

Completed in 71 milliseconds