2018-03-15 06:54:14 +01:00
|
|
|
require_relative "normalizer"
|
2017-04-01 20:28:57 +02:00
|
|
|
module Vool
|
|
|
|
class IfStatement < Statement
|
2018-03-15 06:54:14 +01:00
|
|
|
include Normalizer
|
2018-03-12 13:26:44 +01:00
|
|
|
|
2017-04-06 15:06:51 +02:00
|
|
|
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
|
2017-04-06 15:06:51 +02:00
|
|
|
@if_true = if_true
|
|
|
|
@if_false = if_false
|
|
|
|
simplify_condition
|
|
|
|
end
|
|
|
|
|
2018-03-15 08:16:56 +01:00
|
|
|
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 06:54:14 +01:00
|
|
|
return me unless rest
|
|
|
|
rest << me
|
|
|
|
end
|
|
|
|
|
2017-08-30 16:21:13 +02:00
|
|
|
def to_mom( method )
|
2017-09-04 20:00:08 +02:00
|
|
|
if_true = @if_true.to_mom( method )
|
2018-03-12 13:26:44 +01:00
|
|
|
if_false = @if_false ? @if_false.to_mom( method ) : nil
|
2017-09-04 20:00:08 +02:00
|
|
|
condition , hoisted = hoist_condition( method )
|
2017-09-04 20:31:49 +02:00
|
|
|
cond = Mom::TruthCheck.new(condition.to_mom(method))
|
|
|
|
check = Mom::IfStatement.new( cond , if_true , if_false )
|
2017-09-04 20:00:08 +02:00
|
|
|
check.hoisted = hoisted.to_mom(method) if hoisted
|
|
|
|
check
|
2017-08-30 16:21:13 +02:00
|
|
|
end
|
|
|
|
|
2018-03-15 16:03:38 +01:00
|
|
|
def flatten(options = {})
|
|
|
|
true_label = Label.new( "true_label_#{object_id}")
|
|
|
|
false_label = Label.new( "false_label_#{object_id}")
|
|
|
|
merge_label = Label.new( "merge_label_#{object_id}")
|
|
|
|
first = condition.flatten( true_label: true_label , false_label: false_label)
|
|
|
|
if hoisted
|
|
|
|
head = hoisted.flatten
|
|
|
|
head.append first
|
|
|
|
else
|
|
|
|
head = first
|
|
|
|
end
|
|
|
|
head.append true_label
|
|
|
|
head.append if_true.flatten( merge_label: merge_label)
|
|
|
|
if( if_false)
|
|
|
|
head.append false_label
|
|
|
|
head.append if_false.flatten( merge_label: merge_label)
|
|
|
|
end
|
|
|
|
head.append merge_label
|
|
|
|
head
|
|
|
|
end
|
2017-08-30 16:21:13 +02:00
|
|
|
|
2017-04-08 11:10:42 +02:00
|
|
|
def collect(arr)
|
|
|
|
@if_true.collect(arr)
|
2018-03-12 13:26:44 +01:00
|
|
|
@if_false.collect(arr) if @if_false
|
2017-04-08 11:10:42 +02:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2017-04-06 15:06:51 +02:00
|
|
|
def simplify_condition
|
|
|
|
return unless @condition.is_a?(ScopeStatement)
|
|
|
|
@condition = @condition.first if @condition.single?
|
2017-04-02 18:12:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def has_false?
|
|
|
|
@if_false != nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_true?
|
|
|
|
@if_true != nil
|
|
|
|
end
|
2017-08-30 17:23:54 +02:00
|
|
|
|
2017-04-01 20:28:57 +02:00
|
|
|
end
|
|
|
|
end
|