reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/Recycler.h
   43     auto *Val = FreeList;
   45     FreeList = FreeList->Next;
   45     FreeList = FreeList->Next;
   51     N->Next = FreeList;
   52     FreeList = N;
   61     assert(!FreeList && "Non-empty recycler deleted!");
   69     while (FreeList) {
   80   void clear(BumpPtrAllocator &) { FreeList = nullptr; }
   88     return FreeList ? reinterpret_cast<SubClass *>(pop_val())
  108   for (auto *I = FreeList; I; I = I->Next)