aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorRandolph Chung <tausq@debian.org>2005-12-09 11:05:26 +0000
committerRandolph Chung <tausq@debian.org>2005-12-09 11:05:26 +0000
commit9fdb1f509e56d4408647c62e12ae0fc027f94a4b (patch)
treef3f4d78f109bdaabaa65a021972f0a4c5cf1b322 /gdb
parent5f2c56f79b52dc7ded146a44e519b436637b7d7c (diff)
downloadgdb-9fdb1f509e56d4408647c62e12ae0fc027f94a4b.zip
gdb-9fdb1f509e56d4408647c62e12ae0fc027f94a4b.tar.gz
gdb-9fdb1f509e56d4408647c62e12ae0fc027f94a4b.tar.bz2
2005-12-09 Randolph Chung <tausq@debian.org>
* gdb.asm/asm-source.exp (hppa64-*-hpux*): New. * gdb.asm/pa64.inc: New file.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.asm/asm-source.exp5
-rw-r--r--gdb/testsuite/gdb.asm/pa64.inc46
3 files changed, 56 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index cbf9c5b..9b2ecf8 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,10 @@
2005-12-09 Randolph Chung <tausq@debian.org>
+ * gdb.asm/asm-source.exp (hppa64-*-hpux*): New.
+ * gdb.asm/pa64.inc: New file.
+
+2005-12-09 Randolph Chung <tausq@debian.org>
+
* gdb.asm/common.inc: Indent commands.
* gdb.asm/asmsrc1.s: Likewise.
* gdb.asm/asmsrc2.s: Likewise.
diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp
index ced0af7..eceeb5d 100644
--- a/gdb/testsuite/gdb.asm/asm-source.exp
+++ b/gdb/testsuite/gdb.asm/asm-source.exp
@@ -144,6 +144,11 @@ switch -glob -- [istarget] {
set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
set debug-flags "-gdwarf-2"
}
+ "hppa64-*-hpux*" {
+ set asm-arch pa64
+ set asm-flags "-I${srcdir}/${subdir} -I${objdir}/${subdir}"
+ set debug-flags "-gdwarf-2"
+ }
"h83*-*" {
set asm-arch h8300
set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
diff --git a/gdb/testsuite/gdb.asm/pa64.inc b/gdb/testsuite/gdb.asm/pa64.inc
new file mode 100644
index 0000000..a8aafcd
--- /dev/null
+++ b/gdb/testsuite/gdb.asm/pa64.inc
@@ -0,0 +1,46 @@
+ comment "subroutine prologue"
+ .macro gdbasm_enter
+ std %rp, -16(%sp)
+ copy %r3, %r1
+ copy %sp, %r3
+ std,ma %r1, 128(%sp)
+ .endm
+
+ comment "subroutine epilogue"
+ .macro gdbasm_leave
+ ldd -16(%r3), %rp
+ bve (%rp)
+ ldd,mb -128(%sp), %r3
+ .endm
+
+ .macro gdbasm_call subr
+ b,l \subr , %rp
+ nop
+ .endm
+
+ .macro gdbasm_several_nops
+ nop
+ nop
+ nop
+ nop
+ .endm
+
+ comment "exit (0)"
+ .macro gdbasm_exit0
+ comment "Don't know how to exit, but this will certainly halt..."
+ ldw 0(%r0), %r1
+ .endm
+
+ comment "crt0 startup"
+ .macro gdbasm_startup
+ .align 8
+ .endm
+
+ comment "Declare a data variable"
+ .purgem gdbasm_datavar
+ .macro gdbasm_datavar name value
+ .data
+\name:
+ .long \value
+ .endm
+