2015-05-08 14:10:30 +02:00
|
|
|
module Virtual
|
|
|
|
module Compiler
|
2015-05-04 13:22:22 +02:00
|
|
|
|
|
|
|
# while- attr_reader :condition, :body
|
2015-05-08 14:10:30 +02:00
|
|
|
def self.compile_while expression, method
|
2014-07-17 15:46:17 +02:00
|
|
|
start = Virtual::Label.new("while_start")
|
2014-08-13 10:59:51 +02:00
|
|
|
method.add_code start
|
2015-05-06 14:14:47 +02:00
|
|
|
is = expression.condition.compile(method )
|
2014-10-18 12:53:01 +02:00
|
|
|
branch = Virtual::IsTrueBranch.new "while"
|
2014-07-17 15:46:17 +02:00
|
|
|
merge = Virtual::Label.new(branch.name)
|
|
|
|
branch.other = merge #false jumps to end of while
|
2014-08-13 10:59:51 +02:00
|
|
|
method.add_code branch
|
2014-07-17 15:46:17 +02:00
|
|
|
last = is
|
2015-05-04 13:22:22 +02:00
|
|
|
expression.body.each do |part|
|
2015-05-06 14:14:47 +02:00
|
|
|
last = part.compile(method )
|
2014-07-17 15:46:17 +02:00
|
|
|
raise part.inspect if last.nil?
|
|
|
|
end
|
|
|
|
# unconditionally brnach to the start
|
2014-07-22 22:27:13 +02:00
|
|
|
merge.next = method.current.next
|
|
|
|
method.current.next = start
|
2014-07-17 15:46:17 +02:00
|
|
|
# here we add the end of while that the branch jumps to
|
|
|
|
#but don't link it in (not using add)
|
|
|
|
method.current = merge
|
|
|
|
last
|
2014-07-14 15:19:47 +02:00
|
|
|
end
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
2015-05-04 13:22:22 +02:00
|
|
|
end
|