diff options
author | Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> | 2004-10-05 04:13:42 +0000 |
---|---|---|
committer | Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> | 2004-10-05 04:13:42 +0000 |
commit | 73cb587da48f2fe733c238aad5dd89d8f797e364 (patch) | |
tree | 74f83b7e354eb438bb9c00286d345145e1726b2e | |
parent | 14588880980084ff3a58971a5167ce950dd9c5fe (diff) | |
download | gdb-73cb587da48f2fe733c238aad5dd89d8f797e364.zip gdb-73cb587da48f2fe733c238aad5dd89d8f797e364.tar.gz gdb-73cb587da48f2fe733c238aad5dd89d8f797e364.tar.bz2 |
2004-10-05 Kei Sakamoto <sakamoto.kei@renesas.com>
* gdb.asm/asm-source.exp: Add m32r-linux target.
* gdb.asm/m32r-linux.inc: New file.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.asm/asm-source.exp | 3 | ||||
-rw-r--r-- | gdb/testsuite/gdb.asm/m32r-linux.inc | 34 |
3 files changed, 42 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index cc1861c..991ac63 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-10-05 Kei Sakamoto <sakamoto.kei@renesas.com> + + * gdb.asm/asm-source.exp: Add m32r-linux target. + * gdb.asm/m32r-linux.inc: New file. + 2004-09-24 Andrew Cagney <cagney@redhat.com> David Anderson <anderson@redhat.com> diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp index e2c9e8a..fcd0ae0 100644 --- a/gdb/testsuite/gdb.asm/asm-source.exp +++ b/gdb/testsuite/gdb.asm/asm-source.exp @@ -71,6 +71,9 @@ switch -glob -- [istarget] { "i\[3456\]86-*-*" { set asm-arch i386 } + "m32r*-linux*" { + set asm-arch m32r-linux + } "m32r*-*" { set asm-arch m32r append link-flags "--whole-archive -lgloss --no-whole-archive" diff --git a/gdb/testsuite/gdb.asm/m32r-linux.inc b/gdb/testsuite/gdb.asm/m32r-linux.inc new file mode 100644 index 0000000..64d6504 --- /dev/null +++ b/gdb/testsuite/gdb.asm/m32r-linux.inc @@ -0,0 +1,34 @@ + comment "subroutine prologue" + .macro gdbasm_enter + push fp -> push lr + addi sp,#-4 -> mv fp,sp + .endm + + comment "subroutine epilogue" + .macro gdbasm_leave + addi sp,#4 -> pop lr + pop fp -> jmp lr + .endm + + .macro gdbasm_call subr + bl \subr + .endm + + .macro gdbasm_several_nops + nop + nop + nop + nop + .endm + + comment "exit (0)" + .macro gdbasm_exit0 + ldi r0,#1 -> ldi r1,#0 + ldi r2,#0 -> ldi r3,#0 + trap #0 -> nop + .endm + + comment "crt0 startup" + .macro gdbasm_startup + ldi fp,#0 + .endm |