rubyx/test/risc/interpreter/test_byte_to_reg.rb

68 lines
2.2 KiB
Ruby
Raw Normal View History

2016-12-15 21:15:58 +01:00
require_relative "helper"
module Risc
2017-01-03 21:42:40 +01:00
class TestInterpretRegToByte < MiniTest::Test
include Ticker
2016-12-15 21:15:58 +01:00
2017-01-03 21:42:40 +01:00
def setup
@string_input = <<HERE
class Space
int main()
"Hello".set_internal_byte(1,104)
end
2016-12-15 21:15:58 +01:00
end
HERE
2017-01-03 21:42:40 +01:00
@input = s(:statements, s(:call,
:set_internal_byte ,
2017-01-03 21:42:40 +01:00
s(:arguments, s(:int, 1), s(:int, 104)),
s(:receiver, s(:string, "Hello"))))
super
end
2016-12-15 21:15:58 +01:00
def pest_chain
2017-01-03 21:42:40 +01:00
#show_ticks # get output of what is
check_chain [Branch, Label, LoadConstant, SlotToReg, RegToSlot,
LoadConstant, RegToSlot, FunctionCall, Label, SlotToReg,
LoadConstant, RegToSlot, LoadConstant, RegToSlot, LoadConstant,
SlotToReg, RegToSlot, LoadConstant, SlotToReg, RegToSlot,
LoadConstant, SlotToReg, RegToSlot, LoadConstant, RegToSlot,
2018-03-21 11:18:04 +01:00
Transfer, FunctionCall, Label, LoadConstant, SlotToReg,
RegToSlot, SlotToReg, SlotToReg, SlotToReg, SlotToReg,
2018-03-21 11:18:04 +01:00
SlotToReg, RegToByte, Label, FunctionReturn, Transfer,
SlotToReg, SlotToReg, LoadConstant, SlotToReg, RegToSlot,
2018-03-21 11:18:04 +01:00
Label, FunctionReturn, Transfer, Syscall, NilClass]
2017-01-03 21:42:40 +01:00
end
2016-12-15 21:15:58 +01:00
def pest_branch
2017-01-03 21:42:40 +01:00
was = @interpreter.instruction
assert_equal Branch , ticks(1).class
2017-01-03 21:42:40 +01:00
assert was != @interpreter.instruction
assert @interpreter.instruction , "should have gone to next instruction"
end
def pest_load
assert_equal LoadConstant , ticks(3).class
2017-01-03 21:42:40 +01:00
assert_equal Parfait::Space , @interpreter.get_register(:r2).class
assert_equal :r2, @interpreter.instruction.array.symbol
end
def pest_get
assert_equal SlotToReg , ticks(4).class
2017-01-03 21:42:40 +01:00
assert @interpreter.get_register( :r1 )
assert Integer , @interpreter.get_register( :r1 ).class
end
def pest_call
assert_equal FunctionCall , ticks(8).class
2017-01-03 21:42:40 +01:00
end
def pest_exit
done = ticks(50)
2017-01-03 21:42:40 +01:00
assert_equal NilClass , done.class
end
2016-12-15 21:15:58 +01:00
def pest_reg_to_byte
done = ticks(37)
assert_equal RegToByte , done.class
2017-01-03 21:42:40 +01:00
assert_equal "h".ord , @interpreter.get_register(done.register)
end
2016-12-15 21:15:58 +01:00
2017-01-03 21:42:40 +01:00
end
2016-12-15 21:15:58 +01:00
end