diff options
author | Tom Tromey <tom@tromey.com> | 2023-03-30 23:00:26 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-01-28 10:58:16 -0700 |
commit | ccf41c248737eb6650211481366c4e1156ce01ae (patch) | |
tree | 55933f48a150085e0df7728b4f82047977559a88 /gdb/m2-exp.y | |
parent | 6c0152149476085e6c4c5c812bfc3a06fff7c938 (diff) | |
download | binutils-ccf41c248737eb6650211481366c4e1156ce01ae.zip binutils-ccf41c248737eb6650211481366c4e1156ce01ae.tar.gz binutils-ccf41c248737eb6650211481366c4e1156ce01ae.tar.bz2 |
Use domain_search_flags in lookup_symbol et al
This changes lookup_symbol and associated APIs to accept
domain_search_flags rather than a domain_enum.
Note that this introduces some new constants to Python and Guile. I
chose to break out the documentation patch for this, because the
internals here do not change until a later patch, and it seemed
simpler to patch the docs just once, rather than twice.
Diffstat (limited to 'gdb/m2-exp.y')
-rw-r--r-- | gdb/m2-exp.y | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y index 67252ef..ce5a399 100644 --- a/gdb/m2-exp.y +++ b/gdb/m2-exp.y @@ -494,7 +494,7 @@ fblock : BLOCKNAME { struct symbol *sym = lookup_symbol (copy_name ($1).c_str (), pstate->expression_context_block, - VAR_DOMAIN, 0).symbol; + SEARCH_VFT, 0).symbol; $$ = sym;} ; @@ -503,7 +503,7 @@ fblock : BLOCKNAME fblock : block COLONCOLON BLOCKNAME { struct symbol *tem = lookup_symbol (copy_name ($3).c_str (), $1, - VAR_DOMAIN, 0).symbol; + SEARCH_VFT, 0).symbol; if (!tem || tem->aclass () != LOC_BLOCK) error (_("No function \"%s\" in specified context."), copy_name ($3).c_str ()); @@ -528,7 +528,7 @@ variable: DOLLAR_VARIABLE variable: block COLONCOLON NAME { struct block_symbol sym = lookup_symbol (copy_name ($3).c_str (), $1, - VAR_DOMAIN, 0); + SEARCH_VFT, 0); if (sym.symbol == 0) error (_("No symbol \"%s\" in specified context."), @@ -549,7 +549,7 @@ variable: NAME sym = lookup_symbol (name.c_str (), pstate->expression_context_block, - VAR_DOMAIN, + SEARCH_VFT, &is_a_field_of_this); pstate->push_symbol (name.c_str (), sym); @@ -927,7 +927,7 @@ yylex (void) if (lookup_symtab (tmp.c_str ())) return BLOCKNAME; sym = lookup_symbol (tmp.c_str (), pstate->expression_context_block, - VAR_DOMAIN, 0).symbol; + SEARCH_VFT, 0).symbol; if (sym && sym->aclass () == LOC_BLOCK) return BLOCKNAME; if (lookup_typename (pstate->language (), |