1# Operation Definition Specification (ODS)
2
3In addition to specializing the `mlir::Op` C++ template, MLIR also supports
4defining operations and data types in a table-driven manner. This is achieved
5via [TableGen][TableGen], which is both a generic language and its tooling to
6maintain records of domain-specific information. Facts regarding an operation
7are specified concisely into a TableGen record, which will be expanded into an
8equivalent `mlir::Op` C++ template specialization at compiler build time.
9
10This manual explains in detail all the available mechanisms for defining
11operations in such a table-driven manner. It aims to be a specification instead
12of a tutorial. Please refer to
13[Quickstart tutorial to adding MLIR graph rewrite](Tutorials/QuickstartRewrites.md)
14for the latter.
15
16In addition to detailing each mechanism, this manual also tries to capture best
17practices. They are rendered as quoted bullet points.
18
19## Motivation
20
21MLIR allows pluggable dialects, and dialects contain, among others, a list of
22operations. This open and extensible ecosystem leads to the "stringly" type IR
23problem, e.g., repetitive string comparisons during optimization and analysis
24passes, unintuitive accessor methods (e.g., generic/error prone `getOperand(3)`
25vs self-documenting `getStride()`) with more generic return types, verbose and
26generic constructors without default arguments, verbose textual IR dump, and so
27on. Furthermore, operation verification is:
28
291.  best case: a central string-to-verification-function map,
301.  middle case: duplication of verification across the code base, or
311.  worst case: no verification functions.
32
33The fix is to support defining ops in a table-driven manner. Then for each
34dialect, we can have a central place that contains everything you need to know
35about each op, including its constraints, custom assembly form, etc. This
36description is also used to generate helper functions and classes to allow
37building, verification, parsing, printing, analysis, and many more.
38
39## Benefits
40
41Compared to the C++ template, this table-driven approach has several benefits
42including but not limited to:
43
44*   **Single source of truth**: We strive to encode all facts regarding an
45    operation into the record, so that readers don't need to jump among code
46    snippets to fully understand an operation.
47*   **Removing boilerplate**: We can automatically generate
48    operand/attribute/result getter methods, operation build methods, operation
49    verify methods, and many more utilities from the record. This greatly
50    reduces the boilerplate needed for defining a new op.
51*   **Facilitating auto-generation**: The usage of these operation information
52    records are by no means limited to op definition itself. We can use them to
53    drive the auto-generation of many other components, like computation graph
54    serialization.
55
56## TableGen Syntax
57
58We use TableGen as the language for specifying operation information. TableGen
59itself just provides syntax for writing records; the syntax and constructs
60allowed in a TableGen file (typically with filename suffix `.td`) can be found
61[here][TableGenProgRef].
62
63*   TableGen `class` is similar to C++ class; it can be templated and
64    subclassed.
65*   TableGen `def` is similar to C++ object; it can be declared by specializing
66    a TableGen `class` (e.g., `def MyDef : MyClass<...>;`) or completely
67    independently (e.g., `def MyDef;`). It cannot be further templated or
68    subclassed.
69*   TableGen `dag` is a dedicated type for directed acyclic graph of elements. A
70    `dag` has one operator and zero or more arguments. Its syntax is `(operator
71    arg0, arg1, argN)`. The operator can be any TableGen `def`; an argument can
72    be anything, including `dag` itself. We can have names attached to both the
73    operator and the arguments like `(MyOp:$op_name MyArg:$arg_name)`.
74
75Please see the [language reference][TableGenProgRef] to learn about all the
76types and expressions supported by TableGen.
77
78## Operation Definition
79
80MLIR defines several common constructs to help operation definition and provide
81their semantics via a special [TableGen backend][TableGenBackend]:
82[`OpDefinitionsGen`][OpDefinitionsGen]. These constructs are defined in
83[`OpBase.td`][OpBase]. The main ones are
84
85*   The `Op` class: It is the main construct for defining operations. All facts
86    regarding the operation are specified when specializing this class, with the
87    help of the following constructs.
88*   The `Dialect` class: Operations belonging to one logical group are placed in
89    the same dialect. The `Dialect` class contains dialect-level information.
90*   The `OpTrait` class hierarchy: They are used to specify special properties
91    and constraints of the operation, including whether the operation has side
92    effect or whether its output has the same shape as the input.
93*   The `ins`/`outs` marker: These are two special makers builtin to the
94    `OpDefinitionsGen` backend. They lead the definitions of operands/attributes
95    and results respectively.
96*   The `TypeConstraint` class hierarchy: They are used to specify the
97    constraints over operands or results. A notable subclass hierarchy is
98    `Type`, which stands for constraints for common C++ types.
99*   The `AttrConstraint` class hierarchy: They are used to specify the
100    constraints over attributes. A notable subclass hierarchy is `Attr`, which
101    stands for constraints for attributes whose values are of common types.
102
103An operation is defined by specializing the `Op` class with concrete contents
104for all the fields it requires. For example, `tf.AvgPool` is defined as
105
106```tablegen
107def TF_AvgPoolOp : TF_Op<"AvgPool", [NoSideEffect]> {
108  let summary = "Performs average pooling on the input.";
109
110  let description = [{
111Each entry in `output` is the mean of the corresponding size `ksize`
112window in `value`.
113  }];
114
115  let arguments = (ins
116    TF_FpTensor:$value,
117
118    Confined<I64ArrayAttr, [ArrayMinCount<4>]>:$ksize,
119    Confined<I64ArrayAttr, [ArrayMinCount<4>]>:$strides,
120    TF_AnyStrAttrOf<["SAME", "VALID"]>:$padding,
121    DefaultValuedAttr<TF_ConvertDataFormatAttr, "NHWC">:$data_format
122  );
123
124  let results = (outs
125    TF_FpTensor:$output
126  );
127
128  TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
129}
130```
131
132In the following we describe all the fields needed. Please see the definition of
133the `Op` class for the complete list of fields supported.
134
135### Operation name
136
137The operation name is a unique identifier of the operation within MLIR, e.g.,
138`tf.Add` for addition operation in the TensorFlow dialect. This is the
139equivalent of the mnemonic in assembly language. It is used for parsing and
140printing in the textual format. It is also used for pattern matching in graph
141rewrites.
142
143The full operation name is composed of the dialect name and the op name, with
144the former provided via the dialect and the latter provided as the second
145template parameter to the `Op` class.
146
147### Operation documentation
148
149This includes both a one-line `summary` and a longer human-readable
150`description`. They will be used to drive automatic generation of dialect
151documentation. They need to be provided in the operation's definition body:
152
153```tablegen
154let summary = "...";
155
156let description = [{
157...
158}];
159```
160
161`description` should be written in Markdown syntax.
162
163Placing the documentation at the beginning is recommended since it helps in
164understanding the operation.
165
166> *   Place documentation at the beginning of the operation definition
167> *   The summary should be short and concise. It should be a one-liner without
168>     trailing punctuation. Put expanded explanation in description.
169
170### Operation arguments
171
172There are two kinds of arguments: operands and attributes. Operands are runtime
173values produced by other ops; while attributes are compile-time known constant
174values, including two categories:
175
1761.  Natural attributes: these attributes affect the behavior of the operations
177    (e.g., padding for convolution);
1781.  Derived attributes: these attributes are not needed to define the operation
179    but are instead derived from information of the operation. E.g., the output
180    shape of type. This is mostly used for convenience interface generation or
181    interaction with other frameworks/translation.
182
183    All derived attributes should be materializable as an Attribute. That is,
184    even though they are not materialized, it should be possible to store as an
185    attribute.
186
187Both operands and attributes are specified inside the `dag`-typed `arguments`,
188led by `ins`:
189
190```tablegen
191let arguments = (ins
192  <type-constraint>:$<operand-name>,
193  ...
194  <attr-constraint>:$<attr-name>,
195  ...
196);
197```
198
199Here `<type-constraint>` is a TableGen `def` from the `TypeConstraint` class
200hierarchy. Similarly, `<attr-constraint>` is a TableGen `def` from the
201`AttrConstraint` class hierarchy. See [Constraints](#constraints) for more
202information.
203
204There is no requirements on the relative order of operands and attributes; they
205can mix freely. The relative order of operands themselves matters. From each
206named argument a named getter will be generated that returns the argument with
207the return type (in the case of attributes the return type will be constructed
208from the storage type, while for operands it will be `Value`). Each attribute's
209raw value (e.g., as stored) can also be accessed via generated `<name>Attr`
210getters for use in transformation passes where the more user friendly return
211type is less suitable.
212
213All the arguments should be named to 1) provide documentation, 2) drive
214auto-generation of getter methods, 3) provide a handle to reference for other
215places like constraints.
216
217#### Variadic operands
218
219To declare a variadic operand, wrap the `TypeConstraint` for the operand with
220`Variadic<...>`.
221
222Normally operations have no variadic operands or just one variadic operand. For
223the latter case, it is easy to deduce which dynamic operands are for the static
224variadic operand definition. Though, if an operation has more than one variable
225length operands (either optional or variadic), it would be impossible to
226attribute dynamic operands to the corresponding static variadic operand
227definitions without further information from the operation. Therefore, either
228the `SameVariadicOperandSize` or `AttrSizedOperandSegments` trait is needed to
229indicate that all variable length operands have the same number of dynamic
230values.
231
232#### Optional operands
233
234To declare an optional operand, wrap the `TypeConstraint` for the operand with
235`Optional<...>`.
236
237Normally operations have no optional operands or just one optional operand. For
238the latter case, it is easy to deduce which dynamic operands are for the static
239operand definition. Though, if an operation has more than one variable length
240operands (either optional or variadic), it would be impossible to attribute
241dynamic operands to the corresponding static variadic operand definitions
242without further information from the operation. Therefore, either the
243`SameVariadicOperandSize` or `AttrSizedOperandSegments` trait is needed to
244indicate that all variable length operands have the same number of dynamic
245values.
246
247#### Optional attributes
248
249To declare an optional attribute, wrap the `AttrConstraint` for the attribute
250with `OptionalAttr<...>`.
251
252#### Attributes with default values
253
254To declare an attribute with a default value, wrap the `AttrConstraint` for the
255attribute with `DefaultValuedAttr<..., "...">`.
256
257The second parameter to `DefaultValuedAttr` should be a string containing the
258C++ default value. For example, a float default value should be specified as
259like `"0.5f"`, and an integer array default value should be specified as like
260`"{1, 2, 3}"`.
261
262#### Confining attributes
263
264`Confined` is provided as a general mechanism to help modelling further
265constraints on attributes beyond the ones brought by value types. You can use
266`Confined` to compose complex constraints out of more primitive ones. For
267example, a 32-bit integer attribute whose minimum value must be 10 can be
268expressed as `Confined<I32Attr, [IntMinValue<10>]>`.
269
270Right now, the following primitive constraints are supported:
271
272*   `IntMinValue<N>`: Specifying an integer attribute to be greater than or
273    equal to `N`
274*   `IntMaxValue<N>`: Specifying an integer attribute to be less than or equal
275    to `N`
276*   `ArrayMinCount<N>`: Specifying an array attribute to have at least `N`
277    elements
278*   `IntArrayNthElemEq<I, N>`: Specifying an integer array attribute's `I`-th
279    element to be equal to `N`
280*   `IntArrayNthElemMinValue<I, N>`: Specifying an integer array attribute's
281    `I`-th element to be greater than or equal to `N`
282
283TODO: Design and implement more primitive constraints
284
285### Operation regions
286
287The regions of an operation are specified inside of the `dag`-typed `regions`,
288led by `region`:
289
290```tablegen
291let regions = (region
292  <region-constraint>:$<region-name>,
293  ...
294);
295```
296
297#### Variadic regions
298
299Similar to the `Variadic` class used for variadic operands and results,
300`VariadicRegion<...>` can be used for regions. Variadic regions can currently
301only be specified as the last region in the regions list.
302
303### Operation results
304
305Similar to operands, results are specified inside the `dag`-typed `results`, led
306by `outs`:
307
308```tablegen
309let results = (outs
310  <type-constraint>:$<result-name>,
311  ...
312);
313```
314
315#### Variadic results
316
317Similar to variadic operands, `Variadic<...>` can also be used for results. And
318similarly, `SameVariadicResultSize` for multiple variadic results in the same
319operation.
320
321### Operation successors
322
323For terminator operations, the successors are specified inside of the
324`dag`-typed `successors`, led by `successor`:
325
326```tablegen
327let successors = (successor
328  <successor-constraint>:$<successor-name>,
329  ...
330);
331```
332
333#### Variadic successors
334
335Similar to the `Variadic` class used for variadic operands and results,
336`VariadicSuccessor<...>` can be used for successors. Variadic successors can
337currently only be specified as the last successor in the successor list.
338
339### Operation traits and constraints
340
341Traits are operation properties that affect syntax or semantics. MLIR C++ models
342various traits in the `mlir::OpTrait` namespace.
343
344Both operation traits, [interfaces](Interfaces.md#utilizing-the-ods-framework),
345and constraints involving multiple operands/attributes/results are provided as
346the second template parameter to the `Op` class. They should be deriving from
347the `OpTrait` class. See [Constraints](#constraints) for more information.
348
349### Builder methods
350
351For each operation, there are a few builders automatically generated based on
352the arguments and returns types. For example, given the following op definition:
353
354```tablegen
355def MyOp : ... {
356  let arguments = (ins
357    I32:$i32_operand,
358    F32:$f32_operand,
359    ...,
360
361    I32Attr:$i32_attr,
362    F32Attr:$f32_attr,
363    ...
364  );
365
366  let results = (outs
367    I32:$i32_result,
368    F32:$f32_result,
369    ...
370  );
371}
372```
373
374The following builders are generated:
375
376```c++
377// All result-types/operands/attributes have one aggregate parameter.
378static void build(OpBuilder &odsBuilder, OperationState &odsState,
379                  ArrayRef<Type> resultTypes,
380                  ValueRange operands,
381                  ArrayRef<NamedAttribute> attributes);
382
383// Each result-type/operand/attribute has a separate parameter. The parameters
384// for attributes are of mlir::Attribute types.
385static void build(OpBuilder &odsBuilder, OperationState &odsState,
386                  Type i32_result, Type f32_result, ...,
387                  Value i32_operand, Value f32_operand, ...,
388                  IntegerAttr i32_attr, FloatAttr f32_attr, ...);
389
390// Each result-type/operand/attribute has a separate parameter. The parameters
391// for attributes are raw values unwrapped with mlir::Attribute instances.
392// (Note that this builder will not always be generated. See the following
393// explanation for more details.)
394static void build(OpBuilder &odsBuilder, OperationState &odsState,
395                  Type i32_result, Type f32_result, ...,
396                  Value i32_operand, Value f32_operand, ...,
397                  APInt i32_attr, StringRef f32_attr, ...);
398
399// Each operand/attribute has a separate parameter but result type is aggregate.
400static void build(OpBuilder &odsBuilder, OperationState &odsState,
401                  ArrayRef<Type> resultTypes,
402                  Value i32_operand, Value f32_operand, ...,
403                  IntegerAttr i32_attr, FloatAttr f32_attr, ...);
404
405// All operands/attributes have aggregate parameters.
406// Generated if return type can be inferred.
407static void build(OpBuilder &odsBuilder, OperationState &odsState,
408                  ValueRange operands, ArrayRef<NamedAttribute> attributes);
409
410// (And manually specified builders depending on the specific op.)
411```
412
413The first form provides basic uniformity so that we can create ops using the
414same form regardless of the exact op. This is particularly useful for
415implementing declarative pattern rewrites.
416
417The second and third forms are good for use in manually written code given that
418they provide better guarantee via signatures.
419
420The third form will be generated if any of the op's attribute has different
421`Attr.returnType` from `Attr.storageType` and we know how to build an attribute
422from an unwrapped value (i.e., `Attr.constBuilderCall` is defined.)
423Additionally, for the third form, if an attribute appearing later in the
424`arguments` list has a default value, the default value will be supplied in the
425declaration. This works for `BoolAttr`, `StrAttr`, `EnumAttr` for now and the
426list can grow in the future. So if possible, default valued attribute should be
427placed at the end of the `arguments` list to leverage this feature. (This
428behavior is essentially due to C++ function parameter default value placement
429restrictions.) Otherwise, the builder of the third form will still be generated
430but default values for the attributes not at the end of the `arguments` list
431will not be supplied in the builder's signature.
432
433ODS will generate a builder that doesn't require return type specified if
434
435*   Op implements InferTypeOpInterface interface;
436*   All return types are either buildable types or are the same as a given
437    operand (e.g., `AllTypesMatch` constraint between operand and result);
438
439And there may potentially exist other builders depending on the specific op;
440please refer to the
441[generated C++ file](#run-mlir-tblgen-to-see-the-generated-content) for the
442complete list.
443
444#### Custom builder methods
445
446However, if the above cases cannot satisfy all needs, you can define additional
447convenience build methods in the `builders` field as follows.
448
449```tablegen
450def MyOp : Op<"my_op", []> {
451  let arguments = (ins F32Attr:$attr);
452
453  let builders = [
454    OpBuilderDAG<(ins "float":$val)>
455  ];
456}
457```
458
459The `builders` field is a list of custom builders that are added to the Op
460class. In this example, we provide a convenience builder that takes a floating
461point value instead of an attribute. The `ins` prefix is common to many function
462declarations in ODS, which use a TableGen [`dag`](#tablegen-syntax). What
463follows is a comma-separated list of types (quoted string) and names prefixed
464with the `$` sign. This will generate the declaration of a builder method that
465looks like:
466
467```c++
468class MyOp : /*...*/ {
469  /*...*/
470  static void build(::mlir::OpBuilder &builder, ::mlir::OperationState &state,
471                    float val);
472};
473```
474
475Note that the method has two additional leading arguments. These arguments are
476useful to construct the operation. In particular, the method must populate
477`state` with attributes, operands, regions and result types of the operation to
478be constructed. `builder` can be used to construct any IR objects that belong to
479the Op, such as types or nested operations. Since the type and name are
480generated as is in the C++ code, they should be valid C++ constructs for a type
481(in the namespace of the Op) and an identifier (e.g., `class` is not a valid
482identifier).
483
484Implementations of the builder can be provided directly in ODS, using TableGen
485code block as follows.
486
487```tablegen
488def MyOp : Op<"my_op", []> {
489  let arguments = (ins F32Attr:$attr);
490
491  let builders = [
492    OpBuilderDAG<(ins "float":$val), [{
493      $_state.addAttribute("attr", $_builder.getF32FloatAttr(val));
494    }]>
495  ];
496}
497```
498
499The equivalents of `builder` and `state` arguments are available as `$_builder`
500and `$_state` special variables. The named arguments listed in the `ins` part
501are available directly, e.g. `val`. The body of the builder will be generated by
502substituting special variables and should otherwise be valid C++. While there is
503no limitation on the code size, we encourage one to define only short builders
504inline in ODS and put definitions of longer builders in C++ files.
505
506Finally, if some arguments need a default value, they can be defined using
507`CArg` to wrap the type and this value as follows.
508
509```tablegen
510def MyOp : Op<"my_op", []> {
511  let arguments = (ins F32Attr:$attr);
512
513  let builders = [
514    OpBuilderDAG<(ins CArg<"float", "0.5f">:$val), [{
515      $_state.addAttribute("attr", $_builder.getF32FloatAttr(val));
516    }]>
517  ];
518}
519```
520
521The generated code will use default value in the declaration, but not in the
522definition, as required by C++.
523
524```c++
525/// Header file.
526class MyOp : /*...*/ {
527  /*...*/
528  static void build(::mlir::OpBuilder &builder, ::mlir::OperationState &state,
529                    float val = 0.5f);
530};
531
532/// Source file.
533MyOp::build(::mlir::OpBuilder &builder, ::mlir::OperationState &state,
534            float val) {
535  state.addAttribute("attr", builder.getF32FloatAttr(val));
536}
537```
538
539**Deprecated:** `OpBuilder` class allows one to specify the custom builder
540signature as a raw string, without separating parameters into different `dag`
541arguments. It also supports leading parameters of `OpBuilder &` and
542`OperationState &` types, which will be used instead of the autogenerated ones
543if present.
544
545### Custom parser and printer methods
546
547Functions to parse and print the operation's custom assembly form.
548
549### Custom verifier code
550
551Verification code will be automatically generated for
552[constraints](#constraints) specified on various entities of the op. To perform
553_additional_ verification, you can use
554
555```tablegen
556let verifier = [{
557  ...
558}];
559```
560
561Code placed in `verifier` will be called after the auto-generated verification
562code. The order of trait verification excluding those of `verifier` should not
563be relied upon.
564
565### Declarative Assembly Format
566
567The custom assembly form of the operation may be specified in a declarative
568string that matches the operations operands, attributes, etc. With the ability
569to express additional information that needs to be parsed to build the
570operation:
571
572```tablegen
573def CallOp : Std_Op<"call", ...> {
574  let arguments = (ins FlatSymbolRefAttr:$callee, Variadic<AnyType>:$args);
575  let results = (outs Variadic<AnyType>);
576
577  let assemblyFormat = [{
578    $callee `(` $args `)` attr-dict `:` functional-type($args, results)
579  }];
580}
581```
582
583The format is comprised of three components:
584
585#### Directives
586
587A directive is a type of builtin function, with an optional set of arguments.
588The available directives are as follows:
589
590*   `attr-dict`
591
592    -   Represents the attribute dictionary of the operation.
593
594*   `attr-dict-with-keyword`
595
596    -   Represents the attribute dictionary of the operation, but prefixes the
597        dictionary with an `attributes` keyword.
598
599*   `custom` < UserDirective > ( Params )
600
601    -   Represents a custom directive implemented by the user in C++.
602    -   See the [Custom Directives](#custom-directives) section below for more
603        details.
604
605*   `functional-type` ( inputs , results )
606
607    -   Formats the `inputs` and `results` arguments as a
608        [function type](LangRef.md#function-type).
609    -   The constraints on `inputs` and `results` are the same as the `input` of
610        the `type` directive.
611
612*   `operands`
613
614    -   Represents all of the operands of an operation.
615
616*   `ref` ( input )
617
618    -   Represents a reference to the a variable or directive, that must have
619        already been resolved, that may be used as a parameter to a `custom`
620        directive.
621    -   Used to pass previously parsed entities to custom directives.
622    -   The input may be any directive or variable, aside from `functional-type`
623        and `custom`.
624
625*   `regions`
626
627    -   Represents all of the regions of an operation.
628
629*   `results`
630
631    -   Represents all of the results of an operation.
632
633*   `successors`
634
635    -   Represents all of the successors of an operation.
636
637*   `type` ( input )
638
639    -   Represents the type of the given input.
640    -   `input` must be either an operand or result [variable](#variables), the
641        `operands` directive, or the `results` directive.
642
643#### Literals
644
645A literal is either a keyword or punctuation surrounded by \`\`.
646
647The following are the set of valid punctuation:
648
649`:`, `,`, `=`, `<`, `>`, `(`, `)`, `{`, `}`, `[`, `]`, `->`, `?`, `+`, `*`
650
651The following are valid whitespace punctuation:
652
653`\n`, ` `
654
655The `\n` literal emits a newline an indents to the start of the operation. An
656example is shown below:
657
658```tablegen
659let assemblyFormat = [{
660  `{` `\n` ` ` ` ` `this_is_on_a_newline` `\n` `}` attr-dict
661}];
662```
663
664```mlir
665%results = my.operation {
666  this_is_on_a_newline
667}
668```
669
670An empty literal \`\` may be used to remove a space that is inserted implicitly
671after certain literal elements, such as `)`/`]`/etc. For example, "`]`" may
672result in an output of `]` it is not the last element in the format. "`]` \`\`"
673would trim the trailing space in this situation.
674
675#### Variables
676
677A variable is an entity that has been registered on the operation itself, i.e.
678an argument(attribute or operand), region, result, successor, etc. In the
679`CallOp` example above, the variables would be `$callee` and `$args`.
680
681Attribute variables are printed with their respective value type, unless that
682value type is buildable. In those cases, the type of the attribute is elided.
683
684#### Custom Directives
685
686The declarative assembly format specification allows for handling a large
687majority of the common cases when formatting an operation. For the operations
688that require or desire specifying parts of the operation in a form not supported
689by the declarative syntax, custom directives may be specified. A custom
690directive essentially allows for users to use C++ for printing and parsing
691subsections of an otherwise declaratively specified format. Looking at the
692specification of a custom directive above:
693
694```
695custom-directive ::= `custom` `<` UserDirective `>` `(` Params `)`
696```
697
698A custom directive has two main parts: The `UserDirective` and the `Params`. A
699custom directive is transformed into a call to a `print*` and a `parse*` method
700when generating the C++ code for the format. The `UserDirective` is an
701identifier used as a suffix to these two calls, i.e., `custom<MyDirective>(...)`
702would result in calls to `parseMyDirective` and `printMyDirective` within the
703parser and printer respectively. `Params` may be any combination of variables
704(i.e. Attribute, Operand, Successor, etc.), type directives, and `attr-dict`.
705The type directives must refer to a variable, but that variable need not also be
706a parameter to the custom directive.
707
708The arguments to the `parse<UserDirective>` method are firstly a reference to
709the `OpAsmParser`(`OpAsmParser &`), and secondly a set of output parameters
710corresponding to the parameters specified in the format. The mapping of
711declarative parameter to `parse` method argument is detailed below:
712
713*   Attribute Variables
714    -   Single: `<Attribute-Storage-Type>(e.g. Attribute) &`
715    -   Optional: `<Attribute-Storage-Type>(e.g. Attribute) &`
716*   Operand Variables
717    -   Single: `OpAsmParser::OperandType &`
718    -   Optional: `Optional<OpAsmParser::OperandType> &`
719    -   Variadic: `SmallVectorImpl<OpAsmParser::OperandType> &`
720*   Ref Directives
721    -   A reference directive is passed to the parser using the same mapping as
722        the input operand. For example, a single region would be passed as a
723        `Region &`.
724*   Region Variables
725    -   Single: `Region &`
726    -   Variadic: `SmallVectorImpl<std::unique_ptr<Region>> &`
727*   Successor Variables
728    -   Single: `Block *&`
729    -   Variadic: `SmallVectorImpl<Block *> &`
730*   Type Directives
731    -   Single: `Type &`
732    -   Optional: `Type &`
733    -   Variadic: `SmallVectorImpl<Type> &`
734*   `attr-dict` Directive: `NamedAttrList &`
735
736When a variable is optional, the value should only be specified if the variable
737is present. Otherwise, the value should remain `None` or null.
738
739The arguments to the `print<UserDirective>` method is firstly a reference to the
740`OpAsmPrinter`(`OpAsmPrinter &`), second the op (e.g. `FooOp op` which can be
741`Operation *op` alternatively), and finally a set of output parameters
742corresponding to the parameters specified in the format. The mapping of
743declarative parameter to `print` method argument is detailed below:
744
745*   Attribute Variables
746    -   Single: `<Attribute-Storage-Type>(e.g. Attribute)`
747    -   Optional: `<Attribute-Storage-Type>(e.g. Attribute)`
748*   Operand Variables
749    -   Single: `Value`
750    -   Optional: `Value`
751    -   Variadic: `OperandRange`
752*   Ref Directives
753    -   A reference directive is passed to the printer using the same mapping as
754        the input operand. For example, a single region would be passed as a
755        `Region &`.
756*   Region Variables
757    -   Single: `Region &`
758    -   Variadic: `MutableArrayRef<Region>`
759*   Successor Variables
760    -   Single: `Block *`
761    -   Variadic: `SuccessorRange`
762*   Type Directives
763    -   Single: `Type`
764    -   Optional: `Type`
765    -   Variadic: `TypeRange`
766*   `attr-dict` Directive: `DictionaryAttr`
767
768When a variable is optional, the provided value may be null.
769
770#### Optional Groups
771
772In certain situations operations may have "optional" information, e.g.
773attributes or an empty set of variadic operands. In these situations a section
774of the assembly format can be marked as `optional` based on the presence of this
775information. An optional group is defined by wrapping a set of elements within
776`()` followed by a `?` and has the following requirements:
777
778*   The first element of the group must either be a attribute, literal, operand,
779    or region.
780    -   This is because the first element must be optionally parsable.
781*   Exactly one argument variable or type directive within the group must be
782    marked as the anchor of the group.
783    -   The anchor is the element whose presence controls whether the group
784        should be printed/parsed.
785    -   An element is marked as the anchor by adding a trailing `^`.
786    -   The first element is *not* required to be the anchor of the group.
787    -   When a non-variadic region anchors a group, the detector for printing
788        the group is if the region is empty.
789*   Literals, variables, custom directives, and type directives are the only
790    valid elements within the group.
791    -   Any attribute variable may be used, but only optional attributes can be
792        marked as the anchor.
793    -   Only variadic or optional results and operand arguments and can be used.
794    -   All region variables can be used. When a non-variable length region is
795        used, if the group is not present the region is empty.
796
797An example of an operation with an optional group is `std.return`, which has a
798variadic number of operands.
799
800```tablegen
801def ReturnOp : ... {
802  let arguments = (ins Variadic<AnyType>:$operands);
803
804  // We only print the operands and types if there are a non-zero number
805  // of operands.
806  let assemblyFormat = "attr-dict ($operands^ `:` type($operands))?";
807}
808```
809
810##### Unit Attributes
811
812In MLIR, the [`unit` Attribute](LangRef.md#unit-attribute) is special in that it
813only has one possible value, i.e. it derives meaning from its existence. When a
814unit attribute is used to anchor an optional group and is not the first element
815of the group, the presence of the unit attribute can be directly correlated with
816the presence of the optional group itself. As such, in these situations the unit
817attribute will not be printed or present in the output and will be automatically
818inferred when parsing by the presence of the optional group itself.
819
820For example, the following operation:
821
822```tablegen
823def FooOp : ... {
824  let arguments = (ins UnitAttr:$is_read_only);
825
826  let assemblyFormat = "attr-dict (`is_read_only` $is_read_only^)?";
827}
828```
829
830would be formatted as such:
831
832```mlir
833// When the unit attribute is present:
834foo.op is_read_only
835
836// When the unit attribute is not present:
837foo.op
838```
839
840#### Requirements
841
842The format specification has a certain set of requirements that must be adhered
843to:
844
8451.  The output and operation name are never shown as they are fixed and cannot
846    be altered.
8471.  All operands within the operation must appear within the format, either
848    individually or with the `operands` directive.
8491.  All regions within the operation must appear within the format, either
850    individually or with the `regions` directive.
8511.  All successors within the operation must appear within the format, either
852    individually or with the `successors` directive.
8531.  All operand and result types must appear within the format using the various
854    `type` directives, either individually or with the `operands` or `results`
855    directives.
8561.  The `attr-dict` directive must always be present.
8571.  Must not contain overlapping information; e.g. multiple instances of
858    'attr-dict', types, operands, etc.
859    -   Note that `attr-dict` does not overlap with individual attributes. These
860        attributes will simply be elided when printing the attribute dictionary.
861
862##### Type Inference
863
864One requirement of the format is that the types of operands and results must
865always be present. In certain instances, the type of a variable may be deduced
866via type constraints or other information available. In these cases, the type of
867that variable may be elided from the format.
868
869*   Buildable Types
870
871Some type constraints may only have one representation, allowing for them to be
872directly buildable; for example the `I32` or `Index` types. Types in `ODS` may
873mark themselves as buildable by setting the `builderCall` field or inheriting
874from the `BuildableType` class.
875
876*   Trait Equality Constraints
877
878There are many operations that have known type equality constraints registered
879as traits on the operation; for example the true, false, and result values of a
880`select` operation often have the same type. The assembly format may inspect
881these equal constraints to discern the types of missing variables. The currently
882supported traits are: `AllTypesMatch`, `TypesMatchWith`, `SameTypeOperands`, and
883`SameOperandsAndResultType`.
884
885### `hasCanonicalizer`
886
887This boolean field indicate whether canonicalization patterns have been defined
888for this operation. If it is `1`, then `::getCanonicalizationPatterns()` should
889be defined.
890
891### `hasFolder`
892
893This boolean field indicate whether general folding rules have been defined for
894this operation. If it is `1`, then `::fold()` should be defined.
895
896### Extra declarations
897
898One of the goals of table-driven op definition is to auto-generate as much logic
899and methods needed for each op as possible. With that said, there will always be
900long-tail cases that won't be covered. For such cases, you can use
901`extraClassDeclaration`. Code in `extraClassDeclaration` will be copied
902literally to the generated C++ op class.
903
904Note that `extraClassDeclaration` is a mechanism intended for long-tail cases by
905power users; for not-yet-implemented widely-applicable cases, improving the
906infrastructure is preferable.
907
908### Generated C++ code
909
910[OpDefinitionsGen][OpDefinitionsGen] processes the op definition spec file and
911generates two files containing the corresponding C++ code: one for declarations,
912the other for definitions. The former is generated via the `-gen-op-decls`
913command-line option, while the latter is via the `-gen-op-defs` option.
914
915The definition file contains all the op method definitions, which can be
916included and enabled by defining `GET_OP_CLASSES`. For each operation,
917OpDefinitionsGen generates an operation class and an
918[operand adaptor](#operand-adaptors) class. Besides, it also contains a
919comma-separated list of all defined ops, which can be included and enabled by
920defining `GET_OP_LIST`.
921
922#### Class name and namespaces
923
924For each operation, its generated C++ class name is the symbol `def`ed with
925TableGen with dialect prefix removed. The first `_` serves as the delimiter. For
926example, for `def TF_AddOp`, the C++ class name would be `AddOp`. We remove the
927`TF` prefix because it is for scoping ops; other dialects may as well define
928their own `AddOp`s.
929
930The namespaces of the generated C++ class will come from the dialect's
931`cppNamespace` field. For example, if a dialect's `cppNamespace` is `A::B`, then
932an op of that dialect will be placed in `namespace A { namespace B { ... } }`.
933If a dialect does not specify a `cppNamespace`, we then use the dialect's name
934as the namespace.
935
936This means the qualified name of the generated C++ class does not necessarily
937match exactly with the operation name as explained in
938[Operation name](#operation-name). This is to allow flexible naming to satisfy
939coding style requirements.
940
941#### Operand adaptors
942
943For each operation, we automatically generate an _operand adaptor_. This class
944solves the problem of accessing operands provided as a list of `Value`s without
945using "magic" constants. The operand adaptor takes a reference to an array of
946`Value` and provides methods with the same names as those in the operation class
947to access them. For example, for a binary arithmetic operation, it may provide
948`.lhs()` to access the first operand and `.rhs()` to access the second operand.
949
950The operand adaptor class lives in the same namespace as the operation class,
951and has the name of the operation followed by `Adaptor` as well as an alias
952`Adaptor` inside the op class.
953
954Operand adaptors can be used in function templates that also process operations:
955
956```c++
957template <typename BinaryOpTy>
958std::pair<Value, Value> zip(BinaryOpTy &&op) {
959  return std::make_pair(op.lhs(), op.rhs());;
960}
961
962void process(AddOp op, ArrayRef<Value> newOperands) {
963  zip(op);
964  zip(Adaptor<AddOp>(newOperands));
965  /*...*/
966}
967```
968
969## Constraints
970
971Constraint is a core concept in table-driven operation definition: operation
972verification and graph operation matching are all based on satisfying
973constraints. So both the operation definition and rewrite rules specification
974significantly involve writing constraints. We have the `Constraint` class in
975[`OpBase.td`][OpBase] has the common base class for all constraints.
976
977An operation's constraint can cover different range; it may
978
979*   Only concern a single attribute (e.g. being a 32-bit integer greater than
980    5),
981*   Multiple operands and results (e.g., the 1st result's shape must be the same
982    as the 1st operand), or
983*   Intrinsic to the operation itself (e.g., having no side effect).
984
985We call them as single-entity constraint, multi-entity constraint, and traits,
986respectively.
987
988### Single-entity constraint
989
990Constraints scoped to a single operand, attribute, or result are specified at
991the entity's declaration place as described in
992[Operation arguments](#operation-arguments) and
993[Operation results](#operation-results).
994
995To help modelling constraints of common types, a set of `TypeConstraint`s are
996created; they are the `Type` subclass hierarchy. It includes `F32` for the
997constraints of being a float, `TensorOf<[F32]>` for the constraints of being a
998float tensor, and so on.
999
1000Similarly, a set of `AttrConstraint`s are created for helping modelling
1001constraints of common attribute kinds. They are the `Attr` subclass hierarchy.
1002It includes `F32Attr` for the constraints of being a float attribute,
1003`F32ArrayAttr` for the constraints of being a float array attribute, and so on.
1004
1005### Multi-entity constraint
1006
1007Constraints involving more than one operand/attribute/result are quite common on
1008operations, like the element type and shape relation between operands and
1009results. These constraints should be specified as the `Op` class template
1010parameter as described in
1011[Operation traits and constraints](#operation-traits-and-constraints).
1012
1013Multi-entity constraints are modeled as `PredOpTrait` (a subclass of `OpTrait`)
1014in [`OpBase.td`][OpBase].A bunch of constraint primitives are provided to help
1015specification. See [`OpBase.td`][OpBase] for the complete list.
1016
1017### Trait
1018
1019Traits are intrinsic properties of the operation like having side effect or not,
1020commutative or not, whether is a terminator, etc. These constraints should be
1021specified as the `Op` class template parameter as described in
1022[Operation traits and constraints](#operation-traits-and-constraints).
1023
1024Traits are modeled as `NativeOpTrait` (a subclass of `OpTrait`) in
1025[`OpBase.td`][OpBase]. They are backed and will be translated into the
1026corresponding C++ `mlir::OpTrait` classes.
1027
1028### How to specify new constraint
1029
1030To write a constraint, you need to provide its predicates and give it a
1031descriptive name. Predicates, modeled with the `Pred` class, are the workhorse
1032for composing constraints. The predicate for a constraint is typically built up
1033in a nested manner, using the two categories of predicates:
1034
10351.  `CPred`: the primitive leaf predicate.
10362.  Compound predicate: a predicate composed from child predicates using
1037    predicate combiners (conjunction: `And`, disjunction: `Or`, negation: `Neg`,
1038    substitution: `SubstLeaves`, concatenation: `Concat`).
1039
1040`CPred` is the basis for composing more complex predicates. It is the "atom"
1041predicate from the perspective of TableGen and the "interface" between TableGen
1042and C++. What is inside is already C++ code, which will be treated as opaque
1043strings with special placeholders to be substituted.
1044
1045You can put any C++ code that returns a boolean value inside a `CPred`,
1046including evaluating expressions, calling functions, calling class methods, and
1047so on.
1048
1049To help interaction with the C++ environment, there are a few special
1050placeholders provided to refer to entities in the context where this predicate
1051is used. They serve as "hooks" to the enclosing environment. This includes
1052`$_builder`, `$_op`, and `$_self`:
1053
1054*   `$_builder` will be replaced by a `mlir::Builder` instance so that you can
1055    access common build methods.
1056*   `$_op` will be replaced by the current operation so that you can access
1057    information of the current operation.
1058*   `$_self` will be replaced with the entity this predicate is attached to.
1059    E.g., `BoolAttr` is an attribute constraint that wraps a
1060    `CPred<"$_self.isa<BoolAttr>()">`. Then for `F32:$attr`,`$_self` will be
1061    replaced by `$attr`. For type constraints, it's a little bit special since
1062    we want the constraints on each type definition reads naturally and we want
1063    to attach type constraints directly to an operand/result, `$_self` will be
1064    replaced by the operand/result's type. E.g., for `F32` in `F32:$operand`,
1065    its `$_self` will be expanded as `getOperand(...).getType()`.
1066
1067TODO: Reconsider the leading symbol for special placeholders. Eventually we want
1068to allow referencing operand/result $-names; such $-names can start with
1069underscore.
1070
1071For example, to write an attribute `attr` is an `IntegerAttr`, in C++ you can
1072just call `attr.isa<IntegerAttr>()`. The code can be wrapped in a `CPred` as
1073`$_self.isa<IntegerAttr>()`, with `$_self` as the special placeholder to be
1074replaced by the current attribute `attr` at expansion time.
1075
1076For more complicated predicates, you can wrap it in a single `CPred`, or you can
1077use predicate combiners to combine them. For example, to write the constraint
1078that an attribute `attr` is a 32-bit or 64-bit integer, you can write it as
1079
1080```tablegen
1081And<[
1082  CPred<"$_self.isa<IntegerAttr>()">,
1083  Or<[
1084    CPred<"$_self.cast<IntegerAttr>().getType().isInteger(32)">,
1085    CPred<"$_self.cast<IntegerAttr>().getType().isInteger(64)">
1086  ]>
1087]>
1088```
1089
1090(Note that the above is just to show with a familiar example how you can use
1091`CPred` and predicate combiners to write complicated predicates. For integer
1092attributes specifically, [`OpBase.td`][OpBase] already defines `I32Attr` and
1093`I64Attr`. So you can actually reuse them to write it as `Or<[I32Attr.predicate,
1094I64Attr.predicate]>`.)
1095
1096TODO: Build up a library of reusable primitive constraints
1097
1098If the predicate is very complex to write with `CPred` together with predicate
1099combiners, you can also write it as a normal C++ function and use the `CPred` as
1100a way to "invoke" the function. For example, to verify an attribute `attr` has
1101some property, you can write a C++ function like
1102
1103```cpp
1104bool HasSomeProperty(Attribute attr) { ... }
1105```
1106
1107and then define the op as:
1108
1109```tablegen
1110def HasSomeProperty : AttrConstraint<CPred<"HasSomeProperty($_self)">,
1111                                     "has some property">;
1112
1113def MyOp : Op<...> {
1114  let arguments = (ins
1115    ...
1116    HasSomeProperty:$attr
1117  );
1118}
1119```
1120
1121As to whether we should define the predicate using a single `CPred` wrapping the
1122whole expression, multiple `CPred`s with predicate combiners, or a single
1123`CPred` "invoking" a function, there are no clear-cut criteria. Defining using
1124`CPred` and predicate combiners is preferable since it exposes more information
1125(instead hiding all the logic behind a C++ function) into the op definition spec
1126so that it can potentially drive more auto-generation cases. But it will require
1127a nice library of common predicates as the building blocks to avoid the
1128duplication, which is being worked on right now.
1129
1130## Attribute Definition
1131
1132An attribute is a compile-time known constant of an operation.
1133
1134ODS provides attribute wrappers over C++ attribute classes. There are a few
1135common C++ [attribute classes][AttrClasses] defined in MLIR's core IR library
1136and one is free to define dialect-specific attribute classes. ODS allows one to
1137use these attributes in TableGen to define operations, potentially with more
1138fine-grained constraints. For example, `StrAttr` directly maps to `StringAttr`;
1139`F32Attr`/`F64Attr` requires the `FloatAttr` to additionally be of a certain
1140bitwidth.
1141
1142ODS attributes are defined as having a storage type (corresponding to a backing
1143`mlir::Attribute` that _stores_ the attribute), a return type (corresponding to
1144the C++ _return_ type of the generated of the helper getters) as well as method
1145to convert between the internal storage and the helper method.
1146
1147### Attribute decorators
1148
1149There are a few important attribute adapters/decorators/modifiers that can be
1150applied to ODS attributes to specify common additional properties like
1151optionality, default values, etc.:
1152
1153*   `DefaultValuedAttr`: specifies the
1154    [default value](#attributes-with-default-values) for an attribute.
1155*   `OptionalAttr`: specifies an attribute as [optional](#optional-attributes).
1156*   `Confined`: adapts an attribute with
1157    [further constraints](#confining-attributes).
1158
1159### Enum attributes
1160
1161Some attributes can only take values from a predefined enum, e.g., the
1162comparison kind of a comparison op. To define such attributes, ODS provides
1163several mechanisms: `StrEnumAttr`, `IntEnumAttr`, and `BitEnumAttr`.
1164
1165*   `StrEnumAttr`: each enum case is a string, the attribute is stored as a
1166    [`StringAttr`][StringAttr] in the op.
1167*   `IntEnumAttr`: each enum case is an integer, the attribute is stored as a
1168    [`IntegerAttr`][IntegerAttr] in the op.
1169*   `BitEnumAttr`: each enum case is a bit, the attribute is stored as a
1170    [`IntegerAttr`][IntegerAttr] in the op.
1171
1172All these `*EnumAttr` attributes require fully specifying all of the allowed
1173cases via their corresponding `*EnumAttrCase`. With this, ODS is able to
1174generate additional verification to only accept allowed cases. To facilitate the
1175interaction between `*EnumAttr`s and their C++ consumers, the
1176[`EnumsGen`][EnumsGen] TableGen backend can generate a few common utilities: a
1177C++ enum class, `llvm::DenseMapInfo` for the enum class, conversion functions
1178from/to strings. This is controlled via the `-gen-enum-decls` and
1179`-gen-enum-defs` command-line options of `mlir-tblgen`.
1180
1181For example, given the following `EnumAttr`:
1182
1183```tablegen
1184def Case15: I32EnumAttrCase<"Case15", 15>;
1185def Case20: I32EnumAttrCase<"Case20", 20>;
1186
1187def MyIntEnum: I32EnumAttr<"MyIntEnum", "An example int enum",
1188                           [Case15, Case20]> {
1189  let cppNamespace = "Outer::Inner";
1190  let stringToSymbolFnName = "ConvertToEnum";
1191  let symbolToStringFnName = "ConvertToString";
1192}
1193```
1194
1195The following will be generated via `mlir-tblgen -gen-enum-decls`:
1196
1197```c++
1198namespace Outer {
1199namespace Inner {
1200// An example int enum
1201enum class MyIntEnum : uint32_t {
1202  Case15 = 15,
1203  Case20 = 20,
1204};
1205
1206llvm::Optional<MyIntEnum> symbolizeMyIntEnum(uint32_t);
1207llvm::StringRef ConvertToString(MyIntEnum);
1208llvm::Optional<MyIntEnum> ConvertToEnum(llvm::StringRef);
1209inline constexpr unsigned getMaxEnumValForMyIntEnum() {
1210  return 20;
1211}
1212
1213} // namespace Inner
1214} // namespace Outer
1215
1216namespace llvm {
1217template<> struct DenseMapInfo<Outer::Inner::MyIntEnum> {
1218  using StorageInfo = llvm::DenseMapInfo<uint32_t>;
1219
1220  static inline Outer::Inner::MyIntEnum getEmptyKey() {
1221    return static_cast<Outer::Inner::MyIntEnum>(StorageInfo::getEmptyKey());
1222  }
1223
1224  static inline Outer::Inner::MyIntEnum getTombstoneKey() {
1225    return static_cast<Outer::Inner::MyIntEnum>(StorageInfo::getTombstoneKey());
1226  }
1227
1228  static unsigned getHashValue(const Outer::Inner::MyIntEnum &val) {
1229    return StorageInfo::getHashValue(static_cast<uint32_t>(val));
1230  }
1231
1232  static bool isEqual(const Outer::Inner::MyIntEnum &lhs, const Outer::Inner::MyIntEnum &rhs) {
1233    return lhs == rhs;
1234  }
1235};
1236}
1237```
1238
1239The following will be generated via `mlir-tblgen -gen-enum-defs`:
1240
1241```c++
1242namespace Outer {
1243namespace Inner {
1244llvm::StringRef ConvertToString(MyIntEnum val) {
1245  switch (val) {
1246    case MyIntEnum::Case15: return "Case15";
1247    case MyIntEnum::Case20: return "Case20";
1248  }
1249  return "";
1250}
1251
1252llvm::Optional<MyIntEnum> ConvertToEnum(llvm::StringRef str) {
1253  return llvm::StringSwitch<llvm::Optional<MyIntEnum>>(str)
1254      .Case("Case15", MyIntEnum::Case15)
1255      .Case("Case20", MyIntEnum::Case20)
1256      .Default(llvm::None);
1257}
1258llvm::Optional<MyIntEnum> symbolizeMyIntEnum(uint32_t value) {
1259  switch (value) {
1260  case 15: return MyIntEnum::Case15;
1261  case 20: return MyIntEnum::Case20;
1262  default: return llvm::None;
1263  }
1264}
1265
1266} // namespace Inner
1267} // namespace Outer
1268```
1269
1270Similarly for the following `BitEnumAttr` definition:
1271
1272```tablegen
1273def None: BitEnumAttrCase<"None", 0x0000>;
1274def Bit1: BitEnumAttrCase<"Bit1", 0x0001>;
1275def Bit2: BitEnumAttrCase<"Bit2", 0x0002>;
1276def Bit3: BitEnumAttrCase<"Bit3", 0x0004>;
1277
1278def MyBitEnum: BitEnumAttr<"MyBitEnum", "An example bit enum",
1279                           [None, Bit1, Bit2, Bit3]>;
1280```
1281
1282We can have:
1283
1284```c++
1285// An example bit enum
1286enum class MyBitEnum : uint32_t {
1287  None = 0,
1288  Bit1 = 1,
1289  Bit2 = 2,
1290  Bit3 = 4,
1291};
1292
1293llvm::Optional<MyBitEnum> symbolizeMyBitEnum(uint32_t);
1294std::string stringifyMyBitEnum(MyBitEnum);
1295llvm::Optional<MyBitEnum> symbolizeMyBitEnum(llvm::StringRef);
1296inline MyBitEnum operator|(MyBitEnum lhs, MyBitEnum rhs) {
1297  return static_cast<MyBitEnum>(static_cast<uint32_t>(lhs) | static_cast<uint32_t>(rhs));
1298}
1299inline MyBitEnum operator&(MyBitEnum lhs, MyBitEnum rhs) {
1300  return static_cast<MyBitEnum>(static_cast<uint32_t>(lhs) & static_cast<uint32_t>(rhs));
1301}
1302inline bool bitEnumContains(MyBitEnum bits, MyBitEnum bit) {
1303  return (static_cast<uint32_t>(bits) & static_cast<uint32_t>(bit)) != 0;
1304}
1305
1306namespace llvm {
1307template<> struct DenseMapInfo<::MyBitEnum> {
1308  using StorageInfo = llvm::DenseMapInfo<uint32_t>;
1309
1310  static inline ::MyBitEnum getEmptyKey() {
1311    return static_cast<::MyBitEnum>(StorageInfo::getEmptyKey());
1312  }
1313
1314  static inline ::MyBitEnum getTombstoneKey() {
1315    return static_cast<::MyBitEnum>(StorageInfo::getTombstoneKey());
1316  }
1317
1318  static unsigned getHashValue(const ::MyBitEnum &val) {
1319    return StorageInfo::getHashValue(static_cast<uint32_t>(val));
1320  }
1321
1322  static bool isEqual(const ::MyBitEnum &lhs, const ::MyBitEnum &rhs) {
1323    return lhs == rhs;
1324  }
1325};
1326```
1327
1328```c++
1329std::string stringifyMyBitEnum(MyBitEnum symbol) {
1330  auto val = static_cast<uint32_t>(symbol);
1331  // Special case for all bits unset.
1332  if (val == 0) return "None";
1333
1334  llvm::SmallVector<llvm::StringRef, 2> strs;
1335  if (1u & val) { strs.push_back("Bit1"); val &= ~1u; }
1336  if (2u & val) { strs.push_back("Bit2"); val &= ~2u; }
1337  if (4u & val) { strs.push_back("Bit3"); val &= ~4u; }
1338
1339  if (val) return "";
1340  return llvm::join(strs, "|");
1341}
1342
1343llvm::Optional<MyBitEnum> symbolizeMyBitEnum(llvm::StringRef str) {
1344  // Special case for all bits unset.
1345  if (str == "None") return MyBitEnum::None;
1346
1347  llvm::SmallVector<llvm::StringRef, 2> symbols;
1348  str.split(symbols, "|");
1349
1350  uint32_t val = 0;
1351  for (auto symbol : symbols) {
1352    auto bit = llvm::StringSwitch<llvm::Optional<uint32_t>>(symbol)
1353      .Case("Bit1", 1)
1354      .Case("Bit2", 2)
1355      .Case("Bit3", 4)
1356      .Default(llvm::None);
1357    if (bit) { val |= *bit; } else { return llvm::None; }
1358  }
1359  return static_cast<MyBitEnum>(val);
1360}
1361
1362llvm::Optional<MyBitEnum> symbolizeMyBitEnum(uint32_t value) {
1363  // Special case for all bits unset.
1364  if (value == 0) return MyBitEnum::None;
1365
1366  if (value & ~(1u | 2u | 4u)) return llvm::None;
1367  return static_cast<MyBitEnum>(value);
1368}
1369```
1370
1371## Type Definitions
1372
1373MLIR defines the TypeDef class hierarchy to enable generation of data types from
1374their specifications. A type is defined by specializing the TypeDef class with
1375concrete contents for all the fields it requires. For example, an integer type
1376could be defined as:
1377
1378```tablegen
1379// All of the types will extend this class.
1380class Test_Type<string name> : TypeDef<Test_Dialect, name> { }
1381
1382// An alternate int type.
1383def IntegerType : Test_Type<"TestInteger"> {
1384  let mnemonic = "int";
1385
1386  let summary = "An integer type with special semantics";
1387
1388  let description = [{
1389    An alternate integer type. This type differentiates itself from the
1390    standard integer type by not having a SignednessSemantics parameter, just
1391    a width.
1392  }];
1393
1394  let parameters = (ins "unsigned":$width);
1395
1396  // We define the printer inline.
1397  let printer = [{
1398    $_printer << "int<" << getImpl()->width << ">";
1399  }];
1400
1401  // The parser is defined here also.
1402  let parser = [{
1403    if (parser.parseLess())
1404      return Type();
1405    int width;
1406    if ($_parser.parseInteger(width))
1407      return Type();
1408    if ($_parser.parseGreater())
1409      return Type();
1410    return get($_ctxt, width);
1411  }];
1412}
1413```
1414
1415### Type name
1416
1417The name of the C++ class which gets generated defaults to
1418`<classParamName>Type` (e.g. `TestIntegerType` in the above example). This can
1419be overridden via the `cppClassName` field. The field `mnemonic` is to specify
1420the asm name for parsing. It is optional and not specifying it will imply that
1421no parser or printer methods are attached to this class.
1422
1423### Type documentation
1424
1425The `summary` and `description` fields exist and are to be used the same way as
1426in Operations. Namely, the summary should be a one-liner and `description`
1427should be a longer explanation.
1428
1429### Type parameters
1430
1431The `parameters` field is a list of the types parameters. If no parameters are
1432specified (the default), this type is considered a singleton type. Parameters
1433are in the `"c++Type":$paramName` format. To use C++ types as parameters which
1434need allocation in the storage constructor, there are two options:
1435
1436-   Set `hasCustomStorageConstructor` to generate the TypeStorage class with a
1437    constructor which is just declared -- no definition -- so you can write it
1438    yourself.
1439-   Use the `TypeParameter` tablegen class instead of the "c++Type" string.
1440
1441### TypeParameter tablegen class
1442
1443This is used to further specify attributes about each of the types parameters.
1444It includes documentation (`summary` and `syntax`), the C++ type to use, and a
1445custom allocator to use in the storage constructor method.
1446
1447```tablegen
1448// DO NOT DO THIS!
1449let parameters = (ins "ArrayRef<int>":$dims);
1450```
1451
1452The default storage constructor blindly copies fields by value. It does not know
1453anything about the types. In this case, the ArrayRef<int> requires allocation
1454with `dims = allocator.copyInto(dims)`.
1455
1456You can specify the necessary constructor by specializing the `TypeParameter`
1457tblgen class:
1458
1459```tablegen
1460class ArrayRefIntParam :
1461    TypeParameter<"::llvm::ArrayRef<int>", "Array of ints"> {
1462  let allocator = "$_dst = $_allocator.copyInto($_self);";
1463}
1464
1465...
1466
1467let parameters = (ins ArrayRefIntParam:$dims);
1468```
1469
1470The `allocator` code block has the following substitutions:
1471
1472-   `$_allocator` is the TypeStorageAllocator in which to allocate objects.
1473-   `$_dst` is the variable in which to place the allocated data.
1474
1475MLIR includes several specialized classes for common situations:
1476
1477-   `StringRefParameter<descriptionOfParam>` for StringRefs.
1478-   `ArrayRefParameter<arrayOf, descriptionOfParam>` for ArrayRefs of value
1479    types
1480-   `SelfAllocationParameter<descriptionOfParam>` for C++ classes which contain
1481    a method called `allocateInto(StorageAllocator &allocator)` to allocate
1482    itself into `allocator`.
1483-   `ArrayRefOfSelfAllocationParameter<arrayOf, descriptionOfParam>` for arrays
1484    of objects which self-allocate as per the last specialization.
1485
1486If we were to use one of these included specializations:
1487
1488```tablegen
1489let parameters = (ins
1490  ArrayRefParameter<"int", "The dimensions">:$dims
1491);
1492```
1493
1494### Parsing and printing
1495
1496If a mnemonic is specified, the `printer` and `parser` code fields are active.
1497The rules for both are:
1498
1499-   If null, generate just the declaration.
1500-   If non-null and non-empty, use the code in the definition. The `$_printer`
1501    or `$_parser` substitutions are valid and should be used.
1502-   It is an error to have an empty code block.
1503
1504For each dialect, two "dispatch" functions will be created: one for parsing and
1505one for printing. You should add calls to these in your `Dialect::printType` and
1506`Dialect::parseType` methods. They are static functions placed alongside the
1507type class definitions and have the following function signatures:
1508
1509```c++
1510static Type generatedTypeParser(MLIRContext* ctxt, DialectAsmParser& parser, StringRef mnemonic);
1511LogicalResult generatedTypePrinter(Type type, DialectAsmPrinter& printer);
1512```
1513
1514The mnemonic, parser, and printer fields are optional. If they're not defined,
1515the generated code will not include any parsing or printing code and omit the
1516type from the dispatch functions above. In this case, the dialect author is
1517responsible for parsing/printing the types in `Dialect::printType` and
1518`Dialect::parseType`.
1519
1520### Other fields
1521
1522-   If the `genStorageClass` field is set to 1 (the default) a storage class is
1523    generated with member variables corresponding to each of the specified
1524    `parameters`.
1525-   If the `genAccessors` field is 1 (the default) accessor methods will be
1526    generated on the Type class (e.g. `int getWidth() const` in the example
1527    above).
1528-   If the `genVerifyInvariantsDecl` field is set, a declaration for a method
1529    `static LogicalResult verifyConstructionInvariants(Location, parameters...)`
1530    is added to the class as well as a `getChecked(Location, parameters...)`
1531    method which gets the result of `verifyConstructionInvariants` before
1532    calling `get`.
1533-   The `storageClass` field can be used to set the name of the storage class.
1534-   The `storageNamespace` field is used to set the namespace where the storage
1535    class should sit. Defaults to "detail".
1536-   The `extraClassDeclaration` field is used to include extra code in the class
1537    declaration.
1538
1539### Type builder methods
1540
1541For each type, there are a few builders(`get`/`getChecked`) automatically
1542generated based on the parameters of the type. For example, given the following
1543type definition:
1544
1545```tablegen
1546def MyType : ... {
1547  let parameters = (ins "int":$intParam);
1548}
1549```
1550
1551The following builders are generated:
1552
1553```c++
1554// Type builders are named `get`, and return a new instance of a type for a
1555// given set of parameters.
1556static MyType get(MLIRContext *context, int intParam);
1557
1558// If `genVerifyInvariantsDecl` is set to 1, the following method is also
1559// generated.
1560static MyType getChecked(Location loc, int intParam);
1561```
1562
1563If these autogenerated methods are not desired, such as when they conflict with
1564a custom builder method, a type can set `skipDefaultBuilders` to 1 to signal
1565that they should not be generated.
1566
1567#### Custom type builder methods
1568
1569The default build methods may cover a majority of the simple cases related to
1570type construction, but when they cannot satisfy a type's needs, you can define
1571additional convenience get methods in the `builders` field as follows:
1572
1573```tablegen
1574def MyType : ... {
1575  let parameters = (ins "int":$intParam);
1576
1577  let builders = [
1578    TypeBuilder<(ins "int":$intParam)>,
1579    TypeBuilder<(ins CArg<"int", "0">:$intParam)>,
1580    TypeBuilder<(ins CArg<"int", "0">:$intParam), [{
1581      // Write the body of the `get` builder inline here.
1582      return Base::get($_ctxt, intParam);
1583    }]>,
1584    TypeBuilderWithInferredContext<(ins "Type":$typeParam), [{
1585      // This builder states that it can infer an MLIRContext instance from
1586      // its arguments.
1587      return Base::get(typeParam.getContext(), ...);
1588    }]>,
1589  ];
1590}
1591```
1592
1593The `builders` field is a list of custom builders that are added to the type
1594class. In this example, we provide a several different convenience builders that
1595are useful in different scenarios. The `ins` prefix is common to many function
1596declarations in ODS, which use a TableGen [`dag`](#tablegen-syntax). What
1597follows is a comma-separated list of types (quoted string or CArg) and names
1598prefixed with the `$` sign. The use of `CArg` allows for providing a default
1599value to that argument. Let's take a look at each of these builders individually
1600
1601The first builder will generate the declaration of a builder method that looks
1602like:
1603
1604```tablegen
1605  let builders = [
1606    TypeBuilder<(ins "int":$intParam)>,
1607  ];
1608```
1609
1610```c++
1611class MyType : /*...*/ {
1612  /*...*/
1613  static MyType get(::mlir::MLIRContext *context, int intParam);
1614};
1615```
1616
1617This builder is identical to the one that will be automatically generated for
1618`MyType`. The `context` parameter is implicitly added by the generator, and is
1619used when building the file Type instance (with `Base::get`). The distinction
1620here is that we can provide the implementation of this `get` method. With this
1621style of builder definition only the declaration is generated, the implementor
1622of MyType will need to provide a definition of `MyType::get`.
1623
1624The second builder will generate the declaration of a builder method that looks
1625like:
1626
1627```tablegen
1628  let builders = [
1629    TypeBuilder<(ins CArg<"int", "0">:$intParam)>,
1630  ];
1631```
1632
1633```c++
1634class MyType : /*...*/ {
1635  /*...*/
1636  static MyType get(::mlir::MLIRContext *context, int intParam = 0);
1637};
1638```
1639
1640The constraints here are identical to the first builder example except for the
1641fact that `intParam` now has a default value attached.
1642
1643The third builder will generate the declaration of a builder method that looks
1644like:
1645
1646```tablegen
1647  let builders = [
1648    TypeBuilder<(ins CArg<"int", "0">:$intParam), [{
1649      // Write the body of the `get` builder inline here.
1650      return Base::get($_ctxt, intParam);
1651    }]>,
1652  ];
1653```
1654
1655```c++
1656class MyType : /*...*/ {
1657  /*...*/
1658  static MyType get(::mlir::MLIRContext *context, int intParam = 0);
1659};
1660
1661MyType MyType::get(::mlir::MLIRContext *context, int intParam) {
1662  // Write the body of the `get` builder inline here.
1663  return Base::get(context, intParam);
1664}
1665```
1666
1667This is identical to the second builder example. The difference is that now, a
1668definition for the builder method will be generated automatically using the
1669provided code block as the body. When specifying the body inline, `$_ctxt` may
1670be used to access the `MLIRContext *` parameter.
1671
1672The fourth builder will generate the declaration of a builder method that looks
1673like:
1674
1675```tablegen
1676  let builders = [
1677    TypeBuilderWithInferredContext<(ins "Type":$typeParam), [{
1678      // This builder states that it can infer an MLIRContext instance from
1679      // its arguments.
1680      return Base::get(typeParam.getContext(), ...);
1681    }]>,
1682  ];
1683```
1684
1685```c++
1686class MyType : /*...*/ {
1687  /*...*/
1688  static MyType get(Type typeParam);
1689};
1690
1691MyType MyType::get(Type typeParam) {
1692  // This builder states that it can infer an MLIRContext instance from its
1693  // arguments.
1694  return Base::get(typeParam.getContext(), ...);
1695}
1696```
1697
1698In this builder example, the main difference from the third builder example
1699three is that the `MLIRContext` parameter is no longer added. This is because
1700the builder type used `TypeBuilderWithInferredContext` implies that the context
1701parameter is not necessary as it can be inferred from the arguments to the
1702builder.
1703
1704## Debugging Tips
1705
1706### Run `mlir-tblgen` to see the generated content
1707
1708TableGen syntax sometimes can be obscure; reading the generated content can be a
1709very helpful way to understand and debug issues. To build `mlir-tblgen`, run
1710`cmake --build . --target mlir-tblgen` in your build directory and find the
1711`mlir-tblgen` binary in the `bin/` subdirectory. All the supported generators
1712can be found via `mlir-tblgen --help`. For example, `--gen-op-decls` and
1713`--gen-op-defs` as explained in [Generated C++ code](#generated-c++-code).
1714
1715To see the generated code, invoke `mlir-tblgen` with a specific generator by
1716providing include paths via `-I`. For example,
1717
1718```sh
1719# To see op C++ class declaration
1720mlir-tblgen --gen-op-decls -I /path/to/mlir/include /path/to/input/td/file
1721# To see op C++ class definition
1722mlir-tblgen --gen-op-defs -I /path/to/mlir/include /path/to/input/td/file
1723# To see op documentation
1724mlir-tblgen --gen-dialect-doc -I /path/to/mlir/include /path/to/input/td/file
1725
1726# To see op interface C++ class declaration
1727mlir-tblgen --gen-op-interface-decls -I /path/to/mlir/include /path/to/input/td/file
1728# To see op interface C++ class definition
1729mlir-tblgen --gen-op-interface-defs -I /path/to/mlir/include /path/to/input/td/file
1730# To see op interface documentation
1731mlir-tblgen --gen-op-interface-doc -I /path/to/mlir/include /path/to/input/td/file
1732```
1733
1734## Appendix
1735
1736### Requirements and existing mechanisms analysis
1737
1738The op description should as declarative as possible to allow a wide range of
1739tools to work with them and query methods generated from them. In particular
1740this means specifying traits, constraints and shape inference information in a
1741way that is easily analyzable (e.g., avoid opaque calls to C++ functions where
1742possible).
1743
1744We considered the approaches of several contemporary systems and focused on
1745requirements that were desirable:
1746
1747*   Ops registered using a registry separate from C++ code.
1748    *   Unknown ops are allowed in MLIR, so ops need not be registered. The
1749        ability of the compiler to optimize those ops or graphs containing those
1750        ops is constrained but correct.
1751    *   The current proposal does not include a runtime op description, but it
1752        does not preclude such description, it can be added later.
1753    *   The op registry is essential for generating C++ classes that make
1754        manipulating ops, verifying correct construction etc. in C++ easier by
1755        providing a typed representation and accessors.
1756*   The op registry will be defined in
1757    [TableGen](https://llvm.org/docs/TableGen/index.html) and be used to
1758    generate C++ classes and utility functions
1759    (builder/verifier/parser/printer).
1760    *   TableGen is a modelling specification language used by LLVM's backends
1761        and fits in well with trait-based modelling. This is an implementation
1762        decision and there are alternative ways of doing this. But the
1763        specification language is good for the requirements of modelling the
1764        traits (as seen from usage in LLVM processor backend modelling) and easy
1765        to extend, so a practical choice. If another good option comes up, we
1766        will consider it.
1767*   MLIR allows both defined and undefined ops.
1768    *   Defined ops should have fixed semantics and could have a corresponding
1769        reference implementation defined using, for example, EDSC.
1770    *   Dialects are under full control of the dialect owner and normally live
1771        with the framework of the dialect.
1772*   The op's traits (e.g., commutative) are modelled along with the op in the
1773    registry.
1774*   The op's operand/return type constraints are modelled along with the op in
1775    the registry (see [Shape inference](ShapeInference.md) discussion below),
1776    this allows (e.g.) optimized concise syntax in textual dumps.
1777*   Behavior of the op is documented along with the op with a summary and a
1778    description. The description is written in markdown and extracted for
1779    inclusion in the generated LangRef section of the dialect.
1780*   The generic assembly form of printing and parsing is available as normal,
1781    but a custom parser and printer can either be specified or automatically
1782    generated from an optional string representation showing the mapping of the
1783    "assembly" string to operands/type.
1784    *   Parser-level remappings (e.g., `eq` to enum) will be supported as part
1785        of the parser generation.
1786*   Matching patterns are specified separately from the op description.
1787    *   Contrasted with LLVM there is no "base" set of ops that every backend
1788        needs to be aware of. Instead there are many different dialects and the
1789        transformations/legalizations between these dialects form a graph of
1790        transformations.
1791*   Reference implementation may be provided along with the op definition.
1792
1793    *   The reference implementation may be in terms of either standard ops or
1794        other reference implementations.
1795
1796    TODO: document expectation if the dependent op's definition changes.
1797
1798[TableGen]: https://llvm.org/docs/TableGen/index.html
1799[TableGenProgRef]: https://llvm.org/docs/TableGen/ProgRef.html
1800[TableGenBackend]: https://llvm.org/docs/TableGen/BackEnds.html#introduction
1801[OpBase]: https://github.com/llvm/llvm-project/blob/main/mlir/include/mlir/IR/OpBase.td
1802[OpDefinitionsGen]: https://github.com/llvm/llvm-project/blob/main/mlir/tools/mlir-tblgen/OpDefinitionsGen.cpp
1803[EnumsGen]: https://github.com/llvm/llvm-project/blob/main/mlir/tools/mlir-tblgen/EnumsGen.cpp
1804[StringAttr]: LangRef.md#string-attribute
1805[IntegerAttr]: LangRef.md#integer-attribute
1806[AttrClasses]: https://github.com/llvm/llvm-project/blob/main/mlir/include/mlir/IR/Attributes.h
1807