Displaying 1 result from an estimated 1 matches for "v3_j2_jumprfnewpt".
2012 Aug 07
0
[LLVMdev] [RFC] Hexagon insn table refactoring
...(ins PredRegs:$src1, IntRegs:$src2),
"if (!$src1.new) jumpr:t $src2",
[]>,
Requires<[HasV3T]>;
Its new definition would be like this:
let Defs = [PC], isPredicated = 1 in
class V3_J2_jumprfnewpt<list<dag> P = [], string C = ""> : JRInst
<(outs),
(ins PredRegs:$Pu, IntRegs:$Rs),
"if (!$Pu.new) jumpr:t $Rs",
P, C> {
bits<2> Pu;
bits<5> Rs;
IClass = 0b0101;
Inst{27-21} = 0b0011011;
Inst{12-11} = 0...