Home
last modified time | relevance | path

Searched refs:UseSlots (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DSplitKit.cpp158 UseSlots.clear(); in clear()
166 assert(UseSlots.empty() && "Call clear first"); in analyzeUses()
172 UseSlots.push_back(VNI->def); in analyzeUses()
178 UseSlots.push_back(LIS.getInstructionIndex(*MO.getParent()).getRegSlot()); in analyzeUses()
180 array_pod_sort(UseSlots.begin(), UseSlots.end()); in analyzeUses()
184 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(), in analyzeUses()
186 UseSlots.end()); in analyzeUses()
191 LLVM_DEBUG(dbgs() << "Analyze counted " << UseSlots.size() << " instrs in " in analyzeUses()
208 UseI = UseSlots.begin(); in calcLiveBlockInfo()
209 UseE = UseSlots.end(); in calcLiveBlockInfo()
H A DSplitKit.h148 SmallVector<SlotIndex, 8> UseSlots; variable
193 ArrayRef<SlotIndex> getUseSlots() const { return UseSlots; } in getUseSlots()