[PATCH] D17601: [ELF] - Define special symbols _etext and _edata

George Rimar via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 25 04:29:12 PST 2016


grimar created this revision.
grimar added reviewers: ruiu, rafael.
grimar added subscribers: llvm-commits, grimar.

Description of symbols is avalable here:
https://docs.oracle.com/cd/E53394_01/html/E54766/u-etext-3c.html

It is said that:
_etext - The address of _etext is the first location after the last read-only loadable segment.
_edata - The address of _edata is the first location after the last read-write loadable segment.
_end - If the address of _edata is greater than the address of _etext, the address of _end is same as the address of _edata.

In real life _end and _edata has different values for that case. Both gold/bfd set _edata to address of .bss
This patch do the same for consistency.


http://reviews.llvm.org/D17601

Files:
  ELF/Symbols.cpp
  ELF/Symbols.h
  ELF/Writer.cpp
  test/ELF/edata-etext.s

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D17601.49032.patch
Type: text/x-patch
Size: 6905 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160225/193b226a/attachment.bin>


More information about the llvm-commits mailing list