mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
Rename MJIT filenames to RJIT
This commit is contained in:
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
11
lib/ruby_vm/rjit/block.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue