2015-12-30 11:57:38 +00:00
|
|
|
//===- Writer.h -------------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_WRITER_H
|
|
|
|
#define LLD_ELF_WRITER_H
|
|
|
|
|
2016-07-23 20:48:50 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class StringRef;
|
|
|
|
}
|
2015-12-30 11:57:38 +00:00
|
|
|
|
2016-07-23 20:48:50 +00:00
|
|
|
namespace lld {
|
|
|
|
namespace elf {
|
|
|
|
template <class ELFT> class InputSectionBase;
|
|
|
|
template <class ELFT> class ObjectFile;
|
2015-12-30 11:57:38 +00:00
|
|
|
template <class ELFT> class SymbolTable;
|
|
|
|
|
|
|
|
template <class ELFT> void writeResult(SymbolTable<ELFT> *Symtab);
|
|
|
|
|
2016-07-23 20:48:50 +00:00
|
|
|
template <class ELFT> void markLive();
|
|
|
|
|
|
|
|
template <class ELFT>
|
|
|
|
llvm::StringRef getOutputSectionName(InputSectionBase<ELFT> *S);
|
|
|
|
|
|
|
|
template <class ELFT>
|
|
|
|
void reportDiscarded(InputSectionBase<ELFT> *IS,
|
|
|
|
const std::unique_ptr<elf::ObjectFile<ELFT>> &File);
|
2015-12-30 11:57:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|