summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-12-21 16:18:30 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-12-21 16:47:13 -0800
commit3c182776292ecd2a28fea4f7de87a89e64459f9c (patch)
tree6ded96427bcda02ce272e43f248071450c860220 /doc
parent18a97affa349b5edbc4829063b752aab1911fa55 (diff)
RJIT: Clean up unnecessary documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/.document1
-rw-r--r--doc/rjit/rjit.md (renamed from doc/rjit/README.md)12
2 files changed, 3 insertions, 10 deletions
diff --git a/doc/.document b/doc/.document
index 061fa7d3ef..5a58e6e3ad 100644
--- a/doc/.document
+++ b/doc/.document
@@ -7,4 +7,5 @@ syntax
optparse
rdoc
regexp
+rjit
yjit
diff --git a/doc/rjit/README.md b/doc/rjit/rjit.md
index e3795e35b8..9e60e43ce3 100644
--- a/doc/rjit/README.md
+++ b/doc/rjit/rjit.md
@@ -24,13 +24,6 @@ You may still manually pass `--enable-rjit` to try RJIT on unsupported platforms
It enables `--rjit-dump-disasm` if libcapstone is available.
-It also enables `vm_insns_count` and `ratio_in_rjit` in `--rjit-stats`.
-However, it makes the interpreter a little slower.
-
-### --enable-rjit=disasm
-
-It enables `--rjit-dump-disasm` if libcapstone is available.
-
## make
### rjit-bindgen
@@ -42,12 +35,11 @@ macOS seems to have libclang by default. On Ubuntu, you can install it with `apt
## ruby
### --rjit-stats
-This prints RJIT stats at exit. Some stats are available only with `--enable-rjit=dev` on configure.
+This prints RJIT stats at exit.
### --rjit-dump-disasm
-This dumps all JIT code. You need to install libcapstone before configure and use `--enable-rjit=dev`
-or `--enable-rjit=disasm` on configure.
+This dumps all JIT code. You need to install libcapstone before configure and use `--enable-rjit=dev` on configure.
* Ubuntu: `sudo apt-get install -y libcapstone-dev`
* macOS: `brew install capstone`