rubyx/lib/risc
Torsten Ruger d396da16e3 start with #14 by implementing factory
page was maybe a too low level name
pages may be the unit of the syscall, but after that objects desolve (maybe later to be added on from different pages)
Factory has the job of handing out a new instance of a type
it keeps a freelist for that and a reserve
2018-08-23 19:55:06 +03:00
..
builtin remove the code_builder 2018-08-19 13:16:07 +03:00
instructions fix bug in slot_load and definition 2018-08-19 15:36:51 +03:00
position fix more of the changed names 2018-08-12 13:10:44 +03:00
assembler.rb generalize assemblers to use callables 2018-07-30 10:23:42 +03:00
binary_writer.rb jump was written off the end of binary code, fixed 2018-05-28 11:45:04 +03:00
block_compiler.rb move dynamic_call to builder 2018-08-16 10:43:41 +03:00
builder.rb remove the code_builder 2018-08-19 13:16:07 +03:00
builtin.rb new get_type_by_class_name helper for space 2018-07-13 21:50:40 +03:00
callable_compiler.rb avoid adding risc instructions twice 2018-08-19 17:29:04 +03:00
collector.rb rename typed_method to callable_method 2018-07-07 09:11:09 +03:00
fake_memory.rb cache index resolution 2018-08-12 13:09:34 +03:00
instruction.rb block test 2018-07-30 14:10:24 +03:00
interpreter_platform.rb fix platform derivation and some tests 2018-07-01 21:27:27 +03:00
interpreter.rb misc 2018-07-30 10:26:47 +03:00
linker.rb generalize assemblers to use callables 2018-07-30 10:23:42 +03:00
method_compiler.rb move dynamic_call to builder 2018-08-16 10:43:41 +03:00
padding.rb fix opal error 2018-05-20 15:51:36 +03:00
parfait_adapter.rb cache index resolution 2018-08-12 13:09:34 +03:00
parfait_boot.rb start with #14 by implementing factory 2018-08-23 19:55:06 +03:00
platform.rb platform helper 2018-07-02 09:36:29 +03:00
README.md polish docs 2018-03-11 16:11:15 +05:30
register_value.rb remove the code_builder 2018-08-19 13:16:07 +03:00
text_writer.rb still some names that needed changing 2018-08-12 14:48:20 +03:00

Risc Machine

The RiscMachine, is an abstract machine with registers. Think of it as an arm machine with normal instruction names. It is not however an abstraction of existing hardware, but only of that subset that we need.

Our primary objective is to compile typed code to this level, so the register machine has:

  • object access instructions
  • object load
  • object oriented call semantics
  • extended (and extensible) branching
  • normal integer operators (but no sub word instructions)

All data is in objects.

The register machine is aware of Parfait objects, and specifically uses Message and Frame to express call semantics.

Calls and syscalls

The RiscMachine only uses 1 fixed register, the currently worked on Message. (and assumes a program counter and flags, neither of which are directly manipulated)

There is no stack, rather messages form a linked list, and preparing to call, the data is pre-filled into the next message. Calling then means moving the new message to the current one and jumping to the address of the method. Returning is the somewhat reverse process.

Syscalls are implemented by one Syscall instruction. The Risc machine does not specify/limit the meaning or number of syscalls. This is implemented by the level below, eg the arm/interpreter.

Interpreter

There is an interpreter that can interpret compiled register machine programs. This is very handy for debugging (and nothing else).

Even more handy is the graphical interface for the interpreter, which is in it's own repository: rubyx-debugger.

Arm / Elf

There is also a (very straightforward) transformation to arm instructions. Together with the also quite minimal elf module, arm binaries can be produced.

These binaries have no external dependencies and in fact can not even call c at the moment (only syscalls :-)).