diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/USAGE.md | 6 | ||||
| -rw-r--r-- | docs/box64.pod | 7 | ||||
| -rw-r--r-- | docs/gen/usage.json | 12 |
3 files changed, 25 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 8fac8909..354a173f 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -390,6 +390,12 @@ Enable DynaRec dump. * 1: Dump DynaRec blocks. * 2: Dump DynaRec blocks with some colors. +### BOX64_DYNAREC_DUMP_RANGE + +Dump DynaRec blocks in the specified range. + + * 0xXXXXXXXX-0xYYYYYYYY: Define the range where dynablock gets dumped (inclusive-exclusive). + ### BOX64_DYNAREC_GDBJIT The GDBJIT debugging support, only available on build with `-DGDBJIT=ON`, enable it with gdb command: jit-reader-load /usr/local/lib/libbox64gdbjitreader.so. diff --git a/docs/box64.pod b/docs/box64.pod index 7f46aaaf..ba248ef8 100644 --- a/docs/box64.pod +++ b/docs/box64.pod @@ -197,6 +197,13 @@ Enable DynaRec dump. * 2 : Dump DynaRec blocks with some colors. +=item B<BOX64_DYNAREC_DUMP_RANGE> =I<0xXXXXXXXX-0xYYYYYYYY> + +Dump DynaRec blocks in the specified range. + + * 0xXXXXXXXX-0xYYYYYYYY : Define the range where dynablock gets dumped (inclusive-exclusive). + + =item B<BOX64_DYNAREC_FASTNAN> =I<0|1> Enable or disable fast NaN handling. diff --git a/docs/gen/usage.json b/docs/gen/usage.json index 0a09d5a1..831467b0 100644 --- a/docs/gen/usage.json +++ b/docs/gen/usage.json @@ -326,6 +326,18 @@ ] }, { + "name": "BOX64_DYNAREC_DUMP_RANGE", + "description": "Dump DynaRec blocks in the specified range.", + "category": "Debugging", + "options": [ + { + "key": "0xXXXXXXXX-0xYYYYYYYY", + "description": "Define the range where dynablock gets dumped (inclusive-exclusive).", + "default": false + } + ] + }, + { "name": "BOX64_DYNAREC_FASTNAN", "description": "Enable or disable fast NaN handling.", "category": "Performance", |