Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DStackColoring.cpp156 void calculateLiveIntervals(unsigned NumSlots);
172 void expungeSlotMap(DenseMap<int, int> &SlotRemap, unsigned NumSlots);
370 void StackColoring::calculateLiveIntervals(unsigned NumSlots) { in calculateLiveIntervals() argument
378 Starts.resize(NumSlots); in calculateLiveIntervals()
380 Finishes.resize(NumSlots); in calculateLiveIntervals()
418 for (unsigned i = 0; i < NumSlots; ++i) { in calculateLiveIntervals()
621 unsigned NumSlots) { in expungeSlotMap() argument
623 for (unsigned i=0; i < NumSlots; ++i) { in expungeSlotMap()
654 unsigned NumSlots = MFI->getObjectIndexEnd(); in runOnMachineFunction() local
657 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.h615 unsigned NumSlots = 1; in sortUseList() local
628 for (I = 0; I < NumSlots; ++I) { in sortUseList()
640 if (I == NumSlots) { in sortUseList()
641 ++NumSlots; in sortUseList()
642 assert(NumSlots <= MaxSlots && "Use list bigger than 2^32"); in sortUseList()
653 for (unsigned I = 0; I < NumSlots; ++I) in sortUseList()
/external/llvm/lib/CodeGen/SelectionDAG/
DStatepointLowering.cpp86 const size_t NumSlots = AllocatedStackSlots.size(); in allocateStackSlot() local
87 assert(NextSlotToAllocate <= NumSlots && "broken invariant"); in allocateStackSlot()
89 if (NextSlotToAllocate >= NumSlots) { in allocateStackSlot()
90 assert(NextSlotToAllocate == NumSlots); in allocateStackSlot()
92 if (NumSlots + 1 > StatepointMaxSlotsRequired) { in allocateStackSlot()
93 StatepointMaxSlotsRequired = NumSlots + 1; in allocateStackSlot()