Class: RubyVM::RJIT::Block
- Inherits:
-
Struct
- Object
- Struct
- RubyVM::RJIT::Block
- Defined in:
- lib/ruby_vm/rjit/block.rb
Instance Attribute Summary collapse
-
#ctx ⇒ Object
Returns the value of attribute ctx.
-
#entry_exit ⇒ Object
Returns the value of attribute entry_exit.
-
#incoming ⇒ Object
Returns the value of attribute incoming.
-
#invalidated ⇒ Object
Returns the value of attribute invalidated.
-
#iseq ⇒ Object
Returns the value of attribute iseq.
-
#pc ⇒ Object
Returns the value of attribute pc.
-
#start_addr ⇒ Object
Returns the value of attribute start_addr.
Instance Method Summary collapse
-
#initialize(incoming: [], invalidated: false) ⇒ Block
constructor
A new instance of Block.
Constructor Details
#initialize(incoming: [], invalidated: false) ⇒ Block
Returns a new instance of Block.
10 |
# File 'lib/ruby_vm/rjit/block.rb', line 10 def initialize(incoming: [], invalidated: false, **) = super |
Instance Attribute Details
#ctx ⇒ Object
Returns the value of attribute ctx
1 2 3 |
# File 'lib/ruby_vm/rjit/block.rb', line 1 def ctx @ctx end |
#entry_exit ⇒ Object
Returns the value of attribute entry_exit
1 2 3 |
# File 'lib/ruby_vm/rjit/block.rb', line 1 def entry_exit @entry_exit end |
#incoming ⇒ Object
Returns the value of attribute incoming
1 2 3 |
# File 'lib/ruby_vm/rjit/block.rb', line 1 def incoming @incoming end |
#invalidated ⇒ Object
Returns the value of attribute invalidated
1 2 3 |
# File 'lib/ruby_vm/rjit/block.rb', line 1 def invalidated @invalidated end |
#iseq ⇒ Object
Returns the value of attribute iseq
1 2 3 |
# File 'lib/ruby_vm/rjit/block.rb', line 1 def iseq @iseq end |
#pc ⇒ Object
Returns the value of attribute pc
1 2 3 |
# File 'lib/ruby_vm/rjit/block.rb', line 1 def pc @pc end |
#start_addr ⇒ Object
Returns the value of attribute start_addr
1 2 3 |
# File 'lib/ruby_vm/rjit/block.rb', line 1 def start_addr @start_addr end |