2018-07-19 14:47:29 +03:00
|
|
|
|
2019-10-04 00:36:49 +03:00
|
|
|
module Sol
|
2017-04-01 21:28:57 +03:00
|
|
|
class IfStatement < Statement
|
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
|
|
|
|
|
2019-10-03 20:55:41 +03:00
|
|
|
def to_slot( compiler )
|
|
|
|
true_label = SlotMachine::Label.new( self , "true_label_#{object_id.to_s(16)}")
|
|
|
|
false_label = SlotMachine::Label.new( self , "false_label_#{object_id.to_s(16)}")
|
|
|
|
merge_label = SlotMachine::Label.new( self , "merge_label_#{object_id.to_s(16)}")
|
2018-03-16 19:05:22 +05:30
|
|
|
|
2019-08-16 20:39:08 +03:00
|
|
|
if @condition.is_a?(CallStatement)
|
2019-10-03 20:55:41 +03:00
|
|
|
head = @condition.to_slot(compiler)
|
2019-08-25 14:40:59 +03:00
|
|
|
head << check_slot(compiler , false_label)
|
2019-08-16 18:42:57 +03:00
|
|
|
else
|
2019-08-25 14:40:59 +03:00
|
|
|
head = check_slot(compiler , false_label)
|
2019-08-16 18:42:57 +03:00
|
|
|
end
|
2018-03-16 19:05:22 +05:30
|
|
|
head << true_label
|
2019-10-03 20:55:41 +03:00
|
|
|
head << if_true.to_slot(compiler) if @if_true
|
|
|
|
head << SlotMachine::Jump.new(merge_label) if @if_false
|
2018-03-16 19:05:22 +05:30
|
|
|
head << false_label
|
2019-10-03 20:55:41 +03:00
|
|
|
head << if_false.to_slot(compiler) if @if_false
|
2019-08-14 22:24:35 +03:00
|
|
|
head << merge_label if @if_false
|
|
|
|
head
|
2018-03-15 20:33:38 +05:30
|
|
|
end
|
2017-08-30 17:21:13 +03:00
|
|
|
|
2019-10-03 20:55:41 +03:00
|
|
|
# create the slot lazily, so to_slot gets called first
|
2019-08-25 14:40:59 +03:00
|
|
|
def check_slot(compiler , false_label)
|
2020-02-17 14:29:45 +07:00
|
|
|
SlotMachine::TruthCheck.new(@condition.to_slotted(compiler) , false_label)
|
2019-08-25 14:40:59 +03:00
|
|
|
end
|
|
|
|
|
2018-03-15 20:40:21 +05:30
|
|
|
def each(&block)
|
|
|
|
block.call(condition)
|
2019-08-14 22:24:35 +03:00
|
|
|
@if_true.each(&block) if @if_true
|
2018-03-15 20:40:21 +05:30
|
|
|
@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
|
|
|
|
2018-07-03 22:18:19 +03:00
|
|
|
def to_s(depth = 0)
|
2019-09-19 20:48:21 +03:00
|
|
|
parts = "if (#{@condition.to_s(0)})\n"
|
|
|
|
parts += " #{@if_true}\n" if @if_true
|
2019-10-02 17:42:24 +03:00
|
|
|
parts += "else\n" if(@if_false)
|
|
|
|
parts += " #{@if_false}\n" if(@if_false)
|
2019-09-19 20:48:21 +03:00
|
|
|
parts += "end\n"
|
|
|
|
at_depth(depth , parts )
|
2018-07-03 22:18:19 +03:00
|
|
|
end
|
2017-04-01 21:28:57 +03:00
|
|
|
end
|
|
|
|
end
|