search for: truepred

Displaying 3 results from an estimated 3 matches for "truepred".

2012 Aug 01
3
[LLVMdev] TableGen related question for the Hexagon backend
...to have a new class, say Relations, with some members of type 'Instruction' each representing a specific relation between itself and 'ThisInstr'. For example: class Relations { Instruction ThisInstr; Instruction BaseForm; Instruction TruePred; Instruction FalsePred; } def Rel_ADDrr : Relations<ADDrr, ADDrr, ADDrr_p, ADDrr_np>; def Rel_ADDrr_p : Relations<ADDrr_p, ADDrr, , >; def Rel_ADDrr_np : Relations<ADDrr_np, ADDrr, , >; I wonder if TableGen can parse Relations defs and emit the information into...
2012 Aug 02
0
[LLVMdev] TableGen related question for the Hexagon backend
...with some members > of type 'Instruction' each representing a specific relation between itself > and 'ThisInstr'. > > For example: > class Relations { > Instruction ThisInstr; > Instruction BaseForm; > Instruction TruePred; > Instruction FalsePred; > } > > def Rel_ADDrr : Relations<ADDrr, ADDrr, ADDrr_p, ADDrr_np>; > def Rel_ADDrr_p: Relations<ADDrr_p, ADDrr, , >; > def Rel_ADDrr_np : Relations<ADDrr_np,ADDrr, , >; The problem is, this isn't really any better t...
2012 Aug 16
2
[LLVMdev] TableGen related question for the Hexagon backend
...th some members of type > 'Instruction' each representing a specific relation between itself and > 'ThisInstr'. > > For example: > class Relations { > Instruction ThisInstr; > Instruction BaseForm; > Instruction TruePred; > Instruction FalsePred; > } > > def Rel_ADDrr : Relations<ADDrr, ADDrr, ADDrr_p, ADDrr_np>; def > Rel_ADDrr_p: Relations<ADDrr_p, ADDrr, , >; def Rel_ADDrr_np : > Relations<ADDrr_np,ADDrr, , >; The problem is, this isn't really any better...