summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-10-10 14:54:19 -0700
committerGitHub <noreply@github.com>2023-10-10 14:54:19 -0700
commit4d0a619f712bfd189dcedcf9998b143a731a2211 (patch)
tree1d2b9cf61d66277f34e1abfe12d0eb36f130fa02 /doc
parentef7fa8bd0e174b8a96681abdce57b5b6afbe5c32 (diff)
YJIT: Allow --yjit-trace-exits on release builds (#8619)
Diffstat (limited to 'doc')
-rw-r--r--doc/yjit/yjit.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md
index 0aeb14a69a..b1a4d5f022 100644
--- a/doc/yjit/yjit.md
+++ b/doc/yjit/yjit.md
@@ -170,7 +170,7 @@ compiled, lower values mean less code is compiled (default 200000)
- `--yjit-exec-mem-size=N`: size of the executable memory block to allocate, in MiB (default 64 MiB in Ruby 3.2, 128 MiB in Ruby 3.3+)
- `--yjit-stats`: print statistics after the execution of a program (incurs a run-time cost)
- `--yjit-stats=quiet`: gather statistics while running a program but don't print them. Stats are accessible through `RubyVM::YJIT.runtime_stats`. (incurs a run-time cost)
-- `--yjit-trace-exits`: produce a Marshal dump of backtraces from specific exits. Automatically enables `--yjit-stats` (must configure and build with `--enable-yjit=stats` to use this)
+- `--yjit-trace-exits`: produce a Marshal dump of backtraces from specific exits. Automatically enables `--yjit-stats`
- `--yjit-max-versions=N`: maximum number of versions to generate per basic block (default 4)
- `--yjit-greedy-versioning`: greedy versioning mode (disabled by default, may increase code size)