Home
last modified time | relevance | path

Searched refs:entry_point_command (Results 1 – 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
HDMachO.def65 HANDLE_LOAD_COMMAND(LC_MAIN, 0x80000028u, entry_point_command)
88 LOAD_COMMAND_STRUCT(entry_point_command)
HDMachO.h918 struct entry_point_command { struct
1211 inline void swapStruct(entry_point_command &e) { in swapStruct()
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
HDMachONormalizedFileBinaryWriter.cpp435 size += sizeof(entry_point_command); in loadCommandsSize()
949 entry_point_command ep; in writeLoadCommands()
951 ep.cmdsize = sizeof(entry_point_command); in writeLoadCommands()
956 memcpy(lc, &ep, sizeof(entry_point_command)); in writeLoadCommands()
957 lc += sizeof(entry_point_command); in writeLoadCommands()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDMachOYAML.cpp361 void MappingTraits<MachO::entry_point_command>::mapping( in mapping()
362 IO &IO, MachO::entry_point_command &LoadCommand) { in mapping()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
HDMachO.h522 MachO::entry_point_command
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
HDMachOObjectFile.cpp1473 if (Load.C.cmdsize != sizeof(MachO::entry_point_command)) { in MachOObjectFile()
4356 MachO::entry_point_command
4358 return getStruct<MachO::entry_point_command>(*this, L.Ptr); in getEntryPointCommand()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
HDllvm-nm.cpp1662 MachO::entry_point_command LCmain = in dumpSymbolNamesFromObject()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
HDMachODump.cpp9176 static void PrintEntryPointCommand(MachO::entry_point_command ep) { in PrintEntryPointCommand()
9179 if (ep.cmdsize != sizeof(struct MachO::entry_point_command)) in PrintEntryPointCommand()
10128 MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command); in PrintLoadCommands()