diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-03-17 15:09:39 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-17 08:09:39 +0100 |
| commit | 8b750200360cede1b6442462ed47f25c27f376d5 (patch) | |
| tree | cbf3e23c879b78bc5deec5a3b04e113771e4f5f1 | |
| parent | e1d121aa6b58f16cee60c63ccca70342de24596a (diff) | |
| download | box64-8b750200360cede1b6442462ed47f25c27f376d5.tar.gz box64-8b750200360cede1b6442462ed47f25c27f376d5.zip | |
[DOCS] Added ranged gdbjit documentation (#2440)
| -rw-r--r-- | docs/USAGE.md | 1 | ||||
| -rw-r--r-- | docs/box64.pod | 3 | ||||
| -rw-r--r-- | docs/gen/usage.json | 5 |
3 files changed, 8 insertions, 1 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index af3efddb..33507f44 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -396,6 +396,7 @@ The GDBJIT debugging support, only available on build with `-DGDBJIT=ON`, enable * 0: Dynarec will not generate GDBJIT debuginfo. [Default] * 1: Dynarec will generate GDBJIT debuginfo. * 2: Dynarec will generate detailed GDBJIT debuginfo with internal state. + * 0xXXXXXXX-0xYYYYYYY: Define the range where Dynarec will generate detailed GDBJIT debuginfo with internal state. ### BOX64_DYNAREC_LOG diff --git a/docs/box64.pod b/docs/box64.pod index 8d4ae7e2..82e7153b 100644 --- a/docs/box64.pod +++ b/docs/box64.pod @@ -222,13 +222,14 @@ Define max allowed forward value when building block. * XXXX : Allow up to XXXX bytes of gap between end of the block and the next forward jump. -=item B<BOX64_DYNAREC_GDBJIT> =I<0|1|2> +=item B<BOX64_DYNAREC_GDBJIT> =I<0|1|2|0xXXXXXXX-0xYYYYYYY> The GDBJIT debugging support, only available on build with `-DGDBJIT=ON`, enable it with gdb command: jit-reader-load /usr/local/lib/libbox64gdbjitreader.so. * 0 : Dynarec will not generate GDBJIT debuginfo. [Default] * 1 : Dynarec will generate GDBJIT debuginfo. * 2 : Dynarec will generate detailed GDBJIT debuginfo with internal state. + * 0xXXXXXXX-0xYYYYYYY : Define the range where Dynarec will generate detailed GDBJIT debuginfo with internal state. =item B<BOX64_DYNAREC_LOG> =I<0|1|2|3> diff --git a/docs/gen/usage.json b/docs/gen/usage.json index 9059a84b..63be95e0 100644 --- a/docs/gen/usage.json +++ b/docs/gen/usage.json @@ -400,6 +400,11 @@ "key": "2", "description": "Dynarec will generate detailed GDBJIT debuginfo with internal state.", "default": false + }, + { + "key": "0xXXXXXXX-0xYYYYYYY", + "description": "Define the range where Dynarec will generate detailed GDBJIT debuginfo with internal state.", + "default": false } ] }, |