Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
DMachOYAML.h105 struct ExportEntry { struct
113 std::vector<MachOYAML::ExportEntry> Children; argument
121 MachOYAML::ExportEntry ExportTrie;
165 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::ExportEntry) in LLVM_YAML_IS_SEQUENCE_VECTOR()
213 template <> struct MappingTraits<MachOYAML::ExportEntry> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
214 static void mapping(IO &IO, MachOYAML::ExportEntry &ExportEntry); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DMachOYAML.cpp182 void MappingTraits<MachOYAML::ExportEntry>::mapping( in mapping()
183 IO &IO, MachOYAML::ExportEntry &ExportEntry) { in mapping() argument
184 IO.mapRequired("TerminalSize", ExportEntry.TerminalSize); in mapping()
185 IO.mapOptional("NodeOffset", ExportEntry.NodeOffset); in mapping()
186 IO.mapOptional("Name", ExportEntry.Name); in mapping()
187 IO.mapOptional("Flags", ExportEntry.Flags); in mapping()
188 IO.mapOptional("Address", ExportEntry.Address); in mapping()
189 IO.mapOptional("Other", ExportEntry.Other); in mapping()
190 IO.mapOptional("ImportName", ExportEntry.ImportName); in mapping()
191 IO.mapOptional("Children", ExportEntry.Children); in mapping()
DMachOEmitter.cpp58 void dumpExportEntry(raw_ostream &OS, MachOYAML::ExportEntry &Entry);
400 MachOYAML::ExportEntry &Entry) { in dumpExportEntry()
/freebsd-12-stable/contrib/gdb/gdb/
Dobjfiles.h195 ExportEntry; typedef
436 ExportEntry *export_list;
Dsomread.c660 = (ExportEntry *) obstack_alloc (&objfile->objfile_obstack, in init_export_symbols()
661 export_list_size * sizeof (ExportEntry)); in init_export_symbols()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
DMachO.h72 class ExportEntry {
74 ExportEntry(Error *Err, const MachOObjectFile *O, ArrayRef<uint8_t> Trie);
83 bool operator==(const ExportEntry &) const;
125 using export_iterator = content_iterator<ExportEntry>;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
DMachOObjectFile.cpp2823 ExportEntry::ExportEntry(Error *E, const MachOObjectFile *O, in ExportEntry() function in ExportEntry
2826 void ExportEntry::moveToFirst() { in moveToFirst()
2834 void ExportEntry::moveToEnd() { in moveToEnd()
2839 bool ExportEntry::operator==(const ExportEntry &Other) const { in operator ==()
2857 uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr, const char **error) { in readULEB128()
2866 StringRef ExportEntry::name() const { in name()
2870 uint64_t ExportEntry::flags() const { in flags()
2874 uint64_t ExportEntry::address() const { in address()
2878 uint64_t ExportEntry::other() const { in other()
2882 StringRef ExportEntry::otherName() const { in otherName()
[all …]
/freebsd-12-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFileBinaryReader.cpp48 using llvm::object::ExportEntry;
514 for (const ExportEntry &trieExport : MachOObjectFile::exports(Err, trie)) { in readBinary()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp1189 for (const auto &ExportEntry : COFFObj->export_directories()) { in disassembleObject() local
1191 if (Error E = ExportEntry.getSymbolName(Name)) in disassembleObject()
1197 if (Error E = ExportEntry.getExportRVA(RVA)) in disassembleObject()
DMachODump.cpp10272 for (const object::ExportEntry &Entry : Obj->exports(Err)) { in printMachOExportsTrie()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-nm/
Dllvm-nm.cpp1154 for (const llvm::object::ExportEntry &Entry : MachO.exports(Err)) { in dumpSymbolsFromDLInfoMachO()