fix the if syntax and branches
This commit is contained in:
parent
1fd937927c
commit
99cff3aa32
@ -103,14 +103,16 @@ module Interpreter
|
|||||||
end
|
end
|
||||||
|
|
||||||
def execute_IsZero
|
def execute_IsZero
|
||||||
#puts @instruction.inspect
|
@flags[:zero] ? execute_Branch : true
|
||||||
if( @flags[:zero] )
|
|
||||||
target = @instruction.block
|
|
||||||
set_block target
|
|
||||||
return false
|
|
||||||
else
|
|
||||||
return true
|
|
||||||
end
|
end
|
||||||
|
def execute_IsNotzero
|
||||||
|
@flags[:zero] ? true : execute_Branch
|
||||||
|
end
|
||||||
|
def execute_IsPlus
|
||||||
|
@flags[:plus] ? execute_Branch : true
|
||||||
|
end
|
||||||
|
def execute_IsMinus
|
||||||
|
@flags[:minus] ? execute_Branch : true
|
||||||
end
|
end
|
||||||
|
|
||||||
def execute_LoadConstant
|
def execute_LoadConstant
|
||||||
|
@ -13,9 +13,8 @@ module Phisol
|
|||||||
false_block = @method.source.new_block "if_false" # directly next in order, ie if we don't jump we land here
|
false_block = @method.source.new_block "if_false" # directly next in order, ie if we don't jump we land here
|
||||||
|
|
||||||
is = process(condition)
|
is = process(condition)
|
||||||
# TODO should/will use different branches for different conditions.
|
branch_class = Object.const_get "Register::Is#{branch_type.capitalize}"
|
||||||
# just a scetch : cond_val = cond_val.is_true?(method) unless cond_val.is_a? BranchCondition
|
@method.source.add_code branch_class.new( condition , true_block )
|
||||||
@method.source.add_code Register::IsZero.new( condition , true_block )
|
|
||||||
|
|
||||||
# compile the true block (as we think of it first, even it is second in sequential order)
|
# compile the true block (as we think of it first, even it is second in sequential order)
|
||||||
@method.source.current true_block
|
@method.source.current true_block
|
||||||
|
@ -25,7 +25,7 @@ HERE
|
|||||||
class Object
|
class Object
|
||||||
int main()
|
int main()
|
||||||
int n = 10
|
int n = 10
|
||||||
if_minus(8 - n )
|
if_zero(8 - n )
|
||||||
"10".putstring()
|
"10".putstring()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -8,7 +8,7 @@ class TestIfStatement < MiniTest::Test
|
|||||||
@string_input = <<HERE
|
@string_input = <<HERE
|
||||||
class Object
|
class Object
|
||||||
int main()
|
int main()
|
||||||
if_plus( 10 < 12)
|
if_plus( 10 - 12)
|
||||||
return 3
|
return 3
|
||||||
else
|
else
|
||||||
return 4
|
return 4
|
||||||
@ -17,18 +17,36 @@ class Object
|
|||||||
end
|
end
|
||||||
HERE
|
HERE
|
||||||
@expect = [[SaveReturn,LoadConstant,LoadConstant,
|
@expect = [[SaveReturn,LoadConstant,LoadConstant,
|
||||||
OperatorInstruction,IsZero] ,
|
OperatorInstruction,IsPlus] ,
|
||||||
[LoadConstant,Branch] ,[LoadConstant] ,[] ,
|
[LoadConstant,Branch] ,[LoadConstant] ,[] ,
|
||||||
[RegisterTransfer,GetSlot,FunctionReturn]]
|
[RegisterTransfer,GetSlot,FunctionReturn]]
|
||||||
check
|
check
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def test_if_small
|
def test_if_small_minus
|
||||||
@string_input = <<HERE
|
@string_input = <<HERE
|
||||||
class Object
|
class Object
|
||||||
int main()
|
int main()
|
||||||
if_minus( 10 < 12)
|
if_minus( 10 - 12)
|
||||||
|
return 3
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
HERE
|
||||||
|
@expect = [[SaveReturn,LoadConstant,LoadConstant,
|
||||||
|
OperatorInstruction,IsMinus] ,
|
||||||
|
[Branch] ,[LoadConstant] ,[] ,
|
||||||
|
[RegisterTransfer,GetSlot,FunctionReturn]]
|
||||||
|
check
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def test_if_small_zero
|
||||||
|
@string_input = <<HERE
|
||||||
|
class Object
|
||||||
|
int main()
|
||||||
|
if_zero( 10 - 12)
|
||||||
return 3
|
return 3
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -40,24 +58,5 @@ HERE
|
|||||||
[RegisterTransfer,GetSlot,FunctionReturn]]
|
[RegisterTransfer,GetSlot,FunctionReturn]]
|
||||||
check
|
check
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def ttest_call_function
|
|
||||||
@string_input = <<HERE
|
|
||||||
class Object
|
|
||||||
int itest(int n)
|
|
||||||
return 4
|
|
||||||
end
|
|
||||||
|
|
||||||
int main()
|
|
||||||
itest(20)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
HERE
|
|
||||||
@expect = [ [SaveReturn,GetSlot,SetSlot,LoadConstant,
|
|
||||||
SetSlot,LoadConstant,SetSlot,RegisterTransfer,FunctionCall,
|
|
||||||
GetSlot] ,[RegisterTransfer,GetSlot,FunctionReturn] ]
|
|
||||||
check
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -29,7 +29,7 @@ class Integer < Object
|
|||||||
div = self / 10
|
div = self / 10
|
||||||
int rest
|
int rest
|
||||||
rest = self - div
|
rest = self - div
|
||||||
if_nonzero( rest )
|
if_notzero( rest )
|
||||||
rest = self.digit( rest )
|
rest = self.digit( rest )
|
||||||
str = str + rest
|
str = str + rest
|
||||||
else
|
else
|
||||||
@ -58,7 +58,7 @@ HERE
|
|||||||
# Phisol::Compiler.compile( statements , Virtual.machine.space.get_main )
|
# Phisol::Compiler.compile( statements , Virtual.machine.space.get_main )
|
||||||
@interpreter = Interpreter::Interpreter.new
|
@interpreter = Interpreter::Interpreter.new
|
||||||
@interpreter.start Virtual.machine.init
|
@interpreter.start Virtual.machine.init
|
||||||
#show_ticks # get output of what is
|
# show_ticks # get output of what is
|
||||||
["Branch","LoadConstant","GetSlot","SetSlot","RegisterTransfer",
|
["Branch","LoadConstant","GetSlot","SetSlot","RegisterTransfer",
|
||||||
"FunctionCall","SaveReturn","GetSlot","LoadConstant","SetSlot",
|
"FunctionCall","SaveReturn","GetSlot","LoadConstant","SetSlot",
|
||||||
"LoadConstant","SetSlot","RegisterTransfer","FunctionCall","SaveReturn",
|
"LoadConstant","SetSlot","RegisterTransfer","FunctionCall","SaveReturn",
|
||||||
@ -67,23 +67,14 @@ HERE
|
|||||||
"SetSlot","RegisterTransfer","FunctionCall","SaveReturn","GetSlot",
|
"SetSlot","RegisterTransfer","FunctionCall","SaveReturn","GetSlot",
|
||||||
"LoadConstant","OperatorInstruction","GetSlot","SetSlot","GetSlot",
|
"LoadConstant","OperatorInstruction","GetSlot","SetSlot","GetSlot",
|
||||||
"GetSlot","GetSlot","OperatorInstruction","GetSlot","SetSlot",
|
"GetSlot","GetSlot","OperatorInstruction","GetSlot","SetSlot",
|
||||||
"GetSlot","GetSlot","IsZero","GetSlot","GetSlot",
|
"GetSlot","GetSlot","IsNotzero","GetSlot","GetSlot",
|
||||||
"GetSlot","SetSlot","LoadConstant","SetSlot","GetSlot",
|
"SetSlot","LoadConstant","SetSlot","GetSlot","GetSlot",
|
||||||
"SetSlot","RegisterTransfer","FunctionCall","SaveReturn","GetSlot",
|
"SetSlot","RegisterTransfer","FunctionCall","SaveReturn","GetSlot",
|
||||||
"LoadConstant","OperatorInstruction","GetSlot","SetSlot","GetSlot",
|
"LoadConstant","OperatorInstruction","IsZero","LoadConstant","GetSlot",
|
||||||
"GetSlot","GetSlot","OperatorInstruction","GetSlot","SetSlot",
|
"LoadConstant","OperatorInstruction","IsZero","LoadConstant","GetSlot",
|
||||||
"GetSlot","GetSlot","IsZero","GetSlot","GetSlot",
|
"LoadConstant","OperatorInstruction","IsZero","LoadConstant","GetSlot",
|
||||||
"GetSlot","SetSlot","LoadConstant","SetSlot","GetSlot",
|
"LoadConstant","OperatorInstruction","IsZero","LoadConstant","GetSlot",
|
||||||
"SetSlot","RegisterTransfer","FunctionCall","SaveReturn","GetSlot",
|
"LoadConstant","OperatorInstruction","IsZero","LoadConstant","NilClass"].each_with_index do |name , index|
|
||||||
"LoadConstant","OperatorInstruction","GetSlot","SetSlot","GetSlot",
|
|
||||||
"GetSlot","GetSlot","OperatorInstruction","GetSlot","SetSlot",
|
|
||||||
"GetSlot","GetSlot","IsZero","GetSlot","GetSlot",
|
|
||||||
"GetSlot","SetSlot","LoadConstant","SetSlot","GetSlot",
|
|
||||||
"SetSlot","RegisterTransfer","FunctionCall","SaveReturn","GetSlot",
|
|
||||||
"LoadConstant","OperatorInstruction","GetSlot","SetSlot","GetSlot",
|
|
||||||
"GetSlot","GetSlot","OperatorInstruction","GetSlot","SetSlot",
|
|
||||||
"GetSlot","GetSlot","IsZero","GetSlot","GetSlot",
|
|
||||||
"GetSlot"].each_with_index do |name , index|
|
|
||||||
got = ticks(1)
|
got = ticks(1)
|
||||||
assert got.class.name.index(name) , "Wrong class for #{index+1}, expect #{name} , got #{got}"
|
assert got.class.name.index(name) , "Wrong class for #{index+1}, expect #{name} , got #{got}"
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user