Class: YTLJit::VM::Node::InstanceVarRefNode
- Inherits:
-
InstanceVarRefCommonNode
- Object
- BaseNode
- VariableRefCommonNode
- InstanceVarRefCommonNode
- YTLJit::VM::Node::InstanceVarRefNode
- Defined in:
- lib/ytljit/vm.rb
Direct Known Subclasses
Constant Summary
Constants inherited from BaseNode
Constants included from AbsArch
AbsArch::AL, AbsArch::BL, AbsArch::CL, AbsArch::DL, AbsArch::FUNC_ARG, AbsArch::FUNC_ARG_YTL, AbsArch::FUNC_FLOAT_ARG, AbsArch::FUNC_FLOAT_ARG_YTL, AbsArch::INDIRECT_BPR, AbsArch::INDIRECT_RETR, AbsArch::INDIRECT_SPR, AbsArch::INDIRECT_TMPR, AbsArch::INDIRECT_TMPR2, AbsArch::INDIRECT_TMPR3
Constants included from SSE
SSE::XMM0, SSE::XMM1, SSE::XMM2, SSE::XMM3, SSE::XMM4, SSE::XMM5, SSE::XMM6, SSE::XMM7
Instance Attribute Summary
Attributes inherited from BaseNode
#code_space, #debug_info, #element_node_list, #id, #is_escape, #parent, #ti_observee, #ti_observer, #type
Instance Method Summary collapse
- #collect_candidate_type(context) ⇒ Object
- #collect_info(context) ⇒ Object
- #compile(context) ⇒ Object
- #compile_main(context) ⇒ Object
-
#initialize(parent, name, mnode) ⇒ InstanceVarRefNode
constructor
A new instance of InstanceVarRefNode.
Methods included from NodeUtil
#search_class_top, #search_end, #search_frame_info, #search_top
Methods inherited from BaseNode
#add_element_node, #add_element_node_backward, #add_element_node_backward_aux, #decide_type, #decide_type_core, #decide_type_once, #gen_type_inference_proc, #get_constant_value, #inference_type, #marge_element_node, #marge_type, #same_type, #search_valid_signature, #set_escape_node, #set_escape_node_backward, #ti_add_observer, #ti_changed, #ti_del_link, #ti_reset, #ti_update
Methods included from TypeListWithSignature
#add_type, #set_type_list, #type_list, #type_list_initvar
Methods included from Inspect
Constructor Details
#initialize(parent, name, mnode) ⇒ InstanceVarRefNode
Returns a new instance of InstanceVarRefNode.
3731 3732 3733 3734 |
# File 'lib/ytljit/vm.rb', line 3731 def initialize(parent, name, mnode) super @var_type_info = nil end |
Instance Method Details
#collect_candidate_type(context) ⇒ Object
3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 |
# File 'lib/ytljit/vm.rb', line 3748 def collect_candidate_type(context) cursig = context.to_signature @var_type_info.each do |node, sigs| sigs.each do |sig| same_type(self, node, cursig, sig, context) end end context end |
#collect_info(context) ⇒ Object
3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 |
# File 'lib/ytljit/vm.rb', line 3736 def collect_info(context) vti = context.modified_instance_var[@name] if vti == nil then vti = [] context.modified_instance_var[@name] = vti end # Not dup so vti may update after. @var_type_info = vti context end |
#compile(context) ⇒ Object
3763 3764 3765 3766 |
# File 'lib/ytljit/vm.rb', line 3763 def compile(context) context = super(context) compile_main(context) end |
#compile_main(context) ⇒ Object
3759 3760 3761 |
# File 'lib/ytljit/vm.rb', line 3759 def compile_main(context) context end |