Changeset View
Changeset View
Standalone View
Standalone View
mlir/include/mlir/IR/OpBase.td
Show First 20 Lines • Show All 296 Lines • ▼ Show 20 Lines | class Dialect { | ||||||||
// If this dialect overrides the hook for op interface fallback. | // If this dialect overrides the hook for op interface fallback. | ||||||||
bit hasOperationInterfaceFallback = 0; | bit hasOperationInterfaceFallback = 0; | ||||||||
// If this dialect should use default generated attribute parser boilerplate: | // If this dialect should use default generated attribute parser boilerplate: | ||||||||
// it'll dispatch the parsing to every individual attributes directly. | // it'll dispatch the parsing to every individual attributes directly. | ||||||||
bit useDefaultAttributePrinterParser = 0; | bit useDefaultAttributePrinterParser = 0; | ||||||||
// If this dialect should use default generated type parser boilerplate: | |||||||||
// it'll dispatch the parsing to every individual types directly. | |||||||||
rriddleUnsubmitted Done ReplyInline Actions
rriddle: | |||||||||
bit useDefaultTypePrinterParser = 0; | |||||||||
// If this dialect overrides the hook for canonicalization patterns. | // If this dialect overrides the hook for canonicalization patterns. | ||||||||
bit hasCanonicalizer = 0; | bit hasCanonicalizer = 0; | ||||||||
// Whether to emit raw/with no prefix or format changes, or emit with | // Whether to emit raw/with no prefix or format changes, or emit with | ||||||||
// accessor with prefix only and UpperCamel suffix or to emit accessors with | // accessor with prefix only and UpperCamel suffix or to emit accessors with | ||||||||
// both. | // both. | ||||||||
// | // | ||||||||
// If emitting with prefix is specified then the attribute/operand's | // If emitting with prefix is specified then the attribute/operand's | ||||||||
▲ Show 20 Lines • Show All 2,746 Lines • Show Last 20 Lines |