|
MLIR 22.0.0git
|
This class represents a StringSwitch like class that is useful for parsing expected keywords. More...
#include "mlir/IR/OpImplementation.h"
Public Member Functions | |
| KeywordSwitch (AsmParser &parser, StringRef *keyword=nullptr) | |
| KeywordSwitch & | Case (StringLiteral str, ResultT value) |
| Case that uses the provided value when true. | |
| KeywordSwitch & | Default (ResultT value) |
| template<typename FnT> | |
| std::enable_if_t<!std::is_convertible< FnT, ResultT >::value, KeywordSwitch & > | Case (StringLiteral str, FnT &&fn) |
| Case that invokes the provided functor when true. | |
| template<typename FnT> | |
| std::enable_if_t<!std::is_convertible< FnT, ResultT >::value, KeywordSwitch & > | Default (FnT &&fn) |
| bool | hasValue () const |
| Returns true if this switch has a value yet. | |
| operator ResultT () | |
| Return the result of the switch. | |
This class represents a StringSwitch like class that is useful for parsing expected keywords.
On construction, unless a non-empty keyword is provided, it invokes parseKeyword and processes each of the provided cases statements until a match is hit. The provided ResultT must be assignable from failure().
Definition at line 863 of file OpImplementation.h.
|
inline |
Definition at line 865 of file OpImplementation.h.
References mlir::AsmParser::AsmParser(), mlir::AsmParser::getCurrentLocation(), and if().
|
inline |
Case that invokes the provided functor when true.
The parameters passed to the functor are the keyword, and the location of the keyword (in case any errors need to be emitted).
Definition at line 884 of file OpImplementation.h.
|
inline |
Case that uses the provided value when true.
Definition at line 873 of file OpImplementation.h.
References Case(), and KeywordSwitch().
Referenced by Case().
|
inline |
Definition at line 897 of file OpImplementation.h.
|
inline |
Definition at line 876 of file OpImplementation.h.
References Default(), and KeywordSwitch().
Referenced by Default().
|
inline |
Returns true if this switch has a value yet.
Definition at line 904 of file OpImplementation.h.
|
inlinenodiscard |
Return the result of the switch.
Definition at line 907 of file OpImplementation.h.