rubyx/lib/vool/if_statement.rb
Torsten Rüger e6c30d98fb Fix if statements hoisting, now that send is working
Same same, just have to remembe to actually execute the condition if it is a send
Having send a possible expression, removes one tmp variable and associated move, for a little extra work.
Next return and assign (rest)
2019-08-16 18:42:57 +03:00

57 lines
1.5 KiB
Ruby

module Vool
class IfStatement < Statement
attr_reader :condition , :if_true , :if_false
def initialize( cond , if_true , if_false = nil)
@condition = cond
@if_true = if_true
@if_false = if_false
end
def to_mom( compiler )
true_label = Mom::Label.new( self , "true_label_#{object_id.to_s(16)}")
false_label = Mom::Label.new( self , "false_label_#{object_id.to_s(16)}")
merge_label = Mom::Label.new( self , "merge_label_#{object_id.to_s(16)}")
check = Mom::TruthCheck.new(condition.slot_definition(compiler) , false_label)
if @condition.is_a?(SendStatement)
head = @condition.to_mom(compiler)
head << check
else
head = check
end
head << true_label
head << if_true.to_mom(compiler) if @if_true
head << Mom::Jump.new(merge_label) if @if_false
head << false_label
head << if_false.to_mom(compiler) if @if_false
head << merge_label if @if_false
head
end
def each(&block)
block.call(condition)
@if_true.each(&block) if @if_true
@if_false.each(&block) if @if_false
end
def has_false?
@if_false != nil
end
def has_true?
@if_true != nil
end
def to_s(depth = 0)
parts = ["if (#{@condition.to_s(0)})" ]
parts << " #{@if_true}" if @if_true
parts += [ "else" , " #{@if_false}"] if(@false)
parts << "end"
at_depth(depth , *parts )
end
end
end