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

References

tools/llvm-objdump/MachODump.cpp
10029   if (ld.cmd == MachO::LC_CODE_SIGNATURE)
10031   else if (ld.cmd == MachO::LC_SEGMENT_SPLIT_INFO)
10033   else if (ld.cmd == MachO::LC_FUNCTION_STARTS)
10035   else if (ld.cmd == MachO::LC_DATA_IN_CODE)
10037   else if (ld.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS)
10039   else if (ld.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT)
10042     outs() << "      cmd " << ld.cmd << " (?)\n";
10043   outs() << "  cmdsize " << ld.cmdsize;
10044   if (ld.cmdsize != sizeof(struct MachO::linkedit_data_command))
10048   outs() << "  dataoff " << ld.dataoff;
10049   if (ld.dataoff > object_size)
10053   outs() << " datasize " << ld.datasize;
10054   uint64_t big_size = ld.dataoff;
10055   big_size += ld.datasize;