Home
last modified time | relevance | path

Searched refs:linkedit_data_command (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.def53 HANDLE_LOAD_COMMAND(LC_CODE_SIGNATURE, 0x0000001Du, linkedit_data_command)
54 HANDLE_LOAD_COMMAND(LC_SEGMENT_SPLIT_INFO, 0x0000001Eu, linkedit_data_command)
63 HANDLE_LOAD_COMMAND(LC_FUNCTION_STARTS, 0x00000026u, linkedit_data_command)
66 HANDLE_LOAD_COMMAND(LC_DATA_IN_CODE, 0x00000029u, linkedit_data_command)
68 HANDLE_LOAD_COMMAND(LC_DYLIB_CODE_SIGN_DRS, 0x0000002Bu, linkedit_data_command)
72 HANDLE_LOAD_COMMAND(LC_LINKER_OPTIMIZATION_HINT, 0x0000002Eu, linkedit_data_command)
77 HANDLE_LOAD_COMMAND(LC_DYLD_EXPORTS_TRIE, 0x80000033u, linkedit_data_command)
78 HANDLE_LOAD_COMMAND(LC_DYLD_CHAINED_FIXUPS, 0x80000034u, linkedit_data_command)
80 HANDLE_LOAD_COMMAND(LC_ATOM_INFO, 0x00000036u, linkedit_data_command)
96 LOAD_COMMAND_STRUCT(linkedit_data_command)
H A DMachO.h801 struct linkedit_data_command { struct
1418 inline void swapStruct(linkedit_data_command &C) { in swapStruct()
/freebsd/contrib/llvm-project/lld/MachO/
H A DWriter.cpp161 uint32_t getSize() const override { return sizeof(linkedit_data_command); } in getSize()
164 auto *c = reinterpret_cast<linkedit_data_command *>(buf); in writeTo()
180 uint32_t getSize() const override { return sizeof(linkedit_data_command); } in getSize()
183 auto *c = reinterpret_cast<linkedit_data_command *>(buf); in writeTo()
571 uint32_t getSize() const override { return sizeof(linkedit_data_command); } in getSize()
574 auto *c = reinterpret_cast<linkedit_data_command *>(buf); in writeTo()
588 uint32_t getSize() const override { return sizeof(linkedit_data_command); } in getSize()
591 auto *c = reinterpret_cast<linkedit_data_command *>(buf); in writeTo()
605 uint32_t getSize() const override { return sizeof(linkedit_data_command); } in getSize()
608 auto *c = reinterpret_cast<linkedit_data_command *>(buf); in writeTo()
H A DInputFiles.cpp1110 const auto *c = reinterpret_cast<const linkedit_data_command *>(cmd); in getDataInCode()
1118 findCommand<linkedit_data_command>(buf, LC_LINKER_OPTIMIZATION_HINT)) in getOptimizationHints()
1731 findCommand<linkedit_data_command>(hdr, LC_DYLD_EXPORTS_TRIE); in DylibFile()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp606 if (Load.C.cmdsize < sizeof(MachO::linkedit_data_command)) in checkLinkeditDataCommand()
4651 MachO::linkedit_data_command
4876 MachO::linkedit_data_command
4882 MachO::linkedit_data_command Cmd; in getDataInCodeLoadCommand()
4884 Cmd.cmdsize = sizeof(MachO::linkedit_data_command); in getDataInCodeLoadCommand()
4890 MachO::linkedit_data_command
4897 MachO::linkedit_data_command Cmd; in getLinkOptHintsLoadCommand()
4899 Cmd.cmdsize = sizeof(MachO::linkedit_data_command); in getLinkOptHintsLoadCommand()
4975 Expected<std::optional<MachO::linkedit_data_command>>
4984 const MachO::linkedit_data_command &DyldChainedFixups = in getChainedFixupsLoadCommand()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOWriter.cpp103 const MachO::linkedit_data_command &LinkEditDataCommand = in totalSize()
399 const MachO::linkedit_data_command &LinkEditDataCommand = in writeLinkData()
575 const MachO::linkedit_data_command &ExportsTrieCmd = in writeExportsTrieData()
644 const MachO::linkedit_data_command &LinkEditDataCommand = in writeTail()
H A DMachOReader.cpp300 const MachO::linkedit_data_command &LC = in readLinkData()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp498 MachO::linkedit_data_command *FunctionStartsCmd = nullptr; in writeLinkEditData()
499 MachO::linkedit_data_command *ChainedFixupsCmd = nullptr; in writeLinkEditData()
500 MachO::linkedit_data_command *DyldExportsTrieCmd = nullptr; in writeLinkEditData()
501 MachO::linkedit_data_command *DataInCodeCmd = nullptr; in writeLinkEditData()
H A DMachOYAML.cpp442 void MappingTraits<MachO::linkedit_data_command>::mapping( in mapping()
443 IO &IO, MachO::linkedit_data_command &LoadCommand) { in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h653 MachO::linkedit_data_command
715 MachO::linkedit_data_command getDataInCodeLoadCommand() const;
716 MachO::linkedit_data_command getLinkOptHintsLoadCommand() const;
731 Expected<std::optional<MachO::linkedit_data_command>>
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp415 W.write<uint32_t>(sizeof(MachO::linkedit_data_command)); in writeLinkeditLoadCommand()
419 assert(W.OS.tell() - Start == sizeof(MachO::linkedit_data_command)); in writeLinkeditLoadCommand()
819 LoadCommandsSize += sizeof(MachO::linkedit_data_command); in writeObject()
827 LoadCommandsSize += sizeof(MachO::linkedit_data_command); in writeObject()
/freebsd/contrib/llvm-project/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c333 struct linkedit_data_command function_starts_cmd; in scan_macho_load_commands()
335 sizeof(struct linkedit_data_command)); in scan_macho_load_commands()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp816 MachO::linkedit_data_command LLC = Obj->getLinkeditDataLoadCommand(Load); in printMachODataInCode()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp304 MachO::linkedit_data_command LLC = in getSectionsAndSymbols()
1059 MachO::linkedit_data_command FunctionStartsLC = in PrintFunctionStarts()
1103 MachO::linkedit_data_command DIC = O->getDataInCodeLoadCommand(); in PrintDataInCodeTable()
1145 MachO::linkedit_data_command LohLC = O->getLinkOptHintsLoadCommand(); in PrintLinkOptHints()
9937 static void PrintLinkEditDataCommand(MachO::linkedit_data_command ld, in PrintLinkEditDataCommand()
9960 if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command)) in PrintLinkEditDataCommand()
10104 MachO::linkedit_data_command Ld = in PrintLoadCommands()
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1605 MachO::linkedit_data_command LLC = in dumpSymbolsFromDLInfoMachO()