Searched refs:CommonSymbol (Results 1 – 9 of 9) sorted by relevance
/openbsd/gnu/llvm/lld/ELF/ |
H A D | Symbols.cpp | 40 AssertSymbol<CommonSymbol>(); in assertSymbols() 573 void Symbol::resolve(const CommonSymbol &other) { in resolve() 586 if (CommonSymbol *oldSym = dyn_cast<CommonSymbol>(this)) { in resolve() 604 if (size > cast<CommonSymbol>(this)->size) in resolve() 605 cast<CommonSymbol>(this)->size = size; in resolve() 669 if (other.size > cast<CommonSymbol>(this)->size) in resolve() 670 cast<CommonSymbol>(this)->size = other.size; in resolve()
|
H A D | Symbols.h | 32 class CommonSymbol; variable 241 void resolve(const CommonSymbol &other); 389 class CommonSymbol : public Symbol { 391 CommonSymbol(InputFile *file, StringRef name, uint8_t binding, in CommonSymbol() function 399 auto &s = static_cast<CommonSymbol &>(sym); in overwrite() 541 alignas(CommonSymbol) char b[sizeof(CommonSymbol)];
|
H A D | InputFiles.cpp | 1072 CommonSymbol{this, StringRef(), binding, stOther, type, value, size}); in initializeSymbols() 1671 sym->resolve(CommonSymbol{&f, StringRef(), binding, visibility, STT_OBJECT, in createBitcodeSymbol()
|
H A D | Driver.cpp | 2069 auto *s = dyn_cast<CommonSymbol>(sym); in replaceCommonSymbols()
|
/openbsd/gnu/llvm/lld/MachO/ |
H A D | Symbols.h | 236 class CommonSymbol : public Symbol { 238 CommonSymbol(StringRefZ name, InputFile *file, uint64_t size, uint32_t align, in CommonSymbol() function 355 alignas(CommonSymbol) char c[sizeof(CommonSymbol)];
|
H A D | SymbolTable.cpp | 168 if (auto *common = dyn_cast<CommonSymbol>(s)) { in addCommon() 178 replaceSymbol<CommonSymbol>(s, name, file, size, align, isPrivateExtern); in addCommon()
|
H A D | LTO.cpp | 146 } else if (const auto *common = dyn_cast<CommonSymbol>(sym)) { in add()
|
H A D | Driver.cpp | 576 auto *common = dyn_cast<CommonSymbol>(sym); in replaceCommonSymbols()
|
/openbsd/gnu/llvm/llvm/tools/dsymutil/ |
H A D | MachODebugMapParser.cpp | 148 for (auto &CommonSymbol : CommonSymbols) { in addCommonSymbols() local 149 uint64_t CommonAddr = getMainBinarySymbolAddress(CommonSymbol); in addCommonSymbols() 154 if (!CurrentDebugMapObject->addSymbol(CommonSymbol, in addCommonSymbols()
|