2014-05-13 20:15:02 +02:00
|
|
|
module Ast
|
|
|
|
# assignment, like operators are really function calls
|
|
|
|
|
|
|
|
class CallSiteExpression < Expression
|
|
|
|
attr_reader :name, :args
|
|
|
|
def initialize name, args
|
|
|
|
@name , @args = name.to_sym , args
|
|
|
|
end
|
|
|
|
def compile context , into
|
|
|
|
params = args.collect{ |a| a.compile(context, into) }
|
2014-05-31 13:35:33 +02:00
|
|
|
function = context.current_class.get_or_create_function(name)
|
2014-05-13 20:15:02 +02:00
|
|
|
raise "Forward declaration not implemented (#{name}) #{inspect}" if function == nil
|
|
|
|
call = Vm::CallSite.new( name , params , function)
|
2014-05-22 20:55:17 +02:00
|
|
|
current_function = context.function
|
|
|
|
current_function.save_locals(context , into) if current_function
|
2014-05-13 20:15:02 +02:00
|
|
|
call.load_args into
|
|
|
|
call.do_call into
|
2014-05-22 20:55:17 +02:00
|
|
|
current_function.restore_locals(context , into) if current_function
|
2014-05-25 10:35:45 +02:00
|
|
|
puts "compile call #{function.return_type}"
|
2014-05-19 20:28:18 +02:00
|
|
|
function.return_type
|
2014-05-13 20:15:02 +02:00
|
|
|
end
|
2014-05-19 10:29:18 +02:00
|
|
|
|
2014-05-13 20:15:02 +02:00
|
|
|
def inspect
|
|
|
|
self.class.name + ".new(" + name.inspect + ", ["+
|
|
|
|
args.collect{|m| m.inspect }.join( ",") +"] )"
|
|
|
|
end
|
|
|
|
def to_s
|
|
|
|
"#{name}(" + args.join(",") + ")"
|
|
|
|
end
|
|
|
|
def attributes
|
|
|
|
[:name , :args]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|