[PATCH] Use block_enum instead of int for better typesafety

Christian Biesinger via gdb-patches gdb-patches@sourceware.org
Thu Jul 11 18:41:00 GMT 2019


gdb/ChangeLog:

2019-07-11  Christian Biesinger  <cbiesinger@google.com>

	* symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
	(lookup_symbol_in_objfile): Change int to block_enum and add a
	gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
---
 gdb/symtab.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gdb/symtab.c b/gdb/symtab.c
index 4920d94a24..54eb97ae0f 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -87,17 +87,18 @@ static struct block_symbol
 static
 struct block_symbol lookup_local_symbol (const char *name,
 					 symbol_name_match_type match_type,
 					 const struct block *block,
 					 const domain_enum domain,
 					 enum language language);
 
 static struct block_symbol
-  lookup_symbol_in_objfile (struct objfile *objfile, int block_index,
+  lookup_symbol_in_objfile (struct objfile *objfile,
+			    enum block_enum block_index,
 			    const char *name, const domain_enum domain);
 
 /* Type of the data stored on the program space.  */
 
 struct main_info
 {
   main_info () = default;
 
@@ -2239,18 +2240,19 @@ lookup_global_symbol_from_objfile (struct objfile *main_objfile,
 }
 
 /* Check to see if the symbol is defined in one of the OBJFILE's
    symtabs.  BLOCK_INDEX should be either GLOBAL_BLOCK or STATIC_BLOCK,
    depending on whether or not we want to search global symbols or
    static symbols.  */
 
 static struct block_symbol
-lookup_symbol_in_objfile_symtabs (struct objfile *objfile, int block_index,
-				  const char *name, const domain_enum domain)
+lookup_symbol_in_objfile_symtabs (struct objfile *objfile,
+				  enum block_enum block_index, const char *name,
+				  const domain_enum domain)
 {
   gdb_assert (block_index == GLOBAL_BLOCK || block_index == STATIC_BLOCK);
 
   if (symbol_lookup_debug > 1)
     {
       fprintf_unfiltered (gdb_stdlog,
 			  "lookup_symbol_in_objfile_symtabs (%s, %s, %s, %s)",
 			  objfile_debug_name (objfile),
@@ -2511,21 +2513,23 @@ lookup_symbol_in_static_block (const char *name,
 }
 
 /* Perform the standard symbol lookup of NAME in OBJFILE:
    1) First search expanded symtabs, and if not found
    2) Search the "quick" symtabs (partial or .gdb_index).
    BLOCK_INDEX is one of GLOBAL_BLOCK or STATIC_BLOCK.  */
 
 static struct block_symbol
-lookup_symbol_in_objfile (struct objfile *objfile, int block_index,
+lookup_symbol_in_objfile (struct objfile *objfile, enum block_enum block_index,
 			  const char *name, const domain_enum domain)
 {
   struct block_symbol result;
 
+  gdb_assert (block_index == GLOBAL_BLOCK || block_index == STATIC_BLOCK);
+
   if (symbol_lookup_debug)
     {
       fprintf_unfiltered (gdb_stdlog,
 			  "lookup_symbol_in_objfile (%s, %s, %s, %s)\n",
 			  objfile_debug_name (objfile),
 			  block_index == GLOBAL_BLOCK
 			  ? "GLOBAL_BLOCK" : "STATIC_BLOCK",
 			  name, domain_name (domain));
-- 
2.22.0.410.gd8fdbe21b5-goog



More information about the Gdb-patches mailing list