Rename MJIT filenames to RJIT

This commit is contained in:
Takashi Kokubun 2023-03-06 22:35:38 -08:00
parent 854546fcc4
commit eaccdc1941
Notes: git 2023-03-07 07:44:23 +00:00
27 changed files with 1 additions and 0 deletions

11
lib/ruby_vm/rjit/block.rb Normal file
View file

@ -0,0 +1,11 @@
class RubyVM::MJIT::Block < Struct.new(
:iseq, # @param ``
:pc, # @param [Integer] Starting PC
:ctx, # @param [RubyVM::MJIT::Context] **Starting** Context (TODO: freeze?)
:start_addr, # @param [Integer] Starting address of this block's JIT code
:entry_exit, # @param [Integer] Address of entry exit (optional)
:incoming, # @param [Array<RubyVM::MJIT::BranchStub>] Incoming branches
:invalidated, # @param [TrueClass,FalseClass] true if already invalidated
)
def initialize(incoming: [], invalidated: false, **) = super
end