rubyx/lib/vool/if_statement.rb

63 lines
1.6 KiB
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class IfStatement < Statement
attr_reader :condition , :if_true , :if_false
2017-04-02 18:12:42 +02:00
2017-08-30 16:21:13 +02:00
def initialize( cond , if_true , if_false = nil)
2017-04-02 18:12:42 +02:00
@condition = cond
@if_true = if_true
@if_false = if_false
end
def to_mom( compiler )
if_false ? full_if(compiler) : simple_if(compiler)
end
def simple_if(compiler)
true_label = Mom::Label.new( "true_label_#{object_id.to_s(16)}")
merge_label = Mom::Label.new( "merge_label_#{object_id.to_s(16)}")
head = Mom::TruthCheck.new(condition.slot_definition(compiler) , merge_label)
head << true_label
head << if_true.to_mom(compiler)
head << merge_label
end
def full_if(compiler)
true_label = Mom::Label.new( "true_label_#{object_id.to_s(16)}")
false_label = Mom::Label.new( "false_label_#{object_id.to_s(16)}")
merge_label = Mom::Label.new( "merge_label_#{object_id.to_s(16)}")
2018-03-16 14:35:22 +01:00
head = Mom::TruthCheck.new(condition.slot_definition(compiler) , false_label)
2018-03-16 14:35:22 +01:00
head << true_label
head << if_true.to_mom(compiler)
head << Mom::Jump.new(merge_label)
2018-03-16 14:35:22 +01:00
head << false_label
head << if_false.to_mom(compiler)
head << merge_label
end
2017-08-30 16:21:13 +02:00
def each(&block)
block.call(condition)
@if_true.each(&block)
@if_false.each(&block) if @if_false
2017-04-08 11:10:42 +02:00
end
2017-04-02 18:12:42 +02:00
def has_false?
@if_false != nil
end
def has_true?
@if_true != nil
end
2017-08-30 17:23:54 +02:00
2018-07-03 21:18:19 +02:00
def to_s(depth = 0)
parts = ["if (#{@condition})" , @body.to_s(depth + 1) ]
parts += ["else" , "@if_false.to_s(depth + 1)"] if(@false)
parts << "end"
at_depth(depth , *parts )
end
2017-04-01 20:28:57 +02:00
end
end