HomeSort by relevance Sort by last modified time
    Searched refs:AllocatedStackSlots (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.h 86 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() &&
88 assert(!AllocatedStackSlots.test(Offset) && "already reserved!");
90 AllocatedStackSlots.set(Offset);
94 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() &&
96 return AllocatedStackSlots.test(Offset);
108 SmallBitVector AllocatedStackSlots;
StatepointLowering.cpp 59 AllocatedStackSlots.resize(Builder.FuncInfo.StatepointStackSlots.size());
64 AllocatedStackSlots.clear();
82 const size_t NumSlots = AllocatedStackSlots.size();
91 if (!AllocatedStackSlots.test(NextSlotToAllocate)) {
94 AllocatedStackSlots.set(NextSlotToAllocate);
    [all...]

Completed in 117 milliseconds