2024-08-17 14:16:16 +02:00
|
|
|
# Intermediate code generation
|
|
|
|
|
2024-09-25 23:06:02 +02:00
|
|
|
- Calculate maximum number of arguments that a function can have. Put procedure
|
|
|
|
arguments onto the stack, above the stack pointer. Should the offsets be
|
|
|
|
calculated during IR generation or target code generation?
|
2024-09-08 22:53:07 +02:00
|
|
|
|
|
|
|
# ELF generation
|
|
|
|
|
|
|
|
- Don't ignore relocations where the symbol is not defined in the symbol table.
|
|
|
|
Report an error about an undefined symbol.
|
2024-09-20 13:32:24 +02:00
|
|
|
|
|
|
|
# Name analysis
|
|
|
|
|
|
|
|
- Format error messages.
|
2024-09-24 22:20:57 +02:00
|
|
|
- Return non-zero error code on errors.
|
|
|
|
|
|
|
|
# Built-in
|
|
|
|
|
|
|
|
Printi should be able to print numbers with multiple digits.
|