rubyx/test/mom/helper.rb

84 lines
2.6 KiB
Ruby
Raw Normal View History

2018-03-15 16:21:46 +01:00
require_relative '../helper'
module Risc
module Statements
def setup
end
def preamble
2018-05-23 17:06:55 +02:00
[ Label ]
2018-03-15 16:21:46 +01:00
end
def postamble
2019-08-22 21:56:44 +02:00
[Label, SlotToReg, SlotToReg, RegToSlot, LoadConstant,
SlotToReg, RegToSlot, RegToSlot, SlotToReg, SlotToReg,
2019-08-22 21:56:44 +02:00
SlotToReg, FunctionReturn, Label]
2018-03-15 16:21:46 +01:00
end
def produce_body
produced = produce_main
preamble.each{ produced = produced.next }
produced
end
def as_block( block_input , method_input = "main_local = 5")
"#{method_input} ; self.main{|val| #{block_input}}"
end
2018-05-23 17:06:55 +02:00
def as_test_main
"class Test; #{@class_input if @class_input};def main(arg);#{@input};end;end"
2018-05-23 17:06:55 +02:00
end
def to_target
2018-03-15 16:21:46 +01:00
assert @expect , "No output given"
compiler = RubyX::RubyXCompiler.new(RubyX.default_test_options)
vool = compiler.ruby_to_vool(as_test_main)
compiler.to_target(:interpreter)
end
def produce_main
produce_target(:main)
end
def produce_block
produce_target(:main_block)
end
def produce_target(name = :main_block)
linker = to_target
block = linker.assemblers.find {|c| c.callable.name == name }
assert_equal Risc::Assembler , block.class
block.instructions
end
def check_nil( name = :main )
produced = produce_target( name )
compare_instructions( produced , @expect )
2018-03-15 16:21:46 +01:00
end
def check_return
was = check_nil
raise was if was
test = Parfait.object_space.get_class_by_name :Test
test.instance_type.get_method :main
2018-03-15 16:21:46 +01:00
end
def compare_instructions( instruction , expect )
index = 0
all = instruction.to_arr
full_expect = preamble + expect + postamble
#full_expect = expect
begin
should = full_expect[index]
return "No instruction at #{index-1}\n#{should(all)[0..100]}" unless should
return "Expected at #{index-1}\n#{should(all)} was #{instruction.to_s[0..100]}" unless instruction.class == should
#puts "#{index-1}:#{instruction.to_s}" if (index > preamble.length) and (index + postamble.length <= full_expect.length)
2018-03-15 16:21:46 +01:00
index += 1
instruction = instruction.next
end while( instruction )
nil
end
def should( all )
preamble.each {all.shift}
postamble.each {all.pop}
2018-03-30 17:05:38 +02:00
str = all.collect{|i| i.class.name}.join(", ").gsub("Risc::","")
str = "[#{str}]"
all = str.split(",").each_slice(5).collect { |line| " " + line.join(",")}
res = ""
all.each_with_index { |line,index| res += "#{line}, ##{index*5 + 4}\n"}
res
2018-03-15 16:21:46 +01:00
end
end
end