Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineInstr.cpp124 CapOperands = OperandCapacity::get(NumOps); in MachineInstr()
125 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
138 CapOperands = OperandCapacity::get(MI.getNumOperands()); in MachineInstr()
139 Operands = MF.allocateOperandArray(CapOperands); in MachineInstr()
242 OperandCapacity OldCap = CapOperands; in addOperand()
245 CapOperands = OldOperands ? OldCap.getNext() : OldCap.get(1); in addOperand()
246 Operands = MF.allocateOperandArray(CapOperands); in addOperand()
DMachineFunction.cpp392 deallocateOperandArray(MI->CapOperands, MI->Operands); in DeleteMachineInstr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineInstr.h119 OperandCapacity CapOperands; // Capacity of the Operands array. variable