X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=debug.sh;h=12772c22e09d8cc8fd535b12d6da647478bfbc6a;hb=1e20129cc5801258ef162be39d764693511ff6fb;hp=6ecb8ced20b2e1285003d35a38bf16a534db6800;hpb=3f5ae14cc91f1a3fe6a4c39bd4efc6f5f93220c5;p=rrq%2Frrqforth.git diff --git a/debug.sh b/debug.sh index 6ecb8ce..12772c2 100755 --- a/debug.sh +++ b/debug.sh @@ -3,21 +3,31 @@ PFX='0x[0-9a-f]* rrqforth.asm:[0-9]*[ ]*' grep "${PFX}do" rrqforth.map | sed 's/ .*//;s/^/break */' > gdbinit +NBR=( $(eval "echo {1..$(wc -l < gdbinit)}") ) -NBR=$(wc -l < gdbinit) +for I in ${NBR[@]} ; do echo disable $I ; done >> gdbinit DS="$(grep "${PFX}DS_TOP:" rrqforth.map | sed 's/ .*//')" - +RS="$(grep "${PFX}RS_TOP:" rrqforth.map | sed 's/ .*//')" cat <> gdbinit display *(void**)\$rsp@(((void*)$DS-\$rsp)/8)+1 -display (char*)(*(void**)(\$rax-16)+32) +display *(void**)\$rbp@(((void*)$RS-\$rbp)/8)+1 display (void*)\$rax display (void*)\$rsi define si stepi - x/3i \$pc - python gdb.execute("shell ./grepline.sh " + str(gdb.parse_and_eval("\$pc"))) + x/2i \$pc + python gdb.execute("shell ./grepline.sh rrqforth.map " + str(gdb.parse_and_eval("\$pc"))) +end + +define map + if \$argc == 1 + python gdb.execute("shell ./grepline.sh rrqforth.map \$arg0" + " 1 " ) + else + python gdb.execute("shell ./grepline.sh rrqforth.map \$arg0" + " 1 " + "\$arg1" ) + end +end EOF exec gdb -x gdbinit rrqforth