Displaying 2 results from an estimated 2 matches for "jumpr".
Did you mean:
jump
2012 Aug 07
0
[LLVMdev] [RFC] Hexagon insn table refactoring
...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 = [PC], isPredicated = 1 in
class V3_J2_jumprfnewpt<list<dag> P = [], string C = ""> : JRInst
<(outs),
(ins PredReg...
2012 Apr 19
0
[LLVMdev] Target Dependent Hexagon Packetizer patch
...e..2bd6770 100644
>> --- a/lib/Target/Hexagon/HexagonInstrInfoV3.td
>> +++ b/lib/Target/Hexagon/HexagonInstrInfoV3.td
>> @@ -41,10 +41,11 @@ let isCall = 1, neverHasSideEffects = 1,
>> }
>>
>>
>> +// Jump to address from register
>> // if(p?.new) jumpr:t r?
>> let isReturn = 1, isTerminator = 1, isBarrier = 1,
>> Defs = [PC], Uses = [R31] in {
>> - def JMPR_cPnewt: JRInst<(outs), (ins PredRegs:$src1, IntRegs:$src2),
>> + def JMPR_cdnPt_V3: JRInst<(outs), (ins PredRegs:$src1, IntRegs:$src2),
>>...