Home
last modified time | relevance | path

Searched refs:dylinker_command (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
DMachO.def34 HANDLE_LOAD_COMMAND(LC_LOAD_DYLINKER, 0x0000000Eu, dylinker_command)
35 HANDLE_LOAD_COMMAND(LC_ID_DYLINKER, 0x0000000Fu, dylinker_command)
64 HANDLE_LOAD_COMMAND(LC_DYLD_ENVIRONMENT, 0x00000027u, dylinker_command)
84 LOAD_COMMAND_STRUCT(dylinker_command)
DMachO.h656 struct dylinker_command { struct
1191 inline void swapStruct(dylinker_command &d) { in swapStruct()
/freebsd-12-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFileBinaryWriter.cpp418 size += pointerAlign(sizeof(dylinker_command) + dyldPath().size()+1); in loadCommandsSize()
914 uint32_t size=pointerAlign(sizeof(dylinker_command)+dyldPath().size()+1); in writeLoadCommands()
915 dylinker_command* dl = reinterpret_cast<dylinker_command*>(lc); in writeLoadCommands()
918 dl->name = sizeof(dylinker_command); // offset in writeLoadCommands()
921 memcpy(lc+sizeof(dylinker_command), dyldPath().data(), dyldPath().size()); in writeLoadCommands()
922 lc[sizeof(dylinker_command)+dyldPath().size()] = '\0'; in writeLoadCommands()
/freebsd-12-stable/contrib/llvm-project/lld/MachO/
DWriter.cpp360 return alignTo(sizeof(dylinker_command) + path.size() + 1, 8); in getSize()
364 auto *c = reinterpret_cast<dylinker_command *>(buf); in writeTo()
365 buf += sizeof(dylinker_command); in writeTo()
369 c->name = sizeof(dylinker_command); in writeTo()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DMachOYAML.cpp231 void mapLoadCommandData<MachO::dylinker_command>( in mapLoadCommandData()
334 void MappingTraits<MachO::dylinker_command>::mapping( in mapping()
335 IO &IO, MachO::dylinker_command &LoadCommand) { in mapping()
DMachOEmitter.cpp173 size_t writeLoadCommandData<MachO::dylinker_command>(MachOYAML::LoadCommand &LC, in writeLoadCommandData()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
DMachOObjectFile.cpp780 if (Load.C.cmdsize < sizeof(MachO::dylinker_command)) in checkDyldCommand()
783 auto CommandOrErr = getStructOrErr<MachO::dylinker_command>(Obj, Load.Ptr); in checkDyldCommand()
786 MachO::dylinker_command D = CommandOrErr.get(); in checkDyldCommand()
787 if (D.name < sizeof(MachO::dylinker_command)) in checkDyldCommand()
4353 MachO::dylinker_command
4355 return getStruct<MachO::dylinker_command>(*this, L.Ptr); in getDylinkerCommand()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
DMachO.h515 MachO::dylinker_command
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp9032 static void PrintDyldLoadCommand(MachO::dylinker_command dyld, in PrintDyldLoadCommand()
9043 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command)) in PrintDyldLoadCommand()
10125 MachO::dylinker_command Dyld = Obj->getDylinkerCommand(Command); in PrintLoadCommands()