tool/ruby_vm support for pre-2.0 BASERUBY

This was not requested :) but actually easier than the previous
so I just did it anyway.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61787 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2018-01-12 08:38:12 +00:00
Родитель 8a72c77c79
Коммит fbacf5faad
6 изменённых файлов: 16 добавлений и 9 удалений

Просмотреть файл

@ -118,3 +118,11 @@ module RubyVM::CEscape
}.freeze
private_constant :RString2CStr
end
unless defined? ''.b
class String
def b
return dup.force_encoding 'binary'
end
end
end

Просмотреть файл

@ -25,7 +25,7 @@ class RubyVM::Dumper
end
def new_erb spec
path = Pathname.new __dir__
path = Pathname.new(__FILE__).realpath.dirname
path += '../views'
path += spec
src = path.read mode: 'rt:utf-8:utf-8'
@ -88,8 +88,8 @@ class RubyVM::Dumper
@file = cstr dst.realdirpath.to_path
end
def render partial, locals: {}
return do_render "_#{partial}.erb", locals
def render partial, opts = { :locals => {} }
return do_render "_#{partial}.erb", opts[:locals]
end
def generate template

Просмотреть файл

@ -20,7 +20,7 @@ class RubyVM::Scanner
attr_reader :__LINE__
def initialize path
src = Pathname.new __dir__
src = Pathname.new(__FILE__).realpath.dirname
src += path
@__LINE__ = 1
@__FILE__ = src.realpath.to_path

Просмотреть файл

@ -42,7 +42,7 @@ grammar = %r'
until scanner.eos? do
next if scanner.scan(/\G#{grammar}\g<ws>+/o)
split = -> (v) {
split = lambda {|v|
case v when /\Avoid\z/ then
[]
else

Просмотреть файл

@ -28,7 +28,7 @@ class RubyVM::BareInstructions
@pops = typesplit @sig[:pop].reject {|i| i == '...' }
@rets = typesplit @sig[:ret].reject {|i| i == '...' }
@attrs = opts[:attributes].map {|i|
RubyVM::Attribute.new insn: self, **i
RubyVM::Attribute.new i.merge(:insn => self)
}.each_with_object({}) {|a, h|
h[a.key] = a
}
@ -149,8 +149,7 @@ class RubyVM::BareInstructions
end
@instances = RubyVM::InsnsDef.map {|h|
hh = h.merge(:template => h)
new hh
new h.merge(:template => h)
}
def self.fetch name

Просмотреть файл

@ -30,7 +30,7 @@ class RubyVM::OperandsUnifications < RubyVM::BareInstructions
json[:name] = parts[:name]
@preamble = parts[:preamble]
@spec = parts[:spec]
super template: template, **json
super json.merge(:template => template)
parts[:vars].each do |v|
@variables[v[:name]] ||= v
end