gdb: remove BLOCK_MULTIDICT macro
authorSimon Marchi <simon.marchi@efficios.com>
Fri, 28 Jan 2022 21:18:09 +0000 (16:18 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 28 Apr 2022 02:05:03 +0000 (22:05 -0400)
Replace with equivalent methods.

Change-Id: If9a239c511a664f2a59fecb6d1cd579881b23dc2

gdb/block.c
gdb/block.h
gdb/buildsym.c
gdb/jit.c
gdb/mdebugread.c
gdb/objfiles.c
gdb/symmisc.c

index 9c4ed260abb239522a1f368bb1e8c083d58fa42a..5a6282bd1a974392ef667b6485bd8ddf8b0f4a35 100644 (file)
@@ -545,7 +545,7 @@ block_iterator_step (struct block_iterator *iterator, int first)
 
          block = BLOCKVECTOR_BLOCK (cust->blockvector (),
                                     iterator->which);
-         sym = mdict_iterator_first (BLOCK_MULTIDICT (block),
+         sym = mdict_iterator_first (block->multidict (),
                                      &iterator->mdict_iter);
        }
       else
@@ -571,7 +571,7 @@ block_iterator_first (const struct block *block,
   initialize_block_iterator (block, iterator);
 
   if (iterator->which == FIRST_LOCAL_BLOCK)
-    return mdict_iterator_first (block->multidict, &iterator->mdict_iter);
+    return mdict_iterator_first (block->multidict (), &iterator->mdict_iter);
 
   return block_iterator_step (iterator, 1);
 }
@@ -614,7 +614,7 @@ block_iter_match_step (struct block_iterator *iterator,
 
          block = BLOCKVECTOR_BLOCK (cust->blockvector (),
                                     iterator->which);
-         sym = mdict_iter_match_first (BLOCK_MULTIDICT (block), name,
+         sym = mdict_iter_match_first (block->multidict (), name,
                                        &iterator->mdict_iter);
        }
       else
@@ -641,7 +641,7 @@ block_iter_match_first (const struct block *block,
   initialize_block_iterator (block, iterator);
 
   if (iterator->which == FIRST_LOCAL_BLOCK)
-    return mdict_iter_match_first (block->multidict, name,
+    return mdict_iter_match_first (block->multidict (), name,
                                   &iterator->mdict_iter);
 
   return block_iter_match_step (iterator, name, 1);
@@ -779,8 +779,8 @@ block_lookup_symbol_primary (const struct block *block, const char *name,
              || block->superblock ()->superblock () == NULL);
 
   other = NULL;
-  for (sym
-        = mdict_iter_match_first (block->multidict, lookup_name, &mdict_iter);
+  for (sym = mdict_iter_match_first (block->multidict (), lookup_name,
+                                    &mdict_iter);
        sym != NULL;
        sym = mdict_iter_match_next (lookup_name, &mdict_iter))
     {
index a5f931e354ee904e1eefdcd0ec2fa3bece0378b0..d0ae27080951fd6ef6688a9a81bca1f3cd86bba5 100644 (file)
@@ -122,6 +122,14 @@ struct block
   void set_superblock (const block *superblock)
   { m_superblock = superblock; }
 
+  /* Return this block's multidict.  */
+  multidictionary *multidict () const
+  { return m_multidict; }
+
+  /* Set this block's multidict.  */
+  void set_multidict (multidictionary *multidict)
+  { m_multidict = multidict; }
+
   /* Addresses in the executable code that are in this block.  */
 
   CORE_ADDR m_start;
@@ -142,7 +150,7 @@ struct block
 
   /* This is used to store the symbols in the block.  */
 
-  struct multidictionary *multidict;
+  struct multidictionary *m_multidict;
 
   /* Contains information about namespace-related info relevant to this block:
      using directives and the current namespace scope.  */
@@ -170,7 +178,6 @@ struct global_block
   struct compunit_symtab *compunit_symtab;
 };
 
-#define BLOCK_MULTIDICT(bl)    (bl)->multidict
 #define BLOCK_NAMESPACE(bl)    (bl)->namespace_info
 
 /* Accessor for ranges field within block BL.  */
index 5c5fc207d6ef80e3955a020060b484d0f8aaf63a..d0f00d49f913620e0568332535771ae51b282945 100644 (file)
@@ -217,20 +217,21 @@ buildsym_compunit::finish_block_internal
 
   if (symbol)
     {
-      BLOCK_MULTIDICT (block)
-       = mdict_create_linear (&m_objfile->objfile_obstack, *listhead);
+      block->set_multidict
+       (mdict_create_linear (&m_objfile->objfile_obstack, *listhead));
     }
   else
     {
       if (expandable)
        {
-         BLOCK_MULTIDICT (block) = mdict_create_hashed_expandable (m_language);
-         mdict_add_pending (BLOCK_MULTIDICT (block), *listhead);
+         block->set_multidict
+           (mdict_create_hashed_expandable (m_language));
+         mdict_add_pending (block->multidict (), *listhead);
        }
       else
        {
-         BLOCK_MULTIDICT (block) =
-           mdict_create_hashed (&m_objfile->objfile_obstack, *listhead);
+         block->set_multidict
+           (mdict_create_hashed (&m_objfile->objfile_obstack, *listhead));
        }
     }
 
@@ -256,7 +257,7 @@ buildsym_compunit::finish_block_internal
 
          /* Here we want to directly access the dictionary, because
             we haven't fully initialized the block yet.  */
-         ALL_DICT_SYMBOLS (BLOCK_MULTIDICT (block), miter, sym)
+         ALL_DICT_SYMBOLS (block->multidict (), miter, sym)
            {
              if (sym->is_argument ())
                nparams++;
@@ -271,7 +272,7 @@ buildsym_compunit::finish_block_internal
              iparams = 0;
              /* Here we want to directly access the dictionary, because
                 we haven't fully initialized the block yet.  */
-             ALL_DICT_SYMBOLS (BLOCK_MULTIDICT (block), miter, sym)
+             ALL_DICT_SYMBOLS (block->multidict (), miter, sym)
                {
                  if (iparams == nparams)
                    break;
@@ -1013,7 +1014,7 @@ buildsym_compunit::end_compunit_symtab_with_blockvector
        /* Note that we only want to fix up symbols from the local
           blocks, not blocks coming from included symtabs.  That is why
           we use ALL_DICT_SYMBOLS here and not ALL_BLOCK_SYMBOLS.  */
-       ALL_DICT_SYMBOLS (BLOCK_MULTIDICT (block), miter, sym)
+       ALL_DICT_SYMBOLS (block->multidict (), miter, sym)
          if (sym->symtab () == NULL)
            sym->set_symtab (symtab);
       }
@@ -1148,7 +1149,7 @@ buildsym_compunit::augment_type_symtab ()
         to the primary symtab.  */
       set_missing_symtab (m_file_symbols, cust);
 
-      mdict_add_pending (BLOCK_MULTIDICT (block), m_file_symbols);
+      mdict_add_pending (block->multidict (), m_file_symbols);
     }
 
   if (m_global_symbols != NULL)
@@ -1159,8 +1160,7 @@ buildsym_compunit::augment_type_symtab ()
         to the primary symtab.  */
       set_missing_symtab (m_global_symbols, cust);
 
-      mdict_add_pending (BLOCK_MULTIDICT (block),
-                       m_global_symbols);
+      mdict_add_pending (block->multidict (), m_global_symbols);
     }
 }
 
index 1283d2edc5001dbab69962697504d7fff7a105e3..4ff180d4873362599dad35ae9c8d33c9a720ab6c 100644 (file)
--- a/gdb/jit.c
+++ b/gdb/jit.c
@@ -580,8 +580,8 @@ finalize_symtab (struct gdb_symtab *stab, struct objfile *objfile)
                                           TARGET_CHAR_BIT,
                                           "void");
 
-      BLOCK_MULTIDICT (new_block)
-       = mdict_create_linear (&objfile->objfile_obstack, NULL);
+      new_block->set_multidict
+       (mdict_create_linear (&objfile->objfile_obstack, NULL));
       /* The address range.  */
       new_block->set_start (gdb_block_iter.begin);
       new_block->set_end (gdb_block_iter.end);
@@ -618,8 +618,8 @@ finalize_symtab (struct gdb_symtab *stab, struct objfile *objfile)
       new_block = (i == GLOBAL_BLOCK
                   ? allocate_global_block (&objfile->objfile_obstack)
                   : allocate_block (&objfile->objfile_obstack));
-      BLOCK_MULTIDICT (new_block)
-       = mdict_create_linear (&objfile->objfile_obstack, NULL);
+      new_block->set_multidict
+       (mdict_create_linear (&objfile->objfile_obstack, NULL));
       new_block->set_superblock (block_iter);
       block_iter = new_block;
 
index ddf3cd582534b18aa189669e09a64aabd72eacae..cd242967ab7d060871c2c1262ed3b124853ce94f 100644 (file)
@@ -4489,7 +4489,7 @@ static void
 add_symbol (struct symbol *s, struct symtab *symtab, struct block *b)
 {
   s->set_symtab (symtab);
-  mdict_add_symbol (BLOCK_MULTIDICT (b), s);
+  mdict_add_symbol (b->multidict (), s);
 }
 
 /* Add a new block B to a symtab S.  */
@@ -4733,9 +4733,9 @@ new_block (enum block_type type, enum language language)
   struct block *retval = XCNEW (struct block);
 
   if (type == FUNCTION_BLOCK)
-    BLOCK_MULTIDICT (retval) = mdict_create_linear_expandable (language);
+    retval->set_multidict (mdict_create_linear_expandable (language));
   else
-    BLOCK_MULTIDICT (retval) = mdict_create_hashed_expandable (language);
+    retval->set_multidict (mdict_create_hashed_expandable (language));
 
   return retval;
 }
index e664bcd2da97b7c0de51ad02a4a3eeff33a03de6..a709d947da00db1f55faa358e42f478c6fbb3fd1 100644 (file)
@@ -689,7 +689,7 @@ objfile_relocate1 (struct objfile *objfile,
 
            /* We only want to iterate over the local symbols, not any
               symbols in included symtabs.  */
-           ALL_DICT_SYMBOLS (BLOCK_MULTIDICT (b), miter, sym)
+           ALL_DICT_SYMBOLS (b->multidict (), miter, sym)
              {
                relocate_one_symbol (sym, objfile, delta);
              }
index e49322c2a84ac68951817ebd3d606d99178f8ece..3699e82d0c4284da47216e2701d923f55bc55f09 100644 (file)
@@ -294,7 +294,7 @@ dump_symtab_1 (struct symtab *symtab, struct ui_file *outfile)
             even if we're using a hashtable, but nothing else but this message
             wants it.  */
          gdb_printf (outfile, ", %d syms/buckets in ",
-                     mdict_size (BLOCK_MULTIDICT (b)));
+                     mdict_size (b->multidict ()));
          gdb_puts (paddress (gdbarch, b->start ()), outfile);
          gdb_printf (outfile, "..");
          gdb_puts (paddress (gdbarch, b->end ()), outfile);
@@ -312,7 +312,7 @@ dump_symtab_1 (struct symtab *symtab, struct ui_file *outfile)
          /* Now print each symbol in this block (in no particular order, if
             we're using a hashtable).  Note that we only want this
             block, not any blocks from included symtabs.  */
-         ALL_DICT_SYMBOLS (BLOCK_MULTIDICT (b), miter, sym)
+         ALL_DICT_SYMBOLS (b->multidict (), miter, sym)
            {
              try
                {