Searched refs:dylib_command (Results 1 – 12 of 12) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | MachO.def | 32 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 D | MachO.h | 620 struct dylib_command { struct 1262 inline void swapStruct(dylib_command &d) { in swapStruct()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_procmaps_mac.cpp | 372 const dylib_command *dylib_lc = (const dylib_command *)lc; in IsModuleInstrumented()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | MachOYAML.cpp | 233 void mapLoadCommandData<MachO::dylib_command>( in mapLoadCommandData() 370 void MappingTraits<MachO::dylib_command>::mapping( in mapping() 371 IO &IO, MachO::dylib_command &LoadCommand) { in mapping()
|
| H A D | MachOEmitter.cpp | 171 size_t writeLoadCommandData<MachO::dylib_command>(MachOYAML::LoadCommand &LC, in writeLoadCommandData()
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | Writer.cpp | 329 return alignToPowerOf2(sizeof(dylib_command) + path.size() + 1, in getSize() 334 auto *c = reinterpret_cast<dylib_command *>(buf); in writeTo() 335 buf += sizeof(dylib_command); in writeTo() 339 c->dylib.name = sizeof(dylib_command); in writeTo()
|
| H A D | InputFiles.cpp | 1720 auto *c = reinterpret_cast<const dylib_command *>(cmd); in DylibFile() 1822 const auto *c = reinterpret_cast<const dylib_command *>(cmd); in parseLoadCommands() 1833 const auto *c = reinterpret_cast<const dylib_command *>(cmd); in parseLoadCommands()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 239 updateLoadCommandPayloadString<MachO::dylib_command>( in processLoadCommands() 259 updateLoadCommandPayloadString<MachO::dylib_command>(LC, in processLoadCommands()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 741 if (Load.C.cmdsize < sizeof(MachO::dylib_command)) in checkDylibCommand() 744 auto CommandOrErr = getStructOrErr<MachO::dylib_command>(Obj, Load.Ptr); in checkDylibCommand() 747 MachO::dylib_command D = CommandOrErr.get(); in checkDylibCommand() 748 if (D.dylib.name < sizeof(MachO::dylib_command)) in checkDylibCommand() 2561 getStructOrErr<MachO::dylib_command>(*this, Libraries[i]); in getLibraryShortNameByIndex() 2564 MachO::dylib_command D = CommandOrErr.get(); in getLibraryShortNameByIndex() 4694 MachO::dylib_command 4696 return getStruct<MachO::dylib_command>(*this, L.Ptr); in getDylibIDLoadCommand()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | MachO.h | 675 MachO::dylib_command
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 798 MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command); in printNeededLibraries()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 1412 MachO::dylib_command dl = O->getDylibIDLoadCommand(Load); in PrintDylibs() 10023 static void PrintDylibCommand(MachO::dylib_command dl, const char *Ptr) { in PrintDylibCommand() 10039 if (dl.cmdsize < sizeof(struct MachO::dylib_command)) in PrintDylibCommand() 10224 MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command); in PrintLoadCommands()
|