--- layout: salama title: Salama architectural layers ---

Main Layers

To implement an object system to execute object oriented languages takes a large system. The parts or abstraction layers are detailed below.
It is important to undrstand the approach first though, as it differs from the normal interpretation. The idea is to compile (eg) ruby. It may be easiest to compare to a static object oriented language like c++. When c++ was created c++ code was translated into c, which then gets translated into assembler, which gets translated to binary code, which is linked and executed. Compiling to binaries is what gives these languages speed, and is one reason to compile ruby.
In a similar way to the c++ example, we need language between ruby and assembler, as it is too big a mental step from ruby to assembler. Off course course one could try to compile to c, but since c is not object oriented that would mean dealing with all off c's non oo heritance, like linking model, memory model, calling convention etc. (more on this in the book)
The layers are:

Binary , Arm and Elf

A physical machine will run binaries containing intructions that the cpu understands. With arm being our main target, this means we need code to produce binary, which is contained in a seperate module salama-arm .
To be able to run code on a unix based operating system, binaries need to be packaged in a way that the os understands, so minimal elf support is included in the package.
Arm is a risc architecture, but anyone who knows it will attest, with it's own quirks. For example any instruction may be executed conditionally in arm. Or there is no 32bit register load instruction. It is possible to create very dense code using all the arm special features, but this is not implemented yet.

Register Machine

The Register machine layer is a relatively close abstraction of risc hardware, but without the quirks.
The register machine has registers, indexed addressing, operators, branches and everything needed for the next layer. It doesn not try to abstract every possible machine leature (like llvm), but rather "objectifies" the risc view to provide what is needed for soml, the next layer up.
The machine has it's own (abstract) instruction set, and the mapping to arm is quite straightforward. Since the instruction set is implemented as derived classes, additional instructions may be defined and used later, as long as translation is provided for them too. In other words the instruction set is extensible (unlike cpu instruction sets).

Basic object oriented concepts are needed already at this level, to be able to generate a whole self contained system. Ie what an object is, a class, a method etc. This minimal runtime is called parfait and will be coded in soml eventually. But since it is the same objects at runtime and compile time, it will then be translated back to ruby for use at compile time. Currenty there are two versions of the code, in ruby and soml, being hand synchronized. More about parfait below.

Since working with at this low machine level (essentially assembler) is not easy to follow for everyone, an interpreter was created. Later a graphical interface, a kind of visual debugger was added. Visualizing the control flow and being able to see values updated immediately helped tremendously in creating this layer. And the interpreter helps in testing, ie keeping it working in the face of developer change.

Soml, Salama object machine language

Soml is probably the larest single part of the system and much more information can be found here .
Before soml, a more traditional virtual machine approach was taken and abandoned. The language is easy to understand and provides a good abstraction, both in terms of object orienteation, and in terms of how this is expressed in the register model.
It is like ruby with out the dynamic aspects, but typed.
In broad strokes it consists off:

Salama

Parfait

Ruby is very dynamic, and so it has a relatively large run-time. Parfait is that Run-time.
Parfait includes all the functionality a ruby program could not do without, Array, Hash, Object, Class, etc.
Parfait does not include any stdlib or indeed core functionality if it doesn't have too.
Parfait is coded in ruby, but not all functionality can be coded in ruby, so there is Builtin

Builtin

Builtin is the part of the vm that can not be coded in ruby. It is not, as may be imagined, a set of instructions, but rather a set of modules.
Modules of Builtin have functions that implement functionality that can not be coded in ruby. Ie array access. The functions take a VM::Method and provide the code as a set of instructions. This may be seen as the assembler layer if the vm.