rubyx/lib/vool/statements/if_statement.rb

55 lines
1.3 KiB
Ruby
Raw Normal View History

2017-04-01 21:28:57 +03:00
module Vool
class IfStatement < Statement
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
@if_true = if_true
@if_false = if_false
simplify_condition
end
2017-08-30 17:21:13 +03:00
def to_mom( method )
2017-08-30 18:23:54 +03:00
merge = Mom::Noop.new(:merge)
2017-08-30 22:27:12 +03:00
if_true = add_jump(@if_true.to_mom( method ) , merge)
if_false = add_jump(@if_false.to_mom( method ) , merge)
cond = hoist_condition( method )
check = Mom::TruthCheck.new( cond.pop , if_true , if_false , merge)
2017-08-30 22:54:03 +03:00
[ *cond , check , if_true , if_false , merge ]
2017-08-30 17:21:13 +03:00
end
2017-08-30 22:54:03 +03:00
def hoist_condition( method )
2017-08-30 22:27:12 +03:00
return [@condition] if @condition.is_a?(Vool::Named)
local = method.create_tmp
2017-08-30 22:54:03 +03:00
assign = LocalAssignment.new( local , @condition).to_mom(method)
[assign , Vool::LocalVariable.new(local)]
2017-08-30 17:21:13 +03:00
end
2017-04-08 12:10:42 +03:00
def collect(arr)
@if_true.collect(arr)
@if_false.collect(arr)
super
end
def simplify_condition
return unless @condition.is_a?(ScopeStatement)
@condition = @condition.first if @condition.single?
2017-04-02 19:12:42 +03:00
end
def has_false?
@if_false != nil
end
def has_true?
@if_true != nil
end
2017-08-30 18:23:54 +03:00
private
def add_jump( block , merge)
block = [block] unless block.is_a?(Array)
block << Mom::Jump.new(merge)
block
end
2017-04-01 21:28:57 +03:00
end
end