reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
8945 if (dc.cmd == MachO::LC_DYLD_INFO) 8949 outs() << " cmdsize " << dc.cmdsize; 8950 if (dc.cmdsize != sizeof(struct MachO::dyld_info_command)) 8954 outs() << " rebase_off " << dc.rebase_off; 8955 if (dc.rebase_off > object_size) 8959 outs() << " rebase_size " << dc.rebase_size; 8961 big_size = dc.rebase_off; 8962 big_size += dc.rebase_size; 8967 outs() << " bind_off " << dc.bind_off; 8968 if (dc.bind_off > object_size) 8972 outs() << " bind_size " << dc.bind_size; 8973 big_size = dc.bind_off; 8974 big_size += dc.bind_size; 8979 outs() << " weak_bind_off " << dc.weak_bind_off; 8980 if (dc.weak_bind_off > object_size) 8984 outs() << " weak_bind_size " << dc.weak_bind_size; 8985 big_size = dc.weak_bind_off; 8986 big_size += dc.weak_bind_size; 8991 outs() << " lazy_bind_off " << dc.lazy_bind_off; 8992 if (dc.lazy_bind_off > object_size) 8996 outs() << " lazy_bind_size " << dc.lazy_bind_size; 8997 big_size = dc.lazy_bind_off; 8998 big_size += dc.lazy_bind_size; 9003 outs() << " export_off " << dc.export_off; 9004 if (dc.export_off > object_size) 9008 outs() << " export_size " << dc.export_size; 9009 big_size = dc.export_off; 9010 big_size += dc.export_size;