[llvm-dev] Tablegen: frameindex matches register
Gleb Popov via llvm-dev
llvm-dev at lists.llvm.org
Sun Dec 23 22:18:24 PST 2018
Hello.
In my backend I have following definition:
def StoreStackR : MyInst<2, (outs), (ins IntRegs:$addr, IntRegs:$reg),
"store $reg, [$addr]", [(store i32:$reg,
frameindex:$addr)]>;
However, LLVM generates both
storestackr %reg1, [%reg2]
and
storestackr %reg1, [123123]
using this definition. I was expecting that "IntRegs:$addr" would constrain
it to registers only. As consequence, I can't infer operand type from the
opcode. What's the proper way to solve this?
Thanks in advance.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20181224/dbc9d57d/attachment.html>
More information about the llvm-dev
mailing list