| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix position independent loads of function symbols. | 2025-12-13 | 1 | -9/+0 | |
| | | | | | | | | | For `extern int x[1];`, can use PCREL32 for &x. But for `extern int x(int)`, must use GOTREL, when not being called directly (that's PLT). Therefore the type of an external symbol (actually just whether it denotes a function) matters when deciding what kind of relocation to emit, so keep that information. | ||||
| * | c: avoid generating relocations in .rodata (putting such objects in .data ↵ | 2025-10-25 | 1 | -0/+2 | |
| | | | | | instead for now) | ||||
| * | regalloc: hand-roll qsort (bikeshedding...) | 2025-09-15 | 1 | -1/+1 | |
| | | |||||
| * | regalloc.c cleanup | 2025-09-14 | 1 | -2/+2 | |
| | | |||||
| * | c: function-local static vars | 2025-09-12 | 1 | -0/+7 | |