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

References

include/llvm/CodeGen/SelectionDAG.h
  385         ArrayRecycler<SDUse>::Capacity::get(Node->NumOperands),
include/llvm/Transforms/Scalar/GVNExpression.h
  204     Operands = Recycler.allocate(RecyclerCapacity::get(MaxOperands), Allocator);
  207     Recycler.deallocate(RecyclerCapacity::get(MaxOperands), Operands);
lib/CodeGen/MachineInstr.cpp
  124     CapOperands = OperandCapacity::get(NumOps);
  138   CapOperands = OperandCapacity::get(MI.getNumOperands());
  245     CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1);
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
 9567       ArrayRecycler<SDUse>::Capacity::get(Vals.size()), OperandAllocator);
unittests/Support/ArrayRecyclerTest.cpp
   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);