Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DStackColoring.cpp157 void calculateLiveIntervals(unsigned NumSlots);
173 void expungeSlotMap(DenseMap<int, int> &SlotRemap, unsigned NumSlots);
371 void StackColoring::calculateLiveIntervals(unsigned NumSlots) { in calculateLiveIntervals() argument
379 Starts.resize(NumSlots); in calculateLiveIntervals()
381 Finishes.resize(NumSlots); in calculateLiveIntervals()
419 for (unsigned i = 0; i < NumSlots; ++i) { in calculateLiveIntervals()
622 unsigned NumSlots) { in expungeSlotMap() argument
624 for (unsigned i=0; i < NumSlots; ++i) { in expungeSlotMap()
655 unsigned NumSlots = MFI->getObjectIndexEnd(); in runOnMachineFunction() local
658 if (!NumSlots) in runOnMachineFunction()
[all …]
DStackSlotColoring.cpp439 unsigned NumSlots = LS->getNumIntervals(); in runOnMachineFunction() local
440 if (NumSlots == 0) in runOnMachineFunction()
/external/llvm/include/llvm/IR/
DValue.h548 unsigned NumSlots = 1; in sortUseList() local
561 for (I = 0; I < NumSlots; ++I) { in sortUseList()
573 if (I == NumSlots) { in sortUseList()
574 ++NumSlots; in sortUseList()
575 assert(NumSlots <= MaxSlots && "Use list bigger than 2^32"); in sortUseList()
586 for (unsigned I = 0; I < NumSlots; ++I) in sortUseList()
/external/llvm/lib/CodeGen/SelectionDAG/
DStatepointLowering.cpp80 const size_t NumSlots = AllocatedStackSlots.size(); in allocateStackSlot() local
81 assert(NextSlotToAllocate <= NumSlots && "broken invariant"); in allocateStackSlot()
83 if (NextSlotToAllocate >= NumSlots) { in allocateStackSlot()
84 assert(NextSlotToAllocate == NumSlots); in allocateStackSlot()
86 if (NumSlots + 1 > StatepointMaxSlotsRequired) { in allocateStackSlot()
87 StatepointMaxSlotsRequired = NumSlots + 1; in allocateStackSlot()