From: simon.marchi@polymtl.ca
To: gdb-patches@sourceware.org
Cc: Nick Alcock <nick.alcock@oracle.com>,
Weimin Pan <weimin.pan@oracle.com>,
Simon Marchi <simon.marchi@polymtl.ca>
Subject: [RFC PATCH 8/8] gdb: remove psymtab.{c,h}
Date: Tue, 3 Feb 2026 01:45:49 -0500 [thread overview]
Message-ID: <20260203065435.3092465-9-simon.marchi@polymtl.ca> (raw)
In-Reply-To: <20260203065435.3092465-1-simon.marchi@polymtl.ca>
From: Simon Marchi <simon.marchi@polymtl.ca>
The last user of psymtabs has been changed not to use them, remove them.
Change-Id: I58ae48c30e0303bcaa48298146d69fb8f059cb32
---
gdb/Makefile.in | 2 -
gdb/psymtab.c | 1575 -----------------------------------------------
gdb/psymtab.h | 691 ---------------------
3 files changed, 2268 deletions(-)
delete mode 100644 gdb/psymtab.c
delete mode 100644 gdb/psymtab.h
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 713c0920f6a1..70fefbe749c6 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1176,7 +1176,6 @@ COMMON_SFILES = \
progspace.c \
progspace-and-thread.c \
prologue-value.c \
- psymtab.c \
record.c \
record-btrace.c \
record-full.c \
@@ -1610,7 +1609,6 @@ HFILES_NO_SRCDIR = \
progspace-and-thread.h \
progspace.h \
prologue-value.h \
- psymtab.h \
python/py-color.h \
python/py-event.h \
python/py-events.h \
diff --git a/gdb/psymtab.c b/gdb/psymtab.c
deleted file mode 100644
index 59059616c1aa..000000000000
--- a/gdb/psymtab.c
+++ /dev/null
@@ -1,1575 +0,0 @@
-/* Partial symbol tables.
-
- Copyright (C) 2009-2026 Free Software Foundation, Inc.
-
- This file is part of GDB.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-#include "event-top.h"
-#include "symtab.h"
-#include "objfiles.h"
-#include "psymtab.h"
-#include "block.h"
-#include "filenames.h"
-#include "source.h"
-#include "gdbtypes.h"
-#include "ui-out.h"
-#include "command.h"
-#include "gdbsupport/gdb_regex.h"
-#include "dictionary.h"
-#include "language.h"
-#include "cp-support.h"
-#include "cli/cli-cmds.h"
-#include <algorithm>
-#include <set>
-#include "gdbsupport/buildargv.h"
-
-static const struct partial_symbol *lookup_partial_symbol
- (struct objfile *, struct partial_symtab *, const lookup_name_info &,
- int, domain_search_flags);
-
-static const char *psymtab_to_fullname (struct partial_symtab *ps);
-
-static const struct partial_symbol *find_pc_sect_psymbol
- (struct objfile *, struct partial_symtab *, CORE_ADDR,
- struct obj_section *);
-
-static struct compunit_symtab *psymtab_to_symtab (struct objfile *objfile,
- struct partial_symtab *pst);
-
-psymtab_storage::~psymtab_storage ()
-{
- partial_symtab *iter = psymtabs;
- while (iter != nullptr)
- {
- partial_symtab *next = iter->next;
- delete iter;
- iter = next;
- }
-}
-
-/* See psymtab.h. */
-
-void
-psymtab_storage::install_psymtab (partial_symtab *pst)
-{
- pst->next = psymtabs;
- psymtabs = pst;
-}
-
-\f
-
-/* See psymtab.h. */
-
-psymtab_storage::partial_symtab_range
-psymbol_functions::partial_symbols (struct objfile *objfile)
-{
- return m_partial_symtabs->range ();
-}
-
-/* Find which partial symtab contains PC and SECTION starting at psymtab PST.
- We may find a different psymtab than PST. See FIND_PC_SECT_PSYMTAB. */
-
-static struct partial_symtab *
-find_pc_sect_psymtab_closer (struct objfile *objfile,
- CORE_ADDR pc, struct obj_section *section,
- struct partial_symtab *pst,
- bound_minimal_symbol msymbol)
-{
- struct partial_symtab *tpst;
- struct partial_symtab *best_pst = pst;
- CORE_ADDR best_addr = pst->text_low (objfile);
-
- /* An objfile that has its functions reordered might have
- many partial symbol tables containing the PC, but
- we want the partial symbol table that contains the
- function containing the PC. */
- if (section == nullptr)
- return pst;
-
- if (msymbol.minsym == NULL)
- return pst;
-
- /* The code range of partial symtabs sometimes overlap, so, in
- the loop below, we need to check all partial symtabs and
- find the one that fits better for the given PC address. We
- select the partial symtab that contains a symbol whose
- address is closest to the PC address. By closest we mean
- that find_pc_sect_symbol returns the symbol with address
- that is closest and still less than the given PC. */
- for (tpst = pst; tpst != NULL; tpst = tpst->next)
- {
- if (pc >= tpst->text_low (objfile) && pc < tpst->text_high (objfile))
- {
- const struct partial_symbol *p;
- CORE_ADDR this_addr;
-
- /* NOTE: This assumes that every psymbol has a
- corresponding msymbol, which is not necessarily
- true; the debug info might be much richer than the
- object's symbol table. */
- p = find_pc_sect_psymbol (objfile, tpst, pc, section);
- if (p != NULL
- && (p->address (objfile) == msymbol.value_address ()))
- return tpst;
-
- /* Also accept the textlow value of a psymtab as a
- "symbol", to provide some support for partial
- symbol tables with line information but no debug
- symbols (e.g. those produced by an assembler). */
- if (p != NULL)
- this_addr = p->address (objfile);
- else
- this_addr = tpst->text_low (objfile);
-
- /* Check whether it is closer than our current
- BEST_ADDR. Since this symbol address is
- necessarily lower or equal to PC, the symbol closer
- to PC is the symbol which address is the highest.
- This way we return the psymtab which contains such
- best match symbol. This can help in cases where the
- symbol information/debuginfo is not complete, like
- for instance on IRIX6 with gcc, where no debug info
- is emitted for statics. (See also the nodebug.exp
- testcase.) */
- if (this_addr > best_addr)
- {
- best_addr = this_addr;
- best_pst = tpst;
- }
- }
- }
- return best_pst;
-}
-
-/* See psymtab.h. */
-
-struct partial_symtab *
-psymbol_functions::find_pc_sect_psymtab (struct objfile *objfile,
- CORE_ADDR pc,
- struct obj_section *section,
- bound_minimal_symbol msymbol)
-{
- for (partial_symtab *pst : partial_symbols (objfile))
- if (pc >= pst->text_low (objfile) && pc < pst->text_high (objfile))
- {
- struct partial_symtab *best_pst;
-
- best_pst = find_pc_sect_psymtab_closer (objfile, pc, section, pst,
- msymbol);
- if (best_pst != NULL)
- return best_pst;
- }
-
- return NULL;
-}
-
-/* Psymtab version of find_pc_sect_compunit_symtab. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-struct compunit_symtab *
-psymbol_functions::find_pc_sect_compunit_symtab (struct objfile *objfile,
- bound_minimal_symbol msymbol,
- CORE_ADDR pc,
- struct obj_section *section,
- int warn_if_readin)
-{
- struct partial_symtab *ps = find_pc_sect_psymtab (objfile,
- pc, section,
- msymbol);
- if (ps != NULL)
- {
- if (warn_if_readin && ps->readin_p (objfile))
- /* Might want to error() here (in case symtab is corrupt and
- will cause a core dump), but maybe we can successfully
- continue, so let's not. */
- warning (_("\
-(Internal error: pc %s in read in psymtab, but not in symtab.)\n"),
- paddress (objfile->arch (), pc));
- psymtab_to_symtab (objfile, ps);
- return ps->get_compunit_symtab (objfile);
- }
- return NULL;
-}
-
-/* Find which partial symbol within a psymtab matches PC and SECTION.
- Return NULL if none. */
-
-static const struct partial_symbol *
-find_pc_sect_psymbol (struct objfile *objfile,
- struct partial_symtab *psymtab, CORE_ADDR pc,
- struct obj_section *section)
-{
- const struct partial_symbol *best = NULL;
- CORE_ADDR best_pc;
- const CORE_ADDR textlow = psymtab->text_low (objfile);
-
- gdb_assert (psymtab != NULL);
-
- /* Cope with programs that start at address 0. */
- best_pc = (textlow != 0) ? textlow - 1 : 0;
-
- /* Search the global symbols as well as the static symbols, so that
- find_pc_partial_function doesn't use a minimal symbol and thus
- cache a bad endaddr. */
- for (const partial_symbol *p : psymtab->global_psymbols)
- {
- if (p->domain == VAR_DOMAIN
- && p->loc_class == LOC_BLOCK
- && pc >= p->address (objfile)
- && (p->address (objfile) > best_pc
- || (psymtab->text_low (objfile) == 0
- && best_pc == 0 && p->address (objfile) == 0)))
- {
- if (section != NULL) /* Match on a specific section. */
- {
- if (!matching_obj_sections (p->obj_section (objfile),
- section))
- continue;
- }
- best_pc = p->address (objfile);
- best = p;
- }
- }
-
- for (const partial_symbol *p : psymtab->static_psymbols)
- {
- if (p->domain == VAR_DOMAIN
- && p->loc_class == LOC_BLOCK
- && pc >= p->address (objfile)
- && (p->address (objfile) > best_pc
- || (psymtab->text_low (objfile) == 0
- && best_pc == 0 && p->address (objfile) == 0)))
- {
- if (section != NULL) /* Match on a specific section. */
- {
- if (!matching_obj_sections (p->obj_section (objfile),
- section))
- continue;
- }
- best_pc = p->address (objfile);
- best = p;
- }
- }
-
- return best;
-}
-
-/* Psymtab version of lookup_global_symbol_language. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-enum language
-psymbol_functions::lookup_global_symbol_language (struct objfile *objfile,
- const char *name,
- domain_search_flags domain,
- bool *symbol_found_p)
-{
- *symbol_found_p = false;
- if (objfile->sf == NULL)
- return language_unknown;
-
- lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
-
- for (partial_symtab *ps : partial_symbols (objfile))
- {
- const struct partial_symbol *psym;
- if (ps->readin_p (objfile))
- continue;
-
- psym = lookup_partial_symbol (objfile, ps, lookup_name, 1, domain);
- if (psym)
- {
- *symbol_found_p = true;
- return psym->ginfo.language ();
- }
- }
-
- return language_unknown;
-}
-
-/* Returns true if PSYM matches LOOKUP_NAME. */
-
-static bool
-psymbol_name_matches (const partial_symbol *psym,
- const lookup_name_info &lookup_name)
-{
- const language_defn *lang = language_def (psym->ginfo.language ());
- symbol_name_matcher_ftype *name_match
- = lang->get_symbol_name_matcher (lookup_name);
- return name_match (psym->ginfo.search_name (), lookup_name, NULL);
-}
-
-/* Look, in partial_symtab PST, for symbol whose natural name is
- LOOKUP_NAME. Check the global symbols if GLOBAL, the static
- symbols if not. */
-
-static const struct partial_symbol *
-lookup_partial_symbol (struct objfile *objfile,
- struct partial_symtab *pst,
- const lookup_name_info &lookup_name,
- int global, domain_search_flags domain)
-{
- const struct partial_symbol **start, **psym;
- const struct partial_symbol **top, **real_top, **bottom, **center;
- int length = (global
- ? pst->global_psymbols.size ()
- : pst->static_psymbols.size ());
- int do_linear_search = 1;
-
- if (length == 0)
- return NULL;
-
- start = (global ?
- &pst->global_psymbols[0] :
- &pst->static_psymbols[0]);
-
- if (global) /* This means we can use a binary search. */
- {
- do_linear_search = 0;
-
- /* Binary search. This search is guaranteed to end with center
- pointing at the earliest partial symbol whose name might be
- correct. At that point *all* partial symbols with an
- appropriate name will be checked against the correct
- domain. */
-
- bottom = start;
- top = start + length - 1;
- real_top = top;
- while (top > bottom)
- {
- center = bottom + (top - bottom) / 2;
-
- gdb_assert (center < top);
-
- if (strcmp_iw_ordered ((*center)->ginfo.search_name (),
- lookup_name.c_str ()) >= 0)
- {
- top = center;
- }
- else
- {
- bottom = center + 1;
- }
- }
-
- gdb_assert (top == bottom);
-
- /* For `case_sensitivity == case_sensitive_off' strcmp_iw_ordered will
- search more exactly than what matches SYMBOL_MATCHES_SEARCH_NAME. */
- while (top >= start && symbol_matches_search_name (&(*top)->ginfo,
- lookup_name))
- top--;
-
- /* Fixup to have a symbol which matches SYMBOL_MATCHES_SEARCH_NAME. */
- top++;
-
- while (top <= real_top && symbol_matches_search_name (&(*top)->ginfo,
- lookup_name))
- {
- if (search_flags_matches (domain, (*top)->domain))
- return *top;
- top++;
- }
- }
-
- /* Can't use a binary search or else we found during the binary search that
- we should also do a linear search. */
-
- if (do_linear_search)
- {
- for (psym = start; psym < start + length; psym++)
- {
- if (search_flags_matches (domain, (*psym)->domain)
- && symbol_matches_search_name (&(*psym)->ginfo, lookup_name))
- return *psym;
- }
- }
-
- return NULL;
-}
-
-/* Get the symbol table that corresponds to a partial_symtab.
- This is fast after the first time you do it.
- The result will be NULL if the primary symtab has no symbols,
- which can happen. Otherwise the result is the primary symtab
- that contains PST. */
-
-static struct compunit_symtab *
-psymtab_to_symtab (struct objfile *objfile, struct partial_symtab *pst)
-{
- /* If it is a shared psymtab, find an unshared psymtab that includes
- it. Any such psymtab will do. */
- while (pst->user != NULL)
- pst = pst->user;
-
- /* If it's been looked up before, return it. */
- if (pst->get_compunit_symtab (objfile))
- return pst->get_compunit_symtab (objfile);
-
- /* If it has not yet been read in, read it. */
- if (!pst->readin_p (objfile))
- {
- scoped_restore decrementer = increment_reading_symtab ();
-
- if (info_verbose)
- {
- gdb_printf (_("Reading in symbols for %s...\n"),
- pst->filename);
- gdb_flush (gdb_stdout);
- }
-
- pst->read_symtab (objfile);
- }
-
- return pst->get_compunit_symtab (objfile);
-}
-
-/* Psymtab version of find_last_source_symtab. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-struct symtab *
-psymbol_functions::find_last_source_symtab (struct objfile *ofp)
-{
- struct partial_symtab *cs_pst = NULL;
-
- for (partial_symtab *ps : partial_symbols (ofp))
- {
- const char *name = ps->filename;
- int len = strlen (name);
-
- if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
- || strcmp (name, "<<C++-namespaces>>") == 0)))
- cs_pst = ps;
- }
-
- if (cs_pst)
- {
- if (cs_pst->readin_p (ofp))
- {
- internal_error (_("select_source_symtab: "
- "readin pst found and no symtabs."));
- }
- else
- {
- struct compunit_symtab *cust = psymtab_to_symtab (ofp, cs_pst);
-
- if (cust == NULL)
- return NULL;
- return cust->primary_filetab ();
- }
- }
- return NULL;
-}
-
-/* Psymtab version of forget_cached_source_info. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-void
-psymbol_functions::forget_cached_source_info (struct objfile *objfile)
-{
- for (partial_symtab *pst : partial_symbols (objfile))
- {
- if (pst->fullname != NULL)
- {
- xfree (pst->fullname);
- pst->fullname = NULL;
- }
- }
-}
-
-static void
-print_partial_symbols (struct gdbarch *gdbarch, struct objfile *objfile,
- const std::vector<const partial_symbol *> &symbols,
- const char *what, struct ui_file *outfile)
-{
- gdb_printf (outfile, " %s partial symbols:\n", what);
- for (const partial_symbol *p : symbols)
- {
- QUIT;
- gdb_printf (outfile, " `%s'", p->ginfo.linkage_name ());
- if (p->ginfo.demangled_name () != NULL)
- {
- gdb_printf (outfile, " `%s'",
- p->ginfo.demangled_name ());
- }
- gdb_puts (", ", outfile);
- switch (p->domain)
- {
- case UNDEF_DOMAIN:
- gdb_puts ("undefined domain, ", outfile);
- break;
- case VAR_DOMAIN:
- /* This is the usual thing -- don't print it. */
- break;
- case STRUCT_DOMAIN:
- gdb_puts ("struct domain, ", outfile);
- break;
- case MODULE_DOMAIN:
- gdb_puts ("module domain, ", outfile);
- break;
- case LABEL_DOMAIN:
- gdb_puts ("label domain, ", outfile);
- break;
- case COMMON_BLOCK_DOMAIN:
- gdb_puts ("common block domain, ", outfile);
- break;
- case TYPE_DOMAIN:
- gdb_puts ("type domain, ", outfile);
- break;
- case FUNCTION_DOMAIN:
- gdb_puts ("function domain, ", outfile);
- break;
- default:
- gdb_puts ("<invalid domain>, ", outfile);
- break;
- }
- switch (p->loc_class)
- {
- case LOC_UNDEF:
- gdb_puts ("undefined", outfile);
- break;
- case LOC_CONST:
- gdb_puts ("constant int", outfile);
- break;
- case LOC_STATIC:
- gdb_puts ("static", outfile);
- break;
- case LOC_REGISTER:
- gdb_puts ("register", outfile);
- break;
- case LOC_ARG:
- gdb_puts ("pass by value", outfile);
- break;
- case LOC_REF_ARG:
- gdb_puts ("pass by reference", outfile);
- break;
- case LOC_REGPARM_ADDR:
- gdb_puts ("register address parameter", outfile);
- break;
- case LOC_LOCAL:
- gdb_puts ("stack parameter", outfile);
- break;
- case LOC_TYPEDEF:
- gdb_puts ("type", outfile);
- break;
- case LOC_LABEL:
- gdb_puts ("label", outfile);
- break;
- case LOC_BLOCK:
- gdb_puts ("function", outfile);
- break;
- case LOC_CONST_BYTES:
- gdb_puts ("constant bytes", outfile);
- break;
- case LOC_UNRESOLVED:
- gdb_puts ("unresolved", outfile);
- break;
- case LOC_OPTIMIZED_OUT:
- gdb_puts ("optimized out", outfile);
- break;
- case LOC_COMPUTED:
- gdb_puts ("computed at runtime", outfile);
- break;
- default:
- gdb_puts ("<invalid location>", outfile);
- break;
- }
- gdb_puts (", ", outfile);
- gdb_puts (paddress (gdbarch, CORE_ADDR (p->unrelocated_address ())),
- outfile);
- gdb_printf (outfile, "\n");
- }
-}
-
-static void
-dump_psymtab (struct objfile *objfile, struct partial_symtab *psymtab,
- struct ui_file *outfile)
-{
- struct gdbarch *gdbarch = objfile->arch ();
- int i;
-
- if (psymtab->anonymous)
- {
- gdb_printf (outfile, "\nAnonymous partial symtab (%s) ",
- psymtab->filename);
- }
- else
- {
- gdb_printf (outfile, "\nPartial symtab for source file %s ",
- psymtab->filename);
- }
- gdb_printf (outfile, "(object %s)\n\n",
- host_address_to_string (psymtab));
- gdb_printf (outfile, " Read from object file %s (%s)\n",
- objfile_name (objfile),
- host_address_to_string (objfile));
-
- if (psymtab->readin_p (objfile))
- gdb_printf
- (outfile,
- " Full symtab was read (at %s)\n",
- host_address_to_string (psymtab->get_compunit_symtab (objfile)));
-
- gdb_printf (outfile, " Symbols cover text addresses ");
- gdb_puts (paddress (gdbarch, psymtab->text_low (objfile)), outfile);
- gdb_printf (outfile, "-");
- gdb_puts (paddress (gdbarch, psymtab->text_high (objfile)), outfile);
- gdb_printf (outfile, "\n");
- gdb_printf (outfile, " Depends on %d other partial symtabs.\n",
- psymtab->number_of_dependencies);
- for (i = 0; i < psymtab->number_of_dependencies; i++)
- gdb_printf (outfile, " %d %s\n", i,
- host_address_to_string (psymtab->dependencies[i]));
- if (psymtab->user != NULL)
- gdb_printf (outfile, " Shared partial symtab with user %s\n",
- host_address_to_string (psymtab->user));
- if (!psymtab->global_psymbols.empty ())
- {
- print_partial_symbols
- (gdbarch, objfile, psymtab->global_psymbols,
- "Global", outfile);
- }
- if (!psymtab->static_psymbols.empty ())
- {
- print_partial_symbols
- (gdbarch, objfile, psymtab->static_psymbols,
- "Static", outfile);
- }
- gdb_printf (outfile, "\n");
-}
-
-/* Count the number of partial symbols in OBJFILE. */
-
-int
-psymbol_functions::count_psyms ()
-{
- int count = 0;
- for (partial_symtab *pst : m_partial_symtabs->range ())
- {
- count += pst->global_psymbols.size ();
- count += pst->static_psymbols.size ();
- }
- return count;
-}
-
-/* Psymtab version of print_stats. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-void
-psymbol_functions::print_stats (struct objfile *objfile, bool print_bcache)
-{
- int i;
-
- if (!print_bcache)
- {
- int n_psyms = count_psyms ();
- if (n_psyms > 0)
- gdb_printf (_(" Number of \"partial\" symbols read: %d\n"),
- n_psyms);
-
- i = 0;
- for (partial_symtab *ps : partial_symbols (objfile))
- {
- if (!ps->readin_p (objfile))
- i++;
- }
- gdb_printf (_(" Number of psym tables (not yet expanded): %d\n"),
- i);
- gdb_printf (_(" Total memory used for psymbol cache: %d\n"),
- m_partial_symtabs->psymbol_cache.memory_used ());
- }
- else
- {
- gdb_printf (_("Psymbol byte cache statistics:\n"));
- m_partial_symtabs->psymbol_cache.print_statistics
- ("partial symbol cache");
- }
-}
-
-/* Psymtab version of dump. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-void
-psymbol_functions::dump (struct objfile *objfile)
-{
- struct partial_symtab *psymtab;
-
- if (m_partial_symtabs->psymtabs)
- {
- gdb_printf ("Psymtabs:\n");
- for (psymtab = m_partial_symtabs->psymtabs;
- psymtab != NULL;
- psymtab = psymtab->next)
- gdb_printf ("%s at %s\n",
- psymtab->filename,
- host_address_to_string (psymtab));
- gdb_printf ("\n\n");
- }
-}
-
-/* Psymtab version of expand_all_symtabs. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-void
-psymbol_functions::expand_all_symtabs (struct objfile *objfile)
-{
- for (partial_symtab *psymtab : partial_symbols (objfile))
- psymtab_to_symtab (objfile, psymtab);
-}
-
-/* Psymtab version of map_symbol_filenames. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-void
-psymbol_functions::map_symbol_filenames (objfile *objfile,
- symbol_filename_listener fun,
- bool need_fullname)
-{
- for (partial_symtab *ps : partial_symbols (objfile))
- {
- const char *fullname;
-
- if (ps->readin_p (objfile))
- continue;
-
- /* We can skip shared psymtabs here, because any file name will be
- attached to the unshared psymtab. */
- if (ps->user != NULL)
- continue;
-
- /* Anonymous psymtabs don't have a file name. */
- if (ps->anonymous)
- continue;
-
- QUIT;
- if (need_fullname)
- fullname = psymtab_to_fullname (ps);
- else
- fullname = NULL;
- fun (ps->filename, fullname);
- }
-}
-
-/* Finds the fullname that a partial_symtab represents.
-
- If this functions finds the fullname, it will save it in ps->fullname
- and it will also return the value.
-
- If this function fails to find the file that this partial_symtab represents,
- NULL will be returned and ps->fullname will be set to NULL. */
-
-static const char *
-psymtab_to_fullname (struct partial_symtab *ps)
-{
- gdb_assert (!ps->anonymous);
-
- /* Use cached copy if we have it.
- We rely on forget_cached_source_info being called appropriately
- to handle cases like the file being moved. */
- if (ps->fullname == NULL)
- {
- gdb::unique_xmalloc_ptr<char> fullname
- = find_source_or_rewrite (ps->filename, ps->dirname);
- ps->fullname = fullname.release ();
- }
-
- return ps->fullname;
-}
-
-/* A helper for psymbol_functions::search that handles searching
- included psymtabs. This returns true if a symbol is found, and
- false otherwise. It also updates the 'searched_flag' on the
- various psymtabs that it searches. */
-
-static bool
-recursively_search_psymtabs (partial_symtab *ps, objfile *objfile,
- block_search_flags search_flags,
- domain_search_flags domain,
- const lookup_name_info &lookup_name,
- search_symtabs_symbol_matcher sym_matcher)
-{
- int keep_going = 1;
- enum psymtab_search_status result = PST_SEARCHED_AND_NOT_FOUND;
- int i;
-
- if (ps->searched_flag != PST_NOT_SEARCHED)
- return ps->searched_flag == PST_SEARCHED_AND_FOUND;
-
- /* Recurse into shared psymtabs first, because they may have already
- been searched, and this could save some time. */
- for (i = 0; i < ps->number_of_dependencies; ++i)
- {
- int r;
-
- /* Skip non-shared dependencies, these are handled elsewhere. */
- if (ps->dependencies[i]->user == NULL)
- continue;
-
- r = recursively_search_psymtabs (ps->dependencies[i],
- objfile, search_flags, domain,
- lookup_name, sym_matcher);
- if (r != 0)
- {
- ps->searched_flag = PST_SEARCHED_AND_FOUND;
- return true;
- }
- }
-
- const partial_symbol **gbound = (ps->global_psymbols.data ()
- + ps->global_psymbols.size ());
- const partial_symbol **sbound = (ps->static_psymbols.data ()
- + ps->static_psymbols.size ());
- const partial_symbol **bound = gbound;
-
- /* Go through all of the symbols stored in a partial
- symtab in one loop. */
- const partial_symbol **psym = ps->global_psymbols.data ();
-
- if ((search_flags & SEARCH_GLOBAL_BLOCK) == 0)
- {
- if (ps->static_psymbols.empty ())
- keep_going = 0;
- else
- {
- psym = ps->static_psymbols.data ();
- bound = sbound;
- }
- }
-
- while (keep_going)
- {
- if (psym >= bound)
- {
- if (bound == gbound && !ps->static_psymbols.empty ()
- && (search_flags & SEARCH_STATIC_BLOCK) != 0)
- {
- psym = ps->static_psymbols.data ();
- bound = sbound;
- }
- else
- keep_going = 0;
- continue;
- }
- else
- {
- QUIT;
-
- if (search_flags_matches (domain, (*psym)->domain)
- && psymbol_name_matches (*psym, lookup_name)
- && (sym_matcher == NULL
- || sym_matcher ((*psym)->ginfo.search_name ())))
- {
- /* Found a match, so notify our caller. */
- result = PST_SEARCHED_AND_FOUND;
- keep_going = 0;
- }
- }
- psym++;
- }
-
- ps->searched_flag = result;
- return result == PST_SEARCHED_AND_FOUND;
-}
-
-/* Psymtab version of search. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-bool
-psymbol_functions::search
- (struct objfile *objfile,
- search_symtabs_file_matcher file_matcher,
- const lookup_name_info *lookup_name,
- search_symtabs_symbol_matcher symbol_matcher,
- search_symtabs_expansion_listener listener,
- block_search_flags search_flags,
- domain_search_flags domain,
- search_symtabs_lang_matcher lang_matcher ATTRIBUTE_UNUSED)
-{
- /* Clear the search flags. */
- for (partial_symtab *ps : partial_symbols (objfile))
- ps->searched_flag = PST_NOT_SEARCHED;
-
- std::optional<lookup_name_info> psym_lookup_name;
- if (lookup_name != nullptr)
- psym_lookup_name = lookup_name->make_ignore_params ();
-
- /* This invariant is documented in quick-functions.h. */
- gdb_assert (lookup_name != nullptr || symbol_matcher == nullptr);
-
- for (partial_symtab *ps : m_partial_symtabs->range ())
- {
- QUIT;
-
- if (file_matcher)
- {
- bool match;
-
- if (ps->anonymous)
- continue;
-
- match = file_matcher (ps->filename, false);
- if (!match)
- {
- /* Before we invoke realpath, which can get expensive when many
- files are involved, do a quick comparison of the basenames. */
- if (basenames_may_differ
- || file_matcher (lbasename (ps->filename), true))
- match = file_matcher (psymtab_to_fullname (ps), false);
- }
- if (!match)
- continue;
- }
-
- if (lookup_name == nullptr
- || recursively_search_psymtabs (ps, objfile, search_flags,
- domain, *psym_lookup_name,
- symbol_matcher))
- {
- compunit_symtab *cust = psymtab_to_symtab (objfile, ps);
-
- if (cust != nullptr && listener != nullptr)
- if (!listener (cust))
- return false;
- }
- }
-
- return true;
-}
-
-/* Psymtab version of has_symbols. See its definition in
- the definition of quick_symbol_functions in symfile.h. */
-
-bool
-psymbol_functions::has_symbols (struct objfile *objfile)
-{
- return m_partial_symtabs->psymtabs != NULL;
-}
-
-/* See quick_symbol_functions::has_unexpanded_symtabs in quick-symbol.h. */
-
-bool
-psymbol_functions::has_unexpanded_symtabs (struct objfile *objfile)
-{
- for (partial_symtab *psymtab : partial_symbols (objfile))
- {
- /* Is this already expanded? */
- if (psymtab->readin_p (objfile))
- continue;
-
- /* It has not yet been expanded. */
- return true;
- }
-
- return false;
-}
-
-\f
-
-/* Partially fill a partial symtab. It will be completely filled at
- the end of the symbol list. */
-
-partial_symtab::partial_symtab (const char *filename,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd,
- unrelocated_addr textlow)
- : partial_symtab (filename, partial_symtabs, objfile_per_bfd)
-{
- set_text_low (textlow);
- set_text_high (unrelocated_text_low ()); /* default */
-}
-
-/* Perform "finishing up" operations of a partial symtab. */
-
-void
-partial_symtab::end ()
-{
- global_psymbols.shrink_to_fit ();
- static_psymbols.shrink_to_fit ();
-
- /* Sort the global list; don't sort the static list. */
- std::sort (global_psymbols.begin (),
- global_psymbols.end (),
- [] (const partial_symbol *s1, const partial_symbol *s2)
- {
- return strcmp_iw_ordered (s1->ginfo.search_name (),
- s2->ginfo.search_name ()) < 0;
- });
-}
-
-/* See psymtab.h. */
-
-unsigned long
-psymbol_bcache::hash (const void *addr, int length)
-{
- unsigned long h = 0;
- struct partial_symbol *psymbol = (struct partial_symbol *) addr;
- unsigned int lang = psymbol->ginfo.language ();
- unsigned int domain = psymbol->domain;
- unsigned int loc_class = psymbol->loc_class;
-
- h = fast_hash (&psymbol->ginfo.m_value, sizeof (psymbol->ginfo.m_value), h);
- h = fast_hash (&lang, sizeof (unsigned int), h);
- h = fast_hash (&domain, sizeof (unsigned int), h);
- h = fast_hash (&loc_class, sizeof (unsigned int), h);
- /* Note that psymbol names are interned via compute_and_set_names, so
- there's no need to hash the contents of the name here. */
- h = fast_hash (&psymbol->ginfo.m_name, sizeof (psymbol->ginfo.m_name), h);
-
- return h;
-}
-
-/* See psymtab.h. */
-
-int
-psymbol_bcache::compare (const void *addr1, const void *addr2, int length)
-{
- struct partial_symbol *sym1 = (struct partial_symbol *) addr1;
- struct partial_symbol *sym2 = (struct partial_symbol *) addr2;
-
- return (memcmp (&sym1->ginfo.m_value, &sym2->ginfo.m_value,
- sizeof (sym1->ginfo.m_value)) == 0
- && sym1->ginfo.language () == sym2->ginfo.language ()
- && sym1->domain == sym2->domain
- && sym1->loc_class == sym2->loc_class
- /* Note that psymbol names are interned via
- compute_and_set_names, so there's no need to compare the
- contents of the name here. */
- && sym1->ginfo.linkage_name () == sym2->ginfo.linkage_name ());
-}
-
-/* See psymtab.h. */
-
-void
-partial_symtab::add_psymbol (const partial_symbol &psymbol,
- psymbol_placement where,
- psymtab_storage *partial_symtabs,
- struct objfile *objfile)
-{
- bool added;
-
- /* Stash the partial symbol away in the cache. */
- const partial_symbol *psym = partial_symtabs->psymbol_cache.insert (psymbol,
- &added);
-
- /* Do not duplicate global partial symbols. */
- if (where == psymbol_placement::GLOBAL && !added)
- return;
-
- /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
- std::vector<const partial_symbol *> &list
- = (where == psymbol_placement::STATIC
- ? static_psymbols
- : global_psymbols);
- list.push_back (psym);
-}
-
-/* See psymtab.h. */
-
-void
-partial_symtab::add_psymbol (std::string_view name, bool copy_name,
- domain_enum domain,
- location_class loc_class,
- int section,
- psymbol_placement where,
- unrelocated_addr coreaddr,
- enum language language,
- psymtab_storage *partial_symtabs,
- struct objfile *objfile)
-{
- struct partial_symbol psymbol;
- memset (&psymbol, 0, sizeof (psymbol));
-
- psymbol.set_unrelocated_address (coreaddr);
- psymbol.ginfo.set_section_index (section);
- psymbol.domain = domain;
- psymbol.loc_class = loc_class;
- psymbol.ginfo.set_language (language, partial_symtabs->obstack ());
- psymbol.ginfo.compute_and_set_names (name, copy_name, objfile->per_bfd);
-
- add_psymbol (psymbol, where, partial_symtabs, objfile);
-}
-
-/* See psymtab.h. */
-
-partial_symtab::partial_symtab (const char *filename_,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd)
- : searched_flag (PST_NOT_SEARCHED),
- text_low_valid (0),
- text_high_valid (0)
-{
- partial_symtabs->install_psymtab (this);
-
- filename = objfile_per_bfd->intern (filename_);
-
- if (symtab_create_debug >= 1)
- {
- /* Be a bit clever with debugging messages, and don't print objfile
- every time, only when it changes. */
- static std::string last_bfd_name;
- const char *this_bfd_name
- = bfd_get_filename (objfile_per_bfd->get_bfd ());
-
- if (last_bfd_name.empty () || last_bfd_name != this_bfd_name)
- {
- last_bfd_name = this_bfd_name;
-
- symtab_create_debug_printf ("creating one or more psymtabs for %s",
- this_bfd_name);
- }
-
- symtab_create_debug_printf ("created psymtab %s for module %s",
- host_address_to_string (this), filename);
- }
-}
-
-/* See psymtab.h. */
-
-void
-partial_symtab::expand_dependencies (struct objfile *objfile)
-{
- for (int i = 0; i < number_of_dependencies; ++i)
- {
- if (!dependencies[i]->readin_p (objfile)
- && dependencies[i]->user == NULL)
- {
- /* Inform about additional files to be read in. */
- if (info_verbose)
- {
- gdb_puts (" ");
- gdb_stdout->wrap_here (0);
- gdb_puts ("and ");
- gdb_stdout->wrap_here (0);
- gdb_printf ("%s...", dependencies[i]->filename);
- gdb_flush (gdb_stdout);
- }
- dependencies[i]->expand_psymtab (objfile);
- }
- }
-}
-
-
-void
-psymtab_storage::discard_psymtab (struct partial_symtab *pst)
-{
- struct partial_symtab **prev_pst;
-
- /* From dbxread.c:
- Empty psymtabs happen as a result of header files which don't
- have any symbols in them. There can be a lot of them. But this
- check is wrong, in that a psymtab with N_SLINE entries but
- nothing else is not empty, but we don't realize that. Fixing
- that without slowing things down might be tricky. */
-
- /* First, snip it out of the psymtab chain. */
-
- prev_pst = &psymtabs;
- while ((*prev_pst) != pst)
- prev_pst = &((*prev_pst)->next);
- (*prev_pst) = pst->next;
- delete pst;
-}
-
-\f
-
-static void
-maintenance_print_psymbols (const char *args, int from_tty)
-{
- struct ui_file *outfile = gdb_stdout;
- char *address_arg = NULL, *source_arg = NULL, *objfile_arg = NULL;
- int i, outfile_idx, found;
- CORE_ADDR pc = 0;
- struct obj_section *section = NULL;
-
- dont_repeat ();
-
- gdb_argv argv (args);
-
- for (i = 0; argv != NULL && argv[i] != NULL; ++i)
- {
- if (strcmp (argv[i], "-pc") == 0)
- {
- if (argv[i + 1] == NULL)
- error (_("Missing pc value"));
- address_arg = argv[++i];
- }
- else if (strcmp (argv[i], "-source") == 0)
- {
- if (argv[i + 1] == NULL)
- error (_("Missing source file"));
- source_arg = argv[++i];
- }
- else if (strcmp (argv[i], "-objfile") == 0)
- {
- if (argv[i + 1] == NULL)
- error (_("Missing objfile name"));
- objfile_arg = argv[++i];
- }
- else if (strcmp (argv[i], "--") == 0)
- {
- /* End of options. */
- ++i;
- break;
- }
- else if (argv[i][0] == '-')
- {
- /* Future proofing: Don't allow OUTFILE to begin with "-". */
- error (_("Unknown option: %s"), argv[i]);
- }
- else
- break;
- }
- outfile_idx = i;
-
- if (address_arg != NULL && source_arg != NULL)
- error (_("Must specify at most one of -pc and -source"));
-
- stdio_file arg_outfile;
-
- if (argv != NULL && argv[outfile_idx] != NULL)
- {
- if (argv[outfile_idx + 1] != NULL)
- error (_("Junk at end of command"));
- gdb::unique_xmalloc_ptr<char> outfile_name
- = gdb_rl_tilde_expand (argv[outfile_idx]);
- if (!arg_outfile.open (outfile_name.get (), FOPEN_WT))
- perror_with_name (outfile_name.get ());
- outfile = &arg_outfile;
- }
-
- if (address_arg != NULL)
- {
- pc = parse_and_eval_address (address_arg);
- /* If we fail to find a section, that's ok, try the lookup anyway. */
- section = find_pc_section (pc);
- }
-
- found = 0;
- for (objfile &objfile : current_program_space->objfiles ())
- {
- int printed_objfile_header = 0;
- int print_for_objfile = 1;
-
- QUIT;
- if (objfile_arg != NULL)
- print_for_objfile
- = compare_filenames_for_search (objfile_name (&objfile),
- objfile_arg);
- if (!print_for_objfile)
- continue;
-
- for (const auto &iter : objfile.qf)
- {
- psymbol_functions *psf
- = dynamic_cast<psymbol_functions *> (iter.get ());
- if (psf == nullptr)
- continue;
-
- if (address_arg != NULL)
- {
- bound_minimal_symbol msymbol;
-
- /* We don't assume each pc has a unique objfile (this is for
- debugging). */
- struct partial_symtab *ps
- = psf->find_pc_sect_psymtab (&objfile, pc, section, msymbol);
- if (ps != NULL)
- {
- if (!printed_objfile_header)
- {
- outfile->printf ("\nPartial symtabs for objfile %s\n",
- objfile_name (&objfile));
- printed_objfile_header = 1;
- }
- dump_psymtab (&objfile, ps, outfile);
- found = 1;
- }
- }
- else
- {
- for (partial_symtab *ps : psf->partial_symbols (&objfile))
- {
- int print_for_source = 0;
-
- QUIT;
- if (source_arg != NULL)
- {
- print_for_source
- = compare_filenames_for_search (ps->filename, source_arg);
- found = 1;
- }
- if (source_arg == NULL
- || print_for_source)
- {
- if (!printed_objfile_header)
- {
- outfile->printf ("\nPartial symtabs for objfile %s\n",
- objfile_name (&objfile));
- printed_objfile_header = 1;
- }
- dump_psymtab (&objfile, ps, outfile);
- }
- }
- }
- }
- }
-
- if (!found)
- {
- if (address_arg != NULL)
- error (_("No partial symtab for address: %s"), address_arg);
- if (source_arg != NULL)
- error (_("No partial symtab for source file: %s"), source_arg);
- }
-}
-
-/* List all the partial symbol tables whose names match REGEXP (optional). */
-
-static void
-maintenance_info_psymtabs (const char *regexp, int from_tty)
-{
- if (regexp)
- re_comp (regexp);
-
- for (struct program_space *pspace : program_spaces)
- for (objfile &objfile : pspace->objfiles ())
- {
- struct gdbarch *gdbarch = objfile.arch ();
-
- /* We don't want to print anything for this objfile until we
- actually find a symtab whose name matches. */
- int printed_objfile_start = 0;
-
- for (const auto &iter : objfile.qf)
- {
- psymbol_functions *psf
- = dynamic_cast<psymbol_functions *> (iter.get ());
- if (psf == nullptr)
- continue;
- for (partial_symtab *psymtab : psf->partial_symbols (&objfile))
- {
- QUIT;
-
- if (! regexp
- || re_exec (psymtab->filename))
- {
- if (! printed_objfile_start)
- {
- gdb_printf ("{ objfile %s ", objfile_name (&objfile));
- gdb_stdout->wrap_here (2);
- gdb_printf ("((struct objfile *) %s)\n",
- host_address_to_string (&objfile));
- printed_objfile_start = 1;
- }
-
- gdb_printf (" { psymtab %s ", psymtab->filename);
- gdb_stdout->wrap_here (4);
- gdb_printf ("((struct partial_symtab *) %s)\n",
- host_address_to_string (psymtab));
-
- gdb_printf (" readin %s\n",
- psymtab->readin_p (&objfile) ? "yes" : "no");
- gdb_printf (" fullname %s\n",
- psymtab->fullname
- ? psymtab->fullname : "(null)");
- gdb_printf (" text addresses ");
- gdb_puts (paddress (gdbarch,
- psymtab->text_low (&objfile)));
- gdb_printf (" -- ");
- gdb_puts (paddress (gdbarch,
- psymtab->text_high (&objfile)));
- gdb_printf ("\n");
- gdb_printf (" globals ");
- if (!psymtab->global_psymbols.empty ())
- gdb_printf
- ("(* (struct partial_symbol **) %s @ %d)\n",
- host_address_to_string (psymtab->global_psymbols.data ()),
- (int) psymtab->global_psymbols.size ());
- else
- gdb_printf ("(none)\n");
- gdb_printf (" statics ");
- if (!psymtab->static_psymbols.empty ())
- gdb_printf
- ("(* (struct partial_symbol **) %s @ %d)\n",
- host_address_to_string (psymtab->static_psymbols.data ()),
- (int) psymtab->static_psymbols.size ());
- else
- gdb_printf ("(none)\n");
- if (psymtab->user)
- gdb_printf (" user %s "
- "((struct partial_symtab *) %s)\n",
- psymtab->user->filename,
- host_address_to_string (psymtab->user));
- gdb_printf (" dependencies ");
- if (psymtab->number_of_dependencies)
- {
- int i;
-
- gdb_printf ("{\n");
- for (i = 0; i < psymtab->number_of_dependencies; i++)
- {
- struct partial_symtab *dep = psymtab->dependencies[i];
-
- /* Note the string concatenation there --- no
- comma. */
- gdb_printf (" psymtab %s "
- "((struct partial_symtab *) %s)\n",
- dep->filename,
- host_address_to_string (dep));
- }
- gdb_printf (" }\n");
- }
- else
- gdb_printf ("(none)\n");
- gdb_printf (" }\n");
- }
- }
- }
-
- if (printed_objfile_start)
- gdb_printf ("}\n");
- }
-}
-
-/* Check consistency of currently expanded psymtabs vs symtabs. */
-
-static void
-maintenance_check_psymtabs (const char *ignore, int from_tty)
-{
- struct symbol *sym;
- struct compunit_symtab *cust = NULL;
- const struct blockvector *bv;
- const struct block *b;
-
- for (objfile &objfile : current_program_space->objfiles ())
- {
- for (const auto &iter : objfile.qf)
- {
- psymbol_functions *psf
- = dynamic_cast<psymbol_functions *> (iter.get ());
- if (psf == nullptr)
- continue;
-
- for (partial_symtab *ps : psf->partial_symbols (&objfile))
- {
- struct gdbarch *gdbarch = objfile.arch ();
-
- /* We don't call psymtab_to_symtab here because that may cause symtab
- expansion. When debugging a problem it helps if checkers leave
- things unchanged. */
- cust = ps->get_compunit_symtab (&objfile);
-
- /* First do some checks that don't require the associated symtab. */
- if (ps->text_high (&objfile) < ps->text_low (&objfile))
- {
- gdb_printf ("Psymtab ");
- gdb_puts (ps->filename);
- gdb_printf (" covers bad range ");
- gdb_puts (paddress (gdbarch, ps->text_low (&objfile)));
- gdb_printf (" - ");
- gdb_puts (paddress (gdbarch, ps->text_high (&objfile)));
- gdb_printf ("\n");
- continue;
- }
-
- /* Now do checks requiring the associated symtab. */
- if (cust == NULL)
- continue;
- bv = cust->blockvector ();
- b = bv->static_block ();
- for (const partial_symbol *psym : ps->static_psymbols)
- {
- /* Skip symbols for inlined functions without address. These may
- or may not have a match in the full symtab. */
- if (psym->loc_class == LOC_BLOCK
- && psym->ginfo.value_address () == 0)
- continue;
-
- lookup_name_info lookup_name
- (psym->ginfo.search_name (), symbol_name_match_type::SEARCH_NAME);
- sym = block_lookup_symbol (b, lookup_name,
- to_search_flags (psym->domain));
- if (!sym)
- {
- gdb_printf ("Static symbol `");
- gdb_puts (psym->ginfo.linkage_name ());
- gdb_printf ("' only found in ");
- gdb_puts (ps->filename);
- gdb_printf (" psymtab\n");
- }
- }
- b = bv->global_block ();
- for (const partial_symbol *psym : ps->global_psymbols)
- {
- lookup_name_info lookup_name
- (psym->ginfo.search_name (), symbol_name_match_type::SEARCH_NAME);
- sym = block_lookup_symbol (b, lookup_name,
- to_search_flags (psym->domain));
- if (!sym)
- {
- gdb_printf ("Global symbol `");
- gdb_puts (psym->ginfo.linkage_name ());
- gdb_printf ("' only found in ");
- gdb_puts (ps->filename);
- gdb_printf (" psymtab\n");
- }
- }
- if (ps->unrelocated_text_high () != unrelocated_addr (0)
- && (ps->text_low (&objfile) < b->start ()
- || ps->text_high (&objfile) > b->end ()))
- {
- gdb_printf ("Psymtab ");
- gdb_puts (ps->filename);
- gdb_printf (" covers ");
- gdb_puts (paddress (gdbarch, ps->text_low (&objfile)));
- gdb_printf (" - ");
- gdb_puts (paddress (gdbarch, ps->text_high (&objfile)));
- gdb_printf (" but symtab covers only ");
- gdb_puts (paddress (gdbarch, b->start ()));
- gdb_printf (" - ");
- gdb_puts (paddress (gdbarch, b->end ()));
- gdb_printf ("\n");
- }
- }
- }
- }
-}
-
-INIT_GDB_FILE (psymtab)
-{
- add_cmd ("psymbols", class_maintenance, maintenance_print_psymbols, _("\
-Print dump of current partial symbol definitions.\n\
-Usage: mt print psymbols [-objfile OBJFILE] [-pc ADDRESS] [--] [OUTFILE]\n\
- mt print psymbols [-objfile OBJFILE] [-source SOURCE] [--] [OUTFILE]\n\
-Entries in the partial symbol table are dumped to file OUTFILE,\n\
-or the terminal if OUTFILE is unspecified.\n\
-If ADDRESS is provided, dump only the symbols for the file\n\
-with code at that address.\n\
-If SOURCE is provided, dump only that file's symbols.\n\
-If OBJFILE is provided, dump only that object file's symbols."),
- &maintenanceprintlist);
-
- add_cmd ("psymtabs", class_maintenance, maintenance_info_psymtabs, _("\
-List the partial symbol tables for all object files.\n\
-This does not include information about individual partial symbols,\n\
-just the symbol table structures themselves."),
- &maintenanceinfolist);
-
- add_cmd ("psymtabs", class_maintenance, maintenance_check_psymtabs,
- _("\
-Check consistency of currently expanded psymtabs versus symtabs."),
- &maintenancechecklist);
-}
diff --git a/gdb/psymtab.h b/gdb/psymtab.h
deleted file mode 100644
index be4ed4262667..000000000000
--- a/gdb/psymtab.h
+++ /dev/null
@@ -1,691 +0,0 @@
-/* Public partial symbol table definitions.
-
- Copyright (C) 2009-2026 Free Software Foundation, Inc.
-
- This file is part of GDB.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-#ifndef GDB_PSYMTAB_H
-#define GDB_PSYMTAB_H
-
-#include "objfiles.h"
-#include <string_view>
-#include "gdbsupport/gdb_obstack.h"
-#include "symfile.h"
-#include "gdbsupport/next-iterator.h"
-#include "bcache.h"
-
-/* Specialization of bcache to store partial symbols. */
-
-struct psymbol_bcache : public gdb::bcache
-{
- /* Calculate a hash code for the given partial symbol. The hash is
- calculated using the symbol's value, language, domain, class
- and name. These are the values which are set by
- add_psymbol_to_bcache. */
- unsigned long hash (const void *addr, int length) override;
-
- /* Returns true if the symbol LEFT equals the symbol RIGHT.
- For the comparison this function uses a symbols value,
- language, domain, class and name. */
- int compare (const void *left, const void *right, int length) override;
-};
-
-/* An instance of this class manages the partial symbol tables and
- partial symbols for a given objfile.
-
- The core psymtab functions -- those in psymtab.c -- arrange for
- nearly all psymtab- and psymbol-related allocations to happen
- either in the psymtab_storage object (either on its obstack or in
- other memory managed by this class), or on the per-BFD object. The
- only link from the psymtab storage object back to the objfile (or
- objfile_obstack) that is made by the core psymtab code is the
- compunit_symtab member in the standard_psymtab -- and a given
- symbol reader can avoid this by implementing its own subclasses of
- partial_symtab.
-
- However, it is up to each symbol reader to maintain this invariant
- in other ways, if it wants to reuse psymtabs across multiple
- objfiles. The main issue here is ensuring that read_symtab_private
- does not point into objfile_obstack. */
-
-class psymtab_storage
-{
-public:
- psymtab_storage () = default;
- ~psymtab_storage ();
-
- DISABLE_COPY_AND_ASSIGN (psymtab_storage);
-
- /* Discard all partial symbol tables starting with "psymtabs" and
- proceeding until "to" has been discarded. */
-
- void discard_psymtabs_to (struct partial_symtab *to)
- {
- while (psymtabs != to)
- discard_psymtab (psymtabs);
- }
-
- /* Discard the partial symbol table. */
-
- void discard_psymtab (struct partial_symtab *pst);
-
- /* Return the obstack that is used for storage by this object. */
-
- struct obstack *obstack ()
- {
- if (!m_obstack.has_value ())
- m_obstack.emplace ();
- return &*m_obstack;
- }
-
- /* Allocate storage for the "dependencies" field of a psymtab.
- NUMBER says how many dependencies there are. */
-
- struct partial_symtab **allocate_dependencies (int number)
- {
- return OBSTACK_CALLOC (obstack (), number, struct partial_symtab *);
- }
-
- /* Install a psymtab on the psymtab list. This transfers ownership
- of PST to this object. */
-
- void install_psymtab (partial_symtab *pst);
-
- using partial_symtab_range = next_range<partial_symtab>;
-
- /* A range adapter that makes it possible to iterate over all
- psymtabs in one objfile. */
-
- partial_symtab_range range ()
- {
- next_iterator<partial_symtab> begin (psymtabs);
-
- return partial_symtab_range (std::move (begin));
- }
-
-
- /* Each objfile points to a linked list of partial symtabs derived from
- this file, one partial symtab structure for each compilation unit
- (source file). */
-
- struct partial_symtab *psymtabs = nullptr;
-
- /* A byte cache where we can stash arbitrary "chunks" of bytes that
- will not change. */
-
- psymbol_bcache psymbol_cache;
-
-private:
-
- /* The obstack where allocations are made. This is lazily allocated
- so that we don't waste memory when there are no psymtabs. */
-
- std::optional<auto_obstack> m_obstack;
-};
-
-/* A partial_symbol records the name, domain, and address class of
- symbols whose types we have not parsed yet. For functions, it also
- contains their memory address, so we can find them from a PC value.
- Each partial_symbol sits in a partial_symtab, all of which are chained
- on a partial symtab list and which points to the corresponding
- normal symtab once the partial_symtab has been referenced. */
-
-/* This structure is space critical. See space comments at the top of
- symtab.h. */
-
-struct partial_symbol
-{
- /* Return the section for this partial symbol, or nullptr if no
- section has been set. */
- struct obj_section *obj_section (struct objfile *objfile) const
- {
- return ginfo.obj_section (objfile);
- }
-
- /* Return the unrelocated address of this partial symbol. */
- unrelocated_addr unrelocated_address () const
- {
- return ginfo.unrelocated_address ();
- }
-
- /* Return the address of this partial symbol, relocated according to
- the offsets provided in OBJFILE. */
- CORE_ADDR address (const struct objfile *objfile) const
- {
- return (CORE_ADDR (ginfo.unrelocated_address ())
- + objfile->section_offsets[ginfo.section_index ()]);
- }
-
- /* Set the address of this partial symbol. The address must be
- unrelocated. */
- void set_unrelocated_address (unrelocated_addr addr)
- {
- ginfo.set_unrelocated_address (addr);
- }
-
- /* Note that partial_symbol does not derive from general_symbol_info
- due to the bcache. See add_psymbol_to_bcache. */
-
- struct general_symbol_info ginfo;
-
- /* Name space code. */
-
- ENUM_BITFIELD(domain_enum) domain : SYMBOL_DOMAIN_BITS;
-
- /* Address class (for info_symbols). Note that we don't allow
- synthetic "loc_class" values here at present, simply because there's
- no need. */
-
- ENUM_BITFIELD(location_class) loc_class : SYMBOL_LOC_CLASS_BITS;
-};
-
-/* A convenience enum to give names to some constants used when
- searching psymtabs. This is internal to psymtab and should not be
- used elsewhere. */
-
-enum psymtab_search_status
- {
- PST_NOT_SEARCHED,
- PST_SEARCHED_AND_FOUND,
- PST_SEARCHED_AND_NOT_FOUND
- };
-
-/* Specify whether a partial psymbol should be allocated on the global
- list or the static list. */
-
-enum class psymbol_placement
-{
- STATIC,
- GLOBAL
-};
-
-/* Each source file that has not been fully read in is represented by
- a partial_symtab. This contains the information on where in the
- executable the debugging symbols for a specific file are, and a
- list of names of global symbols which are located in this file.
- They are all chained on partial symtab lists.
-
- Even after the source file has been read into a symtab, the
- partial_symtab remains around. */
-
-struct partial_symtab
-{
- /* Allocate a new partial symbol table.
-
- FILENAME (which must be non-NULL) is the filename of this partial
- symbol table; it is copied into the appropriate storage. The
- partial symtab will also be installed using
- psymtab_storage::install. */
-
- partial_symtab (const char *filename,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd)
- ATTRIBUTE_NONNULL (2) ATTRIBUTE_NONNULL (3);
-
- /* Like the above, but also sets the initial text low and text high
- from the ADDR argument, and sets the global- and
- static-offsets. */
-
- partial_symtab (const char *filename,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd,
- unrelocated_addr addr)
- ATTRIBUTE_NONNULL (2) ATTRIBUTE_NONNULL (3);
-
- virtual ~partial_symtab ()
- {
- }
-
- /* Psymtab expansion is done in two steps:
- - a call to read_symtab
- - while that call is in progress, calls to expand_psymtab can be made,
- both for this psymtab, and its dependencies.
- This makes a distinction between a toplevel psymtab (for which both
- read_symtab and expand_psymtab will be called) and a non-toplevel
- psymtab (for which only expand_psymtab will be called). The
- distinction can be used f.i. to do things before and after all
- dependencies of a top-level psymtab have been expanded.
-
- Read the full symbol table corresponding to this partial symbol
- table. Typically calls expand_psymtab. */
- virtual void read_symtab (struct objfile *) = 0;
-
- /* Expand the full symbol table for this partial symbol table. Typically
- calls expand_dependencies. */
- virtual void expand_psymtab (struct objfile *) = 0;
-
- /* Ensure that all the dependencies are read in. Calls
- expand_psymtab for each non-shared dependency. */
- void expand_dependencies (struct objfile *);
-
- /* Return true if the symtab corresponding to this psymtab has been
- read in in the context of this objfile. */
- virtual bool readin_p (struct objfile *) const = 0;
-
- /* Return a pointer to the compunit allocated for this source file
- in the context of this objfile.
-
- Return nullptr if the compunit was not read in or if there was no
- symtab. */
- virtual struct compunit_symtab *get_compunit_symtab
- (struct objfile *) const = 0;
-
- /* Return the unrelocated low text address of this
- partial_symtab. */
- unrelocated_addr unrelocated_text_low () const
- {
- return m_text_low;
- }
-
- /* Return the unrelocated_addr high text address of this
- partial_symtab. */
- unrelocated_addr unrelocated_text_high () const
- {
- return m_text_high;
- }
-
- /* Return the relocated low text address of this partial_symtab. */
- CORE_ADDR text_low (struct objfile *objfile) const
- {
- return CORE_ADDR (m_text_low) + objfile->text_section_offset ();
- }
-
- /* Return the relocated high text address of this partial_symtab. */
- CORE_ADDR text_high (struct objfile *objfile) const
- {
- return CORE_ADDR (m_text_high) + objfile->text_section_offset ();
- }
-
- /* Set the low text address of this partial_symtab. */
- void set_text_low (unrelocated_addr addr)
- {
- m_text_low = addr;
- text_low_valid = 1;
- }
-
- /* Set the high text address of this partial_symtab. */
- void set_text_high (unrelocated_addr addr)
- {
- m_text_high = addr;
- text_high_valid = 1;
- }
-
- /* Return true if this symtab is empty -- meaning that it contains
- no symbols. It may still have dependencies. */
- bool empty () const
- {
- return global_psymbols.empty () && static_psymbols.empty ();
- }
-
- /* Add a symbol to this partial symbol table of OBJFILE.
-
- If COPY_NAME is true, make a copy of NAME, otherwise use the passed
- reference.
-
- LOC_CLASS is the type of symbol.
-
- SECTION is the index of the section of OBJFILE in which the symbol is found.
-
- WHERE determines whether the symbol goes in the list of static or global
- partial symbols.
-
- COREADDR is the address of the symbol. For partial symbols that don't have
- an address, zero is passed.
-
- LANGUAGE is the language from which the symbol originates. This will
- influence, amongst other things, how the symbol name is demangled. */
-
- void add_psymbol (std::string_view name,
- bool copy_name, domain_enum domain,
- location_class loc_class,
- int section,
- psymbol_placement where,
- unrelocated_addr coreaddr,
- enum language language,
- psymtab_storage *partial_symtabs,
- struct objfile *objfile);
-
- /* Add a symbol to this partial symbol table of OBJFILE. The psymbol
- must be fully constructed, and the names must be set and intern'd
- as appropriate. */
-
- void add_psymbol (const partial_symbol &psym,
- psymbol_placement where,
- psymtab_storage *partial_symtabs,
- struct objfile *objfile);
-
-
- /* Indicate that this partial symtab is complete. */
-
- void end ();
-
- /* Chain of all existing partial symtabs. */
-
- struct partial_symtab *next = nullptr;
-
- /* Name of the source file which this partial_symtab defines,
- or if the psymtab is anonymous then a descriptive name for
- debugging purposes, or "". It must not be NULL. */
-
- const char *filename = nullptr;
-
- /* Full path of the source file. NULL if not known. */
-
- char *fullname = nullptr;
-
- /* Directory in which it was compiled, or NULL if we don't know. */
-
- const char *dirname = nullptr;
-
- /* Range of text addresses covered by this file; texthigh is the
- beginning of the next section. Do not refer directly to these
- fields. Instead, use the accessors. The validity of these
- fields is determined by the text_low_valid and text_high_valid
- fields; these are located later in this structure for better
- packing. */
-
- unrelocated_addr m_text_low {};
- unrelocated_addr m_text_high {};
-
- /* If NULL, this is an ordinary partial symbol table.
-
- If non-NULL, this holds a single includer of this partial symbol
- table, and this partial symbol table is a shared one.
-
- A shared psymtab is one that is referenced by multiple other
- psymtabs, and which conceptually has its contents directly
- included in those.
-
- Shared psymtabs have special semantics. When a search finds a
- symbol in a shared table, we instead return one of the non-shared
- tables that include this one.
-
- A shared psymtabs can be referred to by other shared ones.
-
- The psymtabs that refer to a shared psymtab will list the shared
- psymtab in their 'dependencies' array.
-
- In DWARF terms, a shared psymtab is a DW_TAG_partial_unit; but
- of course using a name based on that would be too confusing, so
- "shared" was chosen instead.
-
- Only a single user is needed because, when expanding a shared
- psymtab, we only need to expand its "canonical" non-shared user.
- The choice of which one should be canonical is left to the
- debuginfo reader; it can be arbitrary. */
-
- struct partial_symtab *user = nullptr;
-
- /* Array of pointers to all of the partial_symtab's which this one
- depends on. Since this array can only be set to previous or
- the current (?) psymtab, this dependency tree is guaranteed not
- to have any loops. "depends on" means that symbols must be read
- for the dependencies before being read for this psymtab; this is
- for type references in stabs, where if foo.c includes foo.h, declarations
- in foo.h may use type numbers defined in foo.c. For other debugging
- formats there may be no need to use dependencies. */
-
- struct partial_symtab **dependencies = nullptr;
-
- int number_of_dependencies = 0;
-
- /* Global symbol list. This list will be sorted after readin to
- improve access. Binary search will be the usual method of
- finding a symbol within it. */
-
- std::vector<const partial_symbol *> global_psymbols;
-
- /* Static symbol list. This list will *not* be sorted after readin;
- to find a symbol in it, exhaustive search must be used. This is
- reasonable because searches through this list will eventually
- lead to either the read in of a files symbols for real (assumed
- to take a *lot* of time; check) or an error (and we don't care
- how long errors take). */
-
- std::vector<const partial_symbol *> static_psymbols;
-
- /* True if the name of this partial symtab is not a source file name. */
-
- bool anonymous = false;
-
- /* A flag that is temporarily used when searching psymtabs. */
-
- ENUM_BITFIELD (psymtab_search_status) searched_flag : 2;
-
- /* Validity of the m_text_low and m_text_high fields. */
-
- unsigned int text_low_valid : 1;
- unsigned int text_high_valid : 1;
-};
-
-/* A partial symtab that tracks the "readin" and "compunit_symtab"
- information in the ordinary way -- by storing it directly in this
- object. */
-struct standard_psymtab : public partial_symtab
-{
- standard_psymtab (const char *filename,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd)
- : partial_symtab (filename, partial_symtabs, objfile_per_bfd)
- {
- }
-
- standard_psymtab (const char *filename,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd,
- unrelocated_addr addr)
- : partial_symtab (filename, partial_symtabs, objfile_per_bfd, addr)
- {
- }
-
- bool readin_p (struct objfile *) const override
- {
- return readin;
- }
-
- struct compunit_symtab *get_compunit_symtab (struct objfile *) const override
- {
- return compunit_symtab;
- }
-
- /* True if the symtab corresponding to this psymtab has been
- readin. */
-
- bool readin = false;
-
- /* Pointer to compunit eventually allocated for this source file, 0 if
- !readin or if we haven't looked for the symtab after it was readin. */
-
- struct compunit_symtab *compunit_symtab = nullptr;
-};
-
-/* A partial_symtab that works in the historical db way. This should
- not be used in new code, but exists to transition the somewhat
- unmaintained "legacy" debug formats. */
-
-struct legacy_psymtab : public standard_psymtab
-{
- legacy_psymtab (const char *filename,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd)
- : standard_psymtab (filename, partial_symtabs, objfile_per_bfd)
- {
- }
-
- legacy_psymtab (const char *filename,
- psymtab_storage *partial_symtabs,
- objfile_per_bfd_storage *objfile_per_bfd,
- unrelocated_addr addr)
- : standard_psymtab (filename, partial_symtabs, objfile_per_bfd, addr)
- {
- }
-
- void read_symtab (struct objfile *objf) override
- {
- if (legacy_read_symtab)
- (*legacy_read_symtab) (this, objf);
- }
-
- void expand_psymtab (struct objfile *objf) override
- {
- (*legacy_expand_psymtab) (this, objf);
- }
-
- /* Pointer to function which will read in the symtab corresponding to
- this psymtab. */
-
- void (*legacy_read_symtab) (legacy_psymtab *, struct objfile *) = nullptr;
-
- /* Pointer to function which will actually expand this psymtab into
- a full symtab. */
-
- void (*legacy_expand_psymtab) (legacy_psymtab *, struct objfile *) = nullptr;
-
- /* Information that lets read_symtab() locate the part of the symbol table
- that this psymtab corresponds to. This information is private to the
- format-dependent symbol reading routines. For further detail examine
- the various symbol reading modules. */
-
- void *read_symtab_private = nullptr;
-};
-
-/* Used when recording partial symbol tables. On destruction,
- discards any partial symbol tables that have been built. However,
- the tables can be kept by calling the "keep" method. */
-class psymtab_discarder
-{
- public:
-
- psymtab_discarder (psymtab_storage *partial_symtabs)
- : m_partial_symtabs (partial_symtabs),
- m_psymtab (partial_symtabs->psymtabs)
- {
- }
-
- ~psymtab_discarder ()
- {
- if (m_partial_symtabs != nullptr)
- m_partial_symtabs->discard_psymtabs_to (m_psymtab);
- }
-
- /* Keep any partial symbol tables that were built. */
- void keep ()
- {
- m_partial_symtabs = nullptr;
- }
-
- private:
-
- /* The partial symbol storage object. */
- psymtab_storage *m_partial_symtabs;
- /* How far back to free. */
- struct partial_symtab *m_psymtab;
-};
-
-/* An implementation of quick_symbol_functions, specialized for
- partial symbols. */
-struct psymbol_functions : public quick_symbol_functions
-{
- explicit psymbol_functions (const std::shared_ptr<psymtab_storage> &storage)
- : m_partial_symtabs (storage)
- {
- }
-
- psymbol_functions ()
- : m_partial_symtabs (new psymtab_storage)
- {
- }
-
- bool has_symbols (struct objfile *objfile) override;
-
- bool has_unexpanded_symtabs (struct objfile *objfile) override;
-
- struct symtab *find_last_source_symtab (struct objfile *objfile) override;
-
- void forget_cached_source_info (struct objfile *objfile) override;
-
- enum language lookup_global_symbol_language (struct objfile *objfile,
- const char *name,
- domain_search_flags domain,
- bool *symbol_found_p) override;
-
- void print_stats (struct objfile *objfile, bool print_bcache) override;
-
- void dump (struct objfile *objfile) override;
-
- void expand_all_symtabs (struct objfile *objfile) override;
-
- bool search
- (struct objfile *objfile,
- search_symtabs_file_matcher file_matcher,
- const lookup_name_info *lookup_name,
- search_symtabs_symbol_matcher symbol_matcher,
- search_symtabs_expansion_listener listener,
- block_search_flags search_flags,
- domain_search_flags kind,
- search_symtabs_lang_matcher lang_matcher) override;
-
- struct compunit_symtab *find_pc_sect_compunit_symtab
- (struct objfile *objfile, bound_minimal_symbol msymbol, CORE_ADDR pc,
- struct obj_section *section, int warn_if_readin) override;
-
- struct symbol *find_symbol_by_address
- (struct objfile *objfile, CORE_ADDR address) override
- {
- return nullptr;
- }
-
- void map_symbol_filenames (objfile *objfile, symbol_filename_listener fun,
- bool need_fullname) override;
-
- /* Return a range adapter for the psymtabs. */
- psymtab_storage::partial_symtab_range partial_symbols
- (struct objfile *objfile);
-
- /* Return the partial symbol storage associated with this
- object. */
- const std::shared_ptr<psymtab_storage> &get_partial_symtabs () const
- {
- return m_partial_symtabs;
- }
-
- /* Replace the partial symbol table storage in this object with
- SYMS. */
- void set_partial_symtabs (const std::shared_ptr<psymtab_storage> &syms)
- {
- m_partial_symtabs = syms;
- }
-
- /* Find which partial symtab contains PC and SECTION. Return NULL if
- none. We return the psymtab that contains a symbol whose address
- exactly matches PC, or, if we cannot find an exact match, the
- psymtab that contains a symbol whose address is closest to PC. */
-
- struct partial_symtab *find_pc_sect_psymtab (struct objfile *objfile,
- CORE_ADDR pc,
- struct obj_section *section,
- bound_minimal_symbol msymbol);
-
-private:
-
- /* Count the number of partial symbols in *THIS. */
- int count_psyms ();
-
- /* Storage for the partial symbols. */
- std::shared_ptr<psymtab_storage> m_partial_symtabs;
-};
-
-#endif /* GDB_PSYMTAB_H */
--
2.52.0
next prev parent reply other threads:[~2026-02-03 6:57 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-03 6:45 [RFC PATCH 0/8] Make CTF reader build full symtabs, get rid of psymtab simon.marchi
2026-02-03 6:45 ` [RFC PATCH 1/8] gdb/ctf: add debug logging in ctfread.c simon.marchi
2026-02-03 12:40 ` Eli Zaretskii
2026-02-03 16:21 ` Simon Marchi
2026-02-03 16:37 ` Eli Zaretskii
2026-02-03 20:39 ` Simon Marchi
2026-02-03 6:45 ` [RFC PATCH 2/8] gdb/ctf: add unique_ptr types simon.marchi
2026-02-03 6:45 ` [RFC PATCH 3/8] gdb/ctf: editorial renames simon.marchi
2026-02-03 6:45 ` [RFC PATCH 4/8] gdb/ctf: use ctf_per_objfile in ctf_archive_iter_psymtab_data and ctf_context simon.marchi
2026-02-12 17:44 ` Tom Tromey
2026-02-12 18:35 ` Simon Marchi
2026-02-03 6:45 ` [RFC PATCH 5/8] gdb/ctf: check return value of ctf_type_align simon.marchi
2026-02-12 17:49 ` Tom Tromey
2026-02-12 18:37 ` Simon Marchi
2026-02-03 6:45 ` [RFC PATCH 6/8] gdb/ctf: add scoped_time_it in elfctf_build_psymtabs simon.marchi
2026-02-03 6:45 ` [RFC PATCH 7/8] gdb/ctf: don't use psymtabs, create symtabs directly simon.marchi
2026-02-12 17:54 ` Tom Tromey
2026-02-03 6:45 ` simon.marchi [this message]
2026-02-12 17:58 ` [RFC PATCH 0/8] Make CTF reader build full symtabs, get rid of psymtab Tom Tromey
2026-02-12 18:47 ` Simon Marchi
2026-02-17 19:50 ` [PATCH v2 0/9] " simon.marchi
2026-02-17 19:50 ` [PATCH v2 1/9] gdb/ctf: add debug logging in ctfread.c simon.marchi
2026-02-17 19:50 ` [PATCH v2 2/9] gdb/ctf: add unique_ptr types simon.marchi
2026-02-17 19:50 ` [PATCH v2 3/9] gdb/ctf: editorial renames simon.marchi
2026-02-17 19:50 ` [PATCH v2 4/9] gdb/ctf: use ctf_per_objfile in ctf_archive_iter_psymtab_data and ctf_context simon.marchi
2026-02-17 19:50 ` [PATCH v2 5/9] gdb/ctf: check return value of ctf_type_align simon.marchi
2026-02-17 19:50 ` [PATCH v2 6/9] gdb/ctf: add scoped_time_it in elfctf_build_psymtabs simon.marchi
2026-02-17 19:50 ` [PATCH v2 7/9] gdb: make expanded_symbols_functions hold compunit symtabs simon.marchi
2026-02-17 19:50 ` [PATCH v2 8/9] gdb/ctf: don't use psymtabs, create symtabs directly simon.marchi
2026-02-17 19:50 ` [PATCH v2 9/9] gdb: remove psymtab.{c,h} simon.marchi
2026-02-28 3:51 ` [PATCH v3 0/9] Make CTF reader build full symtabs, get rid of psymtab Simon Marchi
2026-02-28 3:51 ` [PATCH v3 1/9] gdb/ctf: add debug logging in ctfread.c Simon Marchi
2026-02-28 10:12 ` Eli Zaretskii
2026-02-28 16:23 ` Simon Marchi
2026-02-28 3:51 ` [PATCH v3 2/9] gdb/ctf: add unique_ptr types Simon Marchi
2026-02-28 3:51 ` [PATCH v3 3/9] gdb/ctf: editorial renames Simon Marchi
2026-02-28 3:51 ` [PATCH v3 4/9] gdb/ctf: use ctf_per_objfile in ctf_archive_iter_psymtab_data and ctf_context Simon Marchi
2026-02-28 3:51 ` [PATCH v3 5/9] gdb/ctf: check return value of ctf_type_align Simon Marchi
2026-02-28 3:51 ` [PATCH v3 6/9] gdb/ctf: add scoped_time_it in elfctf_build_psymtabs Simon Marchi
2026-02-28 3:51 ` [PATCH v3 7/9] gdb: make expanded_symbols_functions hold compunit symtabs Simon Marchi
2026-03-04 19:21 ` Tom Tromey
2026-03-04 19:32 ` Tom Tromey
2026-03-09 18:56 ` Simon Marchi
2026-03-09 18:48 ` Simon Marchi
2026-03-10 17:09 ` Tom Tromey
2026-02-28 3:51 ` [PATCH v3 8/9] gdb/ctf: don't use psymtabs, create symtabs directly Simon Marchi
2026-03-04 19:29 ` Tom Tromey
2026-03-09 18:51 ` Simon Marchi
2026-02-28 3:51 ` [PATCH v3 9/9] gdb: remove psymtab.{c,h} Simon Marchi
2026-02-28 10:18 ` Eli Zaretskii
2026-03-04 19:33 ` [PATCH v3 0/9] Make CTF reader build full symtabs, get rid of psymtab Tom Tromey
2026-03-09 18:57 ` Simon Marchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260203065435.3092465-9-simon.marchi@polymtl.ca \
--to=simon.marchi@polymtl.ca \
--cc=gdb-patches@sourceware.org \
--cc=nick.alcock@oracle.com \
--cc=weimin.pan@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox