rubyx/lib/risc
Torsten 64d860b2bf create a load on the compiler
thus removing the need for << with objects on RegisterValue
2020-03-22 14:31:43 +02:00
..
instructions SA for slot_to_reg 2020-03-22 14:31:43 +02:00
position Fixed almost all but Interpreter 2019-08-13 00:13:29 +03:00
allocator.rb Externalise register allocation into own class 2020-02-27 11:57:18 +02: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 Add number of registers to platform 2020-02-26 19:01:01 +02:00
builder.rb repurpose RValue as RegisterSlot 2020-03-22 14:31:43 +02:00
callable_compiler.rb create a load on the compiler 2020-03-22 14:31:43 +02:00
collector.rb Introduce singleton types 2019-10-01 19:42:16 +03:00
fake_memory.rb cache index resolution 2018-08-12 13:09:34 +03:00
instruction.rb Change Mom to SlotMachine 2019-10-03 20:55:41 +03:00
interpreter_platform.rb Add number of registers to platform 2020-02-26 19:01:01 +02:00
interpreter.rb Add number of registers to platform 2020-02-26 19:01:01 +02:00
linker.rb add a statistics command to compiler 2019-09-05 13:25:40 +03:00
method_compiler.rb More rename cleanp 2019-10-03 21:07:55 +03:00
parfait_adapter.rb Fix meta_class, sis class instance variables and class methods 2019-09-24 12:59:22 +03:00
parfait_boot.rb Rename Vool to Sol 2019-10-04 00:38:47 +03:00
platform.rb Add number of registers to platform 2020-02-26 19:01:01 +02:00
README.md litte bit of docs 2018-08-24 18:49:44 +03:00
register_slot.rb create a load on the compiler 2020-03-22 14:31:43 +02:00
register_value.rb create a load on the compiler 2020-03-22 14:31:43 +02:00
risc_collection.rb refactor risc_collection 2019-09-28 15:37:02 +03:00
text_writer.rb add a statistics command to compiler 2019-09-05 13:25:40 +03:00

Risc Machine

The Risc Machine, 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

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 Risc Machine 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 programs compiled to the risc instruction set. 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 :-)).