Added check for terminator CIE/FDE which has zero data size.
void EHOutputSection<ELFT>::addSectionAux(
...
// If CIE/FDE data length is zero then Length is 4, this
// shall be considered a terminator and processing shall end.
if (Length == 4)
break;
...
After this "Bug 25923 - lld/ELF2 linked application crashes if exceptions were used." is fixed for me. Self link of clang also works.
Initial commit message:
[ELF] - implemented --eh-frame-hdr command line option.
--eh-frame-hdr
Request creation of ".eh_frame_hdr" section and ELF "PT_GNU_EH_FRAME" segment header.
Both gold and the GNU linker support an option --eh-frame-hdr which tell them to construct a header for all the .eh_frame sections. This header is placed in a section named .eh_frame_hdr and also in a PT_GNU_EH_FRAME segment. At runtime the unwinder can find all the PT_GNU_EH_FRAME segments by calling dl_iterate_phdr.
This section contains a lookup table for quick binary search of FDEs.
Detailed info can be found here:
http://www.airs.com/blog/archives/462
Differential revision: http://reviews.llvm.org/D15712
llvm-svn: 257889
92 lines
2.2 KiB
C++
92 lines
2.2 KiB
C++
//===- Config.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_CONFIG_H
|
|
#define LLD_ELF_CONFIG_H
|
|
|
|
#include "llvm/ADT/MapVector.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Support/ELF.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace lld {
|
|
namespace elf2 {
|
|
|
|
class InputFile;
|
|
class SymbolBody;
|
|
|
|
enum ELFKind {
|
|
ELFNoneKind,
|
|
ELF32LEKind,
|
|
ELF32BEKind,
|
|
ELF64LEKind,
|
|
ELF64BEKind
|
|
};
|
|
|
|
// This struct contains the global configuration for the linker.
|
|
// Most fields are direct mapping from the command line options
|
|
// and such fields have the same name as the corresponding options.
|
|
// Most fields are initialized by the driver.
|
|
struct Configuration {
|
|
SymbolBody *EntrySym = nullptr;
|
|
SymbolBody *MipsGpDisp = nullptr;
|
|
InputFile *FirstElf = nullptr;
|
|
llvm::StringRef DynamicLinker;
|
|
llvm::StringRef Entry;
|
|
llvm::StringRef Emulation;
|
|
llvm::StringRef Fini;
|
|
llvm::StringRef Init;
|
|
llvm::StringRef OutputFile;
|
|
llvm::StringRef SoName;
|
|
llvm::StringRef Sysroot;
|
|
std::string RPath;
|
|
llvm::MapVector<llvm::StringRef, std::vector<llvm::StringRef>> OutputSections;
|
|
std::vector<llvm::StringRef> SearchPaths;
|
|
std::vector<llvm::StringRef> Undefined;
|
|
bool AllowMultipleDefinition;
|
|
bool AsNeeded = false;
|
|
bool Bsymbolic;
|
|
bool Demangle = true;
|
|
bool DiscardAll;
|
|
bool DiscardLocals;
|
|
bool DiscardNone;
|
|
bool EhFrameHdr;
|
|
bool EnableNewDtags;
|
|
bool ExportDynamic;
|
|
bool GcSections;
|
|
bool GnuHash = false;
|
|
bool Mips64EL = false;
|
|
bool NoInhibitExec;
|
|
bool NoUndefined;
|
|
bool PrintGcSections;
|
|
bool Shared;
|
|
bool Static = false;
|
|
bool StripAll;
|
|
bool SysvHash = true;
|
|
bool Verbose;
|
|
bool ZExecStack;
|
|
bool ZNodelete;
|
|
bool ZNow;
|
|
bool ZOrigin;
|
|
bool ZRelro;
|
|
ELFKind EKind = ELFNoneKind;
|
|
uint16_t EMachine = llvm::ELF::EM_NONE;
|
|
uint64_t EntryAddr = -1;
|
|
unsigned Optimize = 0;
|
|
};
|
|
|
|
// The only instance of Configuration struct.
|
|
extern Configuration *Config;
|
|
|
|
} // namespace elf2
|
|
} // namespace lld
|
|
|
|
#endif
|