2018-03-15 11:24:14 +05:30
|
|
|
require_relative "normalizer"
|
2017-04-01 21:28:57 +03:00
|
|
|
module Vool
|
|
|
|
class IfStatement < Statement
|
2018-03-15 11:24:14 +05:30
|
|
|
include Normalizer
|
2018-03-12 17:56:44 +05:30
|
|
|
|
2017-04-06 16:06:51 +03:00
|
|
|
attr_reader :condition , :if_true , :if_false
|
2017-04-02 19:12:42 +03:00
|
|
|
|
2017-08-30 17:21:13 +03:00
|
|
|
def initialize( cond , if_true , if_false = nil)
|
2017-04-02 19:12:42 +03:00
|
|
|
@condition = cond
|
2017-04-06 16:06:51 +03:00
|
|
|
@if_true = if_true
|
|
|
|
@if_false = if_false
|
|
|
|
end
|
|
|
|
|
2018-03-15 12:46:56 +05:30
|
|
|
def normalize
|
|
|
|
cond , rest = *normalize_name(@condition)
|
|
|
|
fals = @if_false ? @if_false.normalize : nil
|
|
|
|
me = IfStatement.new(cond , @if_true.normalize, fals)
|
2018-03-15 11:24:14 +05:30
|
|
|
return me unless rest
|
|
|
|
rest << me
|
2018-03-16 19:05:22 +05:30
|
|
|
rest
|
2018-03-15 11:24:14 +05:30
|
|
|
end
|
|
|
|
|
2017-08-30 17:21:13 +03:00
|
|
|
def to_mom( method )
|
2018-04-19 10:34:15 +03:00
|
|
|
if_false ? full_if(method) : simple_if(method)
|
|
|
|
end
|
|
|
|
|
|
|
|
def simple_if(method)
|
2018-05-01 19:20:16 +03:00
|
|
|
true_label = Mom::Label.new( "true_label_#{object_id.to_s(16)}")
|
|
|
|
merge_label = Mom::Label.new( "merge_label_#{object_id.to_s(16)}")
|
2018-04-19 10:34:15 +03:00
|
|
|
|
|
|
|
head = Mom::TruthCheck.new(condition.slot_definition(method) , merge_label)
|
|
|
|
head << true_label
|
|
|
|
head << if_true.to_mom(method)
|
|
|
|
head << merge_label
|
|
|
|
end
|
|
|
|
|
|
|
|
def full_if(method)
|
2018-05-01 19:20:16 +03:00
|
|
|
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 19:05:22 +05:30
|
|
|
|
|
|
|
head = Mom::TruthCheck.new(condition.slot_definition(method) , false_label)
|
|
|
|
head << true_label
|
|
|
|
head << if_true.to_mom(method)
|
2018-04-19 10:34:15 +03:00
|
|
|
head << Mom::Jump.new(merge_label)
|
2018-03-16 19:05:22 +05:30
|
|
|
head << false_label
|
2018-04-19 10:34:15 +03:00
|
|
|
head << if_false.to_mom(method)
|
|
|
|
head << merge_label
|
2018-03-15 20:33:38 +05:30
|
|
|
end
|
2017-08-30 17:21:13 +03:00
|
|
|
|
2018-03-15 20:40:21 +05:30
|
|
|
def each(&block)
|
|
|
|
block.call(condition)
|
|
|
|
@if_true.each(&block)
|
|
|
|
@if_false.each(&block) if @if_false
|
2017-04-08 12:10:42 +03:00
|
|
|
end
|
|
|
|
|
2017-04-02 19:12:42 +03:00
|
|
|
def has_false?
|
|
|
|
@if_false != nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_true?
|
|
|
|
@if_true != nil
|
|
|
|
end
|
2017-08-30 18:23:54 +03:00
|
|
|
|
2017-04-01 21:28:57 +03:00
|
|
|
end
|
|
|
|
end
|