HomeSort by relevance Sort by last modified time
    Searched defs:DeadRemats (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/CodeGen/
RegAllocBase.h 69 /// dead after remat is saved in DeadRemats. The deletion of such inst is
72 SmallPtrSet<MachineInstr *, 32> DeadRemats;
RegAllocPBQP.cpp 127 /// dead after remat is saved in DeadRemats. The deletion of such inst is
130 SmallPtrSet<MachineInstr *, 32> DeadRemats;
642 nullptr, &DeadRemats);
727 for (auto DeadInst : DeadRemats) {
731 DeadRemats.clear();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
RegAllocBase.h 73 /// dead after remat is saved in DeadRemats. The deletion of such inst is
76 SmallPtrSet<MachineInstr *, 32> DeadRemats;
RegAllocPBQP.cpp 158 /// dead after remat is saved in DeadRemats. The deletion of such inst is
161 SmallPtrSet<MachineInstr *, 32> DeadRemats;
683 nullptr, &DeadRemats);
776 for (auto DeadInst : DeadRemats) {
780 DeadRemats.clear();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/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,
  /external/llvm/include/llvm/CodeGen/
LiveRangeEdit.h 75 /// DeadRemats - The saved instructions which have already been dead after
77 SmallPtrSet<MachineInstr *, 32> *DeadRemats;
124 /// @param deadRemats The collection of all the instructions defining an
129 SmallPtrSet<MachineInstr *, 32> *deadRemats = nullptr)
133 DeadRemats(deadRemats) {
156 /// rematerializations. We save the def instruction in DeadRemats,
230 // DeadRemats is an optional field.
231 if (DeadRemats)
232 DeadRemats->insert(inst)
    [all...]

Completed in 237 milliseconds