]> git.baikalelectronics.ru Git - arm-tf.git/commit
Reduce space lost to object alignment
authorSamuel Holland <samuel@sholland.org>
Sun, 20 Oct 2019 21:11:25 +0000 (16:11 -0500)
committerSamuel Holland <samuel@sholland.org>
Wed, 4 Dec 2019 08:59:30 +0000 (02:59 -0600)
commitebd6efae67c6a086bc97d807a638bde324d936dc
tree561576814b654df9dc4d88f7f3bf0b0189993e87
parent118a67a9a3a810d37bca89aab28922769ca04a84
Reduce space lost to object alignment

Currently, sections within .text/.rodata/.data/.bss are emitted in the
order they are seen by the linker. This leads to wasted space, when a
section with a larger alignment follows one with a smaller alignment.
We can avoid this wasted space by sorting the sections.

To take full advantage of this, we must disable generation of common
symbols, so "common" data can be sorted along with the rest of .bss.

An example of the improvement, from `make DEBUG=1 PLAT=sun50i_a64 bl31`:
  .text   => no change
  .rodata => 16 bytes saved
  .data   => 11 bytes saved
  .bss    => 576 bytes saved

As a side effect, the addition of `-fno-common` in TF_CFLAGS makes it
easier to spot bugs in header files.

Signed-off-by: Samuel Holland <samuel@sholland.org>
Change-Id: I073630a9b0b84e7302a7a500d4bb4b547be01d51
Makefile
bl1/bl1.ld.S
bl2/bl2.ld.S
bl2/bl2_el3.ld.S
bl2u/bl2u.ld.S
bl31/bl31.ld.S