The C++ ABI requires dylibs to pass a pointer to __cxa_atexit which does e.g. cleanup of static global variables. The C++ spec says that the pointer can point to any address in one of the dylib's segments, but in practice ld64 seems to set it to point to the header, so that's what's implemented here. Reviewed By: #lld-macho, smeenai Differential Revision: https://reviews.llvm.org/D83603
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
//===- SymbolTable.h --------------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLD_MACHO_SYMBOL_TABLE_H
|
|
#define LLD_MACHO_SYMBOL_TABLE_H
|
|
|
|
#include "lld/Common/LLVM.h"
|
|
#include "llvm/ADT/CachedHashString.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/Object/Archive.h"
|
|
|
|
namespace lld {
|
|
namespace macho {
|
|
|
|
class ArchiveFile;
|
|
class DylibFile;
|
|
class InputSection;
|
|
class MachHeaderSection;
|
|
class Symbol;
|
|
|
|
/*
|
|
* Note that the SymbolTable handles name collisions by calling
|
|
* replaceSymbol(), which does an in-place update of the Symbol via `placement
|
|
* new`. Therefore, there is no need to update any relocations that hold
|
|
* pointers the "old" Symbol -- they will automatically point to the new one.
|
|
*/
|
|
class SymbolTable {
|
|
public:
|
|
Symbol *addDefined(StringRef name, InputSection *isec, uint32_t value,
|
|
bool isWeakDef);
|
|
|
|
Symbol *addUndefined(StringRef name);
|
|
|
|
Symbol *addDylib(StringRef name, DylibFile *file, bool isWeakDef);
|
|
|
|
Symbol *addLazy(StringRef name, ArchiveFile *file,
|
|
const llvm::object::Archive::Symbol &sym);
|
|
|
|
Symbol *addDSOHandle(const MachHeaderSection *);
|
|
|
|
ArrayRef<Symbol *> getSymbols() const { return symVector; }
|
|
Symbol *find(StringRef name);
|
|
|
|
private:
|
|
std::pair<Symbol *, bool> insert(StringRef name);
|
|
llvm::DenseMap<llvm::CachedHashStringRef, int> symMap;
|
|
std::vector<Symbol *> symVector;
|
|
};
|
|
|
|
extern SymbolTable *symtab;
|
|
|
|
} // namespace macho
|
|
} // namespace lld
|
|
|
|
#endif
|