Home | History | Annotate | Download | only in llvm-objdump

Lines Matching refs:Ep

7753 static void PrintEntryPointCommand(MachO::entry_point_command ep) {
7755 outs() << " cmdsize " << ep.cmdsize;
7756 if (ep.cmdsize != sizeof(struct MachO::entry_point_command))
7760 outs() << " entryoff " << ep.entryoff << "\n";
7761 outs() << " stacksize " << ep.stacksize << "\n";
8430 MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command);
8431 PrintEntryPointCommand(Ep);