Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp1201 SmallVector<int, 8> SortedSlots; in runOnMachineFunction() local
1202 SortedSlots.reserve(NumSlots); in runOnMachineFunction()
1233 SortedSlots.push_back(i); in runOnMachineFunction()
1257 if (Intervals[SortedSlots[I]]->empty()) in runOnMachineFunction()
1258 SortedSlots[I] = -1; in runOnMachineFunction()
1269 llvm::stable_sort(SortedSlots, [this](int LHS, int RHS) { in runOnMachineFunction()
1286 if (SortedSlots[I] == -1) in runOnMachineFunction()
1290 if (SortedSlots[J] == -1) in runOnMachineFunction()
1293 int FirstSlot = SortedSlots[I]; in runOnMachineFunction()
1294 int SecondSlot = SortedSlots[J]; in runOnMachineFunction()
[all …]