Class: YTLJit::VM::Node::SelfRefNode

Inherits:
LocalVarRefNode show all
Defined in:
lib/ytljit/vm.rb

Direct Known Subclasses

TISelfRefNode

Constant Summary

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

Constants inherited from BaseNode

BaseNode::ESCAPE_LEVEL

Instance Attribute Summary

Attributes inherited from LocalVarRefCommonNode

#current_frame_info, #depth, #frame_info, #offset

Attributes inherited from BaseNode

#code_space, #debug_info, #element_node_list, #id, #is_escape, #parent, #ti_observee, #ti_observer, #type

Instance Method Summary collapse

Methods inherited from LocalVarRefNode

#collect_info

Methods included from NodeUtil

#search_class_top, #search_end, #search_frame_info, #search_top

Methods included from LocalVarNodeCodeGen

#gen_pursue_parent_function

Methods inherited from BaseNode

#add_element_node, #add_element_node_backward, #add_element_node_backward_aux, #collect_info, #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

#inspect_by_graph

Constructor Details

#initialize(parent) ⇒ SelfRefNode

Returns a new instance of SelfRefNode.



3549
3550
3551
3552
3553
# File 'lib/ytljit/vm.rb', line 3549

def initialize(parent)
  super(parent, 2, 0)
  @classtop = search_class_top
  @topnode = search_top
end

Instance Method Details

#collect_candidate_type(context) ⇒ Object

begin



3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
# File 'lib/ytljit/vm.rb', line 3563

def collect_candidate_type(context)
  if @topnode.is_a?(ClassTopNode) then
    tt = RubyType::BaseType.from_ruby_class(@classtop.klass_object)
    cursig = context.to_signature
    # size of @var_type_info is always 1.because you can't assign self

    topnode, node = @var_type_info[0]

    vsig = context.to_signature(topnode)
    vtype = node.decide_type_once(vsig)
    same_type(self, node, cursig, vsig, context)
    if vtype.boxed != tt.boxed then
      if vtype.boxed then
        tt= tt.to_box
      else
        tt = tt.to_unbox
      end
    end
    add_type(cursig, tt)
    context
  else
    super(context)
  end
end

#compile(context) ⇒ Object

end



3588
3589
3590
3591
# File 'lib/ytljit/vm.rb', line 3588

def compile(context)
#          context = super(context)

  compile_main(context)
end

#compile_main(context) ⇒ Object



3555
3556
3557
3558
3559
3560
# File 'lib/ytljit/vm.rb', line 3555

def compile_main(context)
  offarg = @current_frame_info.offset_arg(@offset, BPR)
  context.ret_node = self
  context.ret_reg = offarg
  context
end