blob: 37e6d35b590aadcfe1d7a469e0e3bb32ebdc25ba (
plain)
1
2
3
4
5
6
7
8
9
10
|
# ELF generation
- Don't ignore relocations where the symbol is not defined in the symbol table.
Report an error about an undefined symbol.
# Register allocation
- Each temporary variable gets a tn register where n is the variable index. If
there more variables the allocation will fail with out of bounds runtime
error. Implement spill over.
|