mirror of
https://github.com/irmen/prog8.git
synced 2025-02-18 05:30:34 +00:00
todo
This commit is contained in:
parent
18d820da94
commit
57a9fed42b
@ -3,10 +3,6 @@ TODO
|
|||||||
|
|
||||||
For next compiler release (7.2)
|
For next compiler release (7.2)
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
- find a way to optimize asm-subroutine param passing where it now sometimes uses the evalstack?
|
|
||||||
- [complicated?] find a way to optimize if-statement codegen so that "if var & %10000" doesn't use evalstack & subroutine call, but also that the simple case "if X {...}" remains fast
|
|
||||||
- fix the asm-labels problem (github issue #62)
|
|
||||||
- start migrating to KoTest library (github issue #70)
|
|
||||||
- optimize "if not x" / "while not x" to not actually calculate the whole "not x" value first --> transform in to "x==0" in these conditional statements?
|
- optimize "if not x" / "while not x" to not actually calculate the whole "not x" value first --> transform in to "x==0" in these conditional statements?
|
||||||
|
|
||||||
|
|
||||||
@ -18,6 +14,10 @@ Blocked by Commander-x16 v39 release
|
|||||||
|
|
||||||
Future
|
Future
|
||||||
^^^^^^
|
^^^^^^
|
||||||
|
- fix the asm-labels problem (github issue #62)
|
||||||
|
- start migrating to KoTest library (github issue #70)
|
||||||
|
- find a way to optimize asm-subroutine param passing where it now sometimes uses the evalstack?
|
||||||
|
- [complicated?] find a way to optimize if-statement codegen so that "if var & %10000" doesn't use evalstack & subroutine call, but also that the simple case "if X {...}" remains fast
|
||||||
- document the various compiler command line options in more detail. See "Compiling program code" in the docs
|
- document the various compiler command line options in more detail. See "Compiling program code" in the docs
|
||||||
- get rid of all TODO's in the code
|
- get rid of all TODO's in the code
|
||||||
- improve testability further, add more tests
|
- improve testability further, add more tests
|
||||||
|
@ -9,6 +9,10 @@ main {
|
|||||||
ubyte zz=9
|
ubyte zz=9
|
||||||
sys.memset(xx+200, yy*2, ~yy)
|
sys.memset(xx+200, yy*2, ~yy)
|
||||||
|
|
||||||
|
if yy & %10000 {
|
||||||
|
yy++
|
||||||
|
}
|
||||||
|
|
||||||
@($c030) = 10
|
@($c030) = 10
|
||||||
@(~xx) *= 2
|
@(~xx) *= 2
|
||||||
txt.print_ub(@($c030))
|
txt.print_ub(@($c030))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user