Wrap const
WrapConst dataclass
WrapConst(frame: const.Frame)
Bases: RewriteRule
Insert constant hints into the SSA values.
Note
This pass is not exactly the same as ConstantFold. ConstantFold only rewrites the SSAValue with const.Value
into a constant statement. This rule, however, inserts the entire constant lattice into the SSAValue's hints. Thus enabling other rules/analysis to utilize the constant information beyond just const.Value
.