Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DMachineInstr.cpp104 CapOperands = OperandCapacity::get(NumOps); in MachineInstr()
105 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
120 CapOperands = OperandCapacity::get(MI.getNumOperands()); in MachineInstr()
121 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
226 OperandCapacity OldCap = CapOperands; in addOperand()
229 CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); in addOperand()
230 Operands = MF.allocateOperandArray(CapOperands); in addOperand()
H A DMachineFunction.cpp436 deallocateOperandArray(MI->CapOperands, MI->Operands); in deleteMachineInstr()
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineInstr.h139 OperandCapacity CapOperands; // Capacity of the Operands array. variable