Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DStackSlotColoring.cpp76 int NextColor; member in __anon6785c94b0111::StackSlotColoring
87 MachineFunctionPass(ID), NextColor(-1) { in StackSlotColoring()
214 NextColor = AllColors.find_first(); in InitializeSlots()
251 assert(NextColor != -1 && "No more spill slots?"); in ColorSlot()
252 Color = NextColor; in ColorSlot()
254 NextColor = AllColors.find_next(NextColor); in ColorSlot()
338 while (NextColor != -1) { in ColorSlots()
339 DEBUG(dbgs() << "Removing unused stack object fi#" << NextColor << "\n"); in ColorSlots()
340 MFI->RemoveStackObject(NextColor); in ColorSlots()
341 NextColor = AllColors.find_next(NextColor); in ColorSlots()
[all …]