Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DMachO.def76 HANDLE_LOAD_COMMAND(LC_BUILD_VERSION, 0x00000032u, build_version_command)
116 LOAD_COMMAND_STRUCT(build_version_command)
H A DMachO.h857 struct build_version_command { struct
1333 inline void swapStruct(build_version_command &C) { in swapStruct()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp266 void mapLoadCommandData<MachO::build_version_command>( in mapLoadCommandData()
608 void MappingTraits<MachO::build_version_command>::mapping( in mapping()
609 IO &IO, MachO::build_version_command &LoadCommand) { in mapping()
H A DMachOEmitter.cpp213 size_t writeLoadCommandData<MachO::build_version_command>( in writeLoadCommandData()
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A DMachOUtils.cpp400 SmallVector<MachO::build_version_command, 2> BuildVersionCmd; in generateDsymCompanion()
412 MachO::build_version_command Cmd; in generateDsymCompanion()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMachObjectWriter.cpp810 LoadCommandsSize += sizeof(MachO::build_version_command); in writeObject()
823 LoadCommandsSize += sizeof(MachO::build_version_command); in writeObject()
928 W.write<uint32_t>(sizeof(MachO::build_version_command)); in writeObject()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dmacho2yaml.cpp273 MachODumper::processLoadCommandData<MachO::build_version_command>( in processLoadCommandData()
277 auto Start = LoadCmd.Ptr + sizeof(MachO::build_version_command); in processLoadCommandData()
/llvm-project-15.0.7/lld/MachO/
H A DWriter.cpp455 return sizeof(build_version_command) + ntools * sizeof(build_tool_version); in getSize()
459 auto *c = reinterpret_cast<build_version_command *>(buf); in writeTo()
H A DInputFiles.cpp123 for (auto *cmd : findCommands<build_version_command>(hdr, LC_BUILD_VERSION)) { in getPlatformInfos()
/llvm-project-15.0.7/llvm/lib/Object/
H A DMachOObjectFile.cpp862 getStructOrErr<MachO::build_version_command>(Obj, Load.Ptr); in parseBuildVersionCommand()
865 MachO::build_version_command BVC = BVCOrErr.get(); in parseBuildVersionCommand()
867 sizeof(MachO::build_version_command) + in parseBuildVersionCommand()
872 auto Start = Load.Ptr + sizeof(MachO::build_version_command); in parseBuildVersionCommand()
4493 MachO::build_version_command
4495 return getStruct<MachO::build_version_command>(*this, L.Ptr); in getBuildVersionLoadCommand()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DMachO.h634 MachO::build_version_command
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DMachODumper.cpp861 MachO::build_version_command BVC = Obj->getBuildVersionLoadCommand(Load); in printMachOVersionMin()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm687 struct build_version_command build_vers;
688 if (ReadMemory(load_command_address, sizeof(struct build_version_command),
689 &build_vers) != sizeof(struct build_version_command))
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp9179 MachO::build_version_command bd, in PrintBuildVersionLoadCommand()
9184 sizeof(struct MachO::build_version_command) + in PrintBuildVersionLoadCommand()
10180 MachO::build_version_command Bv = in PrintLoadCommands()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp5031 llvm::MachO::build_version_command build_version;