2015-10-23 13:22:55 +02:00
|
|
|
module Soml
|
2015-05-08 14:10:30 +02:00
|
|
|
# collection of the simple ones, int and strings and such
|
|
|
|
|
2015-09-19 17:56:18 +02:00
|
|
|
Compiler.class_eval do
|
2015-05-08 14:10:30 +02:00
|
|
|
|
2015-10-09 16:51:14 +02:00
|
|
|
# Constant statements can by definition be evaluated at compile time.
|
2015-05-08 14:10:30 +02:00
|
|
|
# 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
|
|
|
|
|
2015-10-09 16:51:14 +02:00
|
|
|
def on_int statement
|
|
|
|
int = statement.first
|
2015-10-15 08:07:47 +02:00
|
|
|
reg = use_reg :Integer , int
|
2015-10-23 13:08:12 +02:00
|
|
|
add_code Register::LoadConstant.new( statement, int , reg )
|
2015-10-13 15:42:53 +02:00
|
|
|
return reg
|
2015-09-27 19:28:34 +02:00
|
|
|
end
|
|
|
|
|
2015-10-09 16:51:14 +02:00
|
|
|
def on_true statement
|
2015-10-14 15:16:03 +02:00
|
|
|
reg = use_reg :Boolean
|
2015-10-23 13:08:12 +02:00
|
|
|
add_code Register::LoadConstant.new( statement, true , reg )
|
2015-10-13 15:42:53 +02:00
|
|
|
return reg
|
2015-09-27 19:28:34 +02:00
|
|
|
end
|
|
|
|
|
2015-10-09 16:51:14 +02:00
|
|
|
def on_false statement
|
2015-10-14 15:16:03 +02:00
|
|
|
reg = use_reg :Boolean
|
2015-10-23 13:08:12 +02:00
|
|
|
add_code Register::LoadConstant.new( statement, false , reg )
|
2015-10-13 15:42:53 +02:00
|
|
|
return reg
|
2015-09-27 19:28:34 +02:00
|
|
|
end
|
|
|
|
|
2015-10-09 16:51:14 +02:00
|
|
|
def on_nil statement
|
2015-10-14 15:16:03 +02:00
|
|
|
reg = use_reg :NilClass
|
2015-10-23 13:08:12 +02:00
|
|
|
add_code Register::LoadConstant.new( statement, nil , reg )
|
2015-10-13 15:42:53 +02:00
|
|
|
return reg
|
2015-09-27 19:28:34 +02:00
|
|
|
end
|
|
|
|
|
2015-10-09 16:51:14 +02:00
|
|
|
def on_string statement
|
|
|
|
value = statement.first.to_sym
|
2015-10-14 15:16:03 +02:00
|
|
|
reg = use_reg :Word
|
2015-10-05 23:27:13 +02:00
|
|
|
@method.source.constants << value
|
2015-10-23 13:08:12 +02:00
|
|
|
add_code Register::LoadConstant.new( statement, value , reg )
|
2015-10-13 15:42:53 +02:00
|
|
|
return reg
|
2015-09-27 19:28:34 +02:00
|
|
|
end
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
|
|
|
end
|