rubyx/lib/virtual/compiler/while_expression.rb

30 lines
876 B
Ruby
Raw Normal View History

module Virtual
module Compiler
# while- attr_reader :condition, :body
def self.compile_while expression, method
2015-07-18 18:02:54 +02:00
# this is where the while ends and both branches meet
merge = method.source.new_block("while merge")
# this comes after the current and beofre the merge
start = method.source.new_block("while_start" )
method.source.current start
cond = Compiler.compile(expression.condition, method)
method.source.add_code IsTrueBranch.new(merge)
last = cond
expression.body.each do |part|
2015-07-18 18:02:54 +02:00
last = Compiler.compile(part , method)
raise part.inspect if last.nil?
end
2015-07-18 18:02:54 +02:00
# unconditionally branch to the start
method.source.add_code UnconditionalBranch.new(start)
# continue execution / compiling at the merge block
method.source.current merge
last
2014-07-14 15:19:47 +02:00
end
end
end