svn commit: r319885 - head/contrib/llvm/tools/lld/ELF
Ed Maste
emaste at FreeBSD.org
Tue Jun 13 00:31:17 UTC 2017
Author: emaste
Date: Tue Jun 13 00:31:16 2017
New Revision: 319885
URL: https://svnweb.freebsd.org/changeset/base/319885
Log:
lld: ELF: Fix ICF crash on absolute symbol relocations.
If two sections contained relocations to absolute symbols with the same
value we would crash when trying to access their sections. Add a check that
both symbols point to sections before accessing their sections, and treat
absolute symbols as equal if their values are equal.
Obtained from: LLD commit r292578
MFC after: 3 days
Modified:
head/contrib/llvm/tools/lld/ELF/ICF.cpp
Modified: head/contrib/llvm/tools/lld/ELF/ICF.cpp
==============================================================================
--- head/contrib/llvm/tools/lld/ELF/ICF.cpp Tue Jun 13 00:22:15 2017 (r319884)
+++ head/contrib/llvm/tools/lld/ELF/ICF.cpp Tue Jun 13 00:31:16 2017 (r319885)
@@ -245,7 +245,6 @@ bool ICF<ELFT>::variableEq(const InputSection<ELFT> *A
if (&SA == &SB)
return true;
- // Or, the two sections must be in the same equivalence class.
auto *DA = dyn_cast<DefinedRegular<ELFT>>(&SA);
auto *DB = dyn_cast<DefinedRegular<ELFT>>(&SB);
if (!DA || !DB)
@@ -253,6 +252,11 @@ bool ICF<ELFT>::variableEq(const InputSection<ELFT> *A
if (DA->Value != DB->Value)
return false;
+ // Either both symbols must be absolute...
+ if (!DA->Section || !DB->Section)
+ return !DA->Section && !DB->Section;
+
+ // Or the two sections must be in the same equivalence class.
auto *X = dyn_cast<InputSection<ELFT>>(DA->Section);
auto *Y = dyn_cast<InputSection<ELFT>>(DB->Section);
if (!X || !Y)
More information about the svn-src-all
mailing list