Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp161 UseSlots.clear(); in clear()
169 assert(UseSlots.empty() && "Call clear first"); in analyzeUses()
175 UseSlots.push_back(VNI->def); in analyzeUses()
181 UseSlots.push_back(LIS.getInstructionIndex(*MO.getParent()).getRegSlot()); in analyzeUses()
183 array_pod_sort(UseSlots.begin(), UseSlots.end()); in analyzeUses()
187 UseSlots.erase(llvm::unique(UseSlots, SlotIndex::isSameInstr), in analyzeUses()
188 UseSlots.end()); in analyzeUses()
193 LLVM_DEBUG(dbgs() << "Analyze counted " << UseSlots in analyzeUses()
[all...]
H A DSplitKit.h147 SmallVector<SlotIndex, 8> UseSlots; variable
196 ArrayRef<SlotIndex> getUseSlots() const { return UseSlots; } in getUseSlots()