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

References

tools/llvm-objdump/MachODump.cpp
 4107   if (S == SectionRef())
 4111   Expected<StringRef> SecNameOrErr = S.getName();
 4117   DataRefImpl Ref = S.getRawDataRefImpl();
 4121   StringRef BytesStr = unwrapOrError(S.getContents(), O->getFileName());
 4124   for (uint32_t i = 0; i < S.getSize(); i += sizeof(uint64_t)) {
 4125     uint32_t left = S.getSize() - i;
 4129     if (i + sizeof(uint64_t) > S.getSize())
 4132     outs() << format("%016" PRIx64, S.getAddress() + i) << " ";
 4138     const char *name = get_symbol_64(i, S, info, n_value, p);
 4140       name = get_dyld_bind_info_symbolname(S.getAddress() + i, info);