Torsten Rüger
5a43cbff15
previous commit affected rather many test, as the implicit returns add extra instructions Also added some explicit returns, so as not to test the return logic too much. return (ie return nl) is a knonwn 3 risc operation.
28 lines
809 B
Ruby
28 lines
809 B
Ruby
require_relative '../helper'
|
|
|
|
module Risc
|
|
class TestAssignLocalSend < MiniTest::Test
|
|
include Statements
|
|
|
|
def setup
|
|
super
|
|
@input = "r = 5.div4;return"
|
|
@expect = [LoadConstant, LoadConstant, SlotToReg, SlotToReg, RegToSlot,
|
|
RegToSlot, RegToSlot, RegToSlot, LoadConstant, SlotToReg,
|
|
RegToSlot, LoadConstant, SlotToReg, RegToSlot, SlotToReg,
|
|
FunctionCall, Label, SlotToReg, SlotToReg, RegToSlot,
|
|
LoadConstant, RegToSlot, Branch]
|
|
end
|
|
def test_local_assign_instructions
|
|
assert_nil msg = check_nil , msg
|
|
end
|
|
|
|
def test_constant_load
|
|
produced = produce_body
|
|
load = produced.next(8)
|
|
assert_equal LoadConstant , load.class
|
|
assert_equal 5 , load.constant.value
|
|
end
|
|
end
|
|
end
|