Home
last modified time | relevance | path

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

/external/llvm-project/mlir/include/mlir/TableGen/
DOpClass.h76 class OpMethodParameters {
86 OpMethodParameters(ParamsKind kind) : kind(kind) {} in OpMethodParameters() function
87 virtual ~OpMethodParameters() {} in ~OpMethodParameters()
100 static std::unique_ptr<OpMethodParameters> create();
102 static std::unique_ptr<OpMethodParameters> create(StringRef params);
104 static std::unique_ptr<OpMethodParameters>
107 static std::unique_ptr<OpMethodParameters>
115 class OpMethodUnresolvedParameters : public OpMethodParameters {
118 : OpMethodParameters(PK_Unresolved), parameters(params) {} in OpMethodUnresolvedParameters()
127 static bool classof(const OpMethodParameters *params) { in classof()
[all …]
/external/llvm-project/mlir/lib/TableGen/
DOpClass.cpp51 std::unique_ptr<OpMethodParameters> OpMethodParameters::create() { in create()
55 std::unique_ptr<OpMethodParameters>
56 OpMethodParameters::create(StringRef params) { in create()
60 std::unique_ptr<OpMethodParameters>
61 OpMethodParameters::create(llvm::SmallVectorImpl<OpMethodParameter> &&params) { in create()
65 std::unique_ptr<OpMethodParameters>
66 OpMethodParameters::create(StringRef type, StringRef name, in create()