search for: jmpr_cdnnotpt_v3

Displaying 2 results from an estimated 2 matches for "jmpr_cdnnotpt_v3".

2012 Aug 07
0
[LLVMdev] [RFC] Hexagon insn table refactoring
...t a significant refactoring of the current insn tables will be necessary. I intend to create classes for each insn with the opcode and have the current insn definitions use the current names but based on a insn class. For example, a conditional indirect branch insn is currently defined as: def JMPR_cdnNotPt_V3: JRInst<(outs), (ins PredRegs:$src1, IntRegs:$src2), "if (!$src1.new) jumpr:t $src2", []>, Requires<[HasV3T]>; Its new definition would be like this: let Defs = [...
2012 Apr 19
0
[LLVMdev] Target Dependent Hexagon Packetizer patch
...@ let isReturn = 1, isTerminator = 1, isBarrier = 1, >> // if (!p?.new) jumpr:t r? >> let isReturn = 1, isTerminator = 1, isBarrier = 1, >> Defs = [PC], Uses = [R31] in { >> - def JMPR_cNotPnewt: JRInst<(outs), (ins PredRegs:$src1, IntRegs:$src2), >> + def JMPR_cdnNotPt_V3: JRInst<(outs), (ins PredRegs:$src1, IntRegs:$src2), >> "if (!$src1.new) jumpr:t $src2", >> []>, Requires<[HasV3T]>; >> } >> @@ -61,7 +62,7 @@ let isReturn = 1, isTerminator = 1, isBarrier = 1, >&gt...