Home
last modified time | relevance | path

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

/external/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFileBinaryReader.cpp514 for (const ExportEntry &trieExport : MachOObjectFile::exports(Err, trie)) { in readBinary() local
516 normExport.name = trieExport.name().copy(f->ownedAllocations); in readBinary()
517 normExport.offset = trieExport.address(); in readBinary()
518 normExport.kind = ExportSymbolKind(trieExport.flags() & EXPORT_SYMBOL_FLAGS_KIND_MASK); in readBinary()
519 normExport.flags = trieExport.flags() & ~EXPORT_SYMBOL_FLAGS_KIND_MASK; in readBinary()
520 normExport.otherOffset = trieExport.other(); in readBinary()
521 if (!trieExport.otherName().empty()) in readBinary()
522 normExport.otherName = trieExport.otherName().copy(f->ownedAllocations); in readBinary()