Bug 12793 - arm: push/pop equivalents using stm/ldm mnemonics assembled inconsistently
Summary: arm: push/pop equivalents using stm/ldm mnemonics assembled inconsistently
Status: NEW
Alias: None
Product: binutils
Classification: Unclassified
Component: gas (show other bugs)
Version: 2.22
: P2 normal
Target Milestone: ---
Assignee: unassigned
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-05-20 17:37 UTC by Dave Martin
Modified: 2014-07-10 05:07 UTC (History)
2 users (show)

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dave Martin 2011-05-20 17:37:25 UTC
Observed on trunk, 2011-05-17
Configured with --{build,host}=x86_64-pc-linux-gnu --target=arm-elf-eabi

$ cat <<EOF >stm-ldm.s
.syntax unified
.thumb

.type f, %function
.globl f
f:
        push    {r0}
        stmfd   sp!, {r0}
@       stmfd.n sp!, {r0}
        push    {r0-r1}
        stmfd   sp!, {r0-r1}
@       stmfd.n sp!, {r0-r1}
        push    {r0,lr}
        stmfd   sp!, {r0,lr}

        ldmfd   sp!, {r0,lr}
@       ldmfd.n sp!, {r0,lr}
        pop     {r0,pc}
        ldmfd   sp!, {r0-r1}
        ldmfd.n sp!, {r0-r1}
        ldmfd   sp!, {r0}
        ldmfd.n sp!, {r0}
        pop     {r0}
EOF

# The commented-out lines above generate "cannot honor width suffix" errors if assembled.
# All of the above ldmfd/stmfd instructions are equivalent to the adjacent push/pop mnemonics, and could be assembled to 16-bit encodings.

$ as -march=armv7-a -o stm-ldm.o stm-ldm.s
$ objdump -d stm-ldm.o

stm-ldm.o:     file format elf32-littlearm


Disassembly of section .text:

00000000 <f>:
   0:   b401            push    {r0}
   2:   f84d 0d04       str.w   r0, [sp, #-4]!
   6:   b403            push    {r0, r1}
   8:   e92d 0003       stmdb   sp!, {r0, r1}
   c:   b501            push    {r0, lr}
   e:   e92d 4001       stmdb   sp!, {r0, lr}
  12:   e8bd 4001       ldmia.w sp!, {r0, lr}
  16:   bd01            pop     {r0, pc}
  18:   bc03            pop     {r0, r1}
  1a:   bc03            pop     {r0, r1}
  1c:   bc01            pop     {r0}
  1e:   bc01            pop     {r0}
  20:   bc01            pop     {r0}


It looks rather like the older ARM logic may be being used to choose encodings when using the ldm/stm mnemonics in Thumb, in some cases.
Comment 1 DeepaB 2014-07-10 05:07:38 UTC
I checked this with GNU assembler version 2.24.0 (arm-none-eabi).Error "Error: cannot honor width suffix" looks correct.".n" suffix for an instruction says that the instruction will be of 2 byte length.stmfd/ldmfd instructions are of 4 byte length and can be reduced to equivalent 2 bytes if register R0-R7 (<LDM|STM> Rn!, <registers>) is used.