
YARV - Wikipedia
YARV (Yet another Ruby VM) is a bytecode interpreter that was developed for the Ruby programming language by Koichi Sasada. The goal of the project was to greatly reduce the execution time of Ruby programs.
YARV - 维基百科,自由的百科全书
YARV是“Ruby程序语言”的一个字节码解译器,它是由笹田耕一领导的。YARV这个名称是“Yet another Ruby VM”(又一个Ruby虚拟机器)的首字母缩写。这个项目的目标是大幅度地减少Ruby程序的运行时间。
YARV: Yet Another Ruby VM - atdot.net
YARV is Virtual Machine for Programming Language Ruby. The goal of this project is only one, to develop the fastest Virtual Machine for Ruby in the world. The developer of this project is SASADA Koichi (ko1 at atdot dot net).
ruby-syntax-tree/yarv: A YARV object layer written in Ruby - GitHub
CRuby uses a stack-based virtual machine named YARV. You can see the bytecode that will be executed by running RubyVM::InstructionSequence.compile(source).disasm or by running ruby --dump=insns -e source.
YARV - 維基百科,自由的百科全書 - zh.wikipedia.org
YARV是「Ruby程序語言」的一個字節碼解譯器,它是由笹田耕一領導的。YARV這個名稱是「Yet another Ruby VM」(又一個Ruby虛擬機器)的首字母縮寫。這個項目的目標是大幅度地減少Ruby程序的運行時間。
YARV - 维基百科,自由的百科全书 - zh.wikipedia.org
YARV是“Ruby程序语言”的一个字节码解译器,它是由笹田耕一领导的。YARV这个名称是“Yet another Ruby VM”(又一个Ruby虚拟机器)的首字母缩写。这个项目的目标是大幅度地减少Ruby程序的运行时间。
[翻译] 关于 Ruby 解释器:一些你需要知道的 · Ruby China
YARV (Yet Another Ruby VM) 是基于堆栈的解释器技术,为 Ruby 的官方解释器提供支持。从 Ruby 1.9 版开始,YARV 取代了旧版本的 Ruby MRI(也称为 CRuby);从 Ruby 2.6 开始,YARV 即是 Ruby 的官方解释器。
YARV: yet another RubyVM | Companion to the 20th annual …
2005年10月16日 · YARV is based on a stack machine architecture and features optimizations for high speed execution of Ruby programs. In this poster, I introduce the Ruby programming language, discuss certain characteristics of Ruby from the aspect of a Ruby interpreter implementer, and explain methods of implementation and optimization.
YARV: 又一个ruby虚拟机 - tech.cap - 博客园
2006年2月8日 · YARV 的全名是 Yet Another Ruby VM, 由日本人SASADA Koichi 另外实现的ruby虚拟机. 目前ruby的虚拟机是通过AST (abstract syntax tree) 来完成的,它的速度比较慢, 只能作一般纯脚本的解释工作, YARV的出现就是为了解决这个问题, 它是基于Stack VM来完成.主要的目的就是给ruby脚本提速. 下面的图片显示了使用YARV相对普通ruby虚拟机的速度提升率,YARV采用了多种方式来优化ruby的执行速度,列表如下. 从图表可以看到, YARV的速度提升是相当惊人的, …
YARV: 又一个ruby虚拟机 - CSDN博客
2006年2月8日 · YARV(Yet Another Ruby VM)是为解决Ruby虚拟机执行速度慢的问题而设计的一种新型虚拟机实现。 相比传统的Ruby虚拟机,YARV通过采用Stack VM等技术实现了显著的性能提升,最快可达25倍。