Hisham Chowdhury
2009-Jul-10 03:09 UTC
[LLVMdev] Help: Instruction Pattern Matching question
Hello, I am having some trouble matching patterns in targetinstructioninfo.td file with the CodeGen expectation. Could anybody please help? Here is the example: I want to emit instruction for adding 2 different kind of oprands. Basically i want to mix register types when I define the instruction for add,sub etc I define the instruction TargetInstruction.td as follows: class MyInst <opcode op,subopcode subop, dag outs, dag ins, string asmstr,list<dag> pattern> Instruction { let Namespce = "MyNameSpace"; MyOpCode myop = op; MySubOpcode mysubop = subop; dag OutOprandList = outs; dag InOprandList = ins; let ASMString = asmstr; let Pattern = pattern; } def My_ADDINST1: MyInst <MYADD1, NO_SUBOP, (outs ptr_rc: $dest), (ins: $ptr_rc:$ptr1, Int32RC:$src) "myadd1 $dst, $ptr1, $src1", [(set $ptr_rc:$dst,(add $ptr_rc:ptr1, Int32RC:$src))]>; it is giving me error like impossible to select. Could anybody help me resolve this issue. Any example would be highly appreciated.
On Jul 9, 2009, at 8:09 PM, Hisham Chowdhury wrote:> > > Hello, > I am having some trouble matching patterns in > targetinstructioninfo.td file with the CodeGen expectation. Could > anybody please help? > Here is the example: > > I want to emit instruction for adding 2 different kind of oprands. > Basically i want to mix register types when I define the instruction > for add,sub etc > > I define the instruction TargetInstruction.td as follows: > > class MyInst > <opcode op,subopcode subop, > dag outs, dag ins, string asmstr,list<dag> pattern> > Instruction > { > let Namespce = "MyNameSpace"; > MyOpCode myop = op; > MySubOpcode mysubop = subop; > dag OutOprandList = outs; > dag InOprandList = ins; > let ASMString = asmstr; > let Pattern = pattern; > } > > def My_ADDINST1: MyInst <MYADD1, NO_SUBOP, > (outs ptr_rc: $dest), (ins: $ptr_rc:$ptr1, Int32RC:$src) > "myadd1 $dst, $ptr1, $src1", > [(set $ptr_rc:$dst,(add $ptr_rc:ptr1, Int32RC:$src))]>; > > it is giving me error like impossible to select. > Could anybody help me resolve this issue. Any example would be > highly appreciated.You need to provide a lot more information. e.g. What exactly is the error? Did you see the error during build time or when you run llc? What's the test case? Evan> > > > > > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
Anton Korobeynikov
2009-Jul-14 08:33 UTC
[LLVMdev] Help: Instruction Pattern Matching question
> (outs ptr_rc: $dest), (ins: $ptr_rc:$ptr1, Int32RC:$src) > "myadd1 $dst, $ptr1, $src1", > [(set $ptr_rc:$dst,(add $ptr_rc:ptr1, Int32RC:$src))]>; > > it is giving me error like impossible to select. > Could anybody help me resolve this issue. Any example would be highly appreciated.I assume that both ptr_rc and Int32RC are register classes of type i32. There are no register classes at isel time => it's not possible to distinguish operation within 'normal' i32 register class Int32RC and pointer register class. That's why tablegen asserts - it's seeing two identically operations. Surely the second one is impossible to select. -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
Maybe Matching Threads
- [LLVMdev] "Unknown node flavor ..." Was: Re: tablegen and ptr_rc: PointerLikeRegClass
- [LLVMdev] tablegen and ptr_rc: PointerLikeRegClass
- [LLVMdev] Newbie: Basic stuff
- [LLVMdev] Adding address registers to back-end
- Immediate operand for load instruction, in back end