2015-05-08 14:10:30 +02:00
|
|
|
module Virtual
|
|
|
|
module Compiler
|
|
|
|
|
|
|
|
# Compiling is the conversion of the AST into 2 things:
|
2015-07-03 19:13:03 +02:00
|
|
|
# - code (ie sequences of Instructions inside Blocks) carried by MethodSource
|
2015-05-08 14:10:30 +02:00
|
|
|
# - an object graph containing all the Methods, their classes and Constants
|
|
|
|
#
|
|
|
|
# Some compile methods just add code, some may add structure (ie Blocks) while
|
|
|
|
# others instantiate Class and Method objects
|
|
|
|
#
|
|
|
|
# Everything in ruby is an expression, ie returns a value. So the effect of every compile
|
|
|
|
# is that a value is put into the ReturnSlot of the current Message.
|
|
|
|
# The compile method (so every compile method) returns the value that it deposits which
|
2015-06-11 07:04:14 +02:00
|
|
|
# may be unknown Unknown value.
|
2015-05-08 14:10:30 +02:00
|
|
|
#
|
|
|
|
# The Compiler.compile uses a visitor patter to dispatch according to the class name of
|
|
|
|
# the expression. So a NameExpression is delegated to compile_name etc.
|
|
|
|
# This makes the dispatch extensible, ie Expressions may be added by external code,
|
|
|
|
# as long as matching compile methods are supplied too.
|
|
|
|
#
|
|
|
|
def self.compile expression , method
|
|
|
|
exp_name = expression.class.name.split("::").last.sub("Expression","").downcase
|
|
|
|
#puts "Expression #{exp_name}"
|
|
|
|
begin
|
|
|
|
self.send "compile_#{exp_name}".to_sym , expression, method
|
|
|
|
rescue NoMethodError => e
|
2015-07-18 18:02:54 +02:00
|
|
|
puts "No compile method found for " + exp_name + " #{e}"
|
2015-05-08 14:10:30 +02:00
|
|
|
raise e
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
require_relative "compiler/basic_expressions"
|
|
|
|
require_relative "compiler/callsite_expression"
|
|
|
|
require_relative "compiler/compound_expressions"
|
|
|
|
require_relative "compiler/if_expression"
|
|
|
|
require_relative "compiler/function_expression"
|
|
|
|
require_relative "compiler/module_expression"
|
|
|
|
require_relative "compiler/operator_expressions"
|
|
|
|
require_relative "compiler/return_expression"
|
|
|
|
require_relative "compiler/while_expression"
|
|
|
|
require_relative "compiler/expression_list"
|