Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DSplitKit.cpp157 UseSlots.clear(); in clear()
165 assert(UseSlots.empty() && "Call clear first"); in analyzeUses()
171 UseSlots.push_back(VNI->def); in analyzeUses()
177 UseSlots.push_back(LIS.getInstructionIndex(*MO.getParent()).getRegSlot()); in analyzeUses()
179 array_pod_sort(UseSlots.begin(), UseSlots.end()); in analyzeUses()
183 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(), in analyzeUses()
185 UseSlots.end()); in analyzeUses()
190 LLVM_DEBUG(dbgs() << "Analyze counted " << UseSlots.size() << " instrs in " in analyzeUses()
207 UseI = UseSlots.begin(); in calcLiveBlockInfo()
208 UseE = UseSlots.end(); in calcLiveBlockInfo()
H A DSplitKit.h147 SmallVector<SlotIndex, 8> UseSlots; variable
192 ArrayRef<SlotIndex> getUseSlots() const { return UseSlots; } in getUseSlots()