Searched refs:isTlv (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lld/MachO/ |
D | Symbols.h | 60 virtual bool isTlv() const { llvm_unreachable("cannot be TLV"); } in isTlv() function 92 bool isTlv() const override { in isTlv() function 152 DylibSymbol(DylibFile *file, StringRefZ name, bool isWeakDef, bool isTlv) in DylibSymbol() argument 153 : Symbol(DylibKind, name), file(file), weakDef(isWeakDef), tlv(isTlv) {} in DylibSymbol() 156 bool isTlv() const override { return tlv; } in isTlv() function 208 bool isTlv() const override { return false; } in isTlv() function
|
D | SymbolTable.cpp | 99 bool isTlv) { in addDylib() argument 111 replaceSymbol<DylibSymbol>(s, file, name, isWeakDef, isTlv); in addDylib()
|
D | SymbolTable.h | 42 Symbol *addDylib(StringRef name, DylibFile *file, bool isWeakDef, bool isTlv);
|
D | ExportTrie.cpp | 71 if (sym.isTlv()) { in ExportInfo()
|
D | InputFiles.cpp | 520 bool isTlv = flags & EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL; in DylibFile() local 522 isWeakDef, isTlv)); in DylibFile()
|
/external/llvm-project/lld/MachO/Arch/ |
D | X86_64.cpp | 226 if (sym->isTlv()) in prepareSymbolRelocation() 234 if (sym->isTlv()) in prepareSymbolRelocation() 264 if (!sym->isTlv()) in prepareSymbolRelocation()
|