This commit is contained in:
Irmen de Jong 2024-11-16 02:10:57 +01:00
parent b9ad7e0e55
commit 08865dbb4e

View File

@ -7,8 +7,6 @@ TODO
Future Things and Ideas
^^^^^^^^^^^^^^^^^^^^^^^
- adjust builtin function call convention to also use X register? see class FSignature.
- adjust funcion call convention for regular subroutines too? Can it reuse the CallConvention class here? can it also start using the X register? see optimizeIntArgsViaRegisters()
- implement const long to store a 32 bit signed integer value. (constants should be able to be long?) -> const_long branch
- get rid of the BuiltinFunctionCall (and PtBuiltinFunctionCall) ast nodes distinction, just use 1 node type, they're mixed up now already anyways. -> remove-BFC-node branch
- something to reduce the need to use fully qualified names all the time. 'with' ? Or 'using <prefix>'?