reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
781 using OperandCapacity = ArrayRecycler<MachineOperand>::Capacity;
include/llvm/CodeGen/MachineInstr.h 118 using OperandCapacity = ArrayRecycler<MachineOperand>::Capacity;
include/llvm/CodeGen/SelectionDAG.h 385 ArrayRecycler<SDUse>::Capacity::get(Node->NumOperands),
include/llvm/Support/ArrayRecycler.h79 static Capacity get(size_t N) { 80 return Capacity(N ? Log2_64_Ceil(N) : 0); 92 Capacity getNext() const { return Capacity(Index + 1); } 92 Capacity getNext() const { return Capacity(Index + 1); } 125 T *allocate(Capacity Cap, AllocatorType &Allocator) { 137 void deallocate(Capacity Cap, T *Ptr) {include/llvm/Transforms/Scalar/GVNExpression.h
139 using RecyclerCapacity = RecyclerType::Capacity;
lib/CodeGen/SelectionDAG/SelectionDAG.cpp 9567 ArrayRecycler<SDUse>::Capacity::get(Vals.size()), OperandAllocator);
unittests/Support/ArrayRecyclerTest.cpp26 ARO::Capacity Cap = ARO::Capacity::get(0); 26 ARO::Capacity Cap = ARO::Capacity::get(0); 31 Cap = ARO::Capacity::get(N); 41 Cap = ARO::Capacity::get(0); 54 ARO::Capacity Cap = ARO::Capacity::get(8); 54 ARO::Capacity Cap = ARO::Capacity::get(8);