forked from Imagelibrary/binutils-gdb
2002-04-01 Daniel Jacobowitz <drow@mvista.com>
* gdb.asm/Makefile.in: Correct dependencies.
* gdb.asm/powerpc.inc: New file.
* gdb.asm/asm-source.exp: Add PowerPC.
* gdb.asm/configure.in: Likewise.
* gdb.asm/configure: Regenerated.
This commit is contained in:
46
gdb/testsuite/gdb.asm/powerpc.inc
Normal file
46
gdb/testsuite/gdb.asm/powerpc.inc
Normal file
@@ -0,0 +1,46 @@
|
||||
comment "subroutine prologue"
|
||||
.macro gdbasm_enter
|
||||
stwu 1, -16(1)
|
||||
stw 31, 8(1)
|
||||
mr 31, 1
|
||||
mflr 0
|
||||
stw 0, 20(1)
|
||||
.endm
|
||||
|
||||
comment "subroutine epilogue"
|
||||
.macro gdbasm_leave
|
||||
lwz 0, 20(1)
|
||||
mtlr 0
|
||||
lwz 31, 8(1)
|
||||
lwz 1, 0(1)
|
||||
blr
|
||||
.endm
|
||||
|
||||
.macro gdbasm_call subr
|
||||
bl \subr
|
||||
.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..."
|
||||
li 0, 0
|
||||
lwz 0, 0(0)
|
||||
.endm
|
||||
|
||||
comment "crt0 startup"
|
||||
.macro gdbasm_startup
|
||||
.endm
|
||||
|
||||
comment "Declare a data variable"
|
||||
.macro gdbasm_datavar name value
|
||||
.data
|
||||
\name:
|
||||
.long \value
|
||||
.endm
|
||||
Reference in New Issue
Block a user