aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2024-06-29add flag for using 64 bit values on 32 machinesKimplul
+ JIT backends needs to still trigger an assertion if we detect that the user lied
2024-06-29start adding testsKimplul
2024-06-28optimize interpreter a bitKimplul
+ Use a gpr/fpr/arg stack shared between different functions to minimize amount of memory allocations done at runtime while still allowing interleaving bytecode/machine code functions during call, just with a bit of extra setup in between
2024-06-28implement enough for fibonacciKimplul
2024-06-28some posthaste fixesKimplul
+ Interesting that the comparison thing only failed when compiled with RELEASE=1
2024-06-28implement more jit instructionsKimplul
2024-06-26allow toggling between jit and bytecodeKimplul
2024-06-26move labels out of the bytecodeKimplul
+ Speeds up interpreter a little bit since we don't have to execute what's effectively a no-op
2024-06-26enough functionality to implement posthasteKimplul
2024-06-25move branches to have the dest in r0Kimplul
2024-06-25example compiles under jitKimplul
2024-06-24add initial compiler frameworkKimplul
2024-06-23initial interpeter testingKimplul