Displaying 1 result from an estimated 1 matches for "inlineasmlow".
2020 Apr 06
4
[GlobalISel] Extended inline assembler support
...obalISel subclass of
the TargetLoweringBase class yet.
Instead, the (one) existing GlobalISel hook currently lives in
TargetLoweringBase.
For lowering the target specific constraints, we'll have to add a new
API that creates (G)MIR during IR translation.
Personally I would prefer to have an InlineAsmLowering class, similar to
the CallLowering class, which implements the generic algorithm and from
which targets can inherit.
Most of the implementation in [0] could then be moved to that class.
However, this would add yet another class that needs to be wired up in
the subtarget class. Is this some...