2015-09-27 21:39:10 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
class AddTest < MiniTest::Test
|
|
|
|
include Ticker
|
2015-10-05 23:27:13 +02:00
|
|
|
include AST::Sexp
|
2015-09-27 21:39:10 +02:00
|
|
|
|
|
|
|
def test_puti
|
|
|
|
@string_input = <<HERE
|
|
|
|
class Integer < Object
|
2015-10-16 16:13:08 +02:00
|
|
|
Word digit( int rest )
|
2015-10-19 14:31:48 +02:00
|
|
|
if_zero( rest == 5 )
|
2015-10-07 09:05:34 +02:00
|
|
|
return "5"
|
|
|
|
end
|
2015-10-19 14:31:48 +02:00
|
|
|
if_zero( rest == 1 )
|
2015-10-07 09:05:34 +02:00
|
|
|
return "1"
|
|
|
|
end
|
2015-10-19 14:31:48 +02:00
|
|
|
if_zero( rest == 2 )
|
2015-10-07 09:05:34 +02:00
|
|
|
return "2"
|
|
|
|
end
|
2015-10-19 14:31:48 +02:00
|
|
|
if_zero( rest == 3 )
|
2015-10-07 09:05:34 +02:00
|
|
|
return "3"
|
|
|
|
end
|
2015-10-19 14:31:48 +02:00
|
|
|
if_zero( rest == 4 )
|
2015-10-07 09:05:34 +02:00
|
|
|
return "4"
|
|
|
|
end
|
|
|
|
end
|
2015-10-16 16:13:08 +02:00
|
|
|
Word add_string(Word str)
|
2015-09-27 21:39:10 +02:00
|
|
|
int div
|
|
|
|
div = self / 10
|
|
|
|
int rest
|
|
|
|
rest = self - div
|
2015-10-19 15:22:24 +02:00
|
|
|
if_notzero( rest )
|
2015-10-09 17:06:00 +02:00
|
|
|
rest = self.digit( rest )
|
2015-09-27 21:39:10 +02:00
|
|
|
else
|
|
|
|
str = div.add_string(str)
|
|
|
|
end
|
|
|
|
return str
|
|
|
|
end
|
2015-10-16 16:13:08 +02:00
|
|
|
Word to_string()
|
|
|
|
Word start = " "
|
2015-09-27 21:39:10 +02:00
|
|
|
return add_string( start )
|
|
|
|
end
|
|
|
|
end
|
2015-10-05 23:27:13 +02:00
|
|
|
class Object
|
|
|
|
int main()
|
|
|
|
5.to_string()
|
|
|
|
end
|
|
|
|
end
|
2015-09-27 21:39:10 +02:00
|
|
|
HERE
|
2015-10-22 17:16:29 +02:00
|
|
|
machine = Register.machine.boot
|
2015-10-05 23:27:13 +02:00
|
|
|
syntax = Parser::Salama.new.parse_with_debug(@string_input)
|
|
|
|
parts = Parser::Transform.new.apply(syntax)
|
2015-10-18 16:20:19 +02:00
|
|
|
#puts parts.inspect
|
2015-10-28 20:40:22 +01:00
|
|
|
Soml.compile( parts )
|
2015-10-18 18:27:02 +02:00
|
|
|
machine.collect
|
2015-09-27 21:39:10 +02:00
|
|
|
@interpreter = Interpreter::Interpreter.new
|
2015-10-22 17:16:29 +02:00
|
|
|
@interpreter.start Register.machine.init
|
2015-10-22 14:37:02 +02:00
|
|
|
#show_ticks # get output of what is
|
2015-10-23 20:27:36 +02:00
|
|
|
["Branch","Label","LoadConstant","GetSlot","SetSlot",
|
2015-11-03 10:25:02 +01:00
|
|
|
"LoadConstant","SetSlot","RegisterTransfer","FunctionCall","Label",
|
|
|
|
"GetSlot","LoadConstant","SetSlot","LoadConstant","SetSlot",
|
|
|
|
"LoadConstant","SetSlot","LoadConstant","SetSlot","RegisterTransfer",
|
|
|
|
"FunctionCall","Label","LoadConstant","GetSlot","SetSlot",
|
|
|
|
"GetSlot","GetSlot","SetSlot","LoadConstant","SetSlot",
|
|
|
|
"LoadConstant","SetSlot","GetSlot","GetSlot","SetSlot",
|
|
|
|
"LoadConstant","SetSlot","RegisterTransfer","FunctionCall","Label",
|
|
|
|
"GetSlot","LoadConstant","OperatorInstruction","GetSlot","SetSlot",
|
|
|
|
"GetSlot","GetSlot","GetSlot","OperatorInstruction","GetSlot",
|
|
|
|
"SetSlot","GetSlot","GetSlot","IsNotzero","Label",
|
|
|
|
"GetSlot","GetSlot","SetSlot","LoadConstant","SetSlot",
|
|
|
|
"LoadConstant","SetSlot","GetSlot","GetSlot","SetSlot",
|
|
|
|
"LoadConstant","SetSlot","RegisterTransfer","FunctionCall","Label",
|
|
|
|
"GetSlot","LoadConstant","OperatorInstruction","IsZero","Branch",
|
|
|
|
"Label","GetSlot","LoadConstant","OperatorInstruction","IsZero",
|
|
|
|
"Label","LoadConstant","SetSlot","Label","GetSlot",
|
|
|
|
"LoadConstant","OperatorInstruction","IsZero","Label","LoadConstant",
|
|
|
|
"SetSlot","Label","GetSlot","LoadConstant","OperatorInstruction",
|
2015-10-27 20:04:46 +01:00
|
|
|
"IsZero","Label","LoadConstant","SetSlot","Label",
|
|
|
|
"GetSlot","LoadConstant","OperatorInstruction","IsZero","Label",
|
2015-11-03 10:25:02 +01:00
|
|
|
"LoadConstant","SetSlot","Label","Label","RegisterTransfer",
|
|
|
|
"GetSlot","FunctionReturn","GetSlot","GetSlot","SetSlot",
|
|
|
|
"Label","GetSlot","SetSlot","Label","RegisterTransfer",
|
|
|
|
"GetSlot","FunctionReturn","GetSlot","SetSlot","Label",
|
|
|
|
"RegisterTransfer","GetSlot","FunctionReturn","GetSlot","Label",
|
|
|
|
"RegisterTransfer","GetSlot","FunctionReturn","RegisterTransfer","Syscall",
|
|
|
|
"NilClass"].each_with_index do |name , index|
|
2015-09-27 21:39:10 +02:00
|
|
|
got = ticks(1)
|
|
|
|
assert got.class.name.index(name) , "Wrong class for #{index+1}, expect #{name} , got #{got}"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|