Module: YTLJit::VM::TypeCodeGen::TypeUtil

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 Method Summary collapse

Methods included from CommonCodeGen

#dump_context, #gen_alloca, #gen_call, #gen_save_thepr

Instance Method Details

#gen_copy_common(context, func) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/ytljit/vm_type_gen.rb', line 8

def gen_copy_common(context, func)
  asm = context.assembler
  val = context.ret_reg
  vnode = context.ret_node
  context.start_arg_reg
  addr = lambda {
    a = address_of(func)
    $symbol_table[a] = func
    a
  }
  rbstrdup = OpVarMemAddress.new(addr)
  asm.with_retry do
    asm.mov(FUNC_ARG[0], val)
  end
  context.set_reg_content(FUNC_ARG[0].dst_opecode, vnode)
  context = gen_save_thepr(context)
  context = gen_call(context, rbstrdup, 1, vnode)
  context.end_arg_reg
  context.ret_reg = RETR
  
  context
end