Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/IR/
H A DOperationSupport.cpp224 : isStorageDynamic(false), operandStorage(trailingOperands) { in OperandStorage()
227 new (&operandStorage[i]) OpOperand(owner, values[i]); in OperandStorage()
236 free(operandStorage); in ~OperandStorage()
359 free(operandStorage); in resize()
362 operandStorage = newOperandStorage; in resize()
636 SmallVector<Value> operandStorage; in computeHash() local
638 operandStorage.append(operands.begin(), operands.end()); in computeHash()
639 llvm::sort(operandStorage, [](Value a, Value b) -> bool { in computeHash()
642 operands = operandStorage; in computeHash()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DOperationSupport.h731 MutableArrayRef<OpOperand> getOperands() { return {operandStorage, size()}; } in getOperands()
749 OpOperand *operandStorage; variable
/llvm-project-15.0.7/mlir/lib/CAPI/IR/
H A DIR.cpp324 SmallVector<Value, 8> operandStorage; in mlirOperationCreate() local
328 unwrapList(state->nOperands, state->operands, operandStorage)); in mlirOperationCreate()