2015-05-08 14:10:30 +02:00
|
|
|
module Virtual
|
|
|
|
# collection of the simple ones, int and strings and such
|
|
|
|
|
|
|
|
module Compiler
|
|
|
|
|
|
|
|
# Constant expressions can by definition be evaluated at compile time.
|
|
|
|
# But that does not solve their storage, ie they need to be accessible at runtime from _somewhere_
|
|
|
|
# So we view ConstantExpressions like functions that return the value of the constant.
|
|
|
|
# In other words, their storage is the return slot as it would be for a method
|
|
|
|
|
|
|
|
# The current approach moves the constant into a variable before using it
|
|
|
|
# But in the future (in the one that holds great things) we optimize those unneccesay moves away
|
|
|
|
|
|
|
|
# attr_reader :value
|
|
|
|
def self.compile_integer expression , method
|
2015-05-08 14:19:30 +02:00
|
|
|
int = IntegerConstant.new(expression.value)
|
|
|
|
to = Return.new(Integer , int)
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new( to , int)
|
2015-05-08 14:10:30 +02:00
|
|
|
to
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.compile_true expression , method
|
2015-05-08 14:19:30 +02:00
|
|
|
value = TrueConstant.new
|
|
|
|
to = Return.new(Reference , value)
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new( to , value )
|
2015-05-08 14:10:30 +02:00
|
|
|
to
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.compile_false expression , method
|
2015-05-08 14:19:30 +02:00
|
|
|
value = FalseConstant.new
|
|
|
|
to = Return.new(Reference , value)
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new( to , value )
|
2015-05-08 14:10:30 +02:00
|
|
|
to
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.compile_nil expression , method
|
2015-05-08 14:19:30 +02:00
|
|
|
value = NilConstant.new
|
|
|
|
to = Return.new(Reference , value)
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new( to , value )
|
2015-05-08 14:10:30 +02:00
|
|
|
to
|
|
|
|
end
|
|
|
|
|
|
|
|
# attr_reader :name
|
|
|
|
# compiling name needs to check if it's a variable and if so resolve it
|
|
|
|
# otherwise it's a method without args and a send is issued.
|
|
|
|
# whichever way this goes the result is stored in the return slot (as all compiles)
|
|
|
|
def self.compile_name expression , method
|
2015-05-08 14:19:30 +02:00
|
|
|
return Self.new( Mystery ) if expression.name == :self
|
2015-05-20 16:29:08 +02:00
|
|
|
name = Virtual.new_word expression.name.to_s
|
|
|
|
if method.has_var(name)
|
2015-05-08 14:10:30 +02:00
|
|
|
# either an argument, so it's stored in message
|
|
|
|
if( index = method.has_arg(name))
|
2015-05-20 16:29:08 +02:00
|
|
|
method.info.add_code MessageGet.new(expression.name , index)
|
2015-05-08 14:10:30 +02:00
|
|
|
else # or a local so it is in the frame
|
2015-05-20 16:29:08 +02:00
|
|
|
method.info.add_code FrameGet.new(expression.name , index)
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
|
|
|
else
|
|
|
|
call = Ast::CallSiteExpression.new(expression.name , [] ) #receiver self is implicit
|
|
|
|
Compiler.compile(call, method)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def self.compile_module expression , method
|
2015-05-16 11:54:11 +02:00
|
|
|
clazz = Space.space.get_class_by_name name
|
2015-05-08 14:10:30 +02:00
|
|
|
raise "uups #{clazz}.#{name}" unless clazz
|
2015-05-08 14:19:30 +02:00
|
|
|
to = Return.new(Reference , clazz )
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new( to , clazz )
|
2015-05-08 14:10:30 +02:00
|
|
|
to
|
|
|
|
end
|
|
|
|
|
|
|
|
# attr_reader :string
|
|
|
|
def self.compile_string expression , method
|
2015-05-18 09:47:29 +02:00
|
|
|
value = Virtual.new_word(expression.string)
|
2015-05-08 14:19:30 +02:00
|
|
|
to = Return.new(Reference , value)
|
2015-05-13 11:15:14 +02:00
|
|
|
Machine.instance.space.add_object value
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new( to , value )
|
2015-05-08 14:10:30 +02:00
|
|
|
to
|
|
|
|
end
|
|
|
|
|
|
|
|
#attr_reader :left, :right
|
|
|
|
def self.compile_assignment expression , method
|
|
|
|
raise "must assign to NameExpression , not #{expression.left}" unless expression.left.instance_of? Ast::NameExpression
|
|
|
|
r = Compiler.compile(expression.right , method )
|
|
|
|
raise "oh noo, nil from where #{expression.right.inspect}" unless r
|
2015-05-20 16:29:08 +02:00
|
|
|
index = method.has_arg(Virtual.new_word name)
|
2015-05-08 14:10:30 +02:00
|
|
|
if index
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new(Return.new , MessageSlot.new(index , r,type , r ))
|
2015-05-08 14:10:30 +02:00
|
|
|
else
|
2015-05-20 16:29:08 +02:00
|
|
|
index = method.ensure_local(Virtual.new_word expression.left.name)
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code Set.new(Return.new , FrameSlot.new(index , r.type , r ))
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
|
|
|
r
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.compile_variable expression, method
|
2015-05-20 15:43:26 +02:00
|
|
|
method.info.add_code InstanceGet.new(expression.name)
|
2015-05-08 14:19:30 +02:00
|
|
|
Return.new( Mystery )
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|