Home
last modified time | relevance | path

Searched refs:producedOperandCount (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Interfaces/
H A DControlFlowInterfaces.h51 SuccessorOperands(unsigned producedOperandCount,
57 return producedOperandCount + forwardedOperands.size(); in size()
65 unsigned getProducedOperandCount() const { return producedOperandCount; } in getProducedOperandCount()
70 return index < producedOperandCount; in isOperandProduced()
79 return forwardedOperands[index - producedOperandCount];
90 return forwardedOperands.slice(subStart - producedOperandCount, subLen); in slice()
98 forwardedOperands.erase(subStart - producedOperandCount, subLen);
112 (blockArgumentIndex - producedOperandCount); in getOperandIndex()
118 unsigned producedOperandCount;
/llvm-project-15.0.7/mlir/lib/Interfaces/
H A DControlFlowInterfaces.cpp24 : producedOperandCount(0), forwardedOperands(std::move(forwardedOperands)) { in SuccessorOperands()
27 SuccessorOperands::SuccessorOperands(unsigned int producedOperandCount, in SuccessorOperands() argument
29 : producedOperandCount(producedOperandCount), in SuccessorOperands()