ruby/lib/ruby_vm/mjit/compiler.rb

89 lines
2.0 KiB
Ruby
Raw Normal View History

2022-12-17 13:39:35 -08:00
require 'mjit/insn_compiler'
require 'mjit/instruction'
require 'mjit/x86_assembler'
2022-12-11 21:42:25 -08:00
2022-12-17 13:39:35 -08:00
module RubyVM::MJIT
# Compilation status
KeepCompiling = :keep_compiling
CantCompile = :cant_compile
EndBlock = :end_block
2022-12-11 21:42:25 -08:00
2022-12-17 13:39:35 -08:00
class Compiler
# Ruby constants
Qundef = Fiddle::Qundef
2022-12-11 21:42:25 -08:00
2022-12-17 13:39:35 -08:00
attr_accessor :write_pos
2022-09-04 21:53:46 -07:00
2022-12-17 13:39:35 -08:00
# @param mem_block [Integer] JIT buffer address
def initialize(mem_block)
@mem_block = mem_block
@write_pos = 0
@insn_compiler = InsnCompiler.new
end
2022-12-17 13:39:35 -08:00
# @param iseq [RubyVM::MJIT::CPointer::Struct]
2022-12-17 22:00:16 -08:00
def call(iseq)
2022-12-17 13:39:35 -08:00
return if iseq.body.location.label == '<main>'
2022-12-17 22:00:16 -08:00
iseq.body.jit_func = compile_block(iseq)
2022-12-17 13:39:35 -08:00
rescue Exception => e
2022-12-18 23:45:17 -08:00
$stderr.puts e.full_message # TODO: check verbose
2022-12-17 13:39:35 -08:00
end
2022-12-11 21:42:25 -08:00
2022-12-17 13:39:35 -08:00
def write_addr
@mem_block + @write_pos
end
private
2022-12-15 22:20:43 -08:00
2022-12-18 23:45:17 -08:00
def compile(asm)
start_addr = write_addr
C.mjit_mark_writable
@write_pos += asm.compile(start_addr)
C.mjit_mark_executable
end_addr = write_addr
if C.mjit_opts.dump_disasm && start_addr < end_addr
dump_disasm(start_addr, end_addr)
end
start_addr
end
2022-12-17 13:39:35 -08:00
# ec -> RDI, cfp -> RSI
2022-12-17 22:00:16 -08:00
def compile_block(iseq)
2022-12-17 13:39:35 -08:00
addr = write_addr
asm = X86Assembler.new
2022-12-15 22:20:43 -08:00
2022-12-17 13:39:35 -08:00
index = 0
while index < iseq.body.iseq_size
insn = decode_insn(iseq.body.iseq_encoded[index])
status = compile_insn(asm, insn)
if status == EndBlock
break
end
index += insn.len
end
2022-12-15 22:20:43 -08:00
2022-12-17 22:00:16 -08:00
compile(asm)
2022-12-17 13:39:35 -08:00
end
2022-12-15 22:20:43 -08:00
2022-12-17 13:39:35 -08:00
def compile_insn(asm, insn)
case insn.name
2022-12-18 23:45:17 -08:00
when :putnil then @insn_compiler.putnil(asm)
when :leave then @insn_compiler.leave(asm)
2022-12-17 13:39:35 -08:00
else raise NotImplementedError, "insn '#{insn.name}' is not supported yet"
end
end
2022-12-15 22:20:43 -08:00
2022-12-17 13:39:35 -08:00
def decode_insn(encoded)
INSNS.fetch(C.rb_vm_insn_decode(encoded))
end
2022-12-17 22:00:16 -08:00
def dump_disasm(from, to)
C.dump_disasm(from, to).each do |address, mnemonic, op_str|
puts " 0x#{"%p" % address}: #{mnemonic} #{op_str}"
end
end
2022-12-15 22:20:43 -08:00
end
2022-09-04 21:53:46 -07:00
end