Home
last modified time | relevance | path

Searched refs:weakDef (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DFile.h302 void addExportedSymbol(StringRef name, bool weakDef, bool copyRefs) { in addExportedSymbol() argument
306 AtomAndFlags info(weakDef); in addExportedSymbol()
355 bool weakDef = entry->second.weakDef; in exports() local
358 weakDef); in exports()
382 AtomAndFlags() : atom(nullptr), weakDef(false) { } in AtomAndFlags()
383 AtomAndFlags(bool weak) : atom(nullptr), weakDef(weak) { } in AtomAndFlags()
385 bool weakDef; member
H A DAtoms.h145 StringRef dylibInstallName, bool weakDef) in MachOSharedLibraryAtom() argument
H A DMachONormalizedFileToAtoms.cpp1572 bool weakDef = (exp.flags & EXPORT_SYMBOL_FLAGS_WEAK_DEFINITION); in normalizedDylibToAtoms() local
1574 file->addExportedSymbol(exp.name, weakDef, true); in normalizedDylibToAtoms()
1579 bool weakDef = (sym.desc & N_WEAK_DEF); in normalizedDylibToAtoms() local
1580 file->addExportedSymbol(sym.name, weakDef, copyRefs); in normalizedDylibToAtoms()