Class: YTLJit::VM::Node::SendCoreDefineMethodNode
- Defined in:
- lib/ytljit/vm_sendnode.rb
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
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 SendNode
#arguments, #class_top, #func, #modified_instance_var, #modified_local_var, #next_node, #opt_flag, #var_return_address
Attributes included from HaveChildlenMixin
Attributes inherited from BaseNode
#code_space, #element_node_list, #id, #parent, #type
Instance Method Summary collapse
- #collect_candidate_type(context) ⇒ Object
- #collect_info(context) ⇒ Object
- #compile(context) ⇒ Object
-
#initialize(parent, func, arguments, op_flag) ⇒ SendCoreDefineMethodNode
constructor
A new instance of SendCoreDefineMethodNode.
- #traverse_childlen {|@body| ... } ⇒ Object
Methods inherited from SendNode
add_special_send_node, #collect_candidate_type_regident, make_send_node, node
Methods included from SendUtil
Methods included from NodeUtil
#search_class_top, #search_end, #search_frame_info, #search_top
Methods included from SendNodeCodeGen
#dump_context, #gen_call, #gen_make_argv
Methods included from OptFlagOp
#is_args_blockarg, #is_args_splat, #is_fcall, #is_opt_send, #is_super, #is_tailcall, #is_tailrecursion, #is_vcall
Methods inherited from BaseNode
#add_element_node, #add_type, #decide_type, #decide_type_core, #decide_type_once, #gen_type_inference_proc, #inference_type, #merge_type, #same_type, #set_type_list, #ti_add_observer, #ti_changed, #ti_update, #type_list
Methods included from Inspect
Constructor Details
#initialize(parent, func, arguments, op_flag) ⇒ SendCoreDefineMethodNode
Returns a new instance of SendCoreDefineMethodNode.
383 384 385 386 387 388 389 390 |
# File 'lib/ytljit/vm_sendnode.rb', line 383 def initialize(parent, func, arguments, op_flag) super @new_method = arguments[5] if arguments[4].is_a?(LiteralNode) then @new_method.name = arguments[4].value @class_top.method_tab[arguments[4].value] = @new_method end end |
Instance Method Details
#collect_candidate_type(context) ⇒ Object
402 403 404 405 406 |
# File 'lib/ytljit/vm_sendnode.rb', line 402 def collect_candidate_type(context) # type inference of @new method execute when "send" instruction. @body.collect_candidate_type(context) context end |
#collect_info(context) ⇒ Object
397 398 399 400 |
# File 'lib/ytljit/vm_sendnode.rb', line 397 def collect_info(context) context = @new_method.collect_info(context) @body.collect_info(context) end |
#compile(context) ⇒ Object
408 409 410 411 412 413 414 415 416 |
# File 'lib/ytljit/vm_sendnode.rb', line 408 def compile(context) context = @body.compile(context) ocs = context.code_space # Allocate new code space in compiling @new_method context = @new_method.compile(context) context.set_code_space(ocs) context end |
#traverse_childlen {|@body| ... } ⇒ Object
392 393 394 395 |
# File 'lib/ytljit/vm_sendnode.rb', line 392 def traverse_childlen yield @body yield @new_method end |