Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstr.cpp126 CapOperands = OperandCapacity::get(NumOps); in MachineInstr()
127 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
142 CapOperands = OperandCapacity::get(MI.getNumOperands()); in MachineInstr()
143 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
250 OperandCapacity OldCap = CapOperands; in addOperand()
253 CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); in addOperand()
254 Operands = MF.allocateOperandArray(CapOperands); in addOperand()
H A DMachineFunction.cpp404 deallocateOperandArray(MI->CapOperands, MI->Operands); in DeleteMachineInstr()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstr.h137 OperandCapacity CapOperands; // Capacity of the Operands array. variable