blob: 238896d9ceac34f5320b84f4309137c1712be84b (
plain)
1
2
3
4
5
6
7
|
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
|