rubydesign
db5a59f735
Unify instruction namings also dirs
...
Was getting confused myself, where it was instruction or instructions, when if the base class was inside or out of dir.
Now dirs are plural, and base class is inside.
2020-03-22 14:31:43 +02:00
rubydesign
f3d299208e
fix message_setup with new builder
2020-03-22 14:31:43 +02:00
rubydesign
d0036ed95b
better way to test object registers
...
also some cleaning, by using more helpers
2020-03-22 14:31:43 +02:00
rubydesign
ece1e8c87b
fix some more of builder
...
but still not all. removed some and fixed the register allocation in allocate_int
2020-03-22 14:31:43 +02:00
rubydesign
ff49ff50c0
Convert SimpleCall to new regs
...
Also fix bug in RegsiterValue/Slot with chain, where logic was dodgy and compiler not set
2020-03-22 14:31:43 +02:00
rubydesign
4b303977a7
Fix first Slot instruction that uses builder
...
now without method_missing and names
but still with instance_eval, hmm. Tried without, makes code much less readable
2020-03-22 14:31:43 +02:00
rubydesign
4888b3b6db
Starting to rework slot instructions that create risc
...
have to go through all and all macros and all thems tests. What did the wise man say: one step at a time
2020-03-22 14:31:43 +02:00
rubydesign
4643be0ae6
codong RegisterSlot with reg and slot
2020-03-22 14:31:43 +02:00
rubydesign
64d860b2bf
create a load on the compiler
...
thus removing the need for << with objects on RegisterValue
2020-03-22 14:31:43 +02:00
rubydesign
95f3eec043
repurpose RValue as RegisterSlot
...
with the idea of the better name came also the one about not needing the builder anymore
2020-03-22 14:31:43 +02:00
rubydesign
088017bc05
SA for Slotted derivations
...
Object and Constant similarity are coming more into focus. Will unite after the merge
2020-03-22 14:31:43 +02:00
rubydesign
d22da1ab97
SA for slot_to_reg
2020-03-22 14:31:43 +02:00
rubydesign
77003eed06
remove use_reg on compiler and SA for load
2020-03-22 14:31:43 +02:00
rubydesign
0ce14bdfd1
moving to SA register names (wip)
...
starting to implement register allocation by first creating SA
Single Assignment means a register is only every assigned a value once. Hence for any operation involving another register, a new register is created.
We do this with a naming scheme for the registers in dot notation (as it would be in c) which means 2 registers with the same name, should have the same contents. This does not apply to temporaries, but that is another day.
Starting WIP now, and will create many red commits before merging when green.
2020-03-22 14:31:43 +02:00
rubydesign
f2c853821c
First version of BeginnersGuide and other doc changes
2020-03-21 19:02:02 +02:00
rubydesign
a40d8f2e8c
update ffi for 2.7
2020-03-21 12:41:56 +02:00
rubydesign
887d7b9bbb
replace fake compiler with real
...
less room for error
2020-02-28 12:54:17 +02:00
rubydesign
393f0d9a60
fix argument transfer (to be logical)
2020-02-27 18:19:27 +02:00
rubydesign
685022a6e0
Externalise register allocation into own class
...
On the way to the register allocation
2020-02-27 11:57:18 +02:00
rubydesign
fa144784fa
cleaning
2020-02-26 19:31:41 +02:00
rubydesign
8832df3221
Add number of registers to platform
2020-02-26 19:01:01 +02:00
rubydesign
8df2e4bf08
SlotLanguage reborn in the Machine
...
Just added the compiler, that can parse Slot directly into SlotMachine code (no language layer in between)
Still unclear wheather the Maker is a thing, but since it was in the Language layer i did not remove it (yet)
Otherwise just the compiler and all the tests, moved from the slot_language.
2020-02-19 02:19:14 +07:00
rubydesign
d751c53d1d
Add a SameCheck and rename the label
...
SameCheck is very similar to NotSameCheck, but only used from the language
Label was named jump, fixed that
2020-02-19 02:16:44 +07:00
rubydesign
b88c5ff498
Removing the SlotLanguage
...
I turned out that that layer did not provide benefit. Data was being shuffled, without gain, so i moved the compiler to the SlotMachine
2020-02-19 02:14:34 +07:00
rubydesign
2d11078a37
Slotted constructor cleanup
2020-02-17 14:45:54 +07:00
rubydesign
c1679bd6ff
Makes slots linked list
...
slots used to ba an array of symbols
Now we have an object for each slot, that holds the name and the next_slot
relatively easy change, though quite broad
2020-02-17 14:29:45 +07:00
rubydesign
93103d551f
Fixes for all test of next commit
2020-02-17 14:27:42 +07:00
rubydesign
21817b182e
Start to make slots recursive
2020-02-17 14:26:50 +07:00
rubydesign
b7df6f66f9
rename the XX_slot classes to SlottedXX
...
move to slotted and slots (wip)
2020-02-15 21:05:04 +07:00
rubydesign
8b29326957
moving know_object out of the base class
...
object is only common to constant and object slots (which should be unified)
On the way to making the array recursive
2020-02-15 15:32:22 +07:00
rubydesign
6aa6b32c50
move slot out of instruction dir
...
since it is not an instruction, just a helper
also doing this before rewriting slot recursively
2020-02-15 14:52:44 +07:00
rubydesign
24ceb20281
cleaned up chained assignment and conditional
...
Making this almost usable
2020-02-13 19:45:47 +07:00
rubydesign
a153fde3f0
Fix variables to chain recursively
2020-02-13 19:09:00 +07:00
rubydesign
6194148fc5
Rename SlotMaker to Variable
...
Feels like now with better names, i can start to work.
2020-02-13 13:10:04 +07:00
rubydesign
c194d373fb
rename LoadMaker to Assignment
2020-02-13 13:02:23 +07:00
rubydesign
99d2868400
Rename check_maker to equal_goto
...
will have different classes for different checks, started that
2020-02-13 12:53:41 +07:00
rubydesign
0342df41c7
introduce goto instead of using machines jump
...
fix labels so compiler does not return duplicates
2020-02-13 11:59:00 +07:00
rubydesign
0e3a8bb859
cleaning, docs
2020-02-12 15:41:16 +07:00
rubydesign
3c762c4fe7
Rename SlotDefinition to Slot
...
And the derived XXDefinitions to XXSlot
Just to be more consistent
And possibly free the Definition for the Language side
2020-02-11 16:19:52 +07:00
rubydesign
ec8794191d
update parser
...
remove pesty warnings
2020-02-11 16:04:19 +07:00
rubydesign
31c8a0aac5
refactored the SlotLoad into SlotDefs
...
That sort of removes the last horrible code.
Surely can still be improved, but mostly oo now
2020-02-11 16:03:51 +07:00
rubydesign
8d02d82ff2
now object slot , almost done
2020-02-10 19:28:48 +07:00
rubydesign
1da5cd16c3
more splitting of slot code
...
now constants, still wip
2020-02-10 19:07:12 +07:00
rubydesign
24d7fe25da
first steps to defining specialised slot classes
...
getting rid of the mess in SlotDefinition (wip)
2020-02-10 18:36:21 +07:00
rubydesign
df4fd409c1
getting back into it
2020-02-09 21:33:34 +07:00
rubydesign
5b27ae7ddf
use env, not class var aas compilation switch
2020-02-08 17:44:35 +07:00
rubydesign
6d950086e7
improve texts
2020-02-07 16:14:20 +07:00
rubydesign
b7902e6953
remove checks
2019-12-07 11:50:25 +02:00
rubydesign
61b6496029
misc
2019-12-01 12:17:54 +02:00
rubydesign
308670b90c
Start to transform SL into SM
2019-10-07 20:14:40 +03:00