gecko-dev/build/unix/elfhack
Andreea Pavel 8ac372b9b7 Backed out changeset 6bfba6f64e7b (bug 1480688) for android build bustages on a CLOSED TREE 2018-08-04 12:53:55 +03:00
..
inject Bug 1477081 - remove TARGET_CPU use from moz.build files; r=ted.mielczarek 2018-07-24 16:08:55 -04:00
Makefile.in Bug 1403346 - Implement cflags filtering for elfhack in mozbuild COMPILE_FLAGS r=glandium 2017-10-25 15:12:10 -07:00
README
dummy.c
elf.cpp Bug 1423822 - Check segments overlapping later. r=froydnj 2018-08-01 11:17:07 +09:00
elfhack.cpp Backed out changeset 6bfba6f64e7b (bug 1480688) for android build bustages on a CLOSED TREE 2018-08-04 12:53:55 +03:00
elfxx.h Bug 1423822 - Allow to relocate eh_frame. r=froydnj 2018-08-01 09:29:09 +09:00
inject.c Bug 1470701 - Use run-time page size when changing mapping permissions in elfhack injected code. r=froydnj 2018-06-24 09:02:38 +09:00
moz.build Bug 1480617 - Disable LTO when compiling dummy.c in elfhack. r=gps 2018-08-03 07:45:55 +09:00
test-array.c
test-ctors.c
test.c Bug 1470701 - Use run-time page size when changing mapping permissions in elfhack injected code. r=froydnj 2018-06-24 09:02:38 +09:00

README

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: Firefox'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.