/* "Quick" symbol functions Copyright (C) 2021-2025 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 . */ #ifndef GDB_QUICK_SYMBOL_H #define GDB_QUICK_SYMBOL_H #include "symtab.h" /* Like block_enum, but used as flags to pass to lookup functions. */ enum block_search_flag_values { SEARCH_GLOBAL_BLOCK = 1, SEARCH_STATIC_BLOCK = 2 }; DEF_ENUM_FLAGS_TYPE (enum block_search_flag_values, block_search_flags); /* Callback for quick_symbol_functions::map_symbol_filenames. */ using symbol_filename_listener = gdb::function_view; /* Callback for quick_symbol_functions::search to match a file name. */ using search_symtabs_file_matcher = gdb::function_view; /* Callback for quick_symbol_functions::search to match a symbol name. */ using search_symtabs_symbol_matcher = gdb::function_view; /* Callback for quick_symbol_functions::search to match a language. */ using search_symtabs_lang_matcher = gdb::function_view; /* Callback for quick_symbol_functions::search to be called when symtab matches (perhaps expanding it first). If this returns true, more symtabs are checked; if it returns false, iteration stops. */ using search_symtabs_expansion_listener = gdb::function_view; /* The "quick" symbol functions exist so that symbol readers can avoiding an initial read of all the symbols. For example, symbol readers might choose to use the "partial symbol table" utilities, which is one implementation of the quick symbol functions. The quick symbol functions are generally opaque: the underlying representation is hidden from the caller. The exact list of functions here was determined in an ad hoc way based on gdb's history. */ struct quick_symbol_functions { virtual ~quick_symbol_functions () { } /* Return true if this objfile has any "partial" symbols available. */ virtual bool has_symbols (struct objfile *objfile) = 0; /* Return true if OBJFILE has any unexpanded symtabs. A return value of false indicates there are no unexpanded symtabs, this might mean that all of the symtabs have been expanded (full debug has been read in), or it might been that OBJFILE has no debug information. */ virtual bool has_unexpanded_symtabs (struct objfile *objfile) = 0; /* Return the symbol table for the "last" file appearing in OBJFILE. */ virtual struct symtab *find_last_source_symtab (struct objfile *objfile) = 0; /* Forget all cached full file names for OBJFILE. */ virtual void forget_cached_source_info (struct objfile *objfile) = 0; /* Check to see if the global symbol is defined in a "partial" symbol table of OBJFILE. NAME is the name of the symbol to look for. DOMAIN indicates what sorts of symbols to search for. If found, sets *symbol_found_p to true and returns the symbol language. defined, or NULL if no such symbol table exists. */ virtual enum language lookup_global_symbol_language (struct objfile *objfile, const char *name, domain_search_flags domain, bool *symbol_found_p) = 0; /* Print statistics about any indices loaded for OBJFILE. The statistics should be printed to gdb_stdout. This is used for "maint print statistics". Statistics are printed in two sections. PRINT_BCACHE is false when printing the first section of general statistics, and true when printing bcache statistics. */ virtual void print_stats (struct objfile *objfile, bool print_bcache) = 0; /* Dump any indices loaded for OBJFILE. The dump should go to gdb_stdout. This is used for "maint print objfiles". */ virtual void dump (struct objfile *objfile) = 0; /* Read all symbol tables associated with OBJFILE. */ virtual void expand_all_symtabs (struct objfile *objfile) = 0; /* Search all symbol tables in OBJFILE matching some criteria. If LANG_MATCHER returns false, search of the symbol table may be skipped. It may also not be skipped, which the caller needs to take into account. FILE_MATCHER is called for each file in OBJFILE. The file name is passed to it. If the matcher returns false, the file is skipped. If FILE_MATCHER is NULL the file is not skipped. If BASENAMES is true the matcher should consider only file base names (the passed file name is already only the lbasename'd part). If the file is not skipped, and SYMBOL_MATCHER and LOOKUP_NAME are NULL, the symbol table is searched. Otherwise, individual symbols are considered. If DOMAIN does not match, the symbol is skipped. If the symbol name does not match LOOKUP_NAME, the symbol is skipped. If SYMBOL_MATCHER returns false, then the symbol is skipped. Note that if SYMBOL_MATCHER is non-NULL, then LOOKUP_NAME must also be provided. Otherwise, the symbol's symbol table is expanded if needed. Then (regardless of whether the symbol table was already expanded, or just expanded in response to this search), LISTENER is called. If LISTENER returns false, execution stops and this method returns false. Otherwise, more files are considered. This method returns true if all calls to LISTENER return true. */ virtual 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 domain, search_symtabs_lang_matcher lang_matcher = nullptr) = 0; /* Return the comp unit from OBJFILE that contains PC and SECTION. Return NULL if there is no such compunit. This should return the compunit that contains a symbol whose address exactly matches PC, or, if there is no exact match, the compunit that contains a symbol whose address is closest to PC. */ virtual 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) = 0; /* Return the symbol from OBJFILE at ADDRESS. Return NULL if there is no such symbol. Any sort of symbol (not just text symbols) can be considered, and only exact address matches are considered. */ virtual struct symbol *find_symbol_by_address (struct objfile *objfile, CORE_ADDR address) = 0; /* Call FUN for every file defined in OBJFILE whose symtab is not already read in. FUN is passed the file's FILENAME and the file's FULLNAME (if need_fullname is true). */ virtual void map_symbol_filenames (objfile *objfile, symbol_filename_listener fun, bool need_fullname) = 0; /* Compute the name and language of the main function for the given objfile. Normally this is done during symbol reading, but this method exists in case this work is done in a worker thread and must be waited for. The implementation can call set_objfile_main_name if results are found. */ virtual void compute_main_name (struct objfile *objfile) { } }; typedef std::unique_ptr quick_symbol_functions_up; #endif /* GDB_QUICK_SYMBOL_H */