reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
 1262   StringRef partialStr = entry.name.drop_front(_cummulativeString.size());
 1267       edge._child->addSymbol(entry, allocator, allNodes);
 1291         bNode->addSymbol(entry, allocator, allNodes);
 1296   if (entry.flags & EXPORT_SYMBOL_FLAGS_REEXPORT) {
 1297     assert(entry.otherOffset != 0);
 1299   if (entry.flags & EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER) {
 1300     assert(entry.otherOffset != 0);
 1303   auto *newNode = new (allocator) TrieNode(entry.name.copy(allocator));
 1307                    << "new TrieNode('" << entry.name << "') with edge '"
 1310   newNode->_address = entry.offset;
 1311   newNode->_flags = entry.flags | entry.kind;
 1311   newNode->_flags = entry.flags | entry.kind;
 1312   newNode->_other = entry.otherOffset;
 1313   if ((entry.flags & EXPORT_SYMBOL_FLAGS_REEXPORT) && !entry.otherName.empty())
 1313   if ((entry.flags & EXPORT_SYMBOL_FLAGS_REEXPORT) && !entry.otherName.empty())
 1314     newNode->_importedName = entry.otherName.copy(allocator);