[llvm-branch-commits] [llvm-branch] r85356 - /llvm/branches/Apple/Leela/lib/Target/ARM/ARMInstrInfo.td

Bill Wendling isanbard at gmail.com
Tue Oct 27 17:40:32 PDT 2009


Author: void
Date: Tue Oct 27 19:40:32 2009
New Revision: 85356

URL: http://llvm.org/viewvc/llvm-project?rev=85356&view=rev
Log:
$ svn merge -c 85355 https://llvm.org/svn/llvm-project/llvm/trunk
--- Merging r85355 into '.':
U    lib/Target/ARM/ARMInstrInfo.td


Modified:
    llvm/branches/Apple/Leela/lib/Target/ARM/ARMInstrInfo.td

Modified: llvm/branches/Apple/Leela/lib/Target/ARM/ARMInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Leela/lib/Target/ARM/ARMInstrInfo.td?rev=85356&r1=85355&r2=85356&view=diff

==============================================================================
--- llvm/branches/Apple/Leela/lib/Target/ARM/ARMInstrInfo.td (original)
+++ llvm/branches/Apple/Leela/lib/Target/ARM/ARMInstrInfo.td Tue Oct 27 19:40:32 2009
@@ -657,6 +657,16 @@
   let Inst{27-20} = 0b00010010;
 }
 
+// Indirect branches
+let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
+  def BRIND : AXI<(outs), (ins GPR:$dst), BrMiscFrm, IIC_Br, "bx $dst",
+                  [(brind GPR:$dst)]> {
+    let Inst{7-4}   = 0b0001;
+    let Inst{19-8}  = 0b111111111111;
+    let Inst{27-20} = 0b00010010;
+  }
+}
+
 // FIXME: remove when we have a way to marking a MI with these properties.
 // FIXME: Should pc be an implicit operand like PICADD, etc?
 let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,





More information about the llvm-branch-commits mailing list