mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
doc
This commit is contained in:
parent
05c73fa8bc
commit
267adb4612
@ -1 +1 @@
|
||||
1.90
|
||||
1.91-SNAPSHOT
|
||||
|
@ -6,7 +6,7 @@ TODO
|
||||
- aliases for imported symbols for example perhaps '%alias print = c64scr.print'
|
||||
- option to load library files from a directory instead of the embedded ones (easier library development/debugging)
|
||||
|
||||
|
||||
- investigate support for 8bitguy's Commander X16 platform https://murray2.com/forums/commander-x16.9/
|
||||
|
||||
|
||||
Memory Block Operations integrated in language?
|
||||
@ -36,6 +36,7 @@ Add more compiler optimizations to the existing ones.
|
||||
the program will then rely solely on the values as they are in memory at the time of program startup.
|
||||
- Also some library routines and code patterns could perhaps be optimized further
|
||||
- can the parameter passing to subroutines be optimized to avoid copying?
|
||||
- subroutine calling convention? like: 1 byte arg -> pass in A, 2 bytes -> pass in A+Y, return value likewise.
|
||||
- more optimizations on the language AST level
|
||||
- more optimizations on the final assembly source level
|
||||
|
||||
|
@ -5,6 +5,30 @@
|
||||
|
||||
main {
|
||||
sub start() {
|
||||
ubyte ub
|
||||
byte bb
|
||||
word ww
|
||||
uword uw
|
||||
uword auw
|
||||
word aww
|
||||
byte ab
|
||||
ubyte aub
|
||||
|
||||
; TODO optimize all of these:
|
||||
ab = bb+bb ; TODO bb * 2? (bb<<1)
|
||||
ab = bb+bb+bb
|
||||
aww = ww+ww
|
||||
aww = ww+ww+ww
|
||||
|
||||
aub = ub+ub
|
||||
aub = ub+ub+ub
|
||||
auw = uw+uw
|
||||
auw = uw+uw+uw
|
||||
|
||||
|
||||
A = A+A
|
||||
Y=Y+Y+Y
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user