summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maximechevalierb@gmail.com>2021-03-04 14:13:10 -0500
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:31 -0400
commite4e453c7d0bd93e3d76879285a29f0bbb7edfab4 (patch)
tree8c17931f14b07e68d0589a12d242c1247f704a60 /doc
parent7b38bf189ef208039df84324e6df72479a0af878 (diff)
Update yjit.md
Diffstat (limited to 'doc')
-rw-r--r--doc/yjit.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/yjit.md b/doc/yjit.md
index c48ea85f91..f5b50c3d3d 100644
--- a/doc/yjit.md
+++ b/doc/yjit.md
@@ -3,7 +3,7 @@ YJIT - Yet Another Ruby JIT
**DISCLAIMER: Please note that this project is in early stages of development. It is very much a work in progress, it may cause your software to crash, and current performance results are likely to leave you feeling underwhelmed.**
-MicroJIT is a lightweight, minimalistic Ruby JIT built inside the CRuby/MRI binary.
+YJIT is a lightweight, minimalistic Ruby JIT built inside the CRuby/MRI binary.
It lazily compiles code using a Basic Block Versioning (BBV) architecture. The target use case is that of servers running
Ruby on Rails, an area where CRuby's MJIT has not yet managed to deliver speedups.
To simplify development, we currently support only MacOS and Linux on x86-64, but an ARM64 backend
@@ -24,7 +24,7 @@ cd yjit
git checkout yjit
```
-The uJIT `ruby` binary can be built with either GCC or Clang. We recommend enabling debug symbols so that assertions are enabled during development as this makes debugging easier. More detailed build instructions are provided in the [Ruby README](https://github.com/ruby/ruby#how-to-compile-and-install).
+The YJIT `ruby` binary can be built with either GCC or Clang. We recommend enabling debug symbols so that assertions are enabled during development as this makes debugging easier. More detailed build instructions are provided in the [Ruby README](https://github.com/ruby/ruby#how-to-compile-and-install).
```
autoconf