Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.def67 HANDLE_LOAD_COMMAND(LC_SOURCE_VERSION, 0x0000002Au, source_version_command)
102 LOAD_COMMAND_STRUCT(source_version_command)
H A DMachO.h811 struct source_version_command { struct
1208 inline void swapStruct(source_version_command &s) { in swapStruct()
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryWriter.cpp430 size += sizeof(source_version_command); in loadCommandsSize()
934 source_version_command sv; in writeLoadCommands()
936 sv.cmdsize = sizeof(source_version_command); in writeLoadCommands()
940 memcpy(lc, &sv, sizeof(source_version_command)); in writeLoadCommands()
941 lc += sizeof(source_version_command); in writeLoadCommands()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp513 void MappingTraits<MachO::source_version_command>::mapping( in mapping()
514 IO &IO, MachO::source_version_command &LoadCommand) { in mapping()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h521 MachO::source_version_command
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp1461 if (Load.C.cmdsize != sizeof(MachO::source_version_command)) { in MachOObjectFile()
4368 MachO::source_version_command
4370 return getStruct<MachO::source_version_command>(*this, L.Ptr); in getSourceVersionCommand()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp9176 static void PrintSourceVersionCommand(MachO::source_version_command sd) { in PrintSourceVersionCommand()
9179 if (sd.cmdsize != sizeof(struct MachO::source_version_command)) in PrintSourceVersionCommand()
10147 MachO::source_version_command Sd = Obj->getSourceVersionCommand(Command); in PrintLoadCommands()