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

References

tools/llvm-objdump/MachODump.cpp
 4162   if (S == SectionRef())
 4165   StringRef SectName = unwrapOrError(S.getName(), O->getFileName());
 4166   DataRefImpl Ref = S.getRawDataRefImpl();
 4170   StringRef BytesStr = unwrapOrError(S.getContents(), O->getFileName());
 4173   for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint32_t)) {
 4174     uint32_t left = S.getSize() - i;
 4178     if (i + sizeof(uint32_t) > S.getSize())
 4181     uint32_t Address = S.getAddress() + i;
 4188     const char *name = get_symbol_32(i, S, info, p);