oops - omitted from previous delta

This commit is contained in:
Nick Clifton 2012-04-12 07:47:36 +00:00
parent 6530b175a1
commit 465cb9fba7
4 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#objdump: -dr --prefix-addresses --show-raw-insn
#name: PUSH and POP
# Test the `PUSH' and `POP' instructions
.*: +file format .*arm.*
Disassembly of section .text:
0+000 <.*> e52d0004 push {r0} ; \(str r0, \[sp, #-4\]!\)
0+004 <.*> e92d000e push {r1, r2, r3}
0+008 <.*> e52d9004 push {r9} ; \(str r9, \[sp, #-4\]!\)
0+00c <.*> e49d9004 pop {r9} ; \(ldr r9, \[sp\], #4\)
0+010 <.*> e8bd000e pop {r1, r2, r3}
0+014 <.*> e49d0004 pop {r0} ; \(ldr r0, \[sp\], #4\)

View File

@ -0,0 +1,8 @@
.text
.syntax unified
push {r0}
push {r1, r2, r3}
push {r9}
pop {r9}
pop {r1, r2, r3}
pop {r0}

View File

@ -0,0 +1,14 @@
#objdump: -dr --prefix-addresses --show-raw-insn
#name: STM and LDM
# Test the `STM*' and `LDM*' instructions
.*: +file format .*arm.*
Disassembly of section .text:
0+000 <.*> e92d0001 push {r0}
0+004 <.*> e92d000e push {r1, r2, r3}
0+008 <.*> e92d0200 push {r9}
0+00c <.*> e8bd0200 pop {r9}
0+010 <.*> e8bd000e pop {r1, r2, r3}
0+014 <.*> e8bd0001 pop {r0}

View File

@ -0,0 +1,8 @@
.text
.syntax unified
stmfd sp!, {r0}
stmfd sp!, {r1, r2, r3}
stmfd sp!, {r9}
ldmia sp!, {r9}
ldmia sp!, {r1, r2, r3}
ldmia sp!, {r0}