2015-10-18 18:27:02 +02:00
|
|
|
require_relative "collector"
|
2018-03-27 19:47:41 +02:00
|
|
|
require_relative "binary_writer"
|
2016-12-08 19:13:08 +01:00
|
|
|
|
2017-01-19 08:02:29 +01:00
|
|
|
module Risc
|
|
|
|
# The Risc Machine is an abstraction of the register level. This is seperate from the
|
2016-12-06 10:38:09 +01:00
|
|
|
# actual assembler level to allow for several cpu architectures.
|
|
|
|
# The Instructions (see class Instruction) define what the machine can do (ie load/store/maths)
|
2015-10-24 10:42:36 +02:00
|
|
|
|
2018-03-11 11:41:15 +01:00
|
|
|
# From code, the next step down is Vool, then Mom (in two steps)
|
2014-06-25 01:33:44 +02:00
|
|
|
#
|
2015-06-20 22:49:30 +02:00
|
|
|
# The next step transforms to the register machine layer, which is quite close to what actually
|
|
|
|
# executes. The step after transforms to Arm, which creates executables.
|
2014-06-25 01:33:44 +02:00
|
|
|
#
|
2015-06-20 22:49:30 +02:00
|
|
|
|
2014-06-25 15:00:24 +02:00
|
|
|
class Machine
|
2018-05-20 13:45:48 +02:00
|
|
|
include Util::Logging
|
2018-05-23 17:06:55 +02:00
|
|
|
log_level :info
|
2015-07-18 10:53:04 +02:00
|
|
|
|
2014-06-25 15:00:24 +02:00
|
|
|
def initialize
|
2015-06-01 07:40:17 +02:00
|
|
|
@booted = false
|
2018-05-01 21:36:46 +02:00
|
|
|
@risc_init = nil
|
2015-10-28 12:00:23 +01:00
|
|
|
@constants = []
|
2014-06-25 15:00:24 +02:00
|
|
|
end
|
2018-05-12 17:36:59 +02:00
|
|
|
attr_reader :constants , :cpu_init
|
2018-03-27 17:47:39 +02:00
|
|
|
attr_reader :booted , :translated
|
2018-05-12 17:36:59 +02:00
|
|
|
attr_reader :platform
|
2015-10-24 10:42:36 +02:00
|
|
|
|
2018-05-16 20:00:14 +02:00
|
|
|
# Translate code to whatever cpu is specified.
|
|
|
|
# Currently only :arm and :interpret
|
2018-03-26 18:42:40 +02:00
|
|
|
#
|
2018-05-16 20:00:14 +02:00
|
|
|
# Translating means translating the initial jump
|
2018-03-29 17:03:21 +02:00
|
|
|
# and then translating all methods
|
2018-05-16 20:00:14 +02:00
|
|
|
def translate( platform )
|
|
|
|
platform = platform.to_s.capitalize
|
|
|
|
@platform = Platform.for(platform)
|
|
|
|
@translated = true
|
2018-05-01 18:19:04 +02:00
|
|
|
methods = Parfait.object_space.get_all_methods
|
2018-05-16 20:00:14 +02:00
|
|
|
translate_methods( methods , @platform.translator )
|
|
|
|
@cpu_init = risc_init.to_cpu(@platform.translator)
|
2016-12-15 18:20:54 +01:00
|
|
|
end
|
|
|
|
|
2018-03-29 17:03:21 +02:00
|
|
|
# go through all methods and translate them to cpu, given the translator
|
2018-03-26 18:42:40 +02:00
|
|
|
def translate_methods(methods , translator)
|
2015-10-24 10:42:36 +02:00
|
|
|
methods.each do |method|
|
2016-12-31 13:54:15 +01:00
|
|
|
log.debug "Translate method #{method.name}"
|
2018-03-25 18:36:00 +02:00
|
|
|
method.translate_cpu(translator)
|
2015-06-12 17:52:06 +02:00
|
|
|
end
|
2015-05-12 14:36:44 +02:00
|
|
|
end
|
|
|
|
|
2018-03-27 17:47:39 +02:00
|
|
|
# machine keeps a list of all objects. this is lazily created with a collector
|
|
|
|
def objects
|
|
|
|
@objects ||= Collector.collect_space
|
|
|
|
end
|
|
|
|
|
2018-05-01 18:19:04 +02:00
|
|
|
# lazy init risc_init
|
|
|
|
def risc_init
|
|
|
|
@risc_init ||= Branch.new( "__initial_branch__" , Parfait.object_space.get_init.risc_instructions )
|
|
|
|
end
|
2018-03-31 12:25:59 +02:00
|
|
|
# add a constant (which get created during compilatio and need to be linked)
|
|
|
|
def add_constant(const)
|
2018-04-30 12:28:55 +02:00
|
|
|
raise "Must be Parfait #{const}" unless const.is_a?(Parfait::Object)
|
2018-03-31 12:25:59 +02:00
|
|
|
@constants << const
|
|
|
|
end
|
2018-05-16 20:00:14 +02:00
|
|
|
|
2018-03-29 17:03:21 +02:00
|
|
|
# To create binaries, objects (and labels) need to have a position
|
|
|
|
# (so objects can be loaded and branches know where to jump)
|
|
|
|
#
|
|
|
|
# Position in the order
|
|
|
|
# - initial jump
|
|
|
|
# - all object
|
|
|
|
# - all code
|
|
|
|
# As code length amy change during assembly, this way at least the objects stay
|
|
|
|
# in place and we don't have to deal with chaning loading code
|
2018-03-27 17:47:39 +02:00
|
|
|
def position_all
|
2018-05-16 20:00:14 +02:00
|
|
|
raise "Not translated " unless @translated
|
2018-03-27 17:47:39 +02:00
|
|
|
#need the initial jump at 0 and then functions
|
2018-05-12 17:36:59 +02:00
|
|
|
Position.set(cpu_init , 0 , cpu_init)
|
|
|
|
@code_start = position_objects( @platform.padding )
|
2018-03-27 17:47:39 +02:00
|
|
|
# and then everything code
|
2018-05-01 18:48:11 +02:00
|
|
|
position_code
|
2018-03-27 17:47:39 +02:00
|
|
|
end
|
|
|
|
|
2018-03-29 17:03:21 +02:00
|
|
|
# go through everything that is not code (BinaryCode) and set position
|
|
|
|
# padded_length is what determines an objects (byte) length
|
2018-05-01 18:48:11 +02:00
|
|
|
# return final position that is stored in code_start
|
|
|
|
def position_objects(at)
|
2018-03-27 17:47:39 +02:00
|
|
|
# want to have the objects first in the executable
|
|
|
|
objects.each do | id , objekt|
|
2018-03-29 17:03:21 +02:00
|
|
|
next if objekt.is_a?( Parfait::BinaryCode) or objekt.is_a?( Risc::Label )
|
2018-05-05 18:32:01 +02:00
|
|
|
before = at
|
2018-05-07 21:30:43 +02:00
|
|
|
Position.set(objekt,at)
|
2018-03-29 17:03:21 +02:00
|
|
|
at += objekt.padded_length
|
2018-05-20 14:52:13 +02:00
|
|
|
log.debug "PADDED #{objekt.padded_length}"
|
2018-05-05 18:32:01 +02:00
|
|
|
log.debug "Object #{objekt.class}:#{before.to_s(16)} len: #{(at - before).to_s(16)}"
|
2018-03-27 17:47:39 +02:00
|
|
|
end
|
|
|
|
at
|
|
|
|
end
|
|
|
|
|
2018-03-29 17:03:21 +02:00
|
|
|
# Position all BinaryCode.
|
|
|
|
#
|
2018-05-01 18:48:11 +02:00
|
|
|
# So that all code from one method is layed out linearly (for debugging)
|
2018-03-29 17:03:21 +02:00
|
|
|
# we go through methods, and then through all codes from the method
|
2018-05-01 18:48:11 +02:00
|
|
|
#
|
|
|
|
# start at @code_start. The method is called until
|
|
|
|
# assembly stops throwing errors
|
|
|
|
def position_code
|
|
|
|
at = @code_start
|
2018-05-13 14:28:10 +02:00
|
|
|
first_method = Parfait.object_space.types.values.first.methods
|
|
|
|
before = at
|
|
|
|
Position.set( first_method.binary , at , first_method)
|
|
|
|
Position.set( first_method.cpu_instructions, at + 12 , first_method.binary)
|
|
|
|
log.debug "Method #{first_method.name}:#{before.to_s(16)} len: #{(at - before).to_s(16)}"
|
|
|
|
log.debug "Instructions #{first_method.cpu_instructions.object_id.to_s(16)}:#{(before+12).to_s(16)}"
|
2018-03-27 17:47:39 +02:00
|
|
|
at
|
|
|
|
end
|
|
|
|
|
2018-03-29 17:03:21 +02:00
|
|
|
# Create Binary code for all methods and the initial jump
|
|
|
|
# BinaryWriter handles the writing from instructions into BinaryCode objects
|
2018-05-01 18:48:11 +02:00
|
|
|
#
|
|
|
|
# current (poor) design throws an exception when the assembly can't fit
|
|
|
|
# constant loads into one instruction.
|
|
|
|
#
|
2018-03-27 19:47:41 +02:00
|
|
|
def create_binary
|
|
|
|
objects.each do |id , method|
|
|
|
|
next unless method.is_a? Parfait::TypedMethod
|
|
|
|
writer = BinaryWriter.new(method.binary)
|
|
|
|
writer.assemble(method.cpu_instructions)
|
|
|
|
end
|
2018-05-17 08:31:36 +02:00
|
|
|
log.debug "BinaryInit #{cpu_init.object_id.to_s(16)}"
|
2018-03-27 19:47:41 +02:00
|
|
|
end
|
|
|
|
|
2015-06-12 17:52:06 +02:00
|
|
|
def boot
|
2015-11-09 09:04:37 +01:00
|
|
|
initialize
|
2018-05-05 19:25:10 +02:00
|
|
|
Position.positions.clear
|
2018-03-27 17:47:39 +02:00
|
|
|
@objects = nil
|
2018-03-27 18:06:16 +02:00
|
|
|
@translated = false
|
2015-06-12 17:52:06 +02:00
|
|
|
boot_parfait!
|
|
|
|
@booted = true
|
2015-07-18 10:53:04 +02:00
|
|
|
self
|
2015-06-12 17:52:06 +02:00
|
|
|
end
|
|
|
|
|
2014-06-25 01:33:44 +02:00
|
|
|
end
|
2015-06-01 07:40:17 +02:00
|
|
|
|
2015-06-12 17:52:06 +02:00
|
|
|
# Module function to retrieve singleton
|
2015-06-01 07:40:17 +02:00
|
|
|
def self.machine
|
|
|
|
unless defined?(@machine)
|
|
|
|
@machine = Machine.new
|
|
|
|
end
|
|
|
|
@machine
|
|
|
|
end
|
2015-06-12 17:52:06 +02:00
|
|
|
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
2015-05-19 19:29:33 +02:00
|
|
|
|
|
|
|
require_relative "boot"
|