1c09d4202f
and thus all green, two weeks of side branch positioning done (luckily not on arm, but interpreter)
43 lines
2.0 KiB
Ruby
43 lines
2.0 KiB
Ruby
require_relative "../helper"
|
|
|
|
module Risc
|
|
class InterpreterAssignThrice < MiniTest::Test
|
|
include Ticker
|
|
|
|
def setup
|
|
@string_input = as_main("a = 5 ;a = 5 + a ;a = 5 + a ; return a")
|
|
super
|
|
end
|
|
|
|
def test_chain
|
|
#show_main_ticks # get output of what is
|
|
check_main_chain [LoadConstant, SlotToReg, RegToSlot, LoadConstant, LoadConstant,
|
|
SlotToReg, RegToSlot, RegToSlot, SlotToReg, SlotToReg,
|
|
RegToSlot, SlotToReg, SlotToReg, Branch, RegToSlot,
|
|
SlotToReg, RegToSlot, SlotToReg, RegToSlot, LoadConstant,
|
|
SlotToReg, RegToSlot, SlotToReg, SlotToReg, SlotToReg,
|
|
SlotToReg, RegToSlot, Branch, LoadConstant, SlotToReg,
|
|
RegToSlot, SlotToReg, FunctionCall, SlotToReg, SlotToReg,
|
|
SlotToReg, SlotToReg, SlotToReg, OperatorInstruction, LoadConstant,
|
|
SlotToReg, SlotToReg, RegToSlot, RegToSlot, RegToSlot,
|
|
SlotToReg, Branch, SlotToReg, RegToSlot, SlotToReg,
|
|
SlotToReg, FunctionReturn, SlotToReg, SlotToReg, RegToSlot,
|
|
LoadConstant, LoadConstant, SlotToReg, RegToSlot, RegToSlot,
|
|
Branch, SlotToReg, SlotToReg, RegToSlot, SlotToReg,
|
|
SlotToReg, RegToSlot, SlotToReg, RegToSlot, SlotToReg,
|
|
RegToSlot, LoadConstant, SlotToReg, RegToSlot, Branch,
|
|
SlotToReg, SlotToReg, SlotToReg, SlotToReg, RegToSlot,
|
|
LoadConstant, SlotToReg, RegToSlot, SlotToReg, FunctionCall,
|
|
SlotToReg, SlotToReg, SlotToReg, SlotToReg, SlotToReg,
|
|
OperatorInstruction, LoadConstant, SlotToReg, SlotToReg, RegToSlot,
|
|
RegToSlot, RegToSlot, SlotToReg, Branch, SlotToReg,
|
|
RegToSlot, SlotToReg, SlotToReg, FunctionReturn, SlotToReg,
|
|
SlotToReg, RegToSlot, Branch, SlotToReg, SlotToReg,
|
|
RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg,
|
|
SlotToReg, FunctionReturn, Transfer, Syscall, NilClass]
|
|
assert_equal 15 , get_return.value
|
|
end
|
|
|
|
end
|
|
end
|