aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2 daysfix some warnings with clangKimplul
2 daysfix big endian compilationKimplul
+ Code used some assumptions about type aliasing that might not hold for all systems
3 daysexpose sqrtKimplul
+ Requires linking with libm in some cases, which is fine I suppose, but kind of annoying
10 dayshandle immediates a bit betterKimplul
+ Passing floats as immediate values is not supported in lightening, but I might have a go at adding it since it seems like a useful feature at some point
2025-03-15experiment with allocating regs on stack in interpKimplul
+ Avoids having to lug around an execution context, arguably simplified things but now there's no real way to detect when we run out memory for regs.
2025-03-14protect jit pagesKimplul
2025-03-14start supporting 32bit archesKimplul
2025-03-13improve register allocationKimplul
+ Still linear, but orders regs by some kind of priority + Use all registers available, not just callee-save
2025-03-07make code a bit more robustKimplul
+ Should be more difficult to make mistakes in the future, ejit can now automatically keep track of how many register slots are used and if 64 bit mode is required. Slight runtime overhead, but not too bad.
2024-07-14add relative argsKimplul
2024-07-14jit tests pass (kind of) on x86_64Kimplul
2024-07-14add float + double instead of just doubleKimplul
2024-07-13implement some more jit instructionsKimplul
2024-07-13bytecode tests passKimplul
2024-06-30work through loads and storesKimplul
2024-06-30continue working through test casesKimplul
+ Remove overflow and more complicated floating point tests for now
2024-06-29work through branching instructionsKimplul
2024-06-29continue working through bytecode opsKimplul
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-29clear up some semanticsKimplul
2024-06-29start adding testsKimplul
2024-06-28implement enough for fibonacciKimplul
2024-06-26allow toggling between jit and bytecodeKimplul
2024-06-26enough functionality to implement posthasteKimplul
2024-06-25fix some namesKimplul
+ Will have to actually implement them at some point as well
2024-06-25move branches to have the dest in r0Kimplul
2024-06-23initial interpeter testingKimplul