Skip to content

Commit 4f40380

Browse files
wavexxDRracer
authored andcommitted
tools: document functions in utils.gdb
1 parent 1b22aac commit 4f40380

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

tools/utils.gdb

+12-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ end
99

1010
document load_dump
1111
Load a crash dump, setup PC/SP and show the current backtrace
12-
Usage: load_dump <file> <pc-addr> <sp-addr>
12+
Usage: load_dump <file> <PC-addr> <SP-addr>
1313
end
1414

1515

@@ -32,7 +32,9 @@ define sp_skip
3232
end
3333

3434
document sp_skip
35-
TODO
35+
Decode the PC address at SP+offset, then show the resulting stack.
36+
The default (and minimum) offset is 3.
37+
Usage: sp_skip [off]
3638
end
3739

3840

@@ -44,7 +46,8 @@ define sp_restore
4446
end
4547

4648
document sp_restore
47-
TODO
49+
Undo an sp_skip move (restore existing PC/SP positions)
50+
Usage: sp_restore
4851
end
4952

5053

@@ -55,7 +58,9 @@ define sp_test
5558
end
5659

5760
document sp_test
58-
TODO
61+
Attempt to decode the PC address at SP+offset, then show the resulting stack.
62+
The default (and minimum) offset is 3.
63+
Usage: sp_test [off]
5964
end
6065

6166

@@ -78,5 +83,7 @@ define sp_scan
7883
end
7984

8085
document sp_scan
81-
TODO
86+
Attempt to decode PC at any location starting from the SP+3 and up to SP-end
87+
(by default the end of the SRAM) and show the resulting stack at all locations.
88+
Usage: sp_scan [SP-end]
8289
end

0 commit comments

Comments
 (0)