Introduce symbol_block_ops::get_block_value
authorTom Tromey <tromey@adacore.com>
Mon, 19 Dec 2022 18:25:48 +0000 (11:25 -0700)
committerTom Tromey <tromey@adacore.com>
Fri, 12 May 2023 19:25:28 +0000 (13:25 -0600)
This adds a new callback to symbol_block_ops.  This callback lets a
LOC_BLOCK symbol implement its own function to find the underlying
block.

gdb/symtab.c
gdb/symtab.h

index 8ace6ae6c7e79a07be1771f54e2013fe9545653e..4f28667b1b3d2175e9721c313a5314b64b0119db 100644 (file)
@@ -6412,7 +6412,8 @@ register_symbol_block_impl (enum address_class aclass,
 
   /* Sanity check OPS.  */
   gdb_assert (ops != NULL);
-  gdb_assert (ops->find_frame_base_location != NULL);
+  gdb_assert (ops->find_frame_base_location != nullptr
+             || ops->get_block_value != nullptr);
 
   return result;
 }
index 8d3f5610bd3e4eac3cd544b3ec602304d8016a84..d8e3c273f85c39618a86bf081e55912d7e3881b5 100644 (file)
@@ -1182,6 +1182,12 @@ struct symbol_block_ops
      the corresponding DW_AT_frame_base attribute.  */
   CORE_ADDR (*get_frame_base) (struct symbol *framefunc,
                               frame_info_ptr frame);
+
+  /* Return the block for this function.  So far, this is used to
+     implement function aliases.  So, if this is set, then it's not
+     necessary to set the other functions in this structure; and vice
+     versa.  */
+  const block *(*get_block_value) (const struct symbol *sym);
 };
 
 /* Functions used with LOC_REGISTER and LOC_REGPARM_ADDR.  */
@@ -1536,6 +1542,9 @@ struct block_symbol
 inline const block *
 symbol::value_block () const
 {
+  if (SYMBOL_BLOCK_OPS (this) != nullptr
+      && SYMBOL_BLOCK_OPS (this)->get_block_value != nullptr)
+    return SYMBOL_BLOCK_OPS (this)->get_block_value (this);
   return m_value.block;
 }