aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-01-19 17:20:09 -0700
committerTom Tromey <tom@tromey.com>2023-02-19 12:51:05 -0700
commit780040961370cb7a9849b83553f03bf7d2f0f9df (patch)
treeb6f01f996c68daa6c0d2f6f5c55c760d2d1a880b
parent392c1cbd745a575c5894ea33876f255b66a14d89 (diff)
downloadgdb-780040961370cb7a9849b83553f03bf7d2f0f9df.zip
gdb-780040961370cb7a9849b83553f03bf7d2f0f9df.tar.gz
gdb-780040961370cb7a9849b83553f03bf7d2f0f9df.tar.bz2
Don't allow NULL as an argument to block_static_block
block_static_block has special behavior when the block is NULL. Remove this and patch up the callers instead.
-rw-r--r--gdb/ada-lang.c6
-rw-r--r--gdb/block.c4
-rw-r--r--gdb/compile/compile-c-symbols.c8
-rw-r--r--gdb/compile/compile-cplus-symbols.c4
-rw-r--r--gdb/cp-support.c6
-rw-r--r--gdb/symtab.c13
6 files changed, 30 insertions, 11 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 75c5f5e..0198598 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -13795,7 +13795,11 @@ public:
{
struct block_symbol sym;
- sym = ada_lookup_symbol (name, block_static_block (block), domain);
+ sym = ada_lookup_symbol (name,
+ (block == nullptr
+ ? nullptr
+ : block_static_block (block)),
+ domain);
if (sym.symbol != NULL)
return sym;
diff --git a/gdb/block.c b/gdb/block.c
index 97a0214..d21729f 100644
--- a/gdb/block.c
+++ b/gdb/block.c
@@ -364,12 +364,12 @@ block_set_using (struct block *block,
}
/* Return the static block associated to BLOCK. Return NULL if block
- is NULL or if block is a global block. */
+ is a global block. */
const struct block *
block_static_block (const struct block *block)
{
- if (block == NULL || block->superblock () == NULL)
+ if (block->superblock () == NULL)
return NULL;
while (block->superblock ()->superblock () != NULL)
diff --git a/gdb/compile/compile-c-symbols.c b/gdb/compile/compile-c-symbols.c
index 6faff0e..7af0bff 100644
--- a/gdb/compile/compile-c-symbols.c
+++ b/gdb/compile/compile-c-symbols.c
@@ -212,7 +212,6 @@ static void
convert_symbol_sym (compile_c_instance *context, const char *identifier,
struct block_symbol sym, domain_enum domain)
{
- const struct block *static_block;
int is_local_symbol;
/* If we found a symbol and it is not in the static or global
@@ -227,7 +226,9 @@ convert_symbol_sym (compile_c_instance *context, const char *identifier,
}
*/
- static_block = block_static_block (sym.block);
+ const struct block *static_block = nullptr;
+ if (sym.block != nullptr)
+ static_block = block_static_block (sym.block);
/* STATIC_BLOCK is NULL if FOUND_BLOCK is the global block. */
is_local_symbol = (sym.block != static_block && static_block != NULL);
if (is_local_symbol)
@@ -613,6 +614,9 @@ generate_c_for_variable_locations (compile_instance *compiler,
const struct block *block,
CORE_ADDR pc)
{
+ if (block == nullptr)
+ return {};
+
const struct block *static_block = block_static_block (block);
/* If we're already in the static or global block, there is nothing
diff --git a/gdb/compile/compile-cplus-symbols.c b/gdb/compile/compile-cplus-symbols.c
index 039aee3..c183d08 100644
--- a/gdb/compile/compile-cplus-symbols.c
+++ b/gdb/compile/compile-cplus-symbols.c
@@ -239,7 +239,9 @@ convert_symbol_sym (compile_cplus_instance *instance,
}
*/
- const struct block *static_block = block_static_block (sym.block);
+ const struct block *static_block = nullptr;
+ if (sym.block != nullptr)
+ static_block = block_static_block (sym.block);
/* STATIC_BLOCK is NULL if FOUND_BLOCK is the global block. */
bool is_local_symbol = (sym.block != static_block && static_block != nullptr);
if (is_local_symbol)
diff --git a/gdb/cp-support.c b/gdb/cp-support.c
index 6a96f9f..f7767c9 100644
--- a/gdb/cp-support.c
+++ b/gdb/cp-support.c
@@ -1307,7 +1307,8 @@ add_symbol_overload_list_namespace (const char *func_name,
}
/* Look in the static block. */
- block = block_static_block (get_selected_block (0));
+ block = get_selected_block (0);
+ block = block == nullptr ? nullptr : block_static_block (block);
if (block)
add_symbol_overload_list_block (name, block, overload_list);
@@ -1457,6 +1458,9 @@ add_symbol_overload_list_qualified (const char *func_name,
add_symbol_overload_list_block (func_name, b, overload_list);
surrounding_static_block = block_static_block (get_selected_block (0));
+ surrounding_static_block = (surrounding_static_block == nullptr
+ ? nullptr
+ : block_static_block (surrounding_static_block));
/* Go through the symtabs and check the externs and statics for
symbols which match. */
diff --git a/gdb/symtab.c b/gdb/symtab.c
index bd73c52..598e243 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -2155,13 +2155,15 @@ lookup_local_symbol (const char *name,
const domain_enum domain,
enum language language)
{
+ if (block == nullptr)
+ return {};
+
struct symbol *sym;
const struct block *static_block = block_static_block (block);
const char *scope = block_scope (block);
- /* Check if either no block is specified or it's a global block. */
-
- if (static_block == NULL)
+ /* Check if it's a global block. */
+ if (static_block == nullptr)
return {};
while (block != static_block)
@@ -2458,6 +2460,9 @@ lookup_symbol_in_static_block (const char *name,
const struct block *block,
const domain_enum domain)
{
+ if (block == nullptr)
+ return {};
+
const struct block *static_block = block_static_block (block);
struct symbol *sym;
@@ -5825,7 +5830,7 @@ default_collect_symbol_completion_matches_break_on
visible from current context. */
b = get_selected_block (0);
- surrounding_static_block = block_static_block (b);
+ surrounding_static_block = b == nullptr ? nullptr : block_static_block (b);
surrounding_global_block = block_global_block (b);
if (surrounding_static_block != NULL)
while (b != surrounding_static_block)