Add task for running tests that runs both clutter levels accordingly.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2015 / 03 / 15.mkd
blobe651dec5846416d80dc8060b470a5849a113de17
1 # 2015/03/15
3 ***DISCLAIMER***: _These notes are from the defunct k8 project which_
4 _precedes SquirrelJME. The notes for SquirrelJME start on 2016/02/26!_
5 _The k8 project was effectively a Java SE 8 operating system and as such_
6 _all of the notes are in the context of that scope. That project is no_
7 _longer my goal as SquirrelJME is the spiritual successor to it._
9 ## 09:58
11 I believe the initialization with the method is finished. I allocate the
12 exception register and all of the input arguments, I do not believe there is
13 anything else to do.
15 ## 10:20
17 Register entries need to be locked, because they could be allocated and then
18 dumped onto the stack screwing with the order of everything. Also before a
19 method call, a bunch of registers will need to be saved onto the stack so that
20 the correct register and stack state is used when the method is called.
21 Although that is optional. It would probably be best to do that in the native
22 handler as it could save and restore register states as needed since it could
23 vary on each call.
25 ## 11:14
27 I should research how some other operating systems perform system calls.
29 ## 11:21
31 Well it might not matter much.