Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DMachineInstr.cpp598 CapOperands = OperandCapacity::get(NumOps); in MachineInstr()
599 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
615 CapOperands = OperandCapacity::get(MI.getNumOperands()); in MachineInstr()
616 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
718 OperandCapacity OldCap = CapOperands; in addOperand()
721 CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); in addOperand()
722 Operands = MF.allocateOperandArray(CapOperands); in addOperand()
DMachineFunction.cpp204 deallocateOperandArray(MI->CapOperands, MI->Operands); in DeleteMachineInstr()
/external/llvm/include/llvm/CodeGen/
DMachineInstr.h78 OperandCapacity CapOperands; // Capacity of the Operands array. variable