summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.asm
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2005-03-08 08:59:17 +0000
committerCorinna Vinschen <corinna@vinschen.de>2005-03-08 08:59:17 +0000
commit1f667e81b7bc0355b9432deb9d2ec58af7ed0207 (patch)
tree1bdecde706ce957ad5f3fd9561618364aab432c2 /gdb/testsuite/gdb.asm
parent8e8faa507b0bd99d0c695407b6c77180b3f9469b (diff)
downloadgdb-1f667e81b7bc0355b9432deb9d2ec58af7ed0207.tar.gz
* gdb.asm/asm-source.exp: Add iq2000 case.
* gdb.asm/iq2000.inc: New file.
Diffstat (limited to 'gdb/testsuite/gdb.asm')
-rw-r--r--gdb/testsuite/gdb.asm/asm-source.exp3
-rw-r--r--gdb/testsuite/gdb.asm/iq2000.inc41
2 files changed, 44 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp
index 60650ceb6a9..6f4821ec792 100644
--- a/gdb/testsuite/gdb.asm/asm-source.exp
+++ b/gdb/testsuite/gdb.asm/asm-source.exp
@@ -122,6 +122,9 @@ switch -glob -- [istarget] {
set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
set debug-flags "-gdwarf-2"
}
+ "iq2000-*-*" {
+ set asm-arch iq2000
+ }
"hppa*-linux-*" {
set asm-arch pa
set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
diff --git a/gdb/testsuite/gdb.asm/iq2000.inc b/gdb/testsuite/gdb.asm/iq2000.inc
new file mode 100644
index 00000000000..f421ea0080a
--- /dev/null
+++ b/gdb/testsuite/gdb.asm/iq2000.inc
@@ -0,0 +1,41 @@
+ comment "subroutine prologue"
+ .macro gdbasm_enter
+ addiu %29, %29, 0xfffc
+ sw %31,0(%29)
+ .endm
+
+ comment "subroutine epilogue"
+ .macro gdbasm_leave
+ lw %31,0(%29)
+ addiu %29, %29, 4
+ jr %31
+ nop
+ .endm
+
+ .macro gdbasm_call subr
+ jal \subr
+ nop
+ .endm
+
+ .macro gdbasm_several_nops
+ nop
+ nop
+ nop
+ nop
+ .endm
+
+ comment "exit (0)"
+ .macro gdbasm_exit0
+ ori %4, %0, 1 # SYS_exit
+ ori %5, %0, 0 # normal exit code
+ ori %6, %0, 0
+ ori %7, %0, 0
+ syscall
+ .endm
+
+ comment "crt0 startup"
+ .macro gdbasm_startup
+ andi %0, %0, 0
+ addiu %29, %0, 0xffc
+ .endm
+