2018-08-06 01:35:43 +00:00
TODO
====
2023-09-03 17:06:47 +00:00
2024-07-02 21:16:57 +00:00
Improve register load order in subroutine call args assignments:
in certain situations, the "wrong" order of evaluation of function call arguments is done which results
in overwriting registers that already got their value, which requires a lot of stack juggling (especially on plain 6502 cpu!)
Maybe this routine can be made more intelligent. See usesOtherRegistersWhileEvaluating() and argumentsViaRegisters().
2022-01-03 22:38:41 +00:00
Future Things and Ideas
^^^^^^^^^^^^^^^^^^^^^^^
2022-02-10 23:16:39 +00:00
Compiler:
2023-07-31 20:17:43 +00:00
2024-09-06 18:47:49 +00:00
- Some facility to use add-with-carry and sub-with-carry (so we can chain additions/subtractions without clc/sec inserted every time)
2024-09-17 19:01:01 +00:00
Note: +/- 0 can't be optimized away anymore in this case!
Note2: may need to preserve carry flag during evaluation of the operands!
Note3: only available for bytes? (or does it work on words automatically?), and perhaps restrict operand to a simple expression?
2024-05-31 19:48:29 +00:00
- Can we support signed % (remainder) somehow?
2024-09-02 20:24:44 +00:00
- Don't add "random" rts to %asm blocks but instead give a warning about it? (but this breaks existing behavior that others already depend on... command line switch?)
2024-03-13 20:16:49 +00:00
- IR: implement missing operators in AssignmentGen (array shifts etc)
2024-09-12 20:04:20 +00:00
- IR: CMPI+BSTEQ --> new BEQ reg,value,label instruction (like BGT etc)
2024-01-11 23:27:39 +00:00
- instead of copy-pasting inline asmsubs, make them into a 64tass macro and use that instead.
that will allow them to be reused from custom user written assembly code as well.
2023-11-20 22:19:08 +00:00
- Multidimensional arrays and chained indexing, purely as syntactic sugar over regular arrays.
2023-11-22 00:42:41 +00:00
- make a form of "manual generics" possible like: varsub routine(T arg)->T where T is expanded to a specific type
(this is already done hardcoded for several of the builtin functions)
2023-09-03 17:06:47 +00:00
2023-05-31 19:50:41 +00:00
- [much work:] more support for (64tass) SEGMENTS ?
- (What, how, isn't current BSS support enough?)
- Add a mechanism to allocate variables into golden ram (or segments really) (see GoldenRam class)
- maybe treat block "golden" in a special way: can only contain vars, every var will be allocated in the Golden ram area?
- maybe or may not needed: the variables can NOT have initialization values, they will all be set to zero on startup (simple memset)
just initialize them yourself in start() if you need a non-zero value .
- OR.... do all this automatically if 'golden' is enabled as a compiler option? So compiler allocates in ZP first, then Golden Ram, then regular ram
- OR.... make all this more generic and use some %segment option to create real segments for 64tass?
- (need separate step in codegen and IR to write the "golden" variables)
2023-07-31 20:17:43 +00:00
2023-10-03 23:10:36 +00:00
- do we need (array)variable alignment tag instead of block alignment tag? You want to align the data, not the code in the block?
2023-11-27 00:09:42 +00:00
- ir: related to the one above: block alignment doesn't translate well to variables in the block (the actual stuff that needs to be aligned in memory) but: need variable alignment tag instead of block alignment tag, really
2024-03-08 00:56:35 +00:00
- ir: fix call() return value handling
2024-01-03 14:06:27 +00:00
- ir: proper code gen for the CALLI instruction and that it (optionally) returns a word value that needs to be assigned to a reg
2023-04-26 23:26:25 +00:00
- ir: idea: (but LLVM IR simply keeps the variables, so not a good idea then?...): replace all scalar variables by an allocated register. Keep a table of the variable to register mapping (including the datatype)
2023-04-11 20:28:19 +00:00
global initialization values are simply a list of LOAD instructions.
Variables replaced include all subroutine parameters! So the only variables that remain as variables are arrays and strings.
2022-09-30 00:47:33 +00:00
- ir: add more optimizations in IRPeepholeOptimizer
2023-09-17 16:30:57 +00:00
- ir: the @split arrays are currently also split in _lsb/_msb arrays in the IR, and operations take multiple (byte) instructions that may lead to verbose and slow operation and machine code generation down the line.
maybe another representation is needed once actual codegeneration is done from the IR...?
2024-01-03 14:06:27 +00:00
- ir: getting it in shape for code generation...
2024-07-24 17:50:30 +00:00
- ir: make sure that a 6502 codegen based off the IR, still generates BIT instructions when testing bit 7 or 6 of a byte var.
2024-01-03 14:06:27 +00:00
- [problematic due to using 64tass:] better support for building library programs, where unused .proc are NOT deleted from the assembly.
2023-03-14 23:52:37 +00:00
Perhaps replace all uses of .proc/.pend/.endproc by .block/.bend will fix that with a compiler flag?
But all library code written in asm uses .proc already..... (textual search/replace when writing the actual asm?)
Once new codegen is written that is based on the IR, this point is mostly moot anyway as that will have its own dead code removal on the IR level.
- Zig-like try-based error handling where the V flag could indicate error condition? and/or BRK to jump into monitor on failure? (has to set BRK vector for that) But the V flag is also set on certain normal instructions
2024-07-16 19:28:49 +00:00
- Zig-like defer to execute a statement/anonymousscope when subroutine exits? (problem is, we have jump instructions and inline asm , where we lose track of when exactly the subroutine exits...)
2024-01-03 14:06:27 +00:00
- generate WASM to eventually run prog8 on a browser canvas? Use binaryen toolkit and/or my binaryen kotlin library?
2024-01-15 22:51:19 +00:00
2020-03-21 23:43:46 +00:00
2022-02-10 23:16:39 +00:00
Libraries:
2019-01-27 18:14:58 +00:00
2024-03-04 19:45:59 +00:00
- gfx2: add EOR mode support like in monogfx and see PAINT for inspiration. Self modifying code to keep it optimized?
2022-02-21 22:38:53 +00:00
- fix the problems in atari target, and flesh out its libraries.
2023-04-28 18:43:26 +00:00
- c128 target: make syslib more complete (missing kernal routines)?
2023-08-12 21:24:41 +00:00
- pet32 target: make syslib more complete (missing kernal routines)?
2024-03-09 16:36:39 +00:00
- VM: implement more diskio support
2022-05-30 21:37:41 +00:00
2022-02-10 23:16:39 +00:00
Optimizations:
2022-08-08 18:34:08 +00:00
- VariableAllocator: can we think of a smarter strategy for allocating variables into zeropage, rather than first-come-first-served?
2023-04-30 12:04:54 +00:00
for instance, vars used inside loops first, then loopvars, then uwords used as pointers, then the rest
2023-02-16 22:06:09 +00:00
- various optimizers skip stuff if compTarget.name==VMTarget.NAME. Once 6502-codegen is done from IR code,
those checks should probably be removed, or be made permanent
2022-05-30 21:37:41 +00:00
2024-05-28 22:56:31 +00:00
STRUCTS?
--------
2022-05-30 21:37:41 +00:00
2024-08-26 19:25:23 +00:00
- declare struct *type* , or directly declare the variable itself? Problem with the latter is: you cannot easily define multiple variables of the same struct type.
2022-05-30 21:37:41 +00:00
- can contain only numeric types (byte,word,float) - no nested structs, no reference types (strings, arrays) inside structs
2023-07-26 02:17:44 +00:00
- only as a reference type (uword pointer). This removes a lot of the problems related to introducing a variable length value type.
- arrays of struct is just an array of uword pointers. Can even be @split?
- need to introduce typed pointer datatype in prog8
2024-09-02 20:24:44 +00:00
- STR remains the type for a string literal (so we can keep doing register-indexed addressing directly on it)
- ARRAY remains the type for an array literal (so we can keep doing register-indexed addressing directly on it)
- we probably need to have a STRBYREF and ARRAYBYREF if we deal with a pointer to a string / array (such as when passing it to a function)
the subtype of those should include the declared element type and the declared length of the string / array
2023-12-04 21:18:37 +00:00
Other language/syntax features to think about
---------------------------------------------
2023-12-31 00:02:33 +00:00
- add (rom/ram)bank support to romsub. A call will then automatically switch banks, use callfar and something else when in banked ram.
challenges: how to not make this too X16 specific? How does the compiler know what bank to switch (ram/rom)?
How to make it performant when we want to (i.e. NOT have it use callfar/auto bank switching) ?
2024-09-02 20:24:44 +00:00
Maybe by having a %option rombank=4 rambank=22 to set that as fixed rombank/rambank for that subroutine/block (and pray the user doesn't change it themselves)
and then only do bank switching if the bank of the routine is different from the configured rombank/rambank.