HomeSort by: relevance | last modified time | path
    Searched refs:AllocatedStackSlots (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.h 93 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() &&
95 assert(!AllocatedStackSlots.test(Offset) && "already reserved!");
97 AllocatedStackSlots.set(Offset);
101 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() &&
103 return AllocatedStackSlots.test(Offset);
115 SmallBitVector AllocatedStackSlots;
StatepointLowering.cpp 94 AllocatedStackSlots.clear();
95 AllocatedStackSlots.resize(Builder.FuncInfo.StatepointStackSlots.size());
100 AllocatedStackSlots.clear();
120 const size_t NumSlots = AllocatedStackSlots.size();
123 assert(AllocatedStackSlots.size() ==
128 if (!AllocatedStackSlots.test(NextSlotToAllocate)) {
131 AllocatedStackSlots.set(NextSlotToAllocate);
145 AllocatedStackSlots.resize(AllocatedStackSlots.size()+1, true);
146 assert(AllocatedStackSlots.size() =
    [all...]

Completed in 19 milliseconds