[llvm-dev] Defining instruction aliases

Craig Topper via llvm-dev llvm-dev at lists.llvm.org
Mon Jan 17 11:17:53 PST 2022


Can you clarify what you mean by "different kinds of immediates"? Are you
talking about a fixed immediate like "1" or an immediate that requires a
predicate to check the value?

~Craig


On Mon, Jan 17, 2022 at 11:10 AM David Greene via llvm-dev <
llvm-dev at lists.llvm.org> wrote:

> Hey everyone,
>
>
>
> We've defined some instruction aliases for our target but are having
>
> trouble with the assembler.  According to the documentation
>
> (https://llvm.org/docs/CodeGenerator.html#instruction-aliases) LLVM has
>
> the capability of defining aliases with different kinds of operands.  We
>
> use that capability to define, for example, different alises based on
>
> the kind of immediate seen.
>
>
>
> However, it seems that the generated assembler can't distinguish these
>
> different kinds of immediates and ends up encoding the wrong operation,
>
> leading to incorrect assembly.
>
>
>
> Is this a known limitation?  Are we perhaps missing some option to the
>
> InstAlias class (UseInstAsmMatchConverter?), some option to TableGen or
>
> perhaps we can add some custom code to pick the right MC instruction?
>
>
>
> I'm thinking AsmMatchConverter might be what we need but a quick search
>
> didn't locate any documentation of what this is and how to use it.
>
>
>
> Thanks in advance for the help!
>
>
>
> David
> _______________________________________________
> LLVM Developers mailing list
> llvm-dev at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20220117/a31335ce/attachment.html>


More information about the llvm-dev mailing list