docs update

This commit is contained in:
2026-02-09 00:10:49 +00:00
parent 22241a5633
commit 509b3465f1
2 changed files with 14 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
- we definitely need to be able to use registers for shift operations.
- we need logical boolean operations in addition to the bitwise ones.
- better conditionals.
+10
View File
@@ -0,0 +1,10 @@
# Compiler optimisations!
- [ ] [HARD] Immediate operations for values that support it (up to +/- u16::max for addi and subi respectively)
- this requires significant complexity in code generation as we need to traverse down the tree when we come across these operations to prevent additional register allocations.
- [ ] [EASY] Add multiply and divide operations to code generation
- [ ] [MEDIUM] proper prefix/postfix inc/dec implementation. slightly more complex as we need to check for a variable and modify it in place
- [ ] [EASY] Investigate logical and operator not compiling - either a lexer or parser issue.
- [x] [MEDIUM] Get shift operations working correctly.