rubyx/lib/virtual
2015-06-12 18:52:06 +03:00
..
compiler rename Mystery 2015-06-11 07:04:14 +02:00
instructions revert to symbols 2015-05-31 18:34:18 +03:00
passes move machine to module level 2015-06-01 08:40:17 +03:00
slots rename Mystery 2015-06-11 07:04:14 +02:00
block.rb fix debug 2015-06-09 11:38:03 +02:00
boot.rb fix the initial jump 2015-06-10 10:43:50 +02:00
compiled_method_info.rb rename Mystery 2015-06-11 07:04:14 +02:00
compiler.rb rename Mystery 2015-06-11 07:04:14 +02:00
constants.rb moving string to parfait 2015-05-13 16:17:10 +03:00
instruction.rb revert to symbols 2015-05-31 18:34:18 +03:00
machine.rb split the pass runs to debug 2015-06-12 18:52:06 +03:00
message.rb homing in on line length 100 2015-05-30 12:20:39 +03:00
padding.rb word length fixes 2015-06-06 18:46:53 +02:00
parfait_adapter.rb it actually assembles again 2015-06-08 12:19:53 +02:00
plock.rb mem_length to word/byte length 2015-06-05 09:20:43 +03:00
positioned.rb fixed, nay, hacked list problem 2015-06-08 11:52:56 +02:00
README.md some link for readmes 2015-05-24 13:42:29 +03:00
type.rb rename Mystery 2015-06-11 07:04:14 +02:00

Virtual OO Machine

This is really an OV (object value) not object oriented machine.

Integers and References are Values. We make them look like objects, sure, but they are not. Symbols have similar properties and those are:

  • equality means identity
  • no change over lifetime

It's like with Atoms: they used to be the smallest possible physical unit. Now we have electrons, proton and neutrons. And so objects are made up of Values (not objects), integers, floats , references and possibly more.

Values have type in the same way objects have a class. We keep track of the type of a value at runtime, also in an similar way that objects have their classes at runtime.

Layers

Ast instances get created by the salama-reader gem from source. Here we add compile functions to ast classes and compile the AST layer into Virtual::Objects and Parfait::Values

The main objects are Space (lots of objects), BootClass (represents a class), CompiledMethod (with Blocks and Instruction).

Virtual Instructions get further transformed into register instructions. This is done by an abstractly defined Register Machine with basic Intructions. A concrete implementation (like Arm) derives and creates derived Instructions.

The transformation is implemented as passes to make it easier to understand what is going on. Also this makes it easier to add functionality and optimisations from external (to the gem) sources.

The final transformation assigns Positions to all boot objects (Linker) and assembles them into a binary representation. The data- part is then a representation of classes in the parfait runtime. And the instrucions make up the funtions.

Accessible Objects

Object oriented systems have data hiding. So we have access to the inner state of only four objects:

  • Self
  • Message (arguments, method name, self)
  • Frame (local and tmp variables)
  • NewMessage ( to build the next message sent)

A single instructions (Set) allows movement of data between these. There are compare, branch and call intructions too.

Micro

The micro-kernel idea is well stated by: If you can leave it out, do.

As such we are aiming for integer and reference (type) support, and a minimal class system (object/class/aray/hash/string). It is possible to add types to the system in a similar way as we add classes, and also implement very machine dependent functionality which nevertheless is fully wrapped as OO.

Parfait is that part of the runtime that can be coded in ruby. It is parsed, like any other code and always included in the resulting binary. Builtin is the part of the runtime that can not be coded in ruby (but is still needed). This is coded by construction CompiledMethods in code and neccesarily machine dependant.