aboutsummaryrefslogtreecommitdiff
path: root/gdb/ada-lang.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-03-08 07:27:57 -0700
committerTom Tromey <tom@tromey.com>2021-03-08 07:28:40 -0700
commit08a057e64bb74f4194a216f6693e04b1ad230f48 (patch)
treef4c76837efc277a660dfc9c2aef46262afb6a7aa /gdb/ada-lang.h
parentd308ba78cfaf7c1b3a8d33ceb66c9a180352b888 (diff)
downloadfsf-binutils-gdb-08a057e64bb74f4194a216f6693e04b1ad230f48.zip
fsf-binutils-gdb-08a057e64bb74f4194a216f6693e04b1ad230f48.tar.gz
fsf-binutils-gdb-08a057e64bb74f4194a216f6693e04b1ad230f48.tar.bz2
Convert ada-exp.y to use operations
This converts the Ada parser to generate operations rather than exp_elements. This was the most difficult of the parser conversions, partly due to the decision to integrate Ada expression resolution into the parse, and partly due to Ada aggregregate assignment. A couple of new per-parse globals are introduced, along with a number of helper functions. Resolution is done in 'ada_pop', yielding the unfortunate rule that ada-exp.y should generally not use parser_state::pop (exceptions are marked). gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * ada-exp.y: Create operations. (empty_stoken): Remove. (ada_pop, ada_wrap, ada_addrof, ada_un_wrap2, ada_wrap2) (ada_wrap_op, ada_wrap3, ada_funcall): New functions. (components): New global. (push_component, choice_component, pop_component, pop_components): New functions. (associations): New global (push_association, pop_association, pop_associations): New functions. (ada_parse): Update. (write_var_from_sym, write_int): Create operations. (write_exp_op_with_string): Remove. (write_object_renaming, write_selectors, write_ambiguous_var) (write_var_or_type, write_name_assoc): Create operations. * ada-lang.h (ada_index_type): Declare. * ada-lang.c (ada_index_type): No longer static.
Diffstat (limited to 'gdb/ada-lang.h')
-rw-r--r--gdb/ada-lang.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ada-lang.h b/gdb/ada-lang.h
index 679aeb4..8aaf975 100644
--- a/gdb/ada-lang.h
+++ b/gdb/ada-lang.h
@@ -417,4 +417,12 @@ extern block_symbol ada_resolve_variable (struct symbol *sym,
int deprocedure_p,
innermost_block_tracker *tracker);
+/* The type of nth index in arrays of given type (n numbering from 1).
+ Does not examine memory. Throws an error if N is invalid or TYPE
+ is not an array type. NAME is the name of the Ada attribute being
+ evaluated ('range, 'first, 'last, or 'length); it is used in building
+ the error message. */
+extern struct type *ada_index_type (struct type *type, int n,
+ const char *name);
+
#endif