Thumb assembly parsing and encoding for LSL(immediate).
authorJim Grosbach <grosbach@apple.com>
Fri, 19 Aug 2011 19:29:25 +0000 (19:29 +0000)
committerJim Grosbach <grosbach@apple.com>
Fri, 19 Aug 2011 19:29:25 +0000 (19:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138063 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrThumb.td
lib/Target/ARM/AsmParser/ARMAsmParser.cpp
test/MC/ARM/basic-thumb-instructions.s
test/MC/ARM/thumb-diagnostics.s

index 63d8b48734e6d504e688c5df89e4352b9858e14d..b19cccbd99248a054b0a8f55e3cb83e9e757d9dd 100644 (file)
@@ -970,7 +970,7 @@ def tEOR :                      // A8.6.45
 
 // LSL immediate
 def tLSLri :                    // A8.6.88
-  T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, i32imm:$imm5),
+  T1sIGenEncodeImm<{0,0,0,?,?}, (outs tGPR:$Rd), (ins tGPR:$Rm, imm0_31:$imm5),
                    IIC_iMOVsi,
                    "lsl", "\t$Rd, $Rm, $imm5",
                    [(set tGPR:$Rd, (shl tGPR:$Rm, (i32 imm:$imm5)))]> {
index 60f16f836258f310b32e2808f160ae4aedc3e981..7197b99b25bfe610295ccd4dda7cebd97fc6afb8 100644 (file)
@@ -2728,7 +2728,7 @@ StringRef ARMAsmParser::splitMnemonic(StringRef Mnemonic,
   // predicated but do have a carry-set and so weren't caught above.
   if (Mnemonic != "adcs" && Mnemonic != "bics" && Mnemonic != "movs" &&
       Mnemonic != "muls" && Mnemonic != "smlals" && Mnemonic != "smulls" &&
-      Mnemonic != "umlals" && Mnemonic != "umulls") {
+      Mnemonic != "umlals" && Mnemonic != "umulls" && Mnemonic != "lsls") {
     unsigned CC = StringSwitch<unsigned>(Mnemonic.substr(Mnemonic.size()-2))
       .Case("eq", ARMCC::EQ)
       .Case("ne", ARMCC::NE)
index 50554326ca89989eeb7bc0c3471e5de27fc4a801..7ed665c24139725958c741cab5249132c3d86ce4 100644 (file)
@@ -260,3 +260,13 @@ _func:
 
 @ CHECK: ldrsb r6, [r2, r6]            @ encoding: [0x96,0x57]
 @ CHECK: ldrsh r3, [r7, r1]            @ encoding: [0x7b,0x5e]
+
+
+@------------------------------------------------------------------------------
+@ LSL (immediate)
+@------------------------------------------------------------------------------
+        lsls r4, r5, #0
+        lsls r4, r5, #4
+
+@ CHECK: lsls  r4, r5, #0              @ encoding: [0x2c,0x00]
+@ CHECK: lsls  r4, r5, #4              @ encoding: [0x2c,0x01]
index d067b2be6c627d87cad6cf926ccbe480d06667b6..df8f2262caafa434ea33b90db611d5945dfde1ab 100644 (file)
@@ -49,3 +49,14 @@ error: invalid operand for instruction
 @ CHECK-ERRORS: error: writeback operator '!' expected
 @ CHECK-ERRORS:         ldm r2, {r5, r7}
 @ CHECK-ERRORS:             ^
+
+
+@ Out of range immediates for LSL instruction.
+        lsls r4, r5, #-1
+        lsls r4, r5, #32
+@ CHECK-ERRORS: error: invalid operand for instruction
+@ CHECK-ERRORS:         lsls r4, r5, #-1
+@ CHECK-ERRORS:                      ^
+@ CHECK-ERRORS: error: invalid operand for instruction
+@ CHECK-ERRORS:         lsls r4, r5, #32
+@ CHECK-ERRORS:                      ^