Class: YTLJit::VM::Node::LocalVarRefNode

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

Direct Known Subclasses

SelfRefNode

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

Instance Attribute Summary

Attributes inherited from LocalVarRefCommonNode

#current_frame_info, #frame_info

Attributes inherited from BaseNode

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

Instance Method Summary collapse

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, #decide_type, #decide_type_core, #decide_type_once, #gen_type_inference_proc, #get_constant_value, #inference_type, #merge_type, #same_type, #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, offset, depth) ⇒ LocalVarRefNode

Returns a new instance of LocalVarRefNode.



2134
2135
2136
2137
# File 'lib/ytljit/vm.rb', line 2134

def initialize(parent, offset, depth)
  super
  @var_type_info = nil
end

Instance Method Details

#collect_candidate_type(context) ⇒ Object



2156
2157
2158
2159
2160
2161
2162
2163
2164
# File 'lib/ytljit/vm.rb', line 2156

def collect_candidate_type(context)
  @var_type_info.each do |topnode, node|
    cursig = context.to_signature
    varsig = context.to_signature(topnode)
    same_type(self, node, cursig, varsig, context)
    same_type(node, self, varsig, cursig, context)
  end
  context
end

#collect_info(context) ⇒ Object



2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
# File 'lib/ytljit/vm.rb', line 2139

def collect_info(context)
  vti = nil
  if context.modified_local_var.last[-@depth - 1] then
    vti = context.modified_local_var.last[-@depth - 1][@offset]
  end

  if vti then
    @var_type_info = vti.map {|e| e.dup }
  else
    raise "maybe bug"
    roff = @current_frame_info.real_offset(@offset)
    @var_type_info = [@current_frame_info.frame_layout[roff]]
  end

  context
end

#compile(context) ⇒ Object



2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
# File 'lib/ytljit/vm.rb', line 2166

def compile(context)
  context = super(context)
  context = gen_pursue_parent_function(context, @depth)
  base = context.ret_reg
  offarg = @current_frame_info.offset_arg(@offset, base)

  asm = context.assembler
  @type = nil
  rtype = decide_type_once(context.to_signature)
  if !rtype.boxed and rtype.ruby_type == Float then
    asm.with_retry do
      asm.mov(XMM0, offarg)
    end
    context.ret_reg = XMM0
  else
    asm.with_retry do
      asm.mov(TMPR, offarg)
    end
    context.ret_reg = TMPR
  end

  if base == TMPR2 then
    context.end_using_reg(TMPR2)
  end

  context.ret_node = self
  context
end