模块 RubyVM::RJIT

公共类方法

enable() 点击切换源代码

在 --rjit-disable 后启动 JIT 编译。

# File ruby_3_3_0/rjit.rb, line 8
def self.enable
  Primitive.cstmt! %{
    rb_rjit_call_p = true;
    return Qnil;
  }
end
enabled?() 点击切换源代码

如果 RJIT 已启用,则返回 true。

# File ruby_3_3_0/rjit.rb, line 3
def self.enabled?
  Primitive.cexpr! 'RBOOL(rb_rjit_enabled)'
end