Searched refs:rpath_command (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 169 MachO::rpath_command RPathLC; in buildRPathLoadCommand() 171 RPathLC.path = sizeof(MachO::rpath_command); in buildRPathLoadCommand() 172 RPathLC.cmdsize = alignTo(sizeof(MachO::rpath_command) + Path.size() + 1, 8); in buildRPathLoadCommand() 174 LC.Payload.assign(RPathLC.cmdsize - sizeof(MachO::rpath_command), 0); in buildRPathLoadCommand() 247 updateLoadCommandPayloadString<MachO::rpath_command>(LC, NewRPath); in processLoadCommands()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | MachO.def | 52 HANDLE_LOAD_COMMAND(LC_RPATH, 0x8000001Cu, rpath_command) 103 LOAD_COMMAND_STRUCT(rpath_command)
|
| H A D | MachO.h | 795 struct rpath_command { struct 1337 inline void swapStruct(rpath_command &r) { in swapStruct()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | MachOYAML.cpp | 239 void mapLoadCommandData<MachO::rpath_command>( in mapLoadCommandData() 493 void MappingTraits<MachO::rpath_command>::mapping( in mapping() 494 IO &IO, MachO::rpath_command &LoadCommand) { in mapping()
|
| H A D | MachOEmitter.cpp | 185 size_t writeLoadCommandData<MachO::rpath_command>(MachOYAML::LoadCommand &LC, in writeLoadCommandData()
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | Writer.cpp | 391 return alignToPowerOf2(sizeof(rpath_command) + path.size() + 1, in getSize() 396 auto *c = reinterpret_cast<rpath_command *>(buf); in writeTo() 397 buf += sizeof(rpath_command); in writeTo() 401 c->path = sizeof(rpath_command); in writeTo()
|
| H A D | InputFiles.cpp | 1743 for (auto *cmd : findCommands<rpath_command>(hdr, LC_RPATH)) { in DylibFile()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 889 if (Load.C.cmdsize < sizeof(MachO::rpath_command)) in checkRpathCommand() 892 auto ROrErr = getStructOrErr<MachO::rpath_command>(Obj, Load.Ptr); in checkRpathCommand() 895 MachO::rpath_command R = ROrErr.get(); in checkRpathCommand() 896 if (R.path < sizeof(MachO::rpath_command)) in checkRpathCommand() 4714 MachO::rpath_command 4716 return getStruct<MachO::rpath_command>(*this, L.Ptr); in getRpathCommand()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | MachO.h | 683 MachO::rpath_command
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 9087 static void PrintRpathLoadCommand(MachO::rpath_command rpath, const char *Ptr) { in PrintRpathLoadCommand() 9090 if (rpath.cmdsize < sizeof(struct MachO::rpath_command)) in PrintRpathLoadCommand() 10163 MachO::rpath_command Rpath = Obj->getRpathCommand(Command); in PrintLoadCommands()
|