Searched refs:isTlv (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Symbols.h | 68 virtual bool isTlv() const { return false; } in isTlv() function 129 bool isTlv() const override; 259 RefState refState, bool isTlv) in DylibSymbol() argument 261 refState(refState), weakDef(isWeakDef), tlv(isTlv) { in DylibSymbol() 275 bool isTlv() const override { return tlv; } in isTlv() function
|
H A D | Relocations.cpp | 45 if (relocAttrs.hasAttr(RelocAttrBits::TLV) != sym->isTlv()) in validateSymbolRelocation() 47 (sym->isTlv() ? "not " : "") + "be thread-local")); in validateSymbolRelocation()
|
H A D | SymbolTable.h | 52 Symbol *addDylib(StringRef name, DylibFile *file, bool isWeakDef, bool isTlv);
|
H A D | Symbols.cpp | 84 bool Defined::isTlv() const { in isTlv() function in Defined
|
H A D | SymbolTable.cpp | 261 bool isTlv) { in addDylib() argument 283 replaceSymbol<DylibSymbol>(s, file, name, isWeakDef, refState, isTlv); in addDylib()
|
H A D | ExportTrie.cpp | 68 if (sym.isTlv()) in ExportInfo()
|
H A D | InputFiles.cpp | 1776 bool isTlv = entry.flags & EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL; in parseExportedSymbols() local 1779 symtab->addDylib(entry.name, exportingFile, isWeakDef, isTlv)); in parseExportedSymbols()
|