Fix if statements hoisting, now that send is working

Same same, just have to remembe to actually execute the condition if it is a send
Having send a possible expression, removes one tmp variable and associated move, for a little extra work.
Next return and assign (rest)
This commit is contained in:
2019-08-16 18:42:57 +03:00
parent dee1e24c28
commit e6c30d98fb
11 changed files with 80 additions and 37 deletions

View File

@ -15,8 +15,13 @@ module Vool
false_label = Mom::Label.new( self , "false_label_#{object_id.to_s(16)}")
merge_label = Mom::Label.new( self , "merge_label_#{object_id.to_s(16)}")
head = @condition.to_mom(compiler) if @condition.is_a?(SendStatement)
head << Mom::TruthCheck.new(condition.slot_definition(compiler) , false_label)
check = Mom::TruthCheck.new(condition.slot_definition(compiler) , false_label)
if @condition.is_a?(SendStatement)
head = @condition.to_mom(compiler)
head << check
else
head = check
end
head << true_label
head << if_true.to_mom(compiler) if @if_true
head << Mom::Jump.new(merge_label) if @if_false