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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlanTransforms.h 30 SmallPtrSetImpl<Instruction *> &DeadInstructions, ScalarEvolution &SE);
VPlanTransforms.cpp 22 SmallPtrSetImpl<Instruction *> &DeadInstructions, ScalarEvolution &SE) {
38 if (DeadInstructions.count(Inst)) {
LoopVectorizationPlanner.h 330 SmallPtrSetImpl<Instruction *> &DeadInstructions);
346 VFRange &Range, SmallPtrSetImpl<Instruction *> &DeadInstructions,
LoopVectorize.cpp 8088 SmallPtrSetImpl<Instruction *> &DeadInstructions) {
8101 if (!DeadInstructions.insert(Cmp).second)
8108 DeadInstructions.insert(cast<Instruction>(Op));
8126 return U == Ind || DeadInstructions.count(cast<Instruction>(U));
8128 DeadInstructions.insert(IndUpdate);
8140 DeadInstructions.insert(Casts.begin(), Casts.end());
8975 SmallPtrSet<Instruction *, 4> DeadInstructions;
8976 collectTriviallyDeadInstructions(DeadInstructions);
8978 // Add assume instructions we need to drop to DeadInstructions, to prevent
8983 DeadInstructions.insert(ConditionalAssumes.begin(), ConditionalAssumes.end())
    [all...]
  /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/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/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 119 milliseconds