Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/SelectionDAG/
DStatepointLowering.h85 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() && in reserveStackSlot()
87 assert(!AllocatedStackSlots[Offset] && "already reserved!"); in reserveStackSlot()
89 AllocatedStackSlots[Offset] = true; in reserveStackSlot()
92 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() && in isStackSlotAllocated()
94 return AllocatedStackSlots[Offset]; in isStackSlotAllocated()
106 SmallVector<bool, 50> AllocatedStackSlots; variable
DStatepointLowering.cpp58 AllocatedStackSlots.resize(Builder.FuncInfo.StatepointStackSlots.size()); in startNewStatepoint()
59 for (size_t i = 0; i < AllocatedStackSlots.size(); i++) { in startNewStatepoint()
60 AllocatedStackSlots[i] = false; in startNewStatepoint()
66 AllocatedStackSlots.clear(); in clear()
84 AllocatedStackSlots.size() && in allocateStackSlot()
86 const size_t NumSlots = AllocatedStackSlots.size(); in allocateStackSlot()
99 AllocatedStackSlots.push_back(true); in allocateStackSlot()
102 if (!AllocatedStackSlots[NextSlotToAllocate]) { in allocateStackSlot()
104 AllocatedStackSlots[NextSlotToAllocate] = true; in allocateStackSlot()