Home
last modified time | relevance | path

Searched refs:source_version_command (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DMachO.def68 HANDLE_LOAD_COMMAND(LC_SOURCE_VERSION, 0x0000002Au, source_version_command)
103 LOAD_COMMAND_STRUCT(source_version_command)
H A DMachO.h797 struct source_version_command { struct
1194 inline void swapStruct(source_version_command &s) { in swapStruct()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryWriter.cpp426 size += sizeof(source_version_command); in loadCommandsSize()
928 source_version_command sv; in writeLoadCommands()
930 sv.cmdsize = sizeof(source_version_command); in writeLoadCommands()
934 memcpy(lc, &sv, sizeof(source_version_command)); in writeLoadCommands()
935 lc += sizeof(source_version_command); in writeLoadCommands()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp490 void MappingTraits<MachO::source_version_command>::mapping( in mapping()
491 IO &IO, MachO::source_version_command &LoadCommand) { in mapping()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DMachO.h527 MachO::source_version_command
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp1417 if (Load.C.cmdsize != sizeof(MachO::source_version_command)) { in MachOObjectFile()
4329 MachO::source_version_command
4331 return getStruct<MachO::source_version_command>(*this, L.Ptr); in getSourceVersionCommand()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp8743 static void PrintSourceVersionCommand(MachO::source_version_command sd) { in PrintSourceVersionCommand()
8746 if (sd.cmdsize != sizeof(struct MachO::source_version_command)) in PrintSourceVersionCommand()
9713 MachO::source_version_command Sd = Obj->getSourceVersionCommand(Command); in PrintLoadCommands()