Skip to content

Declarative assembly format

declarative_assembly_format

This file contains the data structures necessary for the parsing and printing of the MLIR declarative assembly format defined at https://mlir.llvm.org/docs/DefiningDialects/Operations/#declarative-assembly-format .

CustomDirectiveInvT = TypeVar('CustomDirectiveInvT', bound=CustomDirective) module-attribute

ParsingState dataclass

State carried during the parsing of an operation using the declarative assembly format. It contains the elements that have already been parsed.

Source code in xdsl/irdl/declarative_assembly_format.py
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@dataclass
class ParsingState:
    """
    State carried during the parsing of an operation using the declarative assembly
    format.
    It contains the elements that have already been parsed.
    """

    operands: list[None | Sequence[UnresolvedOperand]]
    operand_types: list[None | Sequence[Attribute]]
    result_types: list[None | Sequence[Attribute]]
    regions: list[None | Sequence[Region]]
    successors: list[None | Sequence[Successor]]
    attributes: dict[str, Attribute]
    properties: dict[str, Attribute]
    op_type: type[IRDLOperation]
    context: ConstraintContext

    def __init__(self, op_type: type[IRDLOperation]):
        op_def = op_type.get_irdl_definition()
        self.op_type = op_type
        self.operands = [None] * len(op_def.operands)
        self.operand_types = [None] * len(op_def.operands)
        self.result_types = [None] * len(op_def.results)
        self.regions = [None] * len(op_def.regions)
        self.successors = [None] * len(op_def.successors)
        self.attributes = {}
        self.properties = {}
        self.context = ConstraintContext()

op_type: type[IRDLOperation] = op_type instance-attribute

operands: list[None | Sequence[UnresolvedOperand]] = [None] * len(op_def.operands) instance-attribute

operand_types: list[None | Sequence[Attribute]] = [None] * len(op_def.operands) instance-attribute

result_types: list[None | Sequence[Attribute]] = [None] * len(op_def.results) instance-attribute

regions: list[None | Sequence[Region]] = [None] * len(op_def.regions) instance-attribute

successors: list[None | Sequence[Successor]] = [None] * len(op_def.successors) instance-attribute

attributes: dict[str, Attribute] = {} instance-attribute

properties: dict[str, Attribute] = {} instance-attribute

context: ConstraintContext = ConstraintContext() instance-attribute

__init__(op_type: type[IRDLOperation])

Source code in xdsl/irdl/declarative_assembly_format.py
72
73
74
75
76
77
78
79
80
81
82
def __init__(self, op_type: type[IRDLOperation]):
    op_def = op_type.get_irdl_definition()
    self.op_type = op_type
    self.operands = [None] * len(op_def.operands)
    self.operand_types = [None] * len(op_def.operands)
    self.result_types = [None] * len(op_def.results)
    self.regions = [None] * len(op_def.regions)
    self.successors = [None] * len(op_def.successors)
    self.attributes = {}
    self.properties = {}
    self.context = ConstraintContext()

PrintingState dataclass

State carried during the printing of an operation using the declarative assembly format. It contains information on the last token, to know if a space should be emitted.

Source code in xdsl/irdl/declarative_assembly_format.py
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
@dataclass
class PrintingState:
    """
    State carried during the printing of an operation using the declarative assembly
    format.
    It contains information on the last token, to know if a space should be emitted.
    """

    last_was_punctuation: bool = field(default=False)
    """Was the last element parsed a punctuation."""
    should_emit_space: bool = field(default=True)
    """
    Should the printer emit a space before the next element.
    Depending on the directive, the space might not be printed
    (for instance for some punctuations).
    """

    def print_whitespace(self, printer: Printer):
        """
        Handles whitespace printing for the majority of format directives.
        """
        if self.should_emit_space or not self.last_was_punctuation:
            printer.print_string(" ")
        self.should_emit_space = True
        self.last_was_punctuation = False

last_was_punctuation: bool = field(default=False) class-attribute instance-attribute

Was the last element parsed a punctuation.

should_emit_space: bool = field(default=True) class-attribute instance-attribute

Should the printer emit a space before the next element. Depending on the directive, the space might not be printed (for instance for some punctuations).

__init__(last_was_punctuation: bool = False, should_emit_space: bool = True) -> None

print_whitespace(printer: Printer)

Handles whitespace printing for the majority of format directives.

Source code in xdsl/irdl/declarative_assembly_format.py
102
103
104
105
106
107
108
109
def print_whitespace(self, printer: Printer):
    """
    Handles whitespace printing for the majority of format directives.
    """
    if self.should_emit_space or not self.last_was_punctuation:
        printer.print_string(" ")
    self.should_emit_space = True
    self.last_was_punctuation = False

FormatProgram dataclass

The toplevel data structure of a declarative assembly format program. It is used to parse and print an operation.

Source code in xdsl/irdl/declarative_assembly_format.py
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
@dataclass(frozen=True)
class FormatProgram:
    """
    The toplevel data structure of a declarative assembly format program.
    It is used to parse and print an operation.
    """

    stmts: tuple[FormatDirective, ...]
    """The statements composing the program. They are executed in order."""

    @staticmethod
    def from_str(input: str, op_def: OpDef) -> FormatProgram:
        """
        Create the assembly format data program from its string representation.
        This might raise a ParseError exception if the string is invalid.
        """
        from xdsl.irdl.declarative_assembly_format_parser import FormatParser

        return FormatParser(input, op_def).parse_format()

    def parse(
        self, parser: Parser, op_type: type[IRDLOperationInvT]
    ) -> IRDLOperationInvT:
        """
        Parse the operation with this format.
        The given operation type is expected to be the operation type represented by
        the operation definition passed to the FormatParser that created this
        FormatProgram.
        """
        # Parse elements one by one
        op_def = op_type.get_irdl_definition()
        state = ParsingState(op_type)
        for stmt in self.stmts:
            stmt.parse(parser, state)

        # Get constraint variables from the parsed operand and result types
        self.resolve_constraint_variables(state, op_def)

        # Infer operand types that should be inferred
        assert None not in state.operands
        unresolved_operands = cast(list[Sequence[UnresolvedOperand]], state.operands)
        operand_types = self.resolve_operand_types(state, op_def)

        # Infer result types that should be inferred
        result_types = self.resolve_result_types(state, op_def)

        # Resolve all operands
        operands = tuple(
            parser.resolve_operands(uo, ot, parser.pos)
            for uo, ot in zip(unresolved_operands, operand_types, strict=True)
        )

        return op_type.build(
            result_types=result_types,
            operands=operands,
            attributes=state.attributes,
            properties=state.properties,
            regions=state.regions,
            successors=state.successors,
        )

    def resolve_constraint_variables(self, state: ParsingState, op_def: OpDef):
        """
        Runs verification on the parsed parts of the operation, adding the resolved value
        of each constraint variable to the `ConstraintContext` `state.context`.
        """
        ctx = state.context

        for operand, operand_type, (_, operand_def) in zip(
            state.operands, state.operand_types, op_def.operands, strict=True
        ):
            length = len(operand) if isinstance(operand, Sequence) else 1
            operand_def.constr.verify_length(length, ctx)
            if operand_type is None:
                continue
            if isinstance(operand_type, Attribute):
                operand_type = (operand_type,)
            operand_def.constr.verify(operand_type, ctx)

        for result_type, (_, result_def) in zip(
            state.result_types, op_def.results, strict=True
        ):
            if result_type is None:
                continue
            if isinstance(result_type, Attribute):
                result_type = (result_type,)
            result_def.constr.verify(result_type, ctx)

        for prop_name, prop_def in op_def.properties.items():
            if isinstance(prop_def, OptionalDef) and prop_def.default_value is None:
                continue
            attr = state.properties.get(prop_name, prop_def.default_value)
            if attr is None:
                continue
            prop_def.constr.verify(attr, ctx)

        for attr_name, attr_def in op_def.attributes.items():
            if isinstance(attr_def, OptionalDef) and attr_def.default_value is None:
                continue
            attr = state.attributes.get(attr_name, attr_def.default_value)
            if attr is None:
                continue
            attr_def.constr.verify(attr, ctx)

    def resolve_operand_types(
        self, state: ParsingState, op_def: OpDef
    ) -> Sequence[Sequence[Attribute]]:
        """
        Use the inferred type resolutions to fill missing operand types from other parsed
        types.
        """
        return tuple(
            operand_def.constr.infer(
                state.context,
                length=len(cast(Sequence[Any], operand)),
            )
            if operand_type is None
            else operand_type
            for operand_type, operand, (_, operand_def) in zip(
                state.operand_types, state.operands, op_def.operands, strict=True
            )
        )

    def resolve_result_types(
        self, state: ParsingState, op_def: OpDef
    ) -> Sequence[Sequence[Attribute]]:
        """
        Use the inferred type resolutions to fill missing result types from other parsed
        types.
        """
        return tuple(
            result_def.constr.infer(
                state.context,
                length=None,
            )
            if result_type is None
            else result_type
            for result_type, (_, result_def) in zip(
                state.result_types, op_def.results, strict=True
            )
        )

    def print(self, printer: Printer, op: IRDLOperation) -> None:
        """
        Print the operation with this format.
        The given operation is expected to be defined using the operation definition
        passed to the FormatParser that created this FormatProgram.
        """
        state = PrintingState()
        for stmt in self.stmts:
            stmt.print(printer, state, op)

stmts: tuple[FormatDirective, ...] instance-attribute

The statements composing the program. They are executed in order.

__init__(stmts: tuple[FormatDirective, ...]) -> None

from_str(input: str, op_def: OpDef) -> FormatProgram staticmethod

Create the assembly format data program from its string representation. This might raise a ParseError exception if the string is invalid.

Source code in xdsl/irdl/declarative_assembly_format.py
122
123
124
125
126
127
128
129
130
@staticmethod
def from_str(input: str, op_def: OpDef) -> FormatProgram:
    """
    Create the assembly format data program from its string representation.
    This might raise a ParseError exception if the string is invalid.
    """
    from xdsl.irdl.declarative_assembly_format_parser import FormatParser

    return FormatParser(input, op_def).parse_format()

parse(parser: Parser, op_type: type[IRDLOperationInvT]) -> IRDLOperationInvT

Parse the operation with this format. The given operation type is expected to be the operation type represented by the operation definition passed to the FormatParser that created this FormatProgram.

Source code in xdsl/irdl/declarative_assembly_format.py
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
def parse(
    self, parser: Parser, op_type: type[IRDLOperationInvT]
) -> IRDLOperationInvT:
    """
    Parse the operation with this format.
    The given operation type is expected to be the operation type represented by
    the operation definition passed to the FormatParser that created this
    FormatProgram.
    """
    # Parse elements one by one
    op_def = op_type.get_irdl_definition()
    state = ParsingState(op_type)
    for stmt in self.stmts:
        stmt.parse(parser, state)

    # Get constraint variables from the parsed operand and result types
    self.resolve_constraint_variables(state, op_def)

    # Infer operand types that should be inferred
    assert None not in state.operands
    unresolved_operands = cast(list[Sequence[UnresolvedOperand]], state.operands)
    operand_types = self.resolve_operand_types(state, op_def)

    # Infer result types that should be inferred
    result_types = self.resolve_result_types(state, op_def)

    # Resolve all operands
    operands = tuple(
        parser.resolve_operands(uo, ot, parser.pos)
        for uo, ot in zip(unresolved_operands, operand_types, strict=True)
    )

    return op_type.build(
        result_types=result_types,
        operands=operands,
        attributes=state.attributes,
        properties=state.properties,
        regions=state.regions,
        successors=state.successors,
    )

resolve_constraint_variables(state: ParsingState, op_def: OpDef)

Runs verification on the parsed parts of the operation, adding the resolved value of each constraint variable to the ConstraintContext state.context.

Source code in xdsl/irdl/declarative_assembly_format.py
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
def resolve_constraint_variables(self, state: ParsingState, op_def: OpDef):
    """
    Runs verification on the parsed parts of the operation, adding the resolved value
    of each constraint variable to the `ConstraintContext` `state.context`.
    """
    ctx = state.context

    for operand, operand_type, (_, operand_def) in zip(
        state.operands, state.operand_types, op_def.operands, strict=True
    ):
        length = len(operand) if isinstance(operand, Sequence) else 1
        operand_def.constr.verify_length(length, ctx)
        if operand_type is None:
            continue
        if isinstance(operand_type, Attribute):
            operand_type = (operand_type,)
        operand_def.constr.verify(operand_type, ctx)

    for result_type, (_, result_def) in zip(
        state.result_types, op_def.results, strict=True
    ):
        if result_type is None:
            continue
        if isinstance(result_type, Attribute):
            result_type = (result_type,)
        result_def.constr.verify(result_type, ctx)

    for prop_name, prop_def in op_def.properties.items():
        if isinstance(prop_def, OptionalDef) and prop_def.default_value is None:
            continue
        attr = state.properties.get(prop_name, prop_def.default_value)
        if attr is None:
            continue
        prop_def.constr.verify(attr, ctx)

    for attr_name, attr_def in op_def.attributes.items():
        if isinstance(attr_def, OptionalDef) and attr_def.default_value is None:
            continue
        attr = state.attributes.get(attr_name, attr_def.default_value)
        if attr is None:
            continue
        attr_def.constr.verify(attr, ctx)

resolve_operand_types(state: ParsingState, op_def: OpDef) -> Sequence[Sequence[Attribute]]

Use the inferred type resolutions to fill missing operand types from other parsed types.

Source code in xdsl/irdl/declarative_assembly_format.py
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
def resolve_operand_types(
    self, state: ParsingState, op_def: OpDef
) -> Sequence[Sequence[Attribute]]:
    """
    Use the inferred type resolutions to fill missing operand types from other parsed
    types.
    """
    return tuple(
        operand_def.constr.infer(
            state.context,
            length=len(cast(Sequence[Any], operand)),
        )
        if operand_type is None
        else operand_type
        for operand_type, operand, (_, operand_def) in zip(
            state.operand_types, state.operands, op_def.operands, strict=True
        )
    )

resolve_result_types(state: ParsingState, op_def: OpDef) -> Sequence[Sequence[Attribute]]

Use the inferred type resolutions to fill missing result types from other parsed types.

Source code in xdsl/irdl/declarative_assembly_format.py
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
def resolve_result_types(
    self, state: ParsingState, op_def: OpDef
) -> Sequence[Sequence[Attribute]]:
    """
    Use the inferred type resolutions to fill missing result types from other parsed
    types.
    """
    return tuple(
        result_def.constr.infer(
            state.context,
            length=None,
        )
        if result_type is None
        else result_type
        for result_type, (_, result_def) in zip(
            state.result_types, op_def.results, strict=True
        )
    )

print(printer: Printer, op: IRDLOperation) -> None

Print the operation with this format. The given operation is expected to be defined using the operation definition passed to the FormatParser that created this FormatProgram.

Source code in xdsl/irdl/declarative_assembly_format.py
254
255
256
257
258
259
260
261
262
def print(self, printer: Printer, op: IRDLOperation) -> None:
    """
    Print the operation with this format.
    The given operation is expected to be defined using the operation definition
    passed to the FormatParser that created this FormatProgram.
    """
    state = PrintingState()
    for stmt in self.stmts:
        stmt.print(printer, state, op)

Directive dataclass

Bases: ABC

An assembly format directive

Source code in xdsl/irdl/declarative_assembly_format.py
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
@dataclass(frozen=True)
class Directive(ABC):
    """An assembly format directive"""

    def is_present(self, op: IRDLOperation) -> bool:
        """
        Check if the directive is present in the input.
        """
        return True

    def is_anchorable(self) -> bool:
        """
        Can appear as an anchor in an optional group.
        """
        return False

    def is_variadic_like(self) -> bool:
        """
        Variadic-like format directives parse a comma separated list, and cannot be
        followed by `,` directive.
        """
        return False

    def is_optional_like(self) -> bool:
        """
        Directives that successfully parse the empty string.
        The first element in an optional group must be optional-like.
        """
        return self.is_variadic_like()

__init__() -> None

is_present(op: IRDLOperation) -> bool

Check if the directive is present in the input.

Source code in xdsl/irdl/declarative_assembly_format.py
269
270
271
272
273
def is_present(self, op: IRDLOperation) -> bool:
    """
    Check if the directive is present in the input.
    """
    return True

is_anchorable() -> bool

Can appear as an anchor in an optional group.

Source code in xdsl/irdl/declarative_assembly_format.py
275
276
277
278
279
def is_anchorable(self) -> bool:
    """
    Can appear as an anchor in an optional group.
    """
    return False

is_variadic_like() -> bool

Variadic-like format directives parse a comma separated list, and cannot be followed by , directive.

Source code in xdsl/irdl/declarative_assembly_format.py
281
282
283
284
285
286
def is_variadic_like(self) -> bool:
    """
    Variadic-like format directives parse a comma separated list, and cannot be
    followed by `,` directive.
    """
    return False

is_optional_like() -> bool

Directives that successfully parse the empty string. The first element in an optional group must be optional-like.

Source code in xdsl/irdl/declarative_assembly_format.py
288
289
290
291
292
293
def is_optional_like(self) -> bool:
    """
    Directives that successfully parse the empty string.
    The first element in an optional group must be optional-like.
    """
    return self.is_variadic_like()

FormatDirective dataclass

Bases: Directive, ABC

A format directive for operation format.

Source code in xdsl/irdl/declarative_assembly_format.py
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
class FormatDirective(Directive, ABC):
    """A format directive for operation format."""

    @abstractmethod
    def parse(self, parser: Parser, state: ParsingState) -> bool:
        """
        Parses the directive, returning True if input was consumed.
        """
        ...

    def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
        """
        Parses an optional directive, returning False if not present.
        """
        return self.parse(parser, state)

    @abstractmethod
    def print(
        self, printer: Printer, state: PrintingState, op: IRDLOperation
    ) -> None: ...

    def set_empty(self, state: ParsingState):
        """
        Set the appropriate field of the parsing state to be empty.
        Used when a variable appears in an optional group which is not parsed.
        """
        return

parse(parser: Parser, state: ParsingState) -> bool abstractmethod

Parses the directive, returning True if input was consumed.

Source code in xdsl/irdl/declarative_assembly_format.py
299
300
301
302
303
304
@abstractmethod
def parse(self, parser: Parser, state: ParsingState) -> bool:
    """
    Parses the directive, returning True if input was consumed.
    """
    ...

parse_optional(parser: Parser, state: ParsingState) -> bool

Parses an optional directive, returning False if not present.

Source code in xdsl/irdl/declarative_assembly_format.py
306
307
308
309
310
def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
    """
    Parses an optional directive, returning False if not present.
    """
    return self.parse(parser, state)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None abstractmethod

Source code in xdsl/irdl/declarative_assembly_format.py
312
313
314
315
@abstractmethod
def print(
    self, printer: Printer, state: PrintingState, op: IRDLOperation
) -> None: ...

set_empty(state: ParsingState)

Set the appropriate field of the parsing state to be empty. Used when a variable appears in an optional group which is not parsed.

Source code in xdsl/irdl/declarative_assembly_format.py
317
318
319
320
321
322
def set_empty(self, state: ParsingState):
    """
    Set the appropriate field of the parsing state to be empty.
    Used when a variable appears in an optional group which is not parsed.
    """
    return

CustomDirective dataclass

Bases: FormatDirective, ABC

A user defined assembly format directive. A custom directive can have multiple parameters, whose types should be declared in the parameters field.

Source code in xdsl/irdl/declarative_assembly_format.py
325
326
327
328
329
330
331
332
class CustomDirective(FormatDirective, ABC):
    """
    A user defined assembly format directive.
    A custom directive can have multiple parameters, whose types should be
    declared in the `parameters` field.
    """

    parameters: ClassVar[dict[str, type[FormatDirective]]]

parameters: dict[str, type[FormatDirective]] class-attribute

TypeableDirective dataclass

Bases: Directive, ABC

Directives which can be used to set or get types.

Source code in xdsl/irdl/declarative_assembly_format.py
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
class TypeableDirective(Directive, ABC):
    """
    Directives which can be used to set or get types.
    """

    @abstractmethod
    def set_types(self, state: ParsingState, types: Sequence[Attribute]) -> None:
        """
        Set the types for this directive to the given sequence.
        """
        ...

    @abstractmethod
    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        """
        Parses types for the directive, returning True if input was consumed.
        """
        ...

    @abstractmethod
    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        """
        Parse exactly one type for the directive.
        """

    @abstractmethod
    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]: ...

set_types(state: ParsingState, types: Sequence[Attribute]) -> None abstractmethod

Set the types for this directive to the given sequence.

Source code in xdsl/irdl/declarative_assembly_format.py
359
360
361
362
363
364
@abstractmethod
def set_types(self, state: ParsingState, types: Sequence[Attribute]) -> None:
    """
    Set the types for this directive to the given sequence.
    """
    ...

parse_types(parser: Parser, state: ParsingState) -> bool abstractmethod

Parses types for the directive, returning True if input was consumed.

Source code in xdsl/irdl/declarative_assembly_format.py
366
367
368
369
370
371
@abstractmethod
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    """
    Parses types for the directive, returning True if input was consumed.
    """
    ...

parse_single_type(parser: Parser, state: ParsingState) -> None abstractmethod

Parse exactly one type for the directive.

Source code in xdsl/irdl/declarative_assembly_format.py
373
374
375
376
377
@abstractmethod
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    """
    Parse exactly one type for the directive.
    """

get_types(op: IRDLOperation) -> Sequence[Attribute] abstractmethod

Source code in xdsl/irdl/declarative_assembly_format.py
379
380
@abstractmethod
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]: ...

TypeDirective dataclass

Bases: FormatDirective

A directive which parses the type of a typeable directive, with format: type-directive ::= type(typeable-directive)

Source code in xdsl/irdl/declarative_assembly_format.py
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
@dataclass(frozen=True)
class TypeDirective(FormatDirective):
    """
    A directive which parses the type of a typeable directive, with format:
      type-directive ::= type(typeable-directive)
    """

    inner: TypeableDirective

    def set(self, state: ParsingState, types: Sequence[Attribute]):
        self.inner.set_types(state, types)

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        return self.inner.parse_types(parser, state)

    def get(self, op: IRDLOperation) -> Sequence[Attribute]:
        return self.inner.get_types(op)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        types = self.inner.get_types(op)
        if not types:
            return
        state.print_whitespace(printer)
        printer.print_list(types, printer.print_attribute)

    def is_present(self, op: IRDLOperation) -> bool:
        return self.inner.is_present(op)

    def is_anchorable(self) -> bool:
        return self.inner.is_anchorable()

    def is_variadic_like(self) -> bool:
        return self.inner.is_variadic_like()

    def is_optional_like(self) -> bool:
        return self.inner.is_optional_like()

    def set_empty(self, state: ParsingState):
        self.set(state, ())

inner: TypeableDirective instance-attribute

__init__(inner: TypeableDirective) -> None

set(state: ParsingState, types: Sequence[Attribute])

Source code in xdsl/irdl/declarative_assembly_format.py
392
393
def set(self, state: ParsingState, types: Sequence[Attribute]):
    self.inner.set_types(state, types)

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
395
396
def parse(self, parser: Parser, state: ParsingState) -> bool:
    return self.inner.parse_types(parser, state)

get(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
398
399
def get(self, op: IRDLOperation) -> Sequence[Attribute]:
    return self.inner.get_types(op)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
401
402
403
404
405
406
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    types = self.inner.get_types(op)
    if not types:
        return
    state.print_whitespace(printer)
    printer.print_list(types, printer.print_attribute)

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
408
409
def is_present(self, op: IRDLOperation) -> bool:
    return self.inner.is_present(op)

is_anchorable() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
411
412
def is_anchorable(self) -> bool:
    return self.inner.is_anchorable()

is_variadic_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
414
415
def is_variadic_like(self) -> bool:
    return self.inner.is_variadic_like()

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
417
418
def is_optional_like(self) -> bool:
    return self.inner.is_optional_like()

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
420
421
def set_empty(self, state: ParsingState):
    self.set(state, ())

VariableDirective dataclass

Bases: Directive, ABC

A variable directive, with the following format: variable-directive ::= dollar-ident The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
424
425
426
427
428
429
430
431
432
433
434
435
@dataclass(frozen=True)
class VariableDirective(Directive, ABC):
    """
    A variable directive, with the following format:
      variable-directive ::= dollar-ident
    The directive will request a space to be printed after.
    """

    name: str
    """The variable name. This is only used for error message reporting."""
    index: int
    """Index of the variable(operand or result) definition."""

name: str instance-attribute

The variable name. This is only used for error message reporting.

index: int instance-attribute

Index of the variable(operand or result) definition.

__init__(name: str, index: int) -> None

VariadicVariable dataclass

Bases: VariableDirective, ABC

Source code in xdsl/irdl/declarative_assembly_format.py
438
439
440
441
442
443
444
445
446
class VariadicVariable(VariableDirective, ABC):
    def is_present(self, op: IRDLOperation) -> bool:
        return bool(getattr(op, self.name))

    def is_anchorable(self) -> bool:
        return True

    def is_variadic_like(self) -> bool:
        return True

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
439
440
def is_present(self, op: IRDLOperation) -> bool:
    return bool(getattr(op, self.name))

is_anchorable() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
442
443
def is_anchorable(self) -> bool:
    return True

is_variadic_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
445
446
def is_variadic_like(self) -> bool:
    return True

OptionalVariable dataclass

Bases: VariableDirective, ABC

Source code in xdsl/irdl/declarative_assembly_format.py
449
450
451
452
453
454
455
456
457
class OptionalVariable(VariableDirective, ABC):
    def is_present(self, op: IRDLOperation) -> bool:
        return getattr(op, self.name) is not None

    def is_anchorable(self) -> bool:
        return True

    def is_optional_like(self) -> bool:
        return True

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
450
451
def is_present(self, op: IRDLOperation) -> bool:
    return getattr(op, self.name) is not None

is_anchorable() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
453
454
def is_anchorable(self) -> bool:
    return True

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
456
457
def is_optional_like(self) -> bool:
    return True

AttrDictDirective dataclass

Bases: FormatDirective

An attribute dictionary directive, with the following format: attr-dict-directive ::= attr-dict attr-dict-with-format-directive ::= attributes attr-dict The directive (with and without the keyword) will always print a space before, and will not request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
@dataclass(frozen=True)
class AttrDictDirective(FormatDirective):
    """
    An attribute dictionary directive, with the following format:
       attr-dict-directive ::= attr-dict
       attr-dict-with-format-directive ::= `attributes` attr-dict
    The directive (with and without the keyword) will always print a space before, and
    will not request a space to be printed after.
    """

    with_keyword: bool
    """If this is set, the format starts with the `attributes` keyword."""

    reserved_attr_names: set[str]
    """
    The set of attributes that should not be printed.
    These attributes are printed in other places in the format, and thus would be
    printed twice otherwise.
    """

    expected_properties: set[str]
    """
    Properties that should be printed and parsed as part of this attr-dict.
    This is used to keep compatibility with MLIR which allows that.
    """

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        if self.with_keyword:
            res = parser.parse_optional_attr_dict_with_keyword()
            if res is None:
                res = {}
            else:
                res = dict(res.data)
        else:
            res = parser.parse_optional_attr_dict()
        defined_reserved_keys = self.reserved_attr_names & res.keys()
        if defined_reserved_keys:
            parser.raise_error(
                f"attributes {', '.join(defined_reserved_keys)} are defined in other parts of the "
                "assembly format, and thus should not be defined in the attribute "
                "dictionary."
            )

        props = tuple(k for k in res.keys() if k in self.expected_properties)
        for name in props:
            state.properties[name] = res.pop(name)
        state.attributes |= res
        return bool(res) or bool(props)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        if not op.attributes.keys().isdisjoint(self.expected_properties):
            raise ValueError(
                "Cannot print attributes and properties with the same name "
                "in a single dictionary"
            )
        op_def = op.get_irdl_definition()
        dictionary = op.attributes | {
            k: v for k, v in op.properties.items() if k in self.expected_properties
        }
        defs = {
            x: op_def.properties[x] for x in self.expected_properties
        } | op_def.attributes

        reserved_or_default = self.reserved_attr_names.union(
            name
            for name, d in defs.items()
            if d.default_value is not None and dictionary.get(name) == d.default_value
        )

        printed = printer.print_op_attributes(
            dictionary,
            reserved_attr_names=reserved_or_default,
            print_keyword=self.with_keyword,
        )

        if printed:
            state.last_was_punctuation = False
            state.should_emit_space = True

    def is_optional_like(self) -> bool:
        return True

with_keyword: bool instance-attribute

If this is set, the format starts with the attributes keyword.

reserved_attr_names: set[str] instance-attribute

The set of attributes that should not be printed. These attributes are printed in other places in the format, and thus would be printed twice otherwise.

expected_properties: set[str] instance-attribute

Properties that should be printed and parsed as part of this attr-dict. This is used to keep compatibility with MLIR which allows that.

__init__(with_keyword: bool, reserved_attr_names: set[str], expected_properties: set[str]) -> None

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
def parse(self, parser: Parser, state: ParsingState) -> bool:
    if self.with_keyword:
        res = parser.parse_optional_attr_dict_with_keyword()
        if res is None:
            res = {}
        else:
            res = dict(res.data)
    else:
        res = parser.parse_optional_attr_dict()
    defined_reserved_keys = self.reserved_attr_names & res.keys()
    if defined_reserved_keys:
        parser.raise_error(
            f"attributes {', '.join(defined_reserved_keys)} are defined in other parts of the "
            "assembly format, and thus should not be defined in the attribute "
            "dictionary."
        )

    props = tuple(k for k in res.keys() if k in self.expected_properties)
    for name in props:
        state.properties[name] = res.pop(name)
    state.attributes |= res
    return bool(res) or bool(props)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    if not op.attributes.keys().isdisjoint(self.expected_properties):
        raise ValueError(
            "Cannot print attributes and properties with the same name "
            "in a single dictionary"
        )
    op_def = op.get_irdl_definition()
    dictionary = op.attributes | {
        k: v for k, v in op.properties.items() if k in self.expected_properties
    }
    defs = {
        x: op_def.properties[x] for x in self.expected_properties
    } | op_def.attributes

    reserved_or_default = self.reserved_attr_names.union(
        name
        for name, d in defs.items()
        if d.default_value is not None and dictionary.get(name) == d.default_value
    )

    printed = printer.print_op_attributes(
        dictionary,
        reserved_attr_names=reserved_or_default,
        print_keyword=self.with_keyword,
    )

    if printed:
        state.last_was_punctuation = False
        state.should_emit_space = True

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
539
540
def is_optional_like(self) -> bool:
    return True

OperandDirective dataclass

Bases: FormatDirective, TypeableDirective, ABC

Base class for operand directives to aid typechecking.

Source code in xdsl/irdl/declarative_assembly_format.py
543
544
545
546
547
548
class OperandDirective(FormatDirective, TypeableDirective, ABC):
    """
    Base class for operand directives to aid typechecking.
    """

    pass

OperandVariable dataclass

Bases: VariableDirective, OperandDirective

An operand variable, with the following format: operand-directive ::= dollar-ident The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
@dataclass(frozen=True)
class OperandVariable(VariableDirective, OperandDirective):
    """
    An operand variable, with the following format:
      operand-directive ::= dollar-ident
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, operand: UnresolvedOperand):
        state.operands[self.index] = (operand,)

    def set_types(self, state: ParsingState, types: Sequence[Attribute]):
        state.operand_types[self.index] = types

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        operand = parser.parse_unresolved_operand()
        self.set(state, operand)
        return True

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        self.set_types(state, (parser.parse_type(),))
        return True

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        self.parse_types(parser, state)

    def get(self, op: IRDLOperation) -> SSAValue:
        return getattr(op, self.name)

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        return (self.get(op).type,)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        state.print_whitespace(printer)
        printer.print_ssa_value(self.get(op))

__init__(name: str, index: int) -> None

set(state: ParsingState, operand: UnresolvedOperand)

Source code in xdsl/irdl/declarative_assembly_format.py
559
560
def set(self, state: ParsingState, operand: UnresolvedOperand):
    state.operands[self.index] = (operand,)

set_types(state: ParsingState, types: Sequence[Attribute])

Source code in xdsl/irdl/declarative_assembly_format.py
562
563
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.operand_types[self.index] = types

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
565
566
567
568
def parse(self, parser: Parser, state: ParsingState) -> bool:
    operand = parser.parse_unresolved_operand()
    self.set(state, operand)
    return True

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
570
571
572
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    self.set_types(state, (parser.parse_type(),))
    return True

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
574
575
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    self.parse_types(parser, state)

get(op: IRDLOperation) -> SSAValue

Source code in xdsl/irdl/declarative_assembly_format.py
577
578
def get(self, op: IRDLOperation) -> SSAValue:
    return getattr(op, self.name)

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
580
581
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    return (self.get(op).type,)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
583
584
585
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    state.print_whitespace(printer)
    printer.print_ssa_value(self.get(op))

VariadicOperandVariable dataclass

Bases: VariadicVariable, OperandDirective

A variadic operand variable, with the following format: operand-directive ::= ( percent-ident ( , percent-id )* )? The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
@dataclass(frozen=True)
class VariadicOperandVariable(VariadicVariable, OperandDirective):
    """
    A variadic operand variable, with the following format:
      operand-directive ::= ( percent-ident ( `,` percent-id )* )?
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, operands: Sequence[UnresolvedOperand]):
        state.operands[self.index] = operands

    def set_types(self, state: ParsingState, types: Sequence[Attribute]):
        state.operand_types[self.index] = types

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        operands = parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_unresolved_operand, parser.parse_unresolved_operand
        )
        if operands is None:
            operands = []
        self.set(state, operands)
        return bool(operands)

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        types = parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_type, parser.parse_type
        )
        ret = types is None
        if ret:
            types = ()
        self.set_types(state, types)
        return ret

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        state.operand_types[self.index] = (parser.parse_type(),)

    def get(self, op: IRDLOperation) -> VarOperand:
        return getattr(op, self.name)

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        return self.get(op).types

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        operand = self.get(op)
        if not operand:
            return
        state.print_whitespace(printer)
        printer.print_list(operand, printer.print_ssa_value)

    def set_empty(self, state: ParsingState):
        self.set(state, ())

__init__(name: str, index: int) -> None

set(state: ParsingState, operands: Sequence[UnresolvedOperand])

Source code in xdsl/irdl/declarative_assembly_format.py
596
597
def set(self, state: ParsingState, operands: Sequence[UnresolvedOperand]):
    state.operands[self.index] = operands

set_types(state: ParsingState, types: Sequence[Attribute])

Source code in xdsl/irdl/declarative_assembly_format.py
599
600
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.operand_types[self.index] = types

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
602
603
604
605
606
607
608
609
def parse(self, parser: Parser, state: ParsingState) -> bool:
    operands = parser.parse_optional_undelimited_comma_separated_list(
        parser.parse_optional_unresolved_operand, parser.parse_unresolved_operand
    )
    if operands is None:
        operands = []
    self.set(state, operands)
    return bool(operands)

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
611
612
613
614
615
616
617
618
619
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    types = parser.parse_optional_undelimited_comma_separated_list(
        parser.parse_optional_type, parser.parse_type
    )
    ret = types is None
    if ret:
        types = ()
    self.set_types(state, types)
    return ret

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
621
622
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    state.operand_types[self.index] = (parser.parse_type(),)

get(op: IRDLOperation) -> VarOperand

Source code in xdsl/irdl/declarative_assembly_format.py
624
625
def get(self, op: IRDLOperation) -> VarOperand:
    return getattr(op, self.name)

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
627
628
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    return self.get(op).types

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
630
631
632
633
634
635
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    operand = self.get(op)
    if not operand:
        return
    state.print_whitespace(printer)
    printer.print_list(operand, printer.print_ssa_value)

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
637
638
def set_empty(self, state: ParsingState):
    self.set(state, ())

OptionalOperandVariable dataclass

Bases: OptionalVariable, OperandDirective

An optional operand variable, with the following format: operand-directive ::= ( percent-ident )? The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
class OptionalOperandVariable(OptionalVariable, OperandDirective):
    """
    An optional operand variable, with the following format:
      operand-directive ::= ( percent-ident )?
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, operand: UnresolvedOperand | None):
        state.operands[self.index] = () if operand is None else (operand,)

    def set_types(self, state: ParsingState, types: Sequence[Attribute]):
        state.operand_types[self.index] = types

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        operand = parser.parse_optional_unresolved_operand()
        self.set(state, operand)
        return bool(operand)

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        type = parser.parse_optional_type()
        self.set_types(state, () if type is None else (type,))
        return type is None

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        self.set_types(state, (parser.parse_type(),))

    def get(self, op: IRDLOperation) -> SSAValue | None:
        return getattr(op, self.name)

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        operand = self.get(op)
        if operand:
            return (operand.type,)
        return ()

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        operand = self.get(op)
        if not operand:
            return
        state.print_whitespace(printer)
        printer.print_ssa_value(operand)

    def set_empty(self, state: ParsingState):
        self.set(state, None)

set(state: ParsingState, operand: UnresolvedOperand | None)

Source code in xdsl/irdl/declarative_assembly_format.py
648
649
def set(self, state: ParsingState, operand: UnresolvedOperand | None):
    state.operands[self.index] = () if operand is None else (operand,)

set_types(state: ParsingState, types: Sequence[Attribute])

Source code in xdsl/irdl/declarative_assembly_format.py
651
652
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.operand_types[self.index] = types

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
654
655
656
657
def parse(self, parser: Parser, state: ParsingState) -> bool:
    operand = parser.parse_optional_unresolved_operand()
    self.set(state, operand)
    return bool(operand)

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
659
660
661
662
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    type = parser.parse_optional_type()
    self.set_types(state, () if type is None else (type,))
    return type is None

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
664
665
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    self.set_types(state, (parser.parse_type(),))

get(op: IRDLOperation) -> SSAValue | None

Source code in xdsl/irdl/declarative_assembly_format.py
667
668
def get(self, op: IRDLOperation) -> SSAValue | None:
    return getattr(op, self.name)

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
670
671
672
673
674
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    operand = self.get(op)
    if operand:
        return (operand.type,)
    return ()

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
676
677
678
679
680
681
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    operand = self.get(op)
    if not operand:
        return
    state.print_whitespace(printer)
    printer.print_ssa_value(operand)

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
683
684
def set_empty(self, state: ParsingState):
    self.set(state, None)

OperandsOrResultDirective dataclass

Bases: TypeableDirective, ABC

Base class for the 'operands' and 'results' directives.

Source code in xdsl/irdl/declarative_assembly_format.py
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
@dataclass(frozen=True)
class OperandsOrResultDirective(TypeableDirective, ABC):
    """
    Base class for the 'operands' and 'results' directives.
    """

    def is_variadic_like(self) -> bool:
        return True

    def is_anchorable(self) -> bool:
        return True

    def _set_using_variadic_index(
        self,
        op_type: type[IRDLOperation],
        field: list[None | Sequence[_T]],
        construct: VarIRConstruct,
        field_name: str,
        set_to: Sequence[_T],
    ) -> None:
        op_def = op_type.get_irdl_definition()
        verify_variadic_same_size(len(set_to), op_def, construct, field_name)

        for i, (name, _) in enumerate(get_construct_defs(op_def, construct)):
            accessor = op_type.__dict__[name]
            assert isinstance(accessor, BaseAccessor)
            res = accessor.index(set_to)
            if res is None:
                res = ()
            if not isinstance(res, Sequence):
                res = (res,)
            field[i] = res

__init__() -> None

is_variadic_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
696
697
def is_variadic_like(self) -> bool:
    return True

is_anchorable() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
699
700
def is_anchorable(self) -> bool:
    return True

OperandsDirective dataclass

Bases: OperandsOrResultDirective, FormatDirective

An operands directive, with the following format: operands-directive ::= operands Prints each operand of the operation, inserting a comma between each.

Source code in xdsl/irdl/declarative_assembly_format.py
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
class OperandsDirective(OperandsOrResultDirective, FormatDirective):
    """
    An operands directive, with the following format:
      operands-directive ::= operands
    Prints each operand of the operation, inserting a comma between each.
    """

    def set_types(self, state: ParsingState, types: Sequence[Attribute]) -> None:
        self._set_using_variadic_index(
            state.op_type,
            state.operand_types,
            VarIRConstruct.OPERAND,
            "operand type",
            types,
        )

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        pos_start = parser.pos
        operands = (
            parser.parse_optional_undelimited_comma_separated_list(
                parser.parse_optional_unresolved_operand,
                parser.parse_unresolved_operand,
            )
            or []
        )

        try:
            self._set_using_variadic_index(
                state.op_type,
                state.operands,
                VarIRConstruct.OPERAND,
                "operand",
                operands,
            )
        except VerifyException as e:
            parser.raise_error(str(e), at_position=pos_start, end_position=parser.pos)
        return bool(operands)

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        pos_start = parser.pos
        types = (
            parser.parse_optional_undelimited_comma_separated_list(
                parser.parse_optional_type, parser.parse_type
            )
            or []
        )

        try:
            self.set_types(state, types)
        except VerifyException as e:
            parser.raise_error(str(e), at_position=pos_start, end_position=parser.pos)
        return bool(types)

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        pos_start = parser.pos
        if s := self.set_types(state, (parser.parse_type(),)):
            parser.raise_error(s, at_position=pos_start, end_position=parser.pos)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        if op.operands:
            state.print_whitespace(printer)
        printer.print_list(op.operands, printer.print_ssa_value)

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        return op.operand_types

    def set_empty(self, state: ParsingState):
        state.operands = [() for _ in state.operands]

    def is_present(self, op: IRDLOperation) -> bool:
        return bool(op.operands)

set_types(state: ParsingState, types: Sequence[Attribute]) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
731
732
733
734
735
736
737
738
def set_types(self, state: ParsingState, types: Sequence[Attribute]) -> None:
    self._set_using_variadic_index(
        state.op_type,
        state.operand_types,
        VarIRConstruct.OPERAND,
        "operand type",
        types,
    )

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
def parse(self, parser: Parser, state: ParsingState) -> bool:
    pos_start = parser.pos
    operands = (
        parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_unresolved_operand,
            parser.parse_unresolved_operand,
        )
        or []
    )

    try:
        self._set_using_variadic_index(
            state.op_type,
            state.operands,
            VarIRConstruct.OPERAND,
            "operand",
            operands,
        )
    except VerifyException as e:
        parser.raise_error(str(e), at_position=pos_start, end_position=parser.pos)
    return bool(operands)

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
762
763
764
765
766
767
768
769
770
771
772
773
774
775
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    pos_start = parser.pos
    types = (
        parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_type, parser.parse_type
        )
        or []
    )

    try:
        self.set_types(state, types)
    except VerifyException as e:
        parser.raise_error(str(e), at_position=pos_start, end_position=parser.pos)
    return bool(types)

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
777
778
779
780
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    pos_start = parser.pos
    if s := self.set_types(state, (parser.parse_type(),)):
        parser.raise_error(s, at_position=pos_start, end_position=parser.pos)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
782
783
784
785
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    if op.operands:
        state.print_whitespace(printer)
    printer.print_list(op.operands, printer.print_ssa_value)

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
787
788
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    return op.operand_types

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
790
791
def set_empty(self, state: ParsingState):
    state.operands = [() for _ in state.operands]

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
793
794
def is_present(self, op: IRDLOperation) -> bool:
    return bool(op.operands)

ResultVariable dataclass

Bases: VariableDirective, TypeableDirective

An result variable, with the following format: result-directive ::= dollar-ident This directive can not be used for parsing and printing directly, as result parsing is not handled by the custom operation parser.

Source code in xdsl/irdl/declarative_assembly_format.py
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
@dataclass(frozen=True)
class ResultVariable(VariableDirective, TypeableDirective):
    """
    An result variable, with the following format:
      result-directive ::= dollar-ident
    This directive can not be used for parsing and printing directly, as result
    parsing is not handled by the custom operation parser.
    """

    def set_types(self, state: ParsingState, types: Sequence[Attribute]):
        state.result_types[self.index] = types

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        self.set_types(state, (parser.parse_type(),))
        return True

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        self.parse_types(parser, state)

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        return (getattr(op, self.name).type,)

__init__(name: str, index: int) -> None

set_types(state: ParsingState, types: Sequence[Attribute])

Source code in xdsl/irdl/declarative_assembly_format.py
806
807
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.result_types[self.index] = types

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
809
810
811
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    self.set_types(state, (parser.parse_type(),))
    return True

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
813
814
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    self.parse_types(parser, state)

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
816
817
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    return (getattr(op, self.name).type,)

VariadicResultVariable dataclass

Bases: VariadicVariable, TypeableDirective

A variadic result variable, with the following format: result-directive ::= percent-ident (( , percent-id )* )? This directive can not be used for parsing and printing directly, as result parsing is not handled by the custom operation parser.

Source code in xdsl/irdl/declarative_assembly_format.py
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
@dataclass(frozen=True)
class VariadicResultVariable(VariadicVariable, TypeableDirective):
    """
    A variadic result variable, with the following format:
      result-directive ::= percent-ident (( `,` percent-id )* )?
    This directive can not be used for parsing and printing directly, as result
    parsing is not handled by the custom operation parser.
    """

    def set_types(self, state: ParsingState, types: Sequence[Attribute]):
        state.result_types[self.index] = types

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        types = parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_type, parser.parse_type
        )
        self.set_types(state, () if types is None else types)
        return types is None

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        state.result_types[self.index] = (parser.parse_type(),)

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        return getattr(op, self.name).types

__init__(name: str, index: int) -> None

set_types(state: ParsingState, types: Sequence[Attribute])

Source code in xdsl/irdl/declarative_assembly_format.py
829
830
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.result_types[self.index] = types

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
832
833
834
835
836
837
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    types = parser.parse_optional_undelimited_comma_separated_list(
        parser.parse_optional_type, parser.parse_type
    )
    self.set_types(state, () if types is None else types)
    return types is None

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
839
840
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    state.result_types[self.index] = (parser.parse_type(),)

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
842
843
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    return getattr(op, self.name).types

OptionalResultVariable dataclass

Bases: OptionalVariable, TypeableDirective

An optional result variable, with the following format: result-directive ::= ( percent-ident )? This directive can not be used for parsing and printing directly, as result parsing is not handled by the custom operation parser.

Source code in xdsl/irdl/declarative_assembly_format.py
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
class OptionalResultVariable(OptionalVariable, TypeableDirective):
    """
    An optional result variable, with the following format:
      result-directive ::= ( percent-ident )?
    This directive can not be used for parsing and printing directly, as result
    parsing is not handled by the custom operation parser.
    """

    def set_types(self, state: ParsingState, types: Sequence[Attribute]):
        state.result_types[self.index] = types

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        type = parser.parse_optional_type()
        self.set_types(state, () if type is None else (type,))
        return type is not None

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        self.set_types(state, (parser.parse_type(),))

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        res = getattr(op, self.name)
        if res:
            return (res.type,)
        return ()

set_types(state: ParsingState, types: Sequence[Attribute])

Source code in xdsl/irdl/declarative_assembly_format.py
854
855
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.result_types[self.index] = types

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
857
858
859
860
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    type = parser.parse_optional_type()
    self.set_types(state, () if type is None else (type,))
    return type is not None

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
862
863
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    self.set_types(state, (parser.parse_type(),))

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
865
866
867
868
869
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    res = getattr(op, self.name)
    if res:
        return (res.type,)
    return ()

ResultsDirective dataclass

Bases: OperandsOrResultDirective

A results directive, with the following format: results-directive ::= results A typeable directive which processes the result types of the operation.

Source code in xdsl/irdl/declarative_assembly_format.py
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
class ResultsDirective(OperandsOrResultDirective):
    """
    A results directive, with the following format:
      results-directive ::= results
    A typeable directive which processes the result types of the operation.
    """

    def set_types(self, state: ParsingState, types: Sequence[Attribute]) -> None:
        self._set_using_variadic_index(
            state.op_type,
            state.result_types,
            VarIRConstruct.RESULT,
            "result type",
            types,
        )

    def parse_types(self, parser: Parser, state: ParsingState) -> bool:
        pos_start = parser.pos
        types = (
            parser.parse_optional_undelimited_comma_separated_list(
                parser.parse_optional_type, parser.parse_type
            )
            or []
        )

        try:
            self.set_types(state, types)
        except VerifyException as e:
            parser.raise_error(str(e), at_position=pos_start, end_position=parser.pos)
        return bool(types)

    def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
        pos_start = parser.pos
        if s := self.set_types(state, (parser.parse_type(),)):
            parser.raise_error(s, at_position=pos_start, end_position=parser.pos)

    def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
        return op.result_types

    def is_present(self, op: IRDLOperation) -> bool:
        return bool(op.results)

set_types(state: ParsingState, types: Sequence[Attribute]) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
879
880
881
882
883
884
885
886
def set_types(self, state: ParsingState, types: Sequence[Attribute]) -> None:
    self._set_using_variadic_index(
        state.op_type,
        state.result_types,
        VarIRConstruct.RESULT,
        "result type",
        types,
    )

parse_types(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
888
889
890
891
892
893
894
895
896
897
898
899
900
901
def parse_types(self, parser: Parser, state: ParsingState) -> bool:
    pos_start = parser.pos
    types = (
        parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_type, parser.parse_type
        )
        or []
    )

    try:
        self.set_types(state, types)
    except VerifyException as e:
        parser.raise_error(str(e), at_position=pos_start, end_position=parser.pos)
    return bool(types)

parse_single_type(parser: Parser, state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
903
904
905
906
def parse_single_type(self, parser: Parser, state: ParsingState) -> None:
    pos_start = parser.pos
    if s := self.set_types(state, (parser.parse_type(),)):
        parser.raise_error(s, at_position=pos_start, end_position=parser.pos)

get_types(op: IRDLOperation) -> Sequence[Attribute]

Source code in xdsl/irdl/declarative_assembly_format.py
908
909
def get_types(self, op: IRDLOperation) -> Sequence[Attribute]:
    return op.result_types

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
911
912
def is_present(self, op: IRDLOperation) -> bool:
    return bool(op.results)

FunctionalTypeDirective dataclass

Bases: FormatDirective

A directive which parses a functional type, with format: functional-type-directive ::= functional-type(typeable-directive, typeable-directive) A functional type is either of the form ( type-list ) -> ( type-list ) or ( type-list ) -> type where type-list is a comma separated list of types (or the empty string to signify the empty list). The second format is preferred for printing when possible.

Source code in xdsl/irdl/declarative_assembly_format.py
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
@dataclass(frozen=True)
class FunctionalTypeDirective(FormatDirective):
    """
    A directive which parses a functional type, with format:
      functional-type-directive ::= functional-type(typeable-directive, typeable-directive)
    A functional type is either of the form
      `(` type-list `)` `->` `(` type-list `)`
    or
      `(` type-list `)` `->` type
    where type-list is a comma separated list of types (or the empty string to signify the empty list).
    The second format is preferred for printing when possible.
    """

    operand_typeable_directive: TypeableDirective
    result_typeable_directive: TypeableDirective

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        if not parser.parse_optional_punctuation("("):
            return False
        self.operand_typeable_directive.parse_types(parser, state)
        parser.parse_punctuation(")")
        parser.parse_punctuation("->")
        if parser.parse_optional_punctuation("("):
            self.result_typeable_directive.parse_types(parser, state)
            parser.parse_punctuation(")")
        else:
            self.result_typeable_directive.parse_single_type(parser, state)
        return True

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        state.print_whitespace(printer)
        with printer.in_parens():
            printer.print_list(
                self.operand_typeable_directive.get_types(op), printer.print_attribute
            )
        printer.print_string(" -> ")
        result_types = self.result_typeable_directive.get_types(op)
        if len(result_types) == 1:
            printer.print_attribute(result_types[0])
        else:
            with printer.in_parens():
                printer.print_list(result_types, printer.print_attribute)

operand_typeable_directive: TypeableDirective instance-attribute

result_typeable_directive: TypeableDirective instance-attribute

__init__(operand_typeable_directive: TypeableDirective, result_typeable_directive: TypeableDirective) -> None

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
931
932
933
934
935
936
937
938
939
940
941
942
def parse(self, parser: Parser, state: ParsingState) -> bool:
    if not parser.parse_optional_punctuation("("):
        return False
    self.operand_typeable_directive.parse_types(parser, state)
    parser.parse_punctuation(")")
    parser.parse_punctuation("->")
    if parser.parse_optional_punctuation("("):
        self.result_typeable_directive.parse_types(parser, state)
        parser.parse_punctuation(")")
    else:
        self.result_typeable_directive.parse_single_type(parser, state)
    return True

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
944
945
946
947
948
949
950
951
952
953
954
955
956
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    state.print_whitespace(printer)
    with printer.in_parens():
        printer.print_list(
            self.operand_typeable_directive.get_types(op), printer.print_attribute
        )
    printer.print_string(" -> ")
    result_types = self.result_typeable_directive.get_types(op)
    if len(result_types) == 1:
        printer.print_attribute(result_types[0])
    else:
        with printer.in_parens():
            printer.print_list(result_types, printer.print_attribute)

RegionDirective dataclass

Bases: FormatDirective, ABC

Baseclass to help keep typechecking simple.

Source code in xdsl/irdl/declarative_assembly_format.py
959
960
961
962
class RegionDirective(FormatDirective, ABC):
    """
    Baseclass to help keep typechecking simple.
    """

RegionVariable dataclass

Bases: RegionDirective, VariableDirective

A region variable, with the following format: region-directive ::= dollar-ident The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
@dataclass(frozen=True)
class RegionVariable(RegionDirective, VariableDirective):
    """
    A region variable, with the following format:
      region-directive ::= dollar-ident
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, region: Region):
        state.regions[self.index] = (region,)

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        self.set(state, parser.parse_region())
        return True

    def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
        region = parser.parse_optional_region()
        res = region is None
        if res:
            region = Region()
        self.set(state, region)
        return res

    def get(self, op: IRDLOperation) -> Region:
        return getattr(op, self.name)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        state.print_whitespace(printer)
        printer.print_region(self.get(op))

    def is_anchorable(self) -> bool:
        return True

    def set_empty(self, state: ParsingState):
        self.set(state, Region())

    def is_present(self, op: IRDLOperation) -> bool:
        return bool(self.get(op).blocks)

    def is_optional_like(self) -> bool:
        return True

__init__(name: str, index: int) -> None

set(state: ParsingState, region: Region)

Source code in xdsl/irdl/declarative_assembly_format.py
973
974
def set(self, state: ParsingState, region: Region):
    state.regions[self.index] = (region,)

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
976
977
978
def parse(self, parser: Parser, state: ParsingState) -> bool:
    self.set(state, parser.parse_region())
    return True

parse_optional(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
980
981
982
983
984
985
986
def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
    region = parser.parse_optional_region()
    res = region is None
    if res:
        region = Region()
    self.set(state, region)
    return res

get(op: IRDLOperation) -> Region

Source code in xdsl/irdl/declarative_assembly_format.py
988
989
def get(self, op: IRDLOperation) -> Region:
    return getattr(op, self.name)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
991
992
993
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    state.print_whitespace(printer)
    printer.print_region(self.get(op))

is_anchorable() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
995
996
def is_anchorable(self) -> bool:
    return True

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
998
999
def set_empty(self, state: ParsingState):
    self.set(state, Region())

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1001
1002
def is_present(self, op: IRDLOperation) -> bool:
    return bool(self.get(op).blocks)

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1004
1005
def is_optional_like(self) -> bool:
    return True

VariadicRegionVariable dataclass

Bases: RegionDirective, VariadicVariable

A variadic region variable, with the following format: region-directive ::= dollar-ident

The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
@dataclass(frozen=True)
class VariadicRegionVariable(RegionDirective, VariadicVariable):
    """
    A variadic region variable, with the following format:
      region-directive ::= dollar-ident

    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, region: Sequence[Region]):
        state.regions[self.index] = region

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        regions: list[Region] = []
        current_region = parser.parse_optional_region()
        while current_region is not None:
            regions.append(current_region)
            current_region = parser.parse_optional_region()

        self.set(state, regions)
        return bool(regions)

    def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
        return self.parse(parser, state)

    def get(self, op: IRDLOperation) -> Sequence[Region]:
        return getattr(op, self.name)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        region = self.get(op)
        if not region:
            return
        state.print_whitespace(printer)
        printer.print_list(region, printer.print_region, delimiter=" ")

    def set_empty(self, state: ParsingState):
        self.set(state, ())

__init__(name: str, index: int) -> None

set(state: ParsingState, region: Sequence[Region])

Source code in xdsl/irdl/declarative_assembly_format.py
1017
1018
def set(self, state: ParsingState, region: Sequence[Region]):
    state.regions[self.index] = region

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1020
1021
1022
1023
1024
1025
1026
1027
1028
def parse(self, parser: Parser, state: ParsingState) -> bool:
    regions: list[Region] = []
    current_region = parser.parse_optional_region()
    while current_region is not None:
        regions.append(current_region)
        current_region = parser.parse_optional_region()

    self.set(state, regions)
    return bool(regions)

parse_optional(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1030
1031
def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
    return self.parse(parser, state)

get(op: IRDLOperation) -> Sequence[Region]

Source code in xdsl/irdl/declarative_assembly_format.py
1033
1034
def get(self, op: IRDLOperation) -> Sequence[Region]:
    return getattr(op, self.name)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1036
1037
1038
1039
1040
1041
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    region = self.get(op)
    if not region:
        return
    state.print_whitespace(printer)
    printer.print_list(region, printer.print_region, delimiter=" ")

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1043
1044
def set_empty(self, state: ParsingState):
    self.set(state, ())

OptionalRegionVariable dataclass

Bases: RegionDirective, OptionalVariable

An optional region variable, with the following format: region-directive ::= dollar-ident The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
class OptionalRegionVariable(RegionDirective, OptionalVariable):
    """
    An optional region variable, with the following format:
      region-directive ::= dollar-ident
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, region: Region | None):
        state.regions[self.index] = () if region is None else (region,)

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        region = parser.parse_optional_region()
        self.set(state, region)
        return region is not None

    def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
        return self.parse(parser, state)

    def get(self, op: IRDLOperation) -> Region | None:
        return getattr(op, self.name)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        region = self.get(op)
        if not region:
            return
        state.print_whitespace(printer)
        printer.print_region(region)

    def set_empty(self, state: ParsingState):
        self.set(state, None)

set(state: ParsingState, region: Region | None)

Source code in xdsl/irdl/declarative_assembly_format.py
1054
1055
def set(self, state: ParsingState, region: Region | None):
    state.regions[self.index] = () if region is None else (region,)

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1057
1058
1059
1060
def parse(self, parser: Parser, state: ParsingState) -> bool:
    region = parser.parse_optional_region()
    self.set(state, region)
    return region is not None

parse_optional(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1062
1063
def parse_optional(self, parser: Parser, state: ParsingState) -> bool:
    return self.parse(parser, state)

get(op: IRDLOperation) -> Region | None

Source code in xdsl/irdl/declarative_assembly_format.py
1065
1066
def get(self, op: IRDLOperation) -> Region | None:
    return getattr(op, self.name)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1068
1069
1070
1071
1072
1073
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    region = self.get(op)
    if not region:
        return
    state.print_whitespace(printer)
    printer.print_region(region)

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1075
1076
def set_empty(self, state: ParsingState):
    self.set(state, None)

SuccessorDirective dataclass

Bases: FormatDirective, ABC

Base class for type checking. A variadic successor directive cannot follow another variadic successor directive.

Source code in xdsl/irdl/declarative_assembly_format.py
1079
1080
1081
1082
1083
class SuccessorDirective(FormatDirective, ABC):
    """
    Base class for type checking.
    A variadic successor directive cannot follow another variadic successor directive.
    """

SuccessorVariable dataclass

Bases: VariableDirective, SuccessorDirective

A successor variable, with the following format: successor-directive ::= dollar-ident The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
class SuccessorVariable(VariableDirective, SuccessorDirective):
    """
    A successor variable, with the following format:
      successor-directive ::= dollar-ident
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, successor: Successor):
        state.successors[self.index] = (successor,)

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        successor = parser.parse_successor()

        self.set(state, successor)

        return True

    def get(self, op: IRDLOperation) -> Successor:
        return getattr(op, self.name)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        state.print_whitespace(printer)
        printer.print_block_name(self.get(op))

set(state: ParsingState, successor: Successor)

Source code in xdsl/irdl/declarative_assembly_format.py
1093
1094
def set(self, state: ParsingState, successor: Successor):
    state.successors[self.index] = (successor,)

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1096
1097
1098
1099
1100
1101
def parse(self, parser: Parser, state: ParsingState) -> bool:
    successor = parser.parse_successor()

    self.set(state, successor)

    return True

get(op: IRDLOperation) -> Successor

Source code in xdsl/irdl/declarative_assembly_format.py
1103
1104
def get(self, op: IRDLOperation) -> Successor:
    return getattr(op, self.name)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1106
1107
1108
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    state.print_whitespace(printer)
    printer.print_block_name(self.get(op))

VariadicSuccessorVariable dataclass

Bases: VariadicVariable, SuccessorDirective

A variadic successor variable, with the following format: successor-directive ::= dollar-ident The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
class VariadicSuccessorVariable(VariadicVariable, SuccessorDirective):
    """
    A variadic successor variable, with the following format:
      successor-directive ::= dollar-ident
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, successors: Sequence[Successor]):
        state.successors[self.index] = successors

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        successors = (
            parser.parse_optional_undelimited_comma_separated_list(
                parser.parse_optional_successor, parser.parse_successor
            )
            or []
        )

        self.set(state, successors)

        return bool(successors)

    def get(self, op: IRDLOperation) -> Sequence[Successor]:
        return getattr(op, self.name)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        successor = self.get(op)
        if not successor:
            return
        state.print_whitespace(printer)
        printer.print_list(successor, printer.print_block_name)

    def set_empty(self, state: ParsingState):
        self.set(state, ())

set(state: ParsingState, successors: Sequence[Successor])

Source code in xdsl/irdl/declarative_assembly_format.py
1118
1119
def set(self, state: ParsingState, successors: Sequence[Successor]):
    state.successors[self.index] = successors

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
def parse(self, parser: Parser, state: ParsingState) -> bool:
    successors = (
        parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_successor, parser.parse_successor
        )
        or []
    )

    self.set(state, successors)

    return bool(successors)

get(op: IRDLOperation) -> Sequence[Successor]

Source code in xdsl/irdl/declarative_assembly_format.py
1133
1134
def get(self, op: IRDLOperation) -> Sequence[Successor]:
    return getattr(op, self.name)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1136
1137
1138
1139
1140
1141
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    successor = self.get(op)
    if not successor:
        return
    state.print_whitespace(printer)
    printer.print_list(successor, printer.print_block_name)

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1143
1144
def set_empty(self, state: ParsingState):
    self.set(state, ())

OptionalSuccessorVariable dataclass

Bases: OptionalVariable, SuccessorDirective

An optional successor variable, with the following format: successor-directive ::= dollar-ident The directive will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
class OptionalSuccessorVariable(OptionalVariable, SuccessorDirective):
    """
    An optional successor variable, with the following format:
      successor-directive ::= dollar-ident
    The directive will request a space to be printed after.
    """

    def set(self, state: ParsingState, successor: Successor | None):
        state.successors[self.index] = () if successor is None else (successor,)

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        successor = parser.parse_optional_successor()
        self.set(state, successor)
        return successor is not None

    def get(self, op: IRDLOperation) -> Successor | None:
        return getattr(op, self.name)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        successor = self.get(op)
        if not successor:
            return
        state.print_whitespace(printer)
        printer.print_block_name(successor)

    def set_empty(self, state: ParsingState):
        self.set(state, None)

set(state: ParsingState, successor: Successor | None)

Source code in xdsl/irdl/declarative_assembly_format.py
1154
1155
def set(self, state: ParsingState, successor: Successor | None):
    state.successors[self.index] = () if successor is None else (successor,)

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1157
1158
1159
1160
def parse(self, parser: Parser, state: ParsingState) -> bool:
    successor = parser.parse_optional_successor()
    self.set(state, successor)
    return successor is not None

get(op: IRDLOperation) -> Successor | None

Source code in xdsl/irdl/declarative_assembly_format.py
1162
1163
def get(self, op: IRDLOperation) -> Successor | None:
    return getattr(op, self.name)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1165
1166
1167
1168
1169
1170
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    successor = self.get(op)
    if not successor:
        return
    state.print_whitespace(printer)
    printer.print_block_name(successor)

set_empty(state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1172
1173
def set_empty(self, state: ParsingState):
    self.set(state, None)

AttributeVariable dataclass

Bases: FormatDirective

An attribute variable, with the following format: attribute-variable ::= dollar-ident The directive will request a space to be printed right after.

Source code in xdsl/irdl/declarative_assembly_format.py
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
@dataclass(frozen=True)
class AttributeVariable(FormatDirective):
    """
    An attribute variable, with the following format:
      attribute-variable ::= dollar-ident
    The directive will request a space to be printed right after.
    """

    name: str
    """The attribute name as it should be in the attribute or property dictionary."""
    is_property: bool
    """Should this attribute be put in the attribute or property dictionary."""
    is_optional: bool
    """Is this attribute optional in the operation definition."""
    default_value: Attribute | None

    def set(self, state: ParsingState, attr: Attribute):
        if self.is_property:
            state.properties[self.name] = attr
        else:
            state.attributes[self.name] = attr

    def parse_attr(self, parser: Parser) -> Attribute | None:
        if self.is_optional:
            return parser.parse_optional_attribute()
        else:
            return parser.parse_attribute()

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        attr = self.parse_attr(parser)
        if attr is None:
            return False
        self.set(state, attr)
        return True

    def get(self, op: IRDLOperation) -> Attribute | None:
        if self.is_property:
            return op.properties.get(self.name)
        else:
            return op.attributes.get(self.name)

    def print_attr(self, printer: Printer, attr: Attribute) -> None:
        return printer.print_attribute(attr)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        attr = self.get(op)

        if attr is None or attr == self.default_value:
            return

        state.print_whitespace(printer)

        self.print_attr(printer, attr)

    def is_present(self, op: IRDLOperation) -> bool:
        attr = self.get(op)
        return attr is not None and attr != self.default_value

    def is_anchorable(self) -> bool:
        return self.is_optional or self.default_value is not None

    def is_optional_like(self) -> bool:
        return self.is_optional

name: str instance-attribute

The attribute name as it should be in the attribute or property dictionary.

is_property: bool instance-attribute

Should this attribute be put in the attribute or property dictionary.

is_optional: bool instance-attribute

Is this attribute optional in the operation definition.

default_value: Attribute | None instance-attribute

__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None) -> None

set(state: ParsingState, attr: Attribute)

Source code in xdsl/irdl/declarative_assembly_format.py
1192
1193
1194
1195
1196
def set(self, state: ParsingState, attr: Attribute):
    if self.is_property:
        state.properties[self.name] = attr
    else:
        state.attributes[self.name] = attr

parse_attr(parser: Parser) -> Attribute | None

Source code in xdsl/irdl/declarative_assembly_format.py
1198
1199
1200
1201
1202
def parse_attr(self, parser: Parser) -> Attribute | None:
    if self.is_optional:
        return parser.parse_optional_attribute()
    else:
        return parser.parse_attribute()

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1204
1205
1206
1207
1208
1209
def parse(self, parser: Parser, state: ParsingState) -> bool:
    attr = self.parse_attr(parser)
    if attr is None:
        return False
    self.set(state, attr)
    return True

get(op: IRDLOperation) -> Attribute | None

Source code in xdsl/irdl/declarative_assembly_format.py
1211
1212
1213
1214
1215
def get(self, op: IRDLOperation) -> Attribute | None:
    if self.is_property:
        return op.properties.get(self.name)
    else:
        return op.attributes.get(self.name)

print_attr(printer: Printer, attr: Attribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1217
1218
def print_attr(self, printer: Printer, attr: Attribute) -> None:
    return printer.print_attribute(attr)

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1220
1221
1222
1223
1224
1225
1226
1227
1228
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    attr = self.get(op)

    if attr is None or attr == self.default_value:
        return

    state.print_whitespace(printer)

    self.print_attr(printer, attr)

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1230
1231
1232
def is_present(self, op: IRDLOperation) -> bool:
    attr = self.get(op)
    return attr is not None and attr != self.default_value

is_anchorable() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1234
1235
def is_anchorable(self) -> bool:
    return self.is_optional or self.default_value is not None

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1237
1238
def is_optional_like(self) -> bool:
    return self.is_optional

UniqueBaseAttributeVariable dataclass

Bases: AttributeVariable

Source code in xdsl/irdl/declarative_assembly_format.py
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
@dataclass(frozen=True)
class UniqueBaseAttributeVariable(AttributeVariable):
    unique_base: type[Attribute]
    """The known base class of the Attribute, if any."""

    def parse_attr(self, parser: Parser) -> Attribute | None:
        unique_base = self.unique_base

        if issubclass(unique_base, ParametrizedAttribute):
            return unique_base.new(unique_base.parse_parameters(parser))
        elif issubclass(unique_base, Data):
            unique_base = cast(type[Data[Any]], unique_base)
            return unique_base.new(unique_base.parse_parameter(parser))
        else:
            raise ValueError("Attributes must be Data or ParametrizedAttribute.")

    def print_attr(self, printer: Printer, attr: Attribute) -> None:
        if isinstance(attr, ParametrizedAttribute):
            return attr.print_parameters(printer)
        if isinstance(attr, Data):
            return attr.print_parameter(printer)
        raise ValueError("Attributes must be Data or ParametrizedAttribute!")

unique_base: type[Attribute] instance-attribute

The known base class of the Attribute, if any.

__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None, unique_base: type[Attribute]) -> None

parse_attr(parser: Parser) -> Attribute | None

Source code in xdsl/irdl/declarative_assembly_format.py
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
def parse_attr(self, parser: Parser) -> Attribute | None:
    unique_base = self.unique_base

    if issubclass(unique_base, ParametrizedAttribute):
        return unique_base.new(unique_base.parse_parameters(parser))
    elif issubclass(unique_base, Data):
        unique_base = cast(type[Data[Any]], unique_base)
        return unique_base.new(unique_base.parse_parameter(parser))
    else:
        raise ValueError("Attributes must be Data or ParametrizedAttribute.")

print_attr(printer: Printer, attr: Attribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1257
1258
1259
1260
1261
1262
def print_attr(self, printer: Printer, attr: Attribute) -> None:
    if isinstance(attr, ParametrizedAttribute):
        return attr.print_parameters(printer)
    if isinstance(attr, Data):
        return attr.print_parameter(printer)
    raise ValueError("Attributes must be Data or ParametrizedAttribute!")

TypedAttributeVariable dataclass

Bases: UniqueBaseAttributeVariable

Source code in xdsl/irdl/declarative_assembly_format.py
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
@dataclass(frozen=True)
class TypedAttributeVariable(UniqueBaseAttributeVariable):
    unique_type: Attribute
    """The known type of the Attribute, if any."""

    def parse_attr(self, parser: Parser) -> Attribute | None:
        unique_base = self.unique_base
        assert issubclass(unique_base, TypedAttribute)
        return unique_base.parse_with_type(parser, self.unique_type)

    def print_attr(self, printer: Printer, attr: Attribute) -> None:
        assert isinstance(attr, TypedAttribute)
        return attr.print_without_type(printer)

unique_type: Attribute instance-attribute

The known type of the Attribute, if any.

__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None, unique_base: type[Attribute], unique_type: Attribute) -> None

parse_attr(parser: Parser) -> Attribute | None

Source code in xdsl/irdl/declarative_assembly_format.py
1270
1271
1272
1273
def parse_attr(self, parser: Parser) -> Attribute | None:
    unique_base = self.unique_base
    assert issubclass(unique_base, TypedAttribute)
    return unique_base.parse_with_type(parser, self.unique_type)

print_attr(printer: Printer, attr: Attribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1275
1276
1277
def print_attr(self, printer: Printer, attr: Attribute) -> None:
    assert isinstance(attr, TypedAttribute)
    return attr.print_without_type(printer)

DenseArrayAttributeVariable dataclass

Bases: AttributeVariable

Source code in xdsl/irdl/declarative_assembly_format.py
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
@dataclass(frozen=True)
class DenseArrayAttributeVariable(AttributeVariable):
    elt_type: IntegerType | AnyFloat

    def parse_attr(self, parser: Parser) -> Attribute | None:
        if isinstance(self.elt_type, IntegerType):
            if self.is_optional:
                elements = parser.parse_optional_comma_separated_list(
                    parser.Delimiter.SQUARE, parser.parse_integer
                )
                if elements is None:
                    return None
            else:
                elements = parser.parse_comma_separated_list(
                    parser.Delimiter.SQUARE, parser.parse_integer
                )
            return DenseArrayBase(
                self.elt_type, BytesAttr(self.elt_type.pack(elements))
            )
        else:
            if self.is_optional:
                elements = parser.parse_optional_comma_separated_list(
                    parser.Delimiter.SQUARE, parser.parse_float
                )
                if elements is None:
                    return None
            else:
                elements = parser.parse_comma_separated_list(
                    parser.Delimiter.SQUARE, parser.parse_float
                )
            return DenseArrayBase(
                self.elt_type, BytesAttr(self.elt_type.pack(elements))
            )

    def print_attr(self, printer: Printer, attr: Attribute) -> None:
        with printer.in_square_brackets():
            if isa(attr, DenseArrayBase[IntegerType]):
                printer.print_list(attr.iter_values(), printer.print_int)
            elif isa(attr, DenseArrayBase[AnyFloat]):
                printer.print_list(
                    attr.iter_values(),
                    lambda value: printer.print_float(value, attr.elt_type),
                )

elt_type: IntegerType | AnyFloat instance-attribute

__init__(name: str, is_property: bool, is_optional: bool, default_value: Attribute | None, elt_type: IntegerType | AnyFloat) -> None

parse_attr(parser: Parser) -> Attribute | None

Source code in xdsl/irdl/declarative_assembly_format.py
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
def parse_attr(self, parser: Parser) -> Attribute | None:
    if isinstance(self.elt_type, IntegerType):
        if self.is_optional:
            elements = parser.parse_optional_comma_separated_list(
                parser.Delimiter.SQUARE, parser.parse_integer
            )
            if elements is None:
                return None
        else:
            elements = parser.parse_comma_separated_list(
                parser.Delimiter.SQUARE, parser.parse_integer
            )
        return DenseArrayBase(
            self.elt_type, BytesAttr(self.elt_type.pack(elements))
        )
    else:
        if self.is_optional:
            elements = parser.parse_optional_comma_separated_list(
                parser.Delimiter.SQUARE, parser.parse_float
            )
            if elements is None:
                return None
        else:
            elements = parser.parse_comma_separated_list(
                parser.Delimiter.SQUARE, parser.parse_float
            )
        return DenseArrayBase(
            self.elt_type, BytesAttr(self.elt_type.pack(elements))
        )

print_attr(printer: Printer, attr: Attribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1314
1315
1316
1317
1318
1319
1320
1321
1322
def print_attr(self, printer: Printer, attr: Attribute) -> None:
    with printer.in_square_brackets():
        if isa(attr, DenseArrayBase[IntegerType]):
            printer.print_list(attr.iter_values(), printer.print_int)
        elif isa(attr, DenseArrayBase[AnyFloat]):
            printer.print_list(
                attr.iter_values(),
                lambda value: printer.print_float(value, attr.elt_type),
            )

SymbolNameAttributeVariable dataclass

Bases: AttributeVariable

Source code in xdsl/irdl/declarative_assembly_format.py
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
class SymbolNameAttributeVariable(AttributeVariable):
    def parse_attr(self, parser: Parser) -> Attribute | None:
        if self.is_optional:
            return parser.parse_optional_symbol_name()
        else:
            return parser.parse_symbol_name()

    def print_attr(self, printer: Printer, attr: Attribute) -> None:
        assert isinstance(attr, StringAttr)
        return printer.print_symbol_name(attr.data)

parse_attr(parser: Parser) -> Attribute | None

Source code in xdsl/irdl/declarative_assembly_format.py
1326
1327
1328
1329
1330
def parse_attr(self, parser: Parser) -> Attribute | None:
    if self.is_optional:
        return parser.parse_optional_symbol_name()
    else:
        return parser.parse_symbol_name()

print_attr(printer: Printer, attr: Attribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1332
1333
1334
def print_attr(self, printer: Printer, attr: Attribute) -> None:
    assert isinstance(attr, StringAttr)
    return printer.print_symbol_name(attr.data)

OptionalUnitAttrVariable

Bases: AttributeVariable

An optional UnitAttr variable that holds no value and derives its meaning from its existence. Holds a parse and print method to reflect this.

operand-directive ::= (unit_attr unit_attr^)?

Also see: https://mlir.llvm.org/docs/DefiningDialects/Operations/#unit-attributes

Source code in xdsl/irdl/declarative_assembly_format.py
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
class OptionalUnitAttrVariable(AttributeVariable):
    """
    An optional UnitAttr variable that holds no value and derives its meaning from its existence. Holds a parse
    and print method to reflect this.

      operand-directive ::= (`unit_attr` unit_attr^)?

    Also see: https://mlir.llvm.org/docs/DefiningDialects/Operations/#unit-attributes
    """

    def __init__(self, name: str, is_property: bool):
        super().__init__(name, is_property, True, None)

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        self.set(state, UnitAttr())
        return True

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        return

    def is_optional_like(self) -> bool:
        return False

__init__(name: str, is_property: bool)

Source code in xdsl/irdl/declarative_assembly_format.py
1347
1348
def __init__(self, name: str, is_property: bool):
    super().__init__(name, is_property, True, None)

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1350
1351
1352
def parse(self, parser: Parser, state: ParsingState) -> bool:
    self.set(state, UnitAttr())
    return True

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1354
1355
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    return

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1357
1358
def is_optional_like(self) -> bool:
    return False

WhitespaceDirective dataclass

Bases: FormatDirective

A whitespace directive, with the following format:
  whitespace-directive ::= `

| ` | `` This directive is only applied during printing, and has no effect during parsing. The directive will not request any space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
@dataclass(frozen=True)
class WhitespaceDirective(FormatDirective):
    """
    A whitespace directive, with the following format:
      whitespace-directive ::= `\n` | ` ` | ``
    This directive is only applied during printing, and has no effect during
    parsing.
    The directive will not request any space to be printed after.
    """

    whitespace: Literal[" ", "\n", ""]
    """The whitespace that should be printed."""

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        return False

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        printer.print_string(self.whitespace)
        state.last_was_punctuation = self.whitespace == ""
        state.should_emit_space = False

whitespace: Literal[' ', '\n', ''] instance-attribute

The whitespace that should be printed.

__init__(whitespace: Literal[' ', '\n', '']) -> None

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1374
1375
def parse(self, parser: Parser, state: ParsingState) -> bool:
    return False

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1377
1378
1379
1380
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    printer.print_string(self.whitespace)
    state.last_was_punctuation = self.whitespace == ""
    state.should_emit_space = False

PunctuationDirective dataclass

Bases: FormatDirective

A punctuation directive, with the following format: punctuation-directive ::= punctuation The directive will request a space to be printed right after, unless the punctuation is <, (, {, or [. It will also print a space before if a space is requested, and that the punctuation is neither >, ), }, ], or , if the last element was a punctuation, and additionally neither <, (, }, ], if the last element was not a punctuation.

Source code in xdsl/irdl/declarative_assembly_format.py
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
@dataclass(frozen=True)
class PunctuationDirective(FormatDirective):
    """
    A punctuation directive, with the following format:
      punctuation-directive ::= punctuation
    The directive will request a space to be printed right after, unless the punctuation
    is `<`, `(`, `{`, or `[`.
    It will also print a space before if a space is requested, and that the punctuation
    is neither `>`, `)`, `}`, `]`, or `,` if the last element was a punctuation, and
    additionally neither `<`, `(`, `}`, `]`, if the last element was not a punctuation.
    """

    punctuation: PunctuationSpelling
    """The punctuation that should be printed/parsed."""

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        return parser.parse_optional_punctuation(self.punctuation) is not None

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        emit_space = False
        if state.should_emit_space:
            if state.last_was_punctuation:
                if self.punctuation not in (">", ")", "}", "]", ","):
                    emit_space = True
            elif self.punctuation not in ("<", ">", "(", ")", "{", "}", "[", "]", ","):
                emit_space = True

            if emit_space:
                printer.print_string(" ")

        printer.print_string(self.punctuation)

        state.should_emit_space = self.punctuation not in ("<", "(", "{", "[")
        state.last_was_punctuation = True

    def is_optional_like(self) -> bool:
        return True

punctuation: PunctuationSpelling instance-attribute

The punctuation that should be printed/parsed.

__init__(punctuation: PunctuationSpelling) -> None

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1398
1399
def parse(self, parser: Parser, state: ParsingState) -> bool:
    return parser.parse_optional_punctuation(self.punctuation) is not None

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    emit_space = False
    if state.should_emit_space:
        if state.last_was_punctuation:
            if self.punctuation not in (">", ")", "}", "]", ","):
                emit_space = True
        elif self.punctuation not in ("<", ">", "(", ")", "{", "}", "[", "]", ","):
            emit_space = True

        if emit_space:
            printer.print_string(" ")

    printer.print_string(self.punctuation)

    state.should_emit_space = self.punctuation not in ("<", "(", "{", "[")
    state.last_was_punctuation = True

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1418
1419
def is_optional_like(self) -> bool:
    return True

KeywordDirective dataclass

Bases: FormatDirective

A keyword directive, with the following format: keyword-directive ::= bare-ident The directive expects a specific identifier, and will request a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
@dataclass(frozen=True)
class KeywordDirective(FormatDirective):
    """
    A keyword directive, with the following format:
      keyword-directive ::= bare-ident
    The directive expects a specific identifier, and will request a space to be printed
    after.
    """

    keyword: str
    """The identifier that should be printed."""

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        return parser.parse_optional_keyword(self.keyword) is not None

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        if state.should_emit_space:
            printer.print_string(" ")
        state.should_emit_space = True
        state.last_was_punctuation = False

        printer.print_string(self.keyword)

    def is_optional_like(self) -> bool:
        return True

keyword: str instance-attribute

The identifier that should be printed.

__init__(keyword: str) -> None

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1434
1435
def parse(self, parser: Parser, state: ParsingState) -> bool:
    return parser.parse_optional_keyword(self.keyword) is not None

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1437
1438
1439
1440
1441
1442
1443
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    if state.should_emit_space:
        printer.print_string(" ")
    state.should_emit_space = True
    state.last_was_punctuation = False

    printer.print_string(self.keyword)

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1445
1446
def is_optional_like(self) -> bool:
    return True

OptionalGroupDirective dataclass

Bases: FormatDirective

Source code in xdsl/irdl/declarative_assembly_format.py
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
@dataclass(frozen=True)
class OptionalGroupDirective(FormatDirective):
    anchor: Directive
    then_whitespace: tuple[WhitespaceDirective, ...]
    then_first: FormatDirective
    then_elements: tuple[FormatDirective, ...]
    else_elements: tuple[FormatDirective, ...]

    def parse(self, parser: Parser, state: ParsingState) -> bool:
        # If the first element was parsed, parse the then-elements as usual
        if ret := self.then_first.parse_optional(parser, state):
            for element in self.then_elements:
                element.parse(parser, state)
            for element in self.else_elements:
                element.set_empty(state)
        else:
            for element in self.then_elements:
                element.set_empty(state)
            for element in self.else_elements:
                element.parse(parser, state)
        return ret

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        if self.anchor.is_present(op):
            for element in (
                *self.then_whitespace,
                self.then_first,
                *self.then_elements,
            ):
                element.print(printer, state, op)
        else:
            for element in self.else_elements:
                element.print(printer, state, op)

    def set_empty(self, state: ParsingState) -> None:
        self.then_first.set_empty(state)
        for element in self.then_elements:
            element.set_empty(state)
        for element in self.else_elements:
            element.set_empty(state)

anchor: Directive instance-attribute

then_whitespace: tuple[WhitespaceDirective, ...] instance-attribute

then_first: FormatDirective instance-attribute

then_elements: tuple[FormatDirective, ...] instance-attribute

else_elements: tuple[FormatDirective, ...] instance-attribute

__init__(anchor: Directive, then_whitespace: tuple[WhitespaceDirective, ...], then_first: FormatDirective, then_elements: tuple[FormatDirective, ...], else_elements: tuple[FormatDirective, ...]) -> None

parse(parser: Parser, state: ParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
def parse(self, parser: Parser, state: ParsingState) -> bool:
    # If the first element was parsed, parse the then-elements as usual
    if ret := self.then_first.parse_optional(parser, state):
        for element in self.then_elements:
            element.parse(parser, state)
        for element in self.else_elements:
            element.set_empty(state)
    else:
        for element in self.then_elements:
            element.set_empty(state)
        for element in self.else_elements:
            element.parse(parser, state)
    return ret

print(printer: Printer, state: PrintingState, op: IRDLOperation) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    if self.anchor.is_present(op):
        for element in (
            *self.then_whitespace,
            self.then_first,
            *self.then_elements,
        ):
            element.print(printer, state, op)
    else:
        for element in self.else_elements:
            element.print(printer, state, op)

set_empty(state: ParsingState) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1483
1484
1485
1486
1487
1488
def set_empty(self, state: ParsingState) -> None:
    self.then_first.set_empty(state)
    for element in self.then_elements:
        element.set_empty(state)
    for element in self.else_elements:
        element.set_empty(state)

irdl_custom_directive(cls: type[CustomDirectiveInvT]) -> type[CustomDirectiveInvT]

Decorator used on custom directives to define the parameters class variable.

Source code in xdsl/irdl/declarative_assembly_format.py
338
339
340
341
342
343
344
345
346
347
348
349
350
351
def irdl_custom_directive(cls: type[CustomDirectiveInvT]) -> type[CustomDirectiveInvT]:
    """Decorator used on custom directives to define the `parameters` class variable."""

    cls.parameters = {}
    param_types = inspect.get_annotations(cls, eval_str=True)
    for field_name, ty in param_types.items():
        if is_const_classvar(field_name, ty, PyRDLError):
            continue
        if not issubclass(ty, FormatDirective):
            raise PyRDLError(
                f"Custom directive {cls.__name__} has parameter {field_name} which is not a format directive."
            )
        cls.parameters[field_name] = ty
    return dataclass(frozen=True)(cls)