Set Rm bits of BX_RET to 0b1110 (R14); and set condition code bits of BRIND to
authorJohnny Chen <johnny.chen@apple.com>
Mon, 16 Nov 2009 23:57:56 +0000 (23:57 +0000)
committerJohnny Chen <johnny.chen@apple.com>
Mon, 16 Nov 2009 23:57:56 +0000 (23:57 +0000)
0b1110 (ALways).  This is so that the disassembler decoder can distinguish among
BX_RET, BRIND, and BXr9.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89000 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrInfo.td

index 893694bfdee1b4ed603ee97af521805e3eb4fec1..5235a2e2ee00ae5ecf0fa6e8ec64b92e79363ac7 100644 (file)
@@ -647,6 +647,7 @@ def LEApcrelJT : AXI1<0x0, (outs GPR:$dst),
 let isReturn = 1, isTerminator = 1, isBarrier = 1 in
   def BX_RET : AI<(outs), (ins), BrMiscFrm, IIC_Br, 
                   "bx", "\tlr", [(ARMretflag)]> {
+  let Inst{3-0}   = 0b1110;
   let Inst{7-4}   = 0b0001;
   let Inst{19-8}  = 0b111111111111;
   let Inst{27-20} = 0b00010010;
@@ -659,6 +660,7 @@ let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
     let Inst{7-4}   = 0b0001;
     let Inst{19-8}  = 0b111111111111;
     let Inst{27-20} = 0b00010010;
+    let Inst{31-28} = 0b1110;
   }
 }