trisquel-icecat/icecat/build/unix/elfhack
2025-10-06 02:35:48 -06:00
..
inject icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
dummy.c icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
elf.cpp icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
elfhack.cpp icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
elfxx.h icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
inject.c icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
Makefile.in icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
moz.build icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
README icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
relrhack.cpp icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
relrhack.h icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
test-array.c icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00
test-ctors.c icecat: add release 140.3.1-1gnu1 2025-10-06 02:35:48 -06:00
test.c icecat: initial release for Trisquel 12.0, Ecne 2025-07-17 09:32:21 -06:00

Elfhack is a program to optimize ELF binaries for size and cold startup
speed.

Presently, it is quite experimental, though it works well for the target
it was created for: IceCat's libxul.so.

Elfhack currently only does one thing: packing dynamic relocations ;
which ends up being a quite complex task, that can be summarized this
way:
- Remove RELATIVE relocations from the .rel.dyn/.rela.dyn section.
- Inject a small code able to apply relative relocations "by hand"
  after the .rel.dyn/.rela.dyn section.
- Inject a section containing relocative relocations in a different
  and more packed format, after the small code.
- Register the small code as DT_INIT function. Make the small code call
  what was initially the DT_INIT function, if there was one.
- Remove the hole between the new section containing relative
  relocations and the following sections, adjusting offsets and base
  addresses accordingly.
- Adjust PT_LOAD entries to fit new offsets, and add an additional
  PT_LOAD entry when that is necessary to handle the discrepancy between
  offsets and base addresses, meaning the section offsets may yet again
  need adjustments.
- Adjust various DT_* dynamic tags to fit the new ELF layout.
- Adjust section headers.
- Adjust ELF headers.

See http://glandium.org/blog/?p=1177#relocations for some figures.