aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-08-25 23:43:40 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-08-25 23:43:40 +0000
commit4630e4987c8b899c6a602df457ff61a2e833c5e2 (patch)
tree665b308cac14e6b974400134dcaa777610ab9ab6 /gdb/testsuite
parent004d836aa6d0b6111620caf1024420da5ae80fc9 (diff)
downloadfsf-binutils-gdb-4630e4987c8b899c6a602df457ff61a2e833c5e2.zip
fsf-binutils-gdb-4630e4987c8b899c6a602df457ff61a2e833c5e2.tar.gz
fsf-binutils-gdb-4630e4987c8b899c6a602df457ff61a2e833c5e2.tar.bz2
2003-08-25 Jeff Johnston <jjohnstn@redhat.com>
* gdb.asm/asm-source.exp: Add ia64 support. * gdb.asm/ia64.inc: New file.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.asm/asm-source.exp4
-rw-r--r--gdb/testsuite/gdb.asm/ia64.inc49
3 files changed, 58 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index c32a6a5..39a6dd9 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-25 Jeff Johnston <jjohnstn@redhat.com>
+
+ * gdb.asm/asm-source.exp: Add ia64 support.
+ * gdb.asm/ia64.inc: New file.
+
2003-08-22 Michael Chastain <mec@shout.net>
* gdb.cp: New directory.
diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp
index 7bebd09..ef7d74f 100644
--- a/gdb/testsuite/gdb.asm/asm-source.exp
+++ b/gdb/testsuite/gdb.asm/asm-source.exp
@@ -103,6 +103,10 @@ switch -glob -- [istarget] {
"m68k-*-*" {
set asm-arch m68k
}
+ "ia64-*-*" {
+ set asm-arch ia64
+ set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
+ }
}
if { "${asm-arch}" == "" } {
diff --git a/gdb/testsuite/gdb.asm/ia64.inc b/gdb/testsuite/gdb.asm/ia64.inc
new file mode 100644
index 0000000..d55cd22
--- /dev/null
+++ b/gdb/testsuite/gdb.asm/ia64.inc
@@ -0,0 +1,49 @@
+ comment "subroutine prologue"
+ .macro gdbasm_enter
+ alloc r33=ar.pfs,0,2,0,0
+ mov r32=b0
+ nop.i 0
+ .endm
+
+ comment "subroutine epilogue"
+ .macro gdbasm_leave
+ nop.m 0
+ mov ar.pfs=r33
+ mov b0=r32
+ nop.m 0
+ nop.f 0
+ br.ret.sptk.many b0
+ .endm
+
+ .macro gdbasm_call subr
+ nop.m 0
+ nop.f 0
+ br.call.sptk.many b0=\subr
+ .endm
+
+ .macro gdbasm_several_nops
+ nop.m 0
+ nop.i 0
+ nop.i 0
+ .endm
+
+ comment "exit (0)"
+ .macro gdbasm_exit0
+ break.m 0x0
+ nop.m 0
+ nop.i 0
+ .endm
+
+ comment "crt0 startup"
+ .macro gdbasm_startup
+ mov r32=r0
+ nop.i 0
+ nop.i 0
+ .endm
+
+ comment "Declare a data variable"
+ .macro gdbasm_datavar name value
+ .data
+\name:
+ .long \value
+ .endm