busy fixing tests
This commit is contained in:
@ -11,8 +11,8 @@ module Risc
|
||||
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
||||
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
|
||||
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
||||
RegToSlot, SlotToReg, LoadConstant, FunctionCall, Label,
|
||||
SlotToReg, SlotToReg, RegToSlot]
|
||||
RegToSlot, SlotToReg, FunctionCall, Label, SlotToReg,
|
||||
SlotToReg, RegToSlot]
|
||||
end
|
||||
def test_local_assign_instructions
|
||||
assert_nil msg = check_nil , msg
|
||||
|
@ -11,7 +11,7 @@ module Risc
|
||||
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
||||
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
|
||||
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
||||
RegToSlot, SlotToReg, LoadConstant, FunctionCall, Label]
|
||||
RegToSlot, SlotToReg, FunctionCall, Label]
|
||||
end
|
||||
|
||||
def test_send_instructions
|
||||
@ -27,16 +27,16 @@ module Risc
|
||||
end
|
||||
def test_call_reg_setup
|
||||
produced = produce_body
|
||||
assert_equal produced.next(22).register , produced.next(23).register
|
||||
assert_equal :div4 , produced.next(22).method.name
|
||||
end
|
||||
def test_function_call
|
||||
produced = produce_body
|
||||
assert_equal FunctionCall , produced.next(23).class
|
||||
assert_equal :div4 , produced.next(23).method.name
|
||||
assert_equal FunctionCall , produced.next(22).class
|
||||
assert_equal :div4 , produced.next(22).method.name
|
||||
end
|
||||
def test_check_continue
|
||||
produced = produce_body
|
||||
assert produced.next(24).name.start_with?("continue_")
|
||||
assert produced.next(23).name.start_with?("continue_")
|
||||
end
|
||||
#TODO check the message setup, type and frame moves
|
||||
end
|
||||
|
@ -12,7 +12,7 @@ module Risc
|
||||
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
|
||||
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
||||
SlotToReg, RegToSlot, LoadConstant, SlotToReg, RegToSlot,
|
||||
SlotToReg, LoadConstant, FunctionCall, Label]
|
||||
SlotToReg, FunctionCall, Label]
|
||||
end
|
||||
|
||||
def test_send_instructions
|
||||
@ -61,14 +61,14 @@ module Risc
|
||||
produced = produce_body
|
||||
assert_equal SlotToReg , produced.next(base+5).class
|
||||
assert_equal :r0 , produced.next(base+5).array.symbol
|
||||
assert_equal :r3 , produced.next(base+5).register.symbol
|
||||
assert_equal :r2 , produced.next(base+5).register.symbol
|
||||
assert_equal 1 , produced.next(base+5).index
|
||||
end
|
||||
def test_store_
|
||||
produced = produce_body
|
||||
assert_equal RegToSlot , produced.next(base+6).class
|
||||
assert_equal :r3 , produced.next(base+6).array.symbol
|
||||
assert_equal :r2 , produced.next(base+6).register.symbol
|
||||
assert_equal :r2 , produced.next(base+6).array.symbol
|
||||
assert_equal :r1 , produced.next(base+6).register.symbol
|
||||
assert_equal 4 , produced.next(base+6).index
|
||||
end
|
||||
|
||||
@ -82,16 +82,12 @@ module Risc
|
||||
|
||||
def test_function_call
|
||||
produced = produce_body
|
||||
assert_equal FunctionCall , produced.next(base+9).class
|
||||
assert_equal :get_internal_word , produced.next(base+9).method.name
|
||||
end
|
||||
def test_call_reg_setup
|
||||
produced = produce_body
|
||||
assert_equal produced.next(base+8).register , produced.next(base+9).register
|
||||
assert_equal FunctionCall , produced.next(base+8).class
|
||||
assert_equal :get_internal_word , produced.next(base+8).method.name
|
||||
end
|
||||
def test_check_continue
|
||||
produced = produce_body
|
||||
assert produced.next(base+10).name.start_with?("continue_")
|
||||
assert produced.next(base+9).name.start_with?("continue_")
|
||||
end
|
||||
#TODO check the message setup, type and frame moves
|
||||
end
|
||||
|
@ -12,7 +12,7 @@ module Risc
|
||||
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
||||
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
|
||||
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
||||
RegToSlot, SlotToReg, LoadConstant, FunctionCall, Label]
|
||||
RegToSlot, SlotToReg, FunctionCall, Label]
|
||||
@produced = produce_body
|
||||
end
|
||||
|
||||
|
@ -11,10 +11,10 @@ module Risc
|
||||
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
||||
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
|
||||
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
||||
RegToSlot, SlotToReg, LoadConstant, FunctionCall, Label,
|
||||
RegToSlot, SlotToReg, FunctionCall, Label, SlotToReg,
|
||||
SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
|
||||
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
||||
RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg,
|
||||
SlotToReg, FunctionReturn]
|
||||
FunctionReturn]
|
||||
end
|
||||
|
||||
def test_return_instructions
|
||||
@ -22,7 +22,7 @@ module Risc
|
||||
end
|
||||
def test_function_return
|
||||
produced = produce_body
|
||||
assert_equal FunctionReturn , produced.next(36).class
|
||||
assert_equal FunctionReturn , produced.next(35).class
|
||||
end
|
||||
def test_load_5
|
||||
produced = produce_body
|
||||
|
@ -12,11 +12,10 @@ module Risc
|
||||
SlotToReg, RegToSlot, SlotToReg, RegToSlot, SlotToReg,
|
||||
RegToSlot, LoadConstant, SlotToReg, RegToSlot, LoadConstant,
|
||||
SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
||||
RegToSlot, SlotToReg, LoadConstant, FunctionCall, Label,
|
||||
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
||||
LoadConstant, OperatorInstruction, IsZero, LoadConstant, OperatorInstruction,
|
||||
IsZero, LoadConstant, SlotToReg, RegToSlot, Branch,
|
||||
Label]
|
||||
RegToSlot, SlotToReg, FunctionCall, Label, SlotToReg,
|
||||
SlotToReg, RegToSlot, SlotToReg, SlotToReg, LoadConstant,
|
||||
OperatorInstruction, IsZero, LoadConstant, OperatorInstruction, IsZero,
|
||||
LoadConstant, SlotToReg, RegToSlot, Branch, Label]
|
||||
end
|
||||
|
||||
def test_while_instructions
|
||||
@ -41,19 +40,19 @@ module Risc
|
||||
end
|
||||
def test_false_check
|
||||
produced = produce_body
|
||||
assert_equal Risc::IsZero , produced.next(37).class
|
||||
assert produced.next(37).label.name.start_with?("merge_label") , produced.next(37).label.name
|
||||
assert_equal Risc::IsZero , produced.next(36).class
|
||||
assert produced.next(36).label.name.start_with?("merge_label") , produced.next(36).label.name
|
||||
end
|
||||
def test_nil_load
|
||||
produced = produce_body
|
||||
assert_equal Risc::LoadConstant , produced.next(38).class
|
||||
assert_equal Parfait::NilClass , produced.next(38).constant.class
|
||||
assert_equal Risc::LoadConstant , produced.next(37).class
|
||||
assert_equal Parfait::NilClass , produced.next(37).constant.class
|
||||
end
|
||||
|
||||
def test_back_jump # should jump back to condition label
|
||||
produced = produce_body
|
||||
assert_equal Risc::Branch , produced.next(44).class
|
||||
assert_equal produced , produced.next(44).label
|
||||
assert_equal Risc::Branch , produced.next(43).class
|
||||
assert_equal produced , produced.next(43).label
|
||||
end
|
||||
|
||||
end
|
||||
|
Reference in New Issue
Block a user