ca9efc9063
* gdb.asm/asm-source.exp: Add tests for list, search, finish, return, next, info source, info sources, info line, global and static variables, and static functions. * gdb.asm/common.inc: New macro gdbasm_datavar (default definition). * gdb.asm/i386.inc: Override default definition of gdbasm_datavar. * gdb.asm/asmsrc1.s: Add a static function and some variables. * gdb.asm/asmsrc2.s: Make foo2 call foo3 twice (to test 'next'). * gdb.asm/d10v.inc (gdbasm_enter): Set up frame pointer. (gdbasm_leave): Restore frame pointer. (gdbasm_startup): Copy stack set-up from crt0.S.
56 lines
865 B
PHP
56 lines
865 B
PHP
comment "subroutine prologue"
|
|
.macro gdbasm_enter
|
|
st r11,@-sp
|
|
st r13,@-sp
|
|
mv r11,sp
|
|
.endm
|
|
|
|
comment "subroutine epilogue"
|
|
.macro gdbasm_leave
|
|
add3 sp,r11,0
|
|
ld r13,@sp+
|
|
ld r11,@sp+
|
|
jmp r13
|
|
.endm
|
|
|
|
.macro gdbasm_call subr
|
|
bl \subr
|
|
.endm
|
|
|
|
.macro gdbasm_several_nops
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
.endm
|
|
|
|
comment "exit (0)"
|
|
.macro gdbasm_exit0
|
|
ldi r4, 1
|
|
ldi r0, 0
|
|
trap 15
|
|
.endm
|
|
|
|
comment "crt0 startup"
|
|
.macro gdbasm_startup
|
|
; R14 always contains memory base address (0)
|
|
|
|
ldi r14,0
|
|
|
|
; Set the USER and SYSTEM stack pointers.
|
|
|
|
ldi r0, 0 ; zero arguments
|
|
ldi r1, 0
|
|
mvtc r0, psw ; select SPI and set it
|
|
ldi sp, _stack
|
|
ldi r10, 0x8000 ; select SPU/FP and set it
|
|
mvtc r10, psw || ldi r11, 0; clear stack frame
|
|
ldi sp, _stack - 0x200
|
|
ldi r13, 0
|
|
|
|
st r11, @-sp
|
|
st r13, @-sp
|
|
; mv r11, sp
|
|
|
|
.endm
|