Home
last modified time | relevance | path

Searched refs:CapOperands (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineInstr.cpp109 CapOperands = OperandCapacity::get(NumOps); in MachineInstr()
110 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
125 CapOperands = OperandCapacity::get(MI.getNumOperands()); in MachineInstr()
126 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
223 OperandCapacity OldCap = CapOperands; in addOperand()
226 CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); in addOperand()
227 Operands = MF.allocateOperandArray(CapOperands); in addOperand()
H A DMachineFunction.cpp429 deallocateOperandArray(MI->CapOperands, MI->Operands); in deleteMachineInstr()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineInstr.h139 OperandCapacity CapOperands; // Capacity of the Operands array. variable