Searched refs:NextSlotToAllocate (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.h33 StatepointLoweringState() : NextSlotToAllocate(0) {
108 assert(NextSlotToAllocate <= (unsigned)Offset && "consistency!");
131 unsigned NextSlotToAllocate; member in class:llvm::StatepointLoweringState
H A DStatepointLowering.cpp48 NextSlotToAllocate = 0;
81 assert(NextSlotToAllocate <= NumSlots && "broken invariant");
83 if (NextSlotToAllocate >= NumSlots) {
84 assert(NextSlotToAllocate == NumSlots);
96 if (!AllocatedStackSlots[NextSlotToAllocate]) {
97 const int FI = Builder.FuncInfo.StatepointStackSlots[NextSlotToAllocate];
98 AllocatedStackSlots[NextSlotToAllocate] = true;
105 NextSlotToAllocate++;

Completed in 82 milliseconds