start better if mom test

This commit is contained in:
Torsten Ruger
2017-08-30 22:27:12 +03:00
parent 349dd37c82
commit c3939ef622
6 changed files with 70 additions and 12 deletions

View File

@ -20,6 +20,10 @@ module Rubyx
type.create_method( @name , @args_type )#FIXME, @locals_type)
end
def create_tmp
tmp_name = "tmp_#{@locals_type.instance_length}"
@locals_type = @locals_type.add_instance_variable( tmp_name , :Object )
tmp_name
end
end
end

View File

@ -131,8 +131,8 @@ module Vm
Tree::KnownName.new(statement.children.first)
end
def on_string expression
Tree::StringExpression.new(expression.children.first)
def on_string expressions
Tree::StringExpression.new(expressions.children.first)
end
def on_class_name expression

View File

@ -185,6 +185,10 @@ module Vool
w
end
def handler_missing(node)
raise "Handler missing #{node}"
end
private
def instance_name sym

View File

@ -10,18 +10,18 @@ module Vool
end
def to_mom( method )
if_true = @if_true.to_mom( method )
if_false = @if_false.to_mom( method )
merge = Mom::Noop.new(:merge)
make_condition( add_jump(if_true,merge) , add_jump(if_false,merge) , merge)
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)
[ *check , if_true , if_false , merge ]
end
# conditions in ruby are almost always method sends (as even comparisons are)
# currently we just deal with straight up values which get tested
# for the funny ruby logic (everything but false and nil is true)
def make_condition( if_true , if_false , merge)
check = Mom::TruthCheck.new( @condition , if_true , if_false , merge)
[ check , if_true , if_false , merge ]
def hoist_condition( method )
return [@condition] if @condition.is_a?(Vool::Named)
local = method.create_tmp
puts local
end
def collect(arr)