X86 regalloc legalize
x86_regalloc_legalize
X86RegallocLegalizePass
dataclass
Bases: ModulePass
Legalize x86 code before register allocation by inserting copies when an inout use is not the last use of a value.
Source code in xdsl/transforms/x86_regalloc_legalize.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | |
name = 'x86-regalloc-legalize'
class-attribute
instance-attribute
arch: str | None = None
class-attribute
instance-attribute
__init__(arch: str | None = None) -> None
apply(ctx: Context, op: builtin.ModuleOp) -> None
Source code in xdsl/transforms/x86_regalloc_legalize.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | |