Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/BinaryFormat/
H A DMachO.def66 HANDLE_LOAD_COMMAND(LC_MAIN, 0x80000028u, entry_point_command)
89 LOAD_COMMAND_STRUCT(entry_point_command)
H A DMachO.h912 struct entry_point_command { struct
1200 inline void swapStruct(entry_point_command &e) { in swapStruct()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryWriter.cpp431 size += sizeof(entry_point_command); in loadCommandsSize()
943 entry_point_command ep; in writeLoadCommands()
945 ep.cmdsize = sizeof(entry_point_command); in writeLoadCommands()
950 memcpy(lc, &ep, sizeof(entry_point_command)); in writeLoadCommands()
951 lc += sizeof(entry_point_command); in writeLoadCommands()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp353 void MappingTraits<MachO::entry_point_command>::mapping( in mapping()
354 IO &IO, MachO::entry_point_command &LoadCommand) { in mapping()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DMachO.h529 MachO::entry_point_command
/freebsd-12.1/contrib/llvm/lib/Object/
H A DMachOObjectFile.cpp1428 if (Load.C.cmdsize != sizeof(MachO::entry_point_command)) { in MachOObjectFile()
4334 MachO::entry_point_command
4336 return getStruct<MachO::entry_point_command>(*this, L.Ptr); in getEntryPointCommand()
/freebsd-12.1/contrib/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1618 MachO::entry_point_command LCmain = in dumpSymbolNamesFromObject()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp8765 static void PrintEntryPointCommand(MachO::entry_point_command ep) { in PrintEntryPointCommand()
8768 if (ep.cmdsize != sizeof(struct MachO::entry_point_command)) in PrintEntryPointCommand()
9716 MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command); in PrintLoadCommands()