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
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
83
@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[Sequence[UnresolvedOperand] | None]
    operand_types: list[Sequence[Attribute] | None]
    result_types: list[Sequence[Attribute] | None]
    regions: list[Sequence[Region] | None]
    successors: list[Sequence[Successor] | None]
    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[Sequence[UnresolvedOperand] | None] = [None] * len(op_def.operands) instance-attribute

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

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

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

successors: list[Sequence[Successor] | None] = [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
73
74
75
76
77
78
79
80
81
82
83
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
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
@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
103
104
105
106
107
108
109
110
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
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
263
@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
123
124
125
126
127
128
129
130
131
@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
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
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
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
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
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
255
256
257
258
259
260
261
262
263
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
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
294
@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
270
271
272
273
274
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
276
277
278
279
280
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
282
283
284
285
286
287
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
289
290
291
292
293
294
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
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
323
class FormatDirective(Directive, ABC):
    """A format directive for operation format."""

    @abstractmethod
    def parse(self, parser: Parser, state: ParsingState) -> None:
        """
        Parses the directive.
        """
        ...

    def parse_optional(self, parser: Parser, state: ParsingState) -> None:
        """
        Optionally parses a directive.
        """
        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) -> None abstractmethod

Parses the directive.

Source code in xdsl/irdl/declarative_assembly_format.py
300
301
302
303
304
305
@abstractmethod
def parse(self, parser: Parser, state: ParsingState) -> None:
    """
    Parses the directive.
    """
    ...

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

Optionally parses a directive.

Source code in xdsl/irdl/declarative_assembly_format.py
307
308
309
310
311
def parse_optional(self, parser: Parser, state: ParsingState) -> None:
    """
    Optionally parses a directive.
    """
    self.parse(parser, state)

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

Source code in xdsl/irdl/declarative_assembly_format.py
313
314
315
316
@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
318
319
320
321
322
323
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
326
327
328
329
330
331
332
333
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
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
381
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) -> None:
        """
        Parses types for the directive.
        """
        ...

    @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
360
361
362
363
364
365
@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) -> None abstractmethod

Parses types for the directive.

Source code in xdsl/irdl/declarative_assembly_format.py
367
368
369
370
371
372
@abstractmethod
def parse_types(self, parser: Parser, state: ParsingState) -> None:
    """
    Parses types for the directive.
    """
    ...

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
374
375
376
377
378
@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
380
381
@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
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
422
@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):
        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
393
394
def set(self, state: ParsingState, types: Sequence[Attribute]):
    self.inner.set_types(state, types)

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
396
397
def parse(self, parser: Parser, state: ParsingState):
    self.inner.parse_types(parser, state)

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

Source code in xdsl/irdl/declarative_assembly_format.py
399
400
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
402
403
404
405
406
407
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
409
410
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
412
413
def is_anchorable(self) -> bool:
    return self.inner.is_anchorable()

is_variadic_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
415
416
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
418
419
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
421
422
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
425
426
427
428
429
430
431
432
433
434
435
436
@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
439
440
441
442
443
444
445
446
447
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
440
441
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
443
444
def is_anchorable(self) -> bool:
    return True

is_variadic_like() -> bool

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

OptionalVariable dataclass

Bases: VariableDirective, ABC

Source code in xdsl/irdl/declarative_assembly_format.py
450
451
452
453
454
455
456
457
458
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
451
452
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
454
455
def is_anchorable(self) -> bool:
    return True

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
457
458
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
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):
        if self.with_keyword:
            attrs = parser.parse_optional_attr_dict_with_keyword()
            if attrs is None:
                attrs = {}
            else:
                attrs = dict(attrs.data)
        else:
            attrs = parser.parse_optional_attr_dict()
        defined_reserved_keys = self.reserved_attr_names & attrs.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 attrs.keys() if k in self.expected_properties)
        for name in props:
            state.properties[name] = attrs.pop(name)
        state.attributes |= attrs

    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)

Source code in xdsl/irdl/declarative_assembly_format.py
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):
    if self.with_keyword:
        attrs = parser.parse_optional_attr_dict_with_keyword()
        if attrs is None:
            attrs = {}
        else:
            attrs = dict(attrs.data)
    else:
        attrs = parser.parse_optional_attr_dict()
    defined_reserved_keys = self.reserved_attr_names & attrs.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 attrs.keys() if k in self.expected_properties)
    for name in props:
        state.properties[name] = attrs.pop(name)
    state.attributes |= attrs

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
@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):
        operand = parser.parse_unresolved_operand()
        self.set(state, operand)

    def parse_types(self, parser: Parser, state: ParsingState):
        self.set_types(state, (parser.parse_type(),))

    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)

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

parse_types(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
569
570
def parse_types(self, parser: Parser, state: ParsingState):
    self.set_types(state, (parser.parse_type(),))

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

Source code in xdsl/irdl/declarative_assembly_format.py
572
573
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
575
576
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
578
579
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
581
582
583
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
586
587
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
@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):
        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)

    def parse_types(self, parser: Parser, state: ParsingState):
        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)

    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
594
595
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
597
598
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.operand_types[self.index] = types

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
600
601
602
603
604
605
606
def parse(self, parser: Parser, state: ParsingState):
    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)

parse_types(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
608
609
610
611
612
613
614
615
def parse_types(self, parser: Parser, state: ParsingState):
    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)

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

Source code in xdsl/irdl/declarative_assembly_format.py
617
618
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
620
621
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
623
624
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
626
627
628
629
630
631
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
633
634
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
637
638
639
640
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
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):
        operand = parser.parse_optional_unresolved_operand()
        self.set(state, operand)

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

    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
644
645
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
647
648
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.operand_types[self.index] = types

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
650
651
652
def parse(self, parser: Parser, state: ParsingState):
    operand = parser.parse_optional_unresolved_operand()
    self.set(state, operand)

parse_types(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
654
655
656
def parse_types(self, parser: Parser, state: ParsingState):
    type = parser.parse_optional_type()
    self.set_types(state, () if type is None else (type,))

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

Source code in xdsl/irdl/declarative_assembly_format.py
658
659
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
661
662
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
664
665
666
667
668
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
670
671
672
673
674
675
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
677
678
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
684
685
686
687
688
689
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
@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[Sequence[_T] | None],
        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
690
691
def is_variadic_like(self) -> bool:
    return True

is_anchorable() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
693
694
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
718
719
720
721
722
723
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
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):
        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)

    def parse_types(self, parser: Parser, state: ParsingState):
        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)

    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
725
726
727
728
729
730
731
732
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)

Source code in xdsl/irdl/declarative_assembly_format.py
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
def parse(self, parser: Parser, state: ParsingState):
    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)

parse_types(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
755
756
757
758
759
760
761
762
763
764
765
766
767
def parse_types(self, parser: Parser, state: ParsingState):
    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)

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

Source code in xdsl/irdl/declarative_assembly_format.py
769
770
771
772
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
774
775
776
777
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
779
780
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
782
783
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
785
786
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
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
@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):
        self.set_types(state, (parser.parse_type(),))

    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
798
799
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.result_types[self.index] = types

parse_types(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
801
802
def parse_types(self, parser: Parser, state: ParsingState):
    self.set_types(state, (parser.parse_type(),))

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

Source code in xdsl/irdl/declarative_assembly_format.py
804
805
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
807
808
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
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
@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):
        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)

    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
820
821
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.result_types[self.index] = types

parse_types(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
823
824
825
826
827
def parse_types(self, parser: Parser, state: ParsingState):
    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)

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

Source code in xdsl/irdl/declarative_assembly_format.py
829
830
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
832
833
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
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
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):
        type = parser.parse_optional_type()
        self.set_types(state, () if type is None else (type,))

    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
844
845
def set_types(self, state: ParsingState, types: Sequence[Attribute]):
    state.result_types[self.index] = types

parse_types(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
847
848
849
def parse_types(self, parser: Parser, state: ParsingState):
    type = parser.parse_optional_type()
    self.set_types(state, () if type is None else (type,))

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

Source code in xdsl/irdl/declarative_assembly_format.py
851
852
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
854
855
856
857
858
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
861
862
863
864
865
866
867
868
869
870
871
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
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):
        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)

    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
868
869
870
871
872
873
874
875
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)

Source code in xdsl/irdl/declarative_assembly_format.py
877
878
879
880
881
882
883
884
885
886
887
888
889
def parse_types(self, parser: Parser, state: ParsingState):
    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)

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

Source code in xdsl/irdl/declarative_assembly_format.py
891
892
893
894
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
896
897
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
899
900
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
903
904
905
906
907
908
909
910
911
912
913
914
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
@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):
        with parser.in_parens():
            self.operand_typeable_directive.parse_types(parser, state)
        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)

    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)

Source code in xdsl/irdl/declarative_assembly_format.py
919
920
921
922
923
924
925
926
927
def parse(self, parser: Parser, state: ParsingState):
    with parser.in_parens():
        self.operand_typeable_directive.parse_types(parser, state)
    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)

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

Source code in xdsl/irdl/declarative_assembly_format.py
929
930
931
932
933
934
935
936
937
938
939
940
941
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
944
945
946
947
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
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
@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):
        self.set(state, parser.parse_region())

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

    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
958
959
def set(self, state: ParsingState, region: Region):
    state.regions[self.index] = (region,)

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
961
962
def parse(self, parser: Parser, state: ParsingState):
    self.set(state, parser.parse_region())

parse_optional(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
964
965
966
967
968
def parse_optional(self, parser: Parser, state: ParsingState):
    region = parser.parse_optional_region()
    if region is None:
        region = Region()
    self.set(state, region)

get(op: IRDLOperation) -> Region

Source code in xdsl/irdl/declarative_assembly_format.py
970
971
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
973
974
975
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
977
978
def is_anchorable(self) -> bool:
    return True

set_empty(state: ParsingState)

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

is_present(op: IRDLOperation) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
983
984
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
986
987
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
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
@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):
        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)

    def parse_optional(self, parser: Parser, state: ParsingState):
        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
 999
1000
def set(self, state: ParsingState, region: Sequence[Region]):
    state.regions[self.index] = region

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1002
1003
1004
1005
1006
1007
1008
1009
def parse(self, parser: Parser, state: ParsingState):
    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)

parse_optional(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1011
1012
def parse_optional(self, parser: Parser, state: ParsingState):
    self.parse(parser, state)

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

Source code in xdsl/irdl/declarative_assembly_format.py
1014
1015
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
1017
1018
1019
1020
1021
1022
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
1024
1025
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
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
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):
        region = parser.parse_optional_region()
        self.set(state, region)

    def parse_optional(self, parser: Parser, state: ParsingState):
        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
1035
1036
def set(self, state: ParsingState, region: Region | None):
    state.regions[self.index] = () if region is None else (region,)

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1038
1039
1040
def parse(self, parser: Parser, state: ParsingState):
    region = parser.parse_optional_region()
    self.set(state, region)

parse_optional(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1042
1043
def parse_optional(self, parser: Parser, state: ParsingState):
    self.parse(parser, state)

get(op: IRDLOperation) -> Region | None

Source code in xdsl/irdl/declarative_assembly_format.py
1045
1046
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
1048
1049
1050
1051
1052
1053
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
1055
1056
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
1059
1060
1061
1062
1063
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
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
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):
        successor = parser.parse_successor()
        self.set(state, successor)

    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
1073
1074
def set(self, state: ParsingState, successor: Successor):
    state.successors[self.index] = (successor,)

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1076
1077
1078
def parse(self, parser: Parser, state: ParsingState):
    successor = parser.parse_successor()
    self.set(state, successor)

get(op: IRDLOperation) -> Successor

Source code in xdsl/irdl/declarative_assembly_format.py
1080
1081
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
1083
1084
1085
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
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
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):
        successors = (
            parser.parse_optional_undelimited_comma_separated_list(
                parser.parse_optional_successor, parser.parse_successor
            )
            or []
        )
        self.set(state, 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
1095
1096
def set(self, state: ParsingState, successors: Sequence[Successor]):
    state.successors[self.index] = successors

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1098
1099
1100
1101
1102
1103
1104
1105
def parse(self, parser: Parser, state: ParsingState):
    successors = (
        parser.parse_optional_undelimited_comma_separated_list(
            parser.parse_optional_successor, parser.parse_successor
        )
        or []
    )
    self.set(state, successors)

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

Source code in xdsl/irdl/declarative_assembly_format.py
1107
1108
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
1110
1111
1112
1113
1114
1115
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
1117
1118
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
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
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):
        successor = parser.parse_optional_successor()
        self.set(state, successor)

    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
1128
1129
def set(self, state: ParsingState, successor: Successor | None):
    state.successors[self.index] = () if successor is None else (successor,)

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1131
1132
1133
def parse(self, parser: Parser, state: ParsingState):
    successor = parser.parse_optional_successor()
    self.set(state, successor)

get(op: IRDLOperation) -> Successor | None

Source code in xdsl/irdl/declarative_assembly_format.py
1135
1136
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
1138
1139
1140
1141
1142
1143
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
1145
1146
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
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
1174
1175
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
@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):
        attr = self.parse_attr(parser)
        if attr is not None:
            self.set(state, attr)

    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
1165
1166
1167
1168
1169
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
1171
1172
1173
1174
1175
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)

Source code in xdsl/irdl/declarative_assembly_format.py
1177
1178
1179
1180
def parse(self, parser: Parser, state: ParsingState):
    attr = self.parse_attr(parser)
    if attr is not None:
        self.set(state, attr)

get(op: IRDLOperation) -> Attribute | None

Source code in xdsl/irdl/declarative_assembly_format.py
1182
1183
1184
1185
1186
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
1188
1189
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
1191
1192
1193
1194
1195
1196
1197
1198
1199
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
1201
1202
1203
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
1205
1206
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
1208
1209
def is_optional_like(self) -> bool:
    return self.is_optional

UniqueBaseAttributeVariable dataclass

Bases: AttributeVariable

Source code in xdsl/irdl/declarative_assembly_format.py
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
@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
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
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
1228
1229
1230
1231
1232
1233
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
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
@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
1241
1242
1243
1244
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
1246
1247
1248
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
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
@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
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
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
1285
1286
1287
1288
1289
1290
1291
1292
1293
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
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
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
1297
1298
1299
1300
1301
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
1303
1304
1305
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
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
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):
        self.set(state, UnitAttr())

    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
1318
1319
def __init__(self, name: str, is_property: bool):
    super().__init__(name, is_property, True, None)

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1321
1322
def parse(self, parser: Parser, state: ParsingState):
    self.set(state, UnitAttr())

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

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

is_optional_like() -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1327
1328
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
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
@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):
        pass

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

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

The whitespace that should be printed.

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

parse(parser: Parser, state: ParsingState)

Source code in xdsl/irdl/declarative_assembly_format.py
1364
1365
def parse(self, parser: Parser, state: ParsingState):
    pass

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

Source code in xdsl/irdl/declarative_assembly_format.py
1367
1368
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    _print_whitespace(printer, state, self.whitespace)

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
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
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
@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):
        parser.parse_punctuation(self.punctuation)

    def parse_optional(self, parser: Parser, state: ParsingState) -> None:
        parser.parse_optional_punctuation(self.punctuation)

    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)

Source code in xdsl/irdl/declarative_assembly_format.py
1386
1387
def parse(self, parser: Parser, state: ParsingState):
    parser.parse_punctuation(self.punctuation)

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

Source code in xdsl/irdl/declarative_assembly_format.py
1389
1390
def parse_optional(self, parser: Parser, state: ParsingState) -> None:
    parser.parse_optional_punctuation(self.punctuation)

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

Source code in xdsl/irdl/declarative_assembly_format.py
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
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
1409
1410
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
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
@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):
        parser.parse_keyword(self.keyword)

    def parse_optional(self, parser: Parser, state: ParsingState) -> None:
        parser.parse_optional_keyword(self.keyword)

    def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
        _print_keyword(printer, state, 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)

Source code in xdsl/irdl/declarative_assembly_format.py
1425
1426
def parse(self, parser: Parser, state: ParsingState):
    parser.parse_keyword(self.keyword)

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

Source code in xdsl/irdl/declarative_assembly_format.py
1428
1429
def parse_optional(self, parser: Parser, state: ParsingState) -> None:
    parser.parse_optional_keyword(self.keyword)

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

Source code in xdsl/irdl/declarative_assembly_format.py
1431
1432
def print(self, printer: Printer, state: PrintingState, op: IRDLOperation) -> None:
    _print_keyword(printer, state, self.keyword)

is_optional_like() -> bool

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

OptionalGroupDirective dataclass

Bases: FormatDirective

Source code in xdsl/irdl/declarative_assembly_format.py
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
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
@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):
        # If the first element was parsed, parse the then-elements as usual
        start_pos = parser.pos
        self.then_first.parse_optional(parser, state)
        if start_pos != parser.pos:
            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)

    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)

Source code in xdsl/irdl/declarative_assembly_format.py
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
def parse(self, parser: Parser, state: ParsingState):
    # If the first element was parsed, parse the then-elements as usual
    start_pos = parser.pos
    self.then_first.parse_optional(parser, state)
    if start_pos != parser.pos:
        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)

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

Source code in xdsl/irdl/declarative_assembly_format.py
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
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
1473
1474
1475
1476
1477
1478
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)

AttrParsingState dataclass

State during parsing of a ParametrizedAttribute using declarative format.

Source code in xdsl/irdl/declarative_assembly_format.py
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
@dataclass
class AttrParsingState:
    """
    State during parsing of a ParametrizedAttribute using declarative format.
    """

    parameters: list[Attribute | None]
    attr_def: ParamAttrDef

    def __init__(self, attr_def: ParamAttrDef):
        self.attr_def = attr_def
        self.parameters = [None] * len(attr_def.parameters)

attr_def: ParamAttrDef = attr_def instance-attribute

parameters: list[Attribute | None] = [None] * len(attr_def.parameters) instance-attribute

__init__(attr_def: ParamAttrDef)

Source code in xdsl/irdl/declarative_assembly_format.py
1495
1496
1497
def __init__(self, attr_def: ParamAttrDef):
    self.attr_def = attr_def
    self.parameters = [None] * len(attr_def.parameters)

AttrFormatDirective dataclass

Bases: ABC

Base class for attribute/type format directives.

Separate from FormatDirective because operation formats parse full ops (operands, results, regions, etc.) using Parser and ParsingState, while attribute/type formats only fill parameter slots of a ParametrizedAttribute using AttrParser and AttrParsingState.

Source code in xdsl/irdl/declarative_assembly_format.py
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
@dataclass(frozen=True)
class AttrFormatDirective(ABC):
    """
    Base class for attribute/type format directives.

    Separate from FormatDirective because operation formats parse full ops
    (operands, results, regions, etc.) using Parser and ParsingState, while
    attribute/type formats only fill parameter slots of a ParametrizedAttribute
    using AttrParser and AttrParsingState.
    """

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

    @abstractmethod
    def print(
        self, printer: Printer, state: PrintingState, attr: ParametrizedAttribute, /
    ) -> None:
        """
        Print the directive.
        """

__init__() -> None

parse(parser: AttrParser, state: AttrParsingState) -> bool abstractmethod

Parse the directive, returning True if input was consumed.

Source code in xdsl/irdl/declarative_assembly_format.py
1511
1512
1513
1514
1515
@abstractmethod
def parse(self, parser: AttrParser, state: AttrParsingState) -> bool:
    """
    Parse the directive, returning True if input was consumed.
    """

print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None abstractmethod

Print the directive.

Source code in xdsl/irdl/declarative_assembly_format.py
1517
1518
1519
1520
1521
1522
1523
@abstractmethod
def print(
    self, printer: Printer, state: PrintingState, attr: ParametrizedAttribute, /
) -> None:
    """
    Print the directive.
    """

AttrWhitespaceDirective dataclass

Bases: AttrFormatDirective

A whitespace directive for attribute/type assembly format.

Mirrors the op-side WhitespaceDirective: only applied during printing, with no effect during parsing.

Source code in xdsl/irdl/declarative_assembly_format.py
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
@dataclass(frozen=True)
class AttrWhitespaceDirective(AttrFormatDirective):
    """
    A whitespace directive for attribute/type assembly format.

    Mirrors the op-side WhitespaceDirective: only applied during printing,
    with no effect during parsing.
    """

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

    def parse(self, parser: AttrParser, state: AttrParsingState) -> bool:
        return False

    def print(
        self, printer: Printer, state: PrintingState, attr: ParametrizedAttribute, /
    ) -> None:
        _print_whitespace(printer, state, self.whitespace)

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

The whitespace that should be printed.

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

parse(parser: AttrParser, state: AttrParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1543
1544
def parse(self, parser: AttrParser, state: AttrParsingState) -> bool:
    return False

print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1546
1547
1548
1549
def print(
    self, printer: Printer, state: PrintingState, attr: ParametrizedAttribute, /
) -> None:
    _print_whitespace(printer, state, self.whitespace)

AttrKeywordDirective dataclass

Bases: AttrFormatDirective

A keyword directive for attribute/type assembly format.

Mirrors the op-side KeywordDirective: expects a specific identifier and requests a space to be printed after.

Source code in xdsl/irdl/declarative_assembly_format.py
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
@dataclass(frozen=True)
class AttrKeywordDirective(AttrFormatDirective):
    """
    A keyword directive for attribute/type assembly format.

    Mirrors the op-side KeywordDirective: expects a specific identifier and
    requests a space to be printed after.
    """

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

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

    def print(
        self, printer: Printer, state: PrintingState, attr: ParametrizedAttribute, /
    ) -> None:
        _print_keyword(printer, state, self.keyword)

keyword: str instance-attribute

The identifier that should be printed.

__init__(keyword: str) -> None

parse(parser: AttrParser, state: AttrParsingState) -> bool

Source code in xdsl/irdl/declarative_assembly_format.py
1564
1565
def parse(self, parser: AttrParser, state: AttrParsingState) -> bool:
    return parser.parse_optional_keyword(self.keyword) is not None

print(printer: Printer, state: PrintingState, attr: ParametrizedAttribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1567
1568
1569
1570
def print(
    self, printer: Printer, state: PrintingState, attr: ParametrizedAttribute, /
) -> None:
    _print_keyword(printer, state, self.keyword)

AttrFormatProgram dataclass

The toplevel data structure of a declarative assembly format program for attributes/types.

Source code in xdsl/irdl/declarative_assembly_format.py
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
@dataclass(frozen=True)
class AttrFormatProgram:
    """
    The toplevel data structure of a declarative assembly format program
    for attributes/types.
    """

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

    @staticmethod
    def from_str(format_str: str, attr_def: ParamAttrDef) -> AttrFormatProgram:
        from xdsl.irdl.declarative_assembly_format_parser import AttrFormatParser

        return AttrFormatParser(format_str, attr_def).parse_format()

    def parse(self, parser: AttrParser, attr_def: ParamAttrDef) -> list[Attribute]:
        """
        Run each directive in order, returning the parsed parameter values.

        IRDL constraint verification runs when the attribute is constructed,
        not during this parse step.
        """
        state = AttrParsingState(attr_def)
        for stmt in self.stmts:
            stmt.parse(parser, state)
        return cast(list[Attribute], state.parameters)

    def print(self, printer: Printer, attr: ParametrizedAttribute) -> None:
        state = PrintingState(last_was_punctuation=True, should_emit_space=False)
        for stmt in self.stmts:
            stmt.print(printer, state, attr)

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

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

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

from_str(format_str: str, attr_def: ParamAttrDef) -> AttrFormatProgram staticmethod

Source code in xdsl/irdl/declarative_assembly_format.py
1585
1586
1587
1588
1589
@staticmethod
def from_str(format_str: str, attr_def: ParamAttrDef) -> AttrFormatProgram:
    from xdsl.irdl.declarative_assembly_format_parser import AttrFormatParser

    return AttrFormatParser(format_str, attr_def).parse_format()

parse(parser: AttrParser, attr_def: ParamAttrDef) -> list[Attribute]

Run each directive in order, returning the parsed parameter values.

IRDL constraint verification runs when the attribute is constructed, not during this parse step.

Source code in xdsl/irdl/declarative_assembly_format.py
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
def parse(self, parser: AttrParser, attr_def: ParamAttrDef) -> list[Attribute]:
    """
    Run each directive in order, returning the parsed parameter values.

    IRDL constraint verification runs when the attribute is constructed,
    not during this parse step.
    """
    state = AttrParsingState(attr_def)
    for stmt in self.stmts:
        stmt.parse(parser, state)
    return cast(list[Attribute], state.parameters)

print(printer: Printer, attr: ParametrizedAttribute) -> None

Source code in xdsl/irdl/declarative_assembly_format.py
1603
1604
1605
1606
def print(self, printer: Printer, attr: ParametrizedAttribute) -> None:
    state = PrintingState(last_was_punctuation=True, should_emit_space=False)
    for stmt in self.stmts:
        stmt.print(printer, state, attr)

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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
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)