2018-08-06 03:35:43 +02:00
TODO
====
2021-04-12 03:34:58 +02:00
2021-11-16 22:34:38 +01:00
For next compiler release (7.4)
2021-10-19 23:38:07 +02:00
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-11-29 01:25:21 +01:00
2021-11-24 01:41:04 +01:00
Use GoSub to call subroutines (statements):
2021-11-21 23:21:39 +01:00
- [DONE] allow separate assigns to subroutine's parameter variables / registers
2021-11-26 20:32:12 +01:00
- [DONE] turn a regular subroutine call into assignments to the parameters + GoSub (take code from gosub branch)
2021-11-28 01:36:44 +01:00
- [DONE] also do this for asmsubs taking >0 parameters
2021-11-28 12:09:13 +01:00
2021-11-27 14:08:34 +01:00
Optimize Function calls in expressions:
2021-11-24 01:41:04 +01:00
- move args to assignments to params
- add tempvar immediately in front of expression with the fuction call
- replace the function call in the expression with the tempvar
2021-11-21 03:24:03 +01:00
...
2021-07-04 15:14:39 +02:00
2021-11-20 01:21:33 +01:00
2021-11-13 12:56:59 +01:00
Blocked by an official Commander-x16 v39 release
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-04-27 23:13:46 +02:00
- simplify cx16.joystick_get2() once this cx16 rom issue is resolved: https://github.com/commanderx16/x16-rom/issues/203
2021-07-02 21:47:27 +02:00
(I hope this will still be included into the final v39 roms release for the cx16)
2021-04-12 23:02:32 +02:00
2021-07-02 21:47:27 +02:00
Future
^^^^^^
2021-11-20 01:21:33 +01:00
- rethink the whole "isAugmentable" business. Because the way this is determined, should always also be exactly mirrorred in the AugmentableAssignmentAsmGen or you'll get a crash at code gen time.
2021-11-14 22:51:02 +01:00
- simplifyConditionalExpression() should not split expression if it still results in stack-based evaluation
2021-11-06 19:09:33 +01:00
- fix the asm-labels problem (github issue #62)
2021-10-19 01:12:28 +02:00
- get rid of all TODO's in the code
2021-10-29 17:34:42 +02:00
- improve testability further, add more tests
2021-10-15 01:02:32 +02:00
- replace certain uses of inferredType.getOr(DataType.UNDEFINED) by i.getOrElse({ errorhandler })
2021-10-13 01:33:29 +02:00
- see if we can remove more "[InferredType].getOr(DataType.UNDEFINED)"
- use more of Result<> and Either<> to handle errors/ nulls better
2021-10-15 01:02:32 +02:00
- can we get rid of pieces of asmgen.AssignmentAsmGen by just reusing the AugmentableAssignment ? generated code should not suffer
2021-07-02 21:47:27 +02:00
- c64: make the graphics.BITMAP_ADDRESS configurable (VIC banking)
2021-04-12 23:02:32 +02: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 19:08:47 +01:00
- add a flood fill routine to gfx2?
2021-07-02 21:47:27 +02: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)?
2021-02-21 01:24:44 +01: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 21:47:27 +02: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 22:47:51 +02: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)
2020-03-22 00:43:46 +01:00
2019-01-27 19:14:58 +01:00
2021-10-13 01:33:29 +02:00
More code optimization ideas
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-11-21 14:00:19 +01:00
- find a way to optimize asm-subroutine param passing where it now sometimes uses the evalstack?
- find a way to let registerArgsViaStackEvaluation not use the stack anymore
- remove special code generation for while and util expression
by rewriting while and until expressions into if+jump (just consider them syntactic sugar)
but the result should not produce larger code ofcourse!
- while-expression should now also get the simplifyConditionalExpression() treatment
2021-07-02 21:47:27 +02: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)
2021-11-21 14:00:19 +01:00
- introduce byte-index operator to avoid index multiplications in loops over arrays? see github issue #4