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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegAllocBase.h 72 /// dead after remat is saved in DeadRemats. The deletion of such inst is
75 SmallPtrSet<MachineInstr *, 32> DeadRemats;
RegAllocBase.cpp 172 for (auto DeadInst : DeadRemats) {
176 DeadRemats.clear();
RegAllocBasic.cpp 243 LiveRangeEdit LRE(&Spill, SplitVRegs, *MF, *LIS, VRM, this, &DeadRemats);
303 LiveRangeEdit LRE(&VirtReg, SplitVRegs, *MF, *LIS, VRM, this, &DeadRemats);
LiveRangeEdit.cpp 362 // LiveRangeEdit::DeadRemats and will be deleted after all the
364 if (isOrigDef && DeadRemats && TII.isTriviallyReMaterializable(*MI, AA)) {
369 DeadRemats->insert(MI);
RegAllocPBQP.cpp 156 /// dead after remat is saved in DeadRemats. The deletion of such inst is
159 SmallPtrSet<MachineInstr *, 32> DeadRemats;
696 nullptr, &DeadRemats);
786 for (auto DeadInst : DeadRemats) {
790 DeadRemats.clear();
RegAllocGreedy.cpp 1985 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
2032 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
2102 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
2428 LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
3130 LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 85 /// DeadRemats - The saved instructions which have already been dead after
87 SmallPtrSet<MachineInstr *, 32> *DeadRemats;
137 /// @param deadRemats The collection of all the instructions defining an
142 SmallPtrSet<MachineInstr *, 32> *deadRemats = nullptr)
145 FirstNew(newRegs.size()), DeadRemats(deadRemats) {
169 /// rematerializations. We save the def instruction in DeadRemats,

Completed in 25 milliseconds