Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.def32 HANDLE_LOAD_COMMAND(LC_LOAD_DYLIB, 0x0000000Cu, dylib_command)
33 HANDLE_LOAD_COMMAND(LC_ID_DYLIB, 0x0000000Du, dylib_command)
48 HANDLE_LOAD_COMMAND(LC_LOAD_WEAK_DYLIB, 0x80000018u, dylib_command)
55 HANDLE_LOAD_COMMAND(LC_REEXPORT_DYLIB, 0x8000001Fu, dylib_command)
56 HANDLE_LOAD_COMMAND(LC_LAZY_LOAD_DYLIB, 0x00000020u, dylib_command)
60 HANDLE_LOAD_COMMAND(LC_LOAD_UPWARD_DYLIB, 0x80000023u, dylib_command)
87 LOAD_COMMAND_STRUCT(dylib_command)
H A DMachO.h620 struct dylib_command { struct
1262 inline void swapStruct(dylib_command &d) { in swapStruct()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp352 const dylib_command *dylib_lc = (const dylib_command *)lc; in IsModuleInstrumented()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp235 void mapLoadCommandData<MachO::dylib_command>( in mapLoadCommandData()
369 void MappingTraits<MachO::dylib_command>::mapping( in mapping()
370 IO &IO, MachO::dylib_command &LoadCommand) { in mapping()
H A DMachOEmitter.cpp173 size_t writeLoadCommandData<MachO::dylib_command>(MachOYAML::LoadCommand &LC, in writeLoadCommandData()
/freebsd/contrib/llvm-project/lld/MachO/
H A DWriter.cpp331 return alignToPowerOf2(sizeof(dylib_command) + path.size() + 1, in getSize()
336 auto *c = reinterpret_cast<dylib_command *>(buf); in writeTo()
337 buf += sizeof(dylib_command); in writeTo()
341 c->dylib.name = sizeof(dylib_command); in writeTo()
H A DInputFiles.cpp1698 auto *c = reinterpret_cast<const dylib_command *>(cmd); in DylibFile()
1789 const auto *c = reinterpret_cast<const dylib_command *>(cmd); in parseLoadCommands()
1800 const auto *c = reinterpret_cast<const dylib_command *>(cmd); in parseLoadCommands()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp220 updateLoadCommandPayloadString<MachO::dylib_command>( in processLoadCommands()
240 updateLoadCommandPayloadString<MachO::dylib_command>(LC, in processLoadCommands()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp740 if (Load.C.cmdsize < sizeof(MachO::dylib_command)) in checkDylibCommand()
743 auto CommandOrErr = getStructOrErr<MachO::dylib_command>(Obj, Load.Ptr); in checkDylibCommand()
746 MachO::dylib_command D = CommandOrErr.get(); in checkDylibCommand()
747 if (D.dylib.name < sizeof(MachO::dylib_command)) in checkDylibCommand()
2562 getStructOrErr<MachO::dylib_command>(*this, Libraries[i]); in getLibraryShortNameByIndex()
2565 MachO::dylib_command D = CommandOrErr.get(); in getLibraryShortNameByIndex()
4691 MachO::dylib_command
4693 return getStruct<MachO::dylib_command>(*this, L.Ptr); in getDylibIDLoadCommand()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h669 MachO::dylib_command
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp798 MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command); in printNeededLibraries()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1416 MachO::dylib_command dl = O->getDylibIDLoadCommand(Load); in PrintDylibs()
9892 static void PrintDylibCommand(MachO::dylib_command dl, const char *Ptr) { in PrintDylibCommand()
9908 if (dl.cmdsize < sizeof(struct MachO::dylib_command)) in PrintDylibCommand()
10093 MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command); in PrintLoadCommands()