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

References

tools/lldb/source/Core/Address.cpp
  418       section_sp->DumpName(s);
  419       s->Printf(" + %" PRIu64, m_offset);
  421       s->Address(m_offset, addr_size);
  426     s->Printf("(Section *)%p + ", static_cast<void *>(section_sp.get()));
  427     s->Address(m_offset, addr_size);
  434         s->Printf("%s[", module_sp->GetFileSpec().GetFilename().AsCString(
  437         s->Printf("%s[", "<Unknown>");
  444         return Dump(s, exe_scope, fallback_style, DumpStyleInvalid, addr_size);
  447     s->Address(file_addr, addr_size);
  449       s->PutChar(']');
  472         return Dump(s, exe_scope, fallback_style, DumpStyleInvalid, addr_size);
  475     s->Address(load_addr, addr_size);
  503                   s->PutCString(symbol_name);
  507                     s->Printf(" + %" PRIu64, delta);
  518           ReadCStringFromMemory(exe_scope, *this, s);
  530             ReadCStringFromMemory(exe_scope, so_addr, s);
  547                 s->PutCString("{ ");
  551                 func_sc.DumpStopContext(s, exe_scope, so_addr, true, true,
  560                   s->PutCString(", ");
  562                   ReadCStringFromMemory(exe_scope, so_addr, s);
  567                 s->PutCString(" }");
  586             s->PutChar('@');
  588             if (so_addr.Dump(s, exe_scope, DumpStyleResolvedDescription))
  596           s->PutCString("(uint32_t) ");
  597           DumpUInt(exe_scope, *this, 4, s);
  603           s->PutCString("(uint64_t) ");
  604           DumpUInt(exe_scope, *this, 8, s);
  610           s->PutCString("(uint128_t) ");
  611           DumpUInt(exe_scope, *this, 16, s);
  617             s->PutCString("(void *)");
  618             so_addr.Dump(s, exe_scope, DumpStyleLoadAddress,
  629                   s->PutCString(": ");
  630                   pointer_sc.DumpStopContext(s, exe_scope, so_addr, true, false,
  668               sc.DumpStopContext(s, exe_scope, *this, show_fullpaths,
  675               Dump(s, exe_scope, DumpStyleSectionNameOffset);
  682         return Dump(s, exe_scope, fallback_style, DumpStyleInvalid, addr_size);
  703         sc.GetDescription(s, eDescriptionLevelBrief, target);
  719               s->Indent();
  720               s->Printf("   Variable: id = {0x%8.8" PRIx64 "}, name = \"%s\"",
  724                 s->Printf(", type = \"%s\"", type->GetName().GetCString());
  726                 s->PutCString(", type = <unknown>");
  727               s->PutCString(", location = ");
  728               var->DumpLocationForAddress(s, *this);
  729               s->PutCString(", decl = ");
  730               var->GetDeclaration().DumpStopContext(s, false);
  731               s->EOL();
  738         return Dump(s, exe_scope, fallback_style, DumpStyleInvalid, addr_size);
  759               s->Address(dereferenced_load_addr, addr_size, " -> ", " ");
  760               s->Write(strm.GetString().data(), strm.GetSize());
  768       return Dump(s, exe_scope, fallback_style, DumpStyleInvalid, addr_size);