252 lines
		
	
	
		
			9.0 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			252 lines
		
	
	
		
			9.0 KiB
		
	
	
	
		
			C++
		
	
	
	
//===- MarkLive.cpp -------------------------------------------------------===//
 | 
						|
//
 | 
						|
//                             The LLVM Linker
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file implements --gc-sections, which is a feature to remove unused
 | 
						|
// sections from output. Unused sections are sections that are not reachable
 | 
						|
// from known GC-root symbols or sections. Naturally the feature is
 | 
						|
// implemented as a mark-sweep garbage collector.
 | 
						|
//
 | 
						|
// Here's how it works. Each InputSectionBase has a "Live" bit. The bit is off
 | 
						|
// by default. Starting with GC-root symbols or sections, markLive function
 | 
						|
// defined in this file visits all reachable sections to set their Live
 | 
						|
// bits. Writer will then ignore sections whose Live bits are off, so that
 | 
						|
// such sections are not included into output.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "InputSection.h"
 | 
						|
#include "LinkerScript.h"
 | 
						|
#include "OutputSections.h"
 | 
						|
#include "Strings.h"
 | 
						|
#include "SymbolTable.h"
 | 
						|
#include "Symbols.h"
 | 
						|
#include "Target.h"
 | 
						|
#include "Writer.h"
 | 
						|
#include "llvm/ADT/STLExtras.h"
 | 
						|
#include "llvm/Object/ELF.h"
 | 
						|
#include <functional>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
using namespace llvm;
 | 
						|
using namespace llvm::ELF;
 | 
						|
using namespace llvm::object;
 | 
						|
using namespace llvm::support::endian;
 | 
						|
 | 
						|
using namespace lld;
 | 
						|
using namespace lld::elf;
 | 
						|
 | 
						|
namespace {
 | 
						|
// A resolved relocation. The Sec and Offset fields are set if the relocation
 | 
						|
// was resolved to an offset within a section.
 | 
						|
template <class ELFT>
 | 
						|
struct ResolvedReloc {
 | 
						|
  InputSectionBase<ELFT> *Sec;
 | 
						|
  typename ELFT::uint Offset;
 | 
						|
};
 | 
						|
} // end anonymous namespace
 | 
						|
 | 
						|
template <class ELFT>
 | 
						|
static typename ELFT::uint getAddend(InputSectionBase<ELFT> &Sec,
 | 
						|
                                     const typename ELFT::Rel &Rel) {
 | 
						|
  return Target->getImplicitAddend(Sec.Data.begin(),
 | 
						|
                                   Rel.getType(Config->Mips64EL));
 | 
						|
}
 | 
						|
 | 
						|
template <class ELFT>
 | 
						|
static typename ELFT::uint getAddend(InputSectionBase<ELFT> &Sec,
 | 
						|
                                     const typename ELFT::Rela &Rel) {
 | 
						|
  return Rel.r_addend;
 | 
						|
}
 | 
						|
 | 
						|
template <class ELFT, class RelT>
 | 
						|
static ResolvedReloc<ELFT> resolveReloc(InputSectionBase<ELFT> &Sec,
 | 
						|
                                        RelT &Rel) {
 | 
						|
  SymbolBody &B = Sec.getFile()->getRelocTargetSym(Rel);
 | 
						|
  auto *D = dyn_cast<DefinedRegular<ELFT>>(&B);
 | 
						|
  if (!D || !D->Section)
 | 
						|
    return {nullptr, 0};
 | 
						|
  typename ELFT::uint Offset = D->Value;
 | 
						|
  if (D->isSection())
 | 
						|
    Offset += getAddend(Sec, Rel);
 | 
						|
  return {D->Section->Repl, Offset};
 | 
						|
}
 | 
						|
 | 
						|
// Calls Fn for each section that Sec refers to via relocations.
 | 
						|
template <class ELFT>
 | 
						|
static void forEachSuccessor(InputSection<ELFT> &Sec,
 | 
						|
                             std::function<void(ResolvedReloc<ELFT>)> Fn) {
 | 
						|
  ELFFile<ELFT> &Obj = Sec.getFile()->getObj();
 | 
						|
  for (const typename ELFT::Shdr *RelSec : Sec.RelocSections) {
 | 
						|
    if (RelSec->sh_type == SHT_RELA) {
 | 
						|
      for (const typename ELFT::Rela &Rel : Obj.relas(RelSec))
 | 
						|
        Fn(resolveReloc(Sec, Rel));
 | 
						|
    } else {
 | 
						|
      for (const typename ELFT::Rel &Rel : Obj.rels(RelSec))
 | 
						|
        Fn(resolveReloc(Sec, Rel));
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// The .eh_frame section is an unfortunate special case.
 | 
						|
// The section is divided in CIEs and FDEs and the relocations it can have are
 | 
						|
// * CIEs can refer to a personality function.
 | 
						|
// * FDEs can refer to a LSDA
 | 
						|
// * FDEs refer to the function they contain information about
 | 
						|
// The last kind of relocation cannot keep the referred section alive, or they
 | 
						|
// would keep everything alive in a common object file. In fact, each FDE is
 | 
						|
// alive if the section it refers to is alive.
 | 
						|
// To keep things simple, in here we just ignore the last relocation kind. The
 | 
						|
// other two keep the referred section alive.
 | 
						|
//
 | 
						|
// A possible improvement would be to fully process .eh_frame in the middle of
 | 
						|
// the gc pass. With that we would be able to also gc some sections holding
 | 
						|
// LSDAs and personality functions if we found that they were unused.
 | 
						|
template <class ELFT, class RelTy>
 | 
						|
static void
 | 
						|
scanEhFrameSection(EhInputSection<ELFT> &EH, ArrayRef<RelTy> Rels,
 | 
						|
                   std::function<void(ResolvedReloc<ELFT>)> Enqueue) {
 | 
						|
  const endianness E = ELFT::TargetEndianness;
 | 
						|
  for (unsigned I = 0, N = EH.Pieces.size(); I < N; ++I) {
 | 
						|
    EhSectionPiece &Piece = EH.Pieces[I];
 | 
						|
    unsigned FirstRelI = Piece.FirstRelocation;
 | 
						|
    if (FirstRelI == (unsigned)-1)
 | 
						|
      continue;
 | 
						|
    if (read32<E>(Piece.data().data() + 4) == 0) {
 | 
						|
      // This is a CIE, we only need to worry about the first relocation. It is
 | 
						|
      // known to point to the personality function.
 | 
						|
      Enqueue(resolveReloc(EH, Rels[FirstRelI]));
 | 
						|
      continue;
 | 
						|
    }
 | 
						|
    // This is a FDE. The relocations point to the described function or to
 | 
						|
    // a LSDA. We only need to keep the LSDA alive, so ignore anything that
 | 
						|
    // points to executable sections.
 | 
						|
    typename ELFT::uint PieceEnd = Piece.InputOff + Piece.size();
 | 
						|
    for (unsigned I2 = FirstRelI, N2 = Rels.size(); I2 < N2; ++I2) {
 | 
						|
      const RelTy &Rel = Rels[I2];
 | 
						|
      if (Rel.r_offset >= PieceEnd)
 | 
						|
        break;
 | 
						|
      ResolvedReloc<ELFT> R = resolveReloc(EH, Rels[I2]);
 | 
						|
      if (!R.Sec || R.Sec == &InputSection<ELFT>::Discarded)
 | 
						|
        continue;
 | 
						|
      if (R.Sec->getSectionHdr()->sh_flags & SHF_EXECINSTR)
 | 
						|
        continue;
 | 
						|
      Enqueue({R.Sec, 0});
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
template <class ELFT>
 | 
						|
static void
 | 
						|
scanEhFrameSection(EhInputSection<ELFT> &EH,
 | 
						|
                   std::function<void(ResolvedReloc<ELFT>)> Enqueue) {
 | 
						|
  if (!EH.RelocSection)
 | 
						|
    return;
 | 
						|
 | 
						|
  // Unfortunately we need to split .eh_frame early since some relocations in
 | 
						|
  // .eh_frame keep other section alive and some don't.
 | 
						|
  EH.split();
 | 
						|
 | 
						|
  ELFFile<ELFT> &EObj = EH.getFile()->getObj();
 | 
						|
  if (EH.RelocSection->sh_type == SHT_RELA)
 | 
						|
    scanEhFrameSection(EH, EObj.relas(EH.RelocSection), Enqueue);
 | 
						|
  else
 | 
						|
    scanEhFrameSection(EH, EObj.rels(EH.RelocSection), Enqueue);
 | 
						|
}
 | 
						|
 | 
						|
// Sections listed below are special because they are used by the loader
 | 
						|
// just by being in an ELF file. They should not be garbage-collected.
 | 
						|
template <class ELFT> static bool isReserved(InputSectionBase<ELFT> *Sec) {
 | 
						|
  switch (Sec->getSectionHdr()->sh_type) {
 | 
						|
  case SHT_FINI_ARRAY:
 | 
						|
  case SHT_INIT_ARRAY:
 | 
						|
  case SHT_NOTE:
 | 
						|
  case SHT_PREINIT_ARRAY:
 | 
						|
    return true;
 | 
						|
  default:
 | 
						|
    StringRef S = Sec->Name;
 | 
						|
 | 
						|
    // We do not want to reclaim sections if they can be referred
 | 
						|
    // by __start_* and __stop_* symbols.
 | 
						|
    if (isValidCIdentifier(S))
 | 
						|
      return true;
 | 
						|
 | 
						|
    return S.startswith(".ctors") || S.startswith(".dtors") ||
 | 
						|
           S.startswith(".init") || S.startswith(".fini") ||
 | 
						|
           S.startswith(".jcr");
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// This is the main function of the garbage collector.
 | 
						|
// Starting from GC-root sections, this function visits all reachable
 | 
						|
// sections to set their "Live" bits.
 | 
						|
template <class ELFT> void elf::markLive() {
 | 
						|
  SmallVector<InputSection<ELFT> *, 256> Q;
 | 
						|
 | 
						|
  auto Enqueue = [&](ResolvedReloc<ELFT> R) {
 | 
						|
    if (!R.Sec)
 | 
						|
      return;
 | 
						|
 | 
						|
    // Usually, a whole section is marked as live or dead, but in mergeable
 | 
						|
    // (splittable) sections, each piece of data has independent liveness bit.
 | 
						|
    // So we explicitly tell it which offset is in use.
 | 
						|
    if (auto *MS = dyn_cast<MergeInputSection<ELFT>>(R.Sec))
 | 
						|
      MS->markLiveAt(R.Offset);
 | 
						|
 | 
						|
    if (R.Sec->Live)
 | 
						|
      return;
 | 
						|
    R.Sec->Live = true;
 | 
						|
    if (InputSection<ELFT> *S = dyn_cast<InputSection<ELFT>>(R.Sec))
 | 
						|
      Q.push_back(S);
 | 
						|
  };
 | 
						|
 | 
						|
  auto MarkSymbol = [&](const SymbolBody *Sym) {
 | 
						|
    if (auto *D = dyn_cast_or_null<DefinedRegular<ELFT>>(Sym))
 | 
						|
      Enqueue({D->Section, D->Value});
 | 
						|
  };
 | 
						|
 | 
						|
  // Add GC root symbols.
 | 
						|
  if (Config->EntrySym)
 | 
						|
    MarkSymbol(Config->EntrySym->body());
 | 
						|
  MarkSymbol(Symtab<ELFT>::X->find(Config->Init));
 | 
						|
  MarkSymbol(Symtab<ELFT>::X->find(Config->Fini));
 | 
						|
  for (StringRef S : Config->Undefined)
 | 
						|
    MarkSymbol(Symtab<ELFT>::X->find(S));
 | 
						|
 | 
						|
  // Preserve externally-visible symbols if the symbols defined by this
 | 
						|
  // file can interrupt other ELF file's symbols at runtime.
 | 
						|
  for (const Symbol *S : Symtab<ELFT>::X->getSymbols())
 | 
						|
    if (S->includeInDynsym())
 | 
						|
      MarkSymbol(S->body());
 | 
						|
 | 
						|
  // Preserve special sections and those which are specified in linker
 | 
						|
  // script KEEP command.
 | 
						|
  for (ObjectFile<ELFT> *F : Symtab<ELFT>::X->getObjectFiles()) {
 | 
						|
    for (InputSectionBase<ELFT> *Sec : F->getSections()) {
 | 
						|
      if (Sec && Sec != &InputSection<ELFT>::Discarded) {
 | 
						|
        // .eh_frame is always marked as live now, but also it can reference to
 | 
						|
        // sections that contain personality. We preserve all non-text sections
 | 
						|
        // referred by .eh_frame here.
 | 
						|
        if (auto *EH = dyn_cast_or_null<EhInputSection<ELFT>>(Sec))
 | 
						|
          scanEhFrameSection<ELFT>(*EH, Enqueue);
 | 
						|
        if (isReserved(Sec) || Script<ELFT>::X->shouldKeep(Sec))
 | 
						|
          Enqueue({Sec, 0});
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  // Mark all reachable sections.
 | 
						|
  while (!Q.empty())
 | 
						|
    forEachSuccessor<ELFT>(*Q.pop_back_val(), Enqueue);
 | 
						|
}
 | 
						|
 | 
						|
template void elf::markLive<ELF32LE>();
 | 
						|
template void elf::markLive<ELF32BE>();
 | 
						|
template void elf::markLive<ELF64LE>();
 | 
						|
template void elf::markLive<ELF64BE>();
 |