gas/
authorJan Beulich <jbeulich@novell.com>
Tue, 9 Apr 2013 11:05:45 +0000 (11:05 +0000)
committerJan Beulich <jbeulich@novell.com>
Tue, 9 Apr 2013 11:05:45 +0000 (11:05 +0000)
2013-04-09  Jan Beulich <jbeulich@suse.com>

* gas/config/tc-arm.c (do_neon_mov): Fake an instruction suffix
if there was none specified for moves between scalar and core
register.

gas/testsuite/
2013-04-09  Jan Beulich <jbeulich@suse.com>

* gas/arm/neon-omit.s: Add tests for suffix less VMOV.
* gas/arm/neon-omit.d: Update accordingly.

gas/ChangeLog
gas/config/tc-arm.c
gas/testsuite/ChangeLog
gas/testsuite/gas/arm/neon-omit.d
gas/testsuite/gas/arm/neon-omit.s

index c9b1e31..48ac7e5 100644 (file)
@@ -1,5 +1,11 @@
 2013-04-09  Jan Beulich <jbeulich@suse.com>
 
+       * gas/config/tc-arm.c (do_neon_mov): Fake an instruction suffix
+       if there was none specified for moves between scalar and core
+       register.
+
+2013-04-09  Jan Beulich <jbeulich@suse.com>
+
        * gas/config/tc-arm.c (do_neon_ldx_stx): Reject VSTn in the
        NEON_ALL_LANES case.
 
index 83f66dd..9b8d8c1 100644 (file)
@@ -15360,6 +15360,16 @@ do_neon_mov (void)
         unsigned dn = NEON_SCALAR_REG (inst.operands[0].reg);
         unsigned x = NEON_SCALAR_INDEX (inst.operands[0].reg);
 
+       /* .<size> is optional here, defaulting to .32. */
+       if (inst.vectype.elems == 0
+           && inst.operands[0].vectype.type == NT_invtype
+           && inst.operands[1].vectype.type == NT_invtype)
+         {
+           inst.vectype.el[0].type = NT_untyped;
+           inst.vectype.el[0].size = 32;
+           inst.vectype.elems = 1;
+         }
+
         et = neon_check_type (2, NS_NULL, N_8 | N_16 | N_32 | N_KEY, N_EQK);
         logsize = neon_logbits (et.size);
 
@@ -15409,6 +15419,16 @@ do_neon_mov (void)
         unsigned x = NEON_SCALAR_INDEX (inst.operands[1].reg);
         unsigned abcdebits = 0;
 
+       /* .<dt> is optional here, defaulting to .32. */
+       if (inst.vectype.elems == 0
+           && inst.operands[0].vectype.type == NT_invtype
+           && inst.operands[1].vectype.type == NT_invtype)
+         {
+           inst.vectype.el[0].type = NT_untyped;
+           inst.vectype.el[0].size = 32;
+           inst.vectype.elems = 1;
+         }
+
        et = neon_check_type (2, NS_NULL,
                              N_EQK, N_S8 | N_S16 | N_U8 | N_U16 | N_32 | N_KEY);
         logsize = neon_logbits (et.size);
index 28d8530..510927f 100644 (file)
@@ -1,5 +1,10 @@
 2013-04-09  Jan Beulich <jbeulich@suse.com>
 
+       * gas/arm/neon-omit.s: Add tests for suffix less VMOV.
+       * gas/arm/neon-omit.d: Update accordingly.
+
+2013-04-09  Jan Beulich <jbeulich@suse.com>
+
        * gas/arm/neon-addressing-bad.s: Add test for further invalid VST
        operands.
        * gas/arm/neon-addressing-bad.l: Update accordingly. 
index 3a1eeab..540f453 100644 (file)
@@ -93,4 +93,6 @@ Disassembly of section .text:
 0[0-9a-f]+ <[^>]+> f3954556    vsli\.16        q2, q3, #5
 0[0-9a-f]+ <[^>]+> f3bff6b7    vqshlu\.s64     d15, d23, #63.*
 0[0-9a-f]+ <[^>]+> f2b25386    vext\.8 d5, d18, d6, #3
+0[0-9a-f]+ <[^>]+> ee000b10    vmov(\.32)?     d0\[0\], r0
+0[0-9a-f]+ <[^>]+> ee100b10    vmov(\.32)?     r0, d0\[0\]
 0[0-9a-f]+ <[^>]+> f3020d54    vmul\.f32       q0, q1, q2
index 35490a5..54f1817 100644 (file)
        vqshlu.s64 d15,d23,#63
        vext.8 d5,d18,d6,#3
 
+@ Also test VMOV with omitted suffix:
+
+       vmov d0[0], r0
+       vmov r0, d0[0]
+
 @ PR 11136 - this used to crash the assembler.
        vmul.f32   q0,q1,q2