Add two convenience methods to block
authorTom Tromey <tromey@adacore.com>
Tue, 24 Oct 2023 13:27:01 +0000 (07:27 -0600)
committerTom Tromey <tromey@adacore.com>
Tue, 14 Nov 2023 15:43:34 +0000 (08:43 -0700)
This adds a couple of convenience methods, block::is_static_block and
block::is_global_block.

gdb/block.h
gdb/findvar.c

index 3a197e637549c9abea7fc3c5082d2f1a8dab8cbc..9fccbe02b9902aa923d186626d06144a6c3f8cd6 100644 (file)
@@ -254,10 +254,25 @@ struct block : public allocate_on_obstack
 
   const struct block *static_block () const;
 
+  /* Return true if this block is a static block.  */
+
+  bool is_static_block () const
+  {
+    const block *sup = superblock ();
+    if (sup == nullptr)
+      return false;
+    return sup->is_global_block ();
+  }
+
   /* Return the static block associated with block.  */
 
   const struct block *global_block () const;
 
+  /* Return true if this block is a global block.  */
+
+  bool is_global_block () const
+  { return superblock () == nullptr; }
+
   /* Set the compunit of this block, which must be a global block.  */
 
   void set_compunit_symtab (struct compunit_symtab *);
index 4e992ecdcc7361133e0bd90c6aefc336db48c453..1079b85df825eaecbfa063257271247e99870f00 100644 (file)
@@ -460,8 +460,7 @@ get_hosting_frame (struct symbol *var, const struct block *var_block,
      tests that embed global/static symbols with null location lists.
      We want to get <optimized out> instead of <frame required> when evaluating
      them so return a frame instead of raising an error.  */
-  else if (var_block == var_block->global_block ()
-          || var_block == var_block->static_block ())
+  else if (var_block->is_global_block () || var_block->is_static_block ())
     return frame;
 
   /* We have to handle the "my_func::my_local_var" notation.  This requires us
@@ -486,7 +485,7 @@ get_hosting_frame (struct symbol *var, const struct block *var_block,
 
       /* If we failed to find the proper frame, fallback to the heuristic
         method below.  */
-      else if (frame_block == frame_block->global_block ())
+      else if (frame_block->is_global_block ())
        {
          frame = NULL;
          break;