Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/TableGen/
DOpClass.cpp52 return std::make_unique<OpMethodResolvedParameters>(); in create()
62 return std::make_unique<OpMethodResolvedParameters>(std::move(params)); in create()
68 return std::make_unique<OpMethodResolvedParameters>(type, name, defaultValue); in create()
100 bool OpMethodResolvedParameters::makesRedundant( in makesRedundant()
101 const OpMethodResolvedParameters &other) const { in makesRedundant()
122 void OpMethodResolvedParameters::writeDeclTo(raw_ostream &os) const { in writeDeclTo()
128 void OpMethodResolvedParameters::writeDefTo(raw_ostream &os) const { in writeDefTo()
143 auto *resolvedThis = dyn_cast<OpMethodResolvedParameters>(parameters.get()); in makesRedundant()
145 dyn_cast<OpMethodResolvedParameters>(other.parameters.get()); in makesRedundant()
/external/llvm-project/mlir/include/mlir/TableGen/
DOpClass.h136 class OpMethodResolvedParameters : public OpMethodParameters {
138 OpMethodResolvedParameters() : OpMethodParameters(PK_Resolved) {} in OpMethodResolvedParameters() function
140 OpMethodResolvedParameters(llvm::SmallVectorImpl<OpMethodParameter> &&params) in OpMethodResolvedParameters() function
146 OpMethodResolvedParameters(StringRef type, StringRef name, in OpMethodResolvedParameters() function
160 bool makesRedundant(const OpMethodResolvedParameters &other) const;
192 return cast<OpMethodResolvedParameters>(parameters.get()) in getNumParameters()