aboutsummaryrefslogtreecommitdiff
path: root/gdb/expression.h
diff options
context:
space:
mode:
authorAndrew Burgess <andrew.burgess@embecosm.com>2020-10-08 16:34:58 +0100
committerAndrew Burgess <andrew.burgess@embecosm.com>2020-10-22 09:24:43 +0100
commit6b4c676cc7f48f656cf235dd0507c41ab11d7cb5 (patch)
tree2aaee877ea0ddba4b3c99541a394833252b44b6d /gdb/expression.h
parentf2d8e4c59770975415585af20b3d4249ff57b36e (diff)
downloadbinutils-6b4c676cc7f48f656cf235dd0507c41ab11d7cb5.zip
binutils-6b4c676cc7f48f656cf235dd0507c41ab11d7cb5.tar.gz
binutils-6b4c676cc7f48f656cf235dd0507c41ab11d7cb5.tar.bz2
gdb/fortran: add support for parsing array strides in expressions
With this commit GDB now understands the syntax of Fortran array strides, a user can type an expression including an array stride, but they will only get an error informing them that array strides are not supported. This alone is an improvement on what we had before in GDB, better to give the user a helpful message that a particular feature is not supported than to just claim a syntax error. Before: (gdb) p array (1:10:2, 2:10:2) A syntax error in expression, near `:2, 2:10:2)'. Now: (gdb) p array (1:10:2, 2:10:2) Fortran array strides are not currently supported Later commits will allow GDB to handle array strides correctly. gdb/ChangeLog: * expprint.c (dump_subexp_body_standard): Print RANGE_HAS_STRIDE. * expression.h (enum range_type): Add RANGE_HAS_STRIDE. * f-exp.y (arglist): Allow for a series of subranges. (subrange): Add cases for subranges with strides. * f-lang.c (value_f90_subarray): Catch use of array strides and throw an error. * parse.c (operator_length_standard): Handle RANGE_HAS_STRIDE. gdb/testsuite/ChangeLog: * gdb.fortran/array-slices.exp: Add a new test.
Diffstat (limited to 'gdb/expression.h')
-rw-r--r--gdb/expression.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/expression.h b/gdb/expression.h
index fd483e5..8de7123 100644
--- a/gdb/expression.h
+++ b/gdb/expression.h
@@ -199,6 +199,9 @@ enum range_flag : unsigned
/* The high bound of this range is exclusive. */
RANGE_HIGH_BOUND_EXCLUSIVE = 1 << 2,
+
+ /* The range has a stride. */
+ RANGE_HAS_STRIDE = 1 << 3,
};
DEF_ENUM_FLAGS_TYPE (enum range_flag, range_flags);