reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/BinaryFormat/MachO.h
 1211 inline void swapStruct(entry_point_command &e) {
include/llvm/Object/MachO.h
  522   MachO::entry_point_command
lib/Object/MachOObjectFile.cpp
   68 static T getStruct(const MachOObjectFile &O, const char *P) {
   70   if (P < O.getData().begin() || P + sizeof(T) > O.getData().end())
   73   T Cmd;
   74   memcpy(&Cmd, P, sizeof(T));
 1469       if (Load.C.cmdsize != sizeof(MachO::entry_point_command)) {
 4352 MachO::entry_point_command
 4354   return getStruct<MachO::entry_point_command>(*this, L.Ptr);
lib/ObjectYAML/MachOYAML.cpp
  362     IO &IO, MachO::entry_point_command &LoadCommand) {
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
  435     size += sizeof(entry_point_command);
  949       entry_point_command ep;
  951       ep.cmdsize   = sizeof(entry_point_command);
  956       memcpy(lc, &ep, sizeof(entry_point_command));
  957       lc += sizeof(entry_point_command);
tools/llvm-nm/llvm-nm.cpp
 1659           MachO::entry_point_command LCmain =
tools/llvm-objdump/MachODump.cpp
 9183 static void PrintEntryPointCommand(MachO::entry_point_command ep) {
 9186   if (ep.cmdsize != sizeof(struct MachO::entry_point_command))
10135       MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command);
tools/obj2yaml/macho2yaml.cpp
  124   return LoadCmd.Ptr + sizeof(StructType);