2018-08-06 01:35:43 +00:00
TODO
====
2021-04-12 01:34:58 +00:00
2021-10-12 23:33:29 +00:00
For next compiler release
^^^^^^^^^^^^^^^^^^^^^^^^^
2021-10-14 23:02:32 +00:00
fix github issue #64 about inconsistent absolute path usage
2021-07-04 13:14:39 +00:00
2021-10-12 23:33:29 +00:00
Blocked by Commander-x16 v39 release
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-04-27 21:13:46 +00:00
- simplify cx16.joystick_get2() once this cx16 rom issue is resolved: https://github.com/commanderx16/x16-rom/issues/203
2021-07-02 19:47:27 +00:00
(I hope this will still be included into the final v39 roms release for the cx16)
2021-04-12 21:02:32 +00:00
2021-07-02 19:47:27 +00:00
Future
^^^^^^
2021-10-12 23:33:29 +00:00
- get rid of all TODO's and FIXME's in the code
2021-10-13 16:21:48 +00:00
- improve testability further, add more tests, address more questions/issues from the testability discussions.
2021-10-14 23:02:32 +00:00
- replace certain uses of inferredType.getOr(DataType.UNDEFINED) by i.getOrElse({ errorhandler })
2021-10-12 23:33:29 +00:00
- see if we can remove more "[InferredType].getOr(DataType.UNDEFINED)"
- use more of Result<> and Either<> to handle errors/ nulls better
- fix the asm-labels problem (github issue #62)
2021-10-14 23:02:32 +00:00
- can we get rid of pieces of asmgen.AssignmentAsmGen by just reusing the AugmentableAssignment ? generated code should not suffer
2021-07-02 19:47:27 +00:00
- c64: make the graphics.BITMAP_ADDRESS configurable (VIC banking)
2021-04-12 21:02:32 +00:00
- optimize several inner loops in gfx2 even further?
- add modes 2 and 3 to gfx2 (lowres 4 color and 16 color)?
2021-02-07 18:08:47 +00:00
- add a flood fill routine to gfx2?
2021-07-02 19:47:27 +00:00
- add a diskio.f_seek() routine for the Cx16 that uses its seek dos api?
- make it possible for diskio to read and write from more than one file at the same time (= use multiple io channels)?
- refactor the asmgen into own project submodule
- refactor the compiler optimizers into own project submodule
2021-02-21 00:24:44 +00:00
- make it possible to use cpu opcodes such as 'nop' as variable names by prefixing all asm vars with something such as `` v_ ``
2021-07-02 19:47:27 +00:00
- [problematic due to 64tass:] add a compiler option to not remove unused subroutines. this allows for building library programs. But this won't work with 64tass's .proc ...
2021-07-05 20:47:51 +00:00
Perhaps replace all uses of .proc/.pend by .block/.bend will fix that?
(but we lose the optimizing aspect of the assembler where it strips out unused code.
There's not really a dynamic switch possible as all assembly lib code is static and uses one or the other)
2021-07-02 19:47:27 +00:00
- introduce byte-index operator to avoid index multiplications in loops over arrays?
see https://www.reddit.com/r/programming/comments/alhj59/creating_a_programming_language_and_cross/eg898b9?utm_source=share&utm_medium=web2x&context=3
2020-03-21 23:43:46 +00:00
2019-01-27 18:14:58 +00:00
2021-10-12 23:33:29 +00:00
More code optimization ideas
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-07-02 19:47:27 +00:00
- a way to optimize if-statement codegen so that "if var & %10000" doesn't use stack & subroutine call, but also that the simple case "if X {...}" remains fast
2021-10-12 23:33:29 +00:00
- detect variables that are written but never read - mark those as unused too and remove them, such as `` uword unused = memory("unused222", 20) `` - also remove this memory slab allocation
2021-07-02 19:47:27 +00:00
- rewrite expression tree evaluation such that it doesn't use an eval stack but flatten the tree into linear code that uses a fixed number of predetermined value 'variables'
- this removes the need for the BinExprSplitter (which is problematic now)