mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
7 lines
320 B
Ruby
7 lines
320 B
Ruby
class RubyVM::MJIT::Block < Struct.new(
|
|
: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)
|
|
)
|
|
end
|