2015-05-08 14:10:30 +02:00
|
|
|
module Virtual
|
|
|
|
module Compiler
|
2015-05-04 13:22:22 +02:00
|
|
|
# if - attr_reader :cond, :if_true, :if_false
|
2014-08-13 19:05:32 +02:00
|
|
|
|
2015-05-06 14:14:47 +02:00
|
|
|
def self.compile_if expression , method
|
2014-08-13 19:05:32 +02:00
|
|
|
# to execute the logic as the if states it, the blocks are the other way around
|
|
|
|
# so we can the jump over the else if true ,and the else joins unconditionally after the true_block
|
|
|
|
merge_block = method.new_block "if_merge" # last one, created first
|
|
|
|
true_block = method.new_block "if_true" # second, linked in after current, before merge
|
|
|
|
false_block = method.new_block "if_false" # directly next in order, ie if we don't jump we land here
|
2015-05-04 13:22:22 +02:00
|
|
|
|
2014-08-13 19:05:32 +02:00
|
|
|
|
2015-05-06 14:14:47 +02:00
|
|
|
is = Compiler.compile(expression.cond, method )
|
2015-05-04 13:22:22 +02:00
|
|
|
# TODO should/will use different branches for different conditions.
|
2015-05-08 14:19:30 +02:00
|
|
|
# just a scetch : cond_val = cond_val.is_true?(method) unless cond_val.is_a? BranchCondition
|
|
|
|
method.add_code IsTrueBranch.new( true_block )
|
2014-08-13 19:05:32 +02:00
|
|
|
|
|
|
|
# compile the true block (as we think of it first, even it is second in sequential order)
|
|
|
|
method.current true_block
|
2014-07-16 12:20:47 +02:00
|
|
|
last = is
|
2015-05-06 14:14:47 +02:00
|
|
|
expression.if_true.each do |part|
|
|
|
|
last = Compiler.compile(part,method )
|
2014-07-16 12:20:47 +02:00
|
|
|
raise part.inspect if last.nil?
|
|
|
|
end
|
2014-08-13 19:05:32 +02:00
|
|
|
|
|
|
|
# compile the false block
|
|
|
|
method.current false_block
|
2015-05-06 14:14:47 +02:00
|
|
|
expression.if_false.each do |part|
|
2015-05-15 15:45:36 +02:00
|
|
|
#puts "compiling in if false #{part}"
|
2015-05-06 14:14:47 +02:00
|
|
|
last = Compiler.compile(part,method )
|
2014-07-16 19:16:40 +02:00
|
|
|
raise part.inspect if last.nil?
|
|
|
|
end
|
2015-05-08 14:19:30 +02:00
|
|
|
method.add_code UnconditionalBranch.new( merge_block )
|
2014-08-13 19:05:32 +02:00
|
|
|
|
|
|
|
puts "compiled if: end"
|
|
|
|
method.current merge_block
|
|
|
|
|
2014-07-16 19:16:40 +02:00
|
|
|
#TODO should return the union of the true and false types
|
2014-07-16 12:20:47 +02:00
|
|
|
last
|
2014-07-14 20:28:21 +02:00
|
|
|
end
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
2015-05-04 13:22:22 +02:00
|
|
|
end
|