4c2ad1
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4c2ad1
From: Fedora GDB patches <invalid@email.com>
4c2ad1
Date: Fri, 27 Oct 2017 21:07:50 +0200
4c2ad1
Subject: gdb-vla-intel-fortran-strides.patch
4c2ad1
4c2ad1
;; VLA (Fortran dynamic arrays) from Intel + archer-jankratochvil-vla tests.
4c2ad1
;;=push
4c2ad1
4c2ad1
git diff --stat -p gdb/master...gdb/users/bheckel/fortran-strides
4c2ad1
dbfd7140bf4c0500d1f5d192be781f83f78f7922
4c2ad1
4c2ad1
 gdb/dwarf2loc.c                             |  46 ++-
4c2ad1
 gdb/dwarf2loc.h                             |   6 +
4c2ad1
 gdb/dwarf2read.c                            |  13 +-
4c2ad1
 gdb/eval.c                                  | 391 +++++++++++++++++++++-----
4c2ad1
 gdb/expprint.c                              |  20 +-
4c2ad1
 gdb/expression.h                            |  18 +-
4c2ad1
 gdb/f-exp.y                                 |  42 ++-
4c2ad1
 gdb/f-valprint.c                            |   8 +-
4c2ad1
 gdb/gdbtypes.c                              |  34 ++-
4c2ad1
 gdb/gdbtypes.h                              |  18 +-
4c2ad1
 gdb/parse.c                                 |  24 +-
4c2ad1
 gdb/rust-exp.y                              |  12 +-
4c2ad1
 gdb/rust-lang.c                             |  17 +-
4c2ad1
 gdb/testsuite/gdb.fortran/static-arrays.exp | 421 ++++++++++++++++++++++++++++
4c2ad1
 gdb/testsuite/gdb.fortran/static-arrays.f90 |  55 ++++
4c2ad1
 gdb/testsuite/gdb.fortran/vla-ptype.exp     |   4 +
4c2ad1
 gdb/testsuite/gdb.fortran/vla-sizeof.exp    |   4 +
4c2ad1
 gdb/testsuite/gdb.fortran/vla-stride.exp    |  44 +++
4c2ad1
 gdb/testsuite/gdb.fortran/vla-stride.f90    |  29 ++
4c2ad1
 gdb/testsuite/gdb.fortran/vla.f90           |  10 +
4c2ad1
 gdb/valarith.c                              |  10 +-
4c2ad1
 gdb/valops.c                                | 197 +++++++++++--
4c2ad1
 gdb/value.h                                 |   2 +
4c2ad1
 23 files changed, 1242 insertions(+), 183 deletions(-)
4c2ad1
4c2ad1
diff --git a/gdb/dwarf2loc.c b/gdb/dwarf2loc.c
4c2ad1
--- a/gdb/dwarf2loc.c
4c2ad1
+++ b/gdb/dwarf2loc.c
4c2ad1
@@ -2600,11 +2600,14 @@ dwarf2_locexpr_baton_eval (const struct dwarf2_locexpr_baton *dlbaton,
4c2ad1
 /* See dwarf2loc.h.  */
4c2ad1
 
4c2ad1
 int
4c2ad1
-dwarf2_evaluate_property (const struct dynamic_prop *prop,
4c2ad1
+dwarf2_evaluate_property_signed (const struct dynamic_prop *prop,
4c2ad1
 			  struct frame_info *frame,
4c2ad1
 			  struct property_addr_info *addr_stack,
4c2ad1
-			  CORE_ADDR *value)
4c2ad1
+			  CORE_ADDR *value,
4c2ad1
+			  int is_signed)
4c2ad1
 {
4c2ad1
+  int rc = 0;
4c2ad1
+
4c2ad1
   if (prop == NULL)
4c2ad1
     return 0;
4c2ad1
 
4c2ad1
@@ -2628,7 +2631,7 @@ dwarf2_evaluate_property (const struct dynamic_prop *prop,
4c2ad1
 
4c2ad1
 		*value = value_as_address (val);
4c2ad1
 	      }
4c2ad1
-	    return 1;
4c2ad1
+	    rc = 1;
4c2ad1
 	  }
4c2ad1
       }
4c2ad1
       break;
4c2ad1
@@ -2650,7 +2653,7 @@ dwarf2_evaluate_property (const struct dynamic_prop *prop,
4c2ad1
 	    if (!value_optimized_out (val))
4c2ad1
 	      {
4c2ad1
 		*value = value_as_address (val);
4c2ad1
-		return 1;
4c2ad1
+		rc = 1;
4c2ad1
 	      }
4c2ad1
 	  }
4c2ad1
       }
4c2ad1
@@ -2658,8 +2661,8 @@ dwarf2_evaluate_property (const struct dynamic_prop *prop,
4c2ad1
 
4c2ad1
     case PROP_CONST:
4c2ad1
       *value = prop->data.const_val;
4c2ad1
-      return 1;
4c2ad1
-
4c2ad1
+      rc = 1;
4c2ad1
+      break;
4c2ad1
     case PROP_ADDR_OFFSET:
4c2ad1
       {
4c2ad1
 	struct dwarf2_property_baton *baton
4c2ad1
@@ -2680,11 +2683,38 @@ dwarf2_evaluate_property (const struct dynamic_prop *prop,
4c2ad1
 	  val = value_at (baton->offset_info.type,
4c2ad1
 			  pinfo->addr + baton->offset_info.offset);
4c2ad1
 	*value = value_as_address (val);
4c2ad1
-	return 1;
4c2ad1
+	rc = 1;
4c2ad1
       }
4c2ad1
+      break;
4c2ad1
     }
4c2ad1
 
4c2ad1
-  return 0;
4c2ad1
+  if (rc == 1 && is_signed == 1)
4c2ad1
+    {
4c2ad1
+      /* If we have a valid return candidate and it's value is signed,
4c2ad1
+         we have to sign-extend the value because CORE_ADDR on 64bit machine has
4c2ad1
+         8 bytes but address size of an 32bit application is 4 bytes.  */
4c2ad1
+      struct gdbarch * gdbarch = target_gdbarch ();
4c2ad1
+      const int addr_bit = gdbarch_addr_bit (gdbarch);
4c2ad1
+      const CORE_ADDR neg_mask = ((~0) <<  (addr_bit - 1));
4c2ad1
+
4c2ad1
+      /* Check if signed bit is set and sign-extend values.  */
4c2ad1
+      if (*value & (neg_mask))
4c2ad1
+	*value |= (neg_mask );
4c2ad1
+    }
4c2ad1
+  return rc;
4c2ad1
+}
4c2ad1
+
4c2ad1
+int
4c2ad1
+dwarf2_evaluate_property (const struct dynamic_prop *prop,
4c2ad1
+			  struct frame_info *frame,
4c2ad1
+			  struct property_addr_info *addr_stack,
4c2ad1
+			  CORE_ADDR *value)
4c2ad1
+{
4c2ad1
+  return dwarf2_evaluate_property_signed (prop,
4c2ad1
+				   frame,
4c2ad1
+				   addr_stack,
4c2ad1
+				   value,
4c2ad1
+				   0);
4c2ad1
 }
4c2ad1
 
4c2ad1
 /* See dwarf2loc.h.  */
4c2ad1
diff --git a/gdb/dwarf2loc.h b/gdb/dwarf2loc.h
4c2ad1
--- a/gdb/dwarf2loc.h
4c2ad1
+++ b/gdb/dwarf2loc.h
4c2ad1
@@ -143,6 +143,12 @@ int dwarf2_evaluate_property (const struct dynamic_prop *prop,
4c2ad1
 			      struct property_addr_info *addr_stack,
4c2ad1
 			      CORE_ADDR *value);
4c2ad1
 
4c2ad1
+int dwarf2_evaluate_property_signed (const struct dynamic_prop *prop,
4c2ad1
+			      struct frame_info *frame,
4c2ad1
+			      struct property_addr_info *addr_stack,
4c2ad1
+			      CORE_ADDR *value,
4c2ad1
+			      int is_signed);
4c2ad1
+
4c2ad1
 /* A helper for the compiler interface that compiles a single dynamic
4c2ad1
    property to C code.
4c2ad1
 
4c2ad1
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
4c2ad1
--- a/gdb/dwarf2read.c
4c2ad1
+++ b/gdb/dwarf2read.c
4c2ad1
@@ -17566,7 +17566,7 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
4c2ad1
   struct type *base_type, *orig_base_type;
4c2ad1
   struct type *range_type;
4c2ad1
   struct attribute *attr;
4c2ad1
-  struct dynamic_prop low, high;
4c2ad1
+  struct dynamic_prop low, high, stride;
4c2ad1
   int low_default_is_valid;
4c2ad1
   int high_bound_is_count = 0;
4c2ad1
   const char *name;
4c2ad1
@@ -17586,7 +17586,9 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
4c2ad1
 
4c2ad1
   low.kind = PROP_CONST;
4c2ad1
   high.kind = PROP_CONST;
4c2ad1
+  stride.kind = PROP_CONST;
4c2ad1
   high.data.const_val = 0;
4c2ad1
+  stride.data.const_val = 0;
4c2ad1
 
4c2ad1
   /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
4c2ad1
      omitting DW_AT_lower_bound.  */
4c2ad1
@@ -17619,6 +17621,14 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
4c2ad1
       break;
4c2ad1
     }
4c2ad1
 
4c2ad1
+  attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
4c2ad1
+  if (attr)
4c2ad1
+    if (!attr_to_dynamic_prop (attr, die, cu, &stride))
4c2ad1
+        complaint (_("Missing DW_AT_byte_stride "
4c2ad1
+		     "- DIE at 0x%s [in module %s]"),
4c2ad1
+		   sect_offset_str (die->sect_off),
4c2ad1
+		   objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
4c2ad1
+
4c2ad1
   attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
4c2ad1
   if (attr)
4c2ad1
     attr_to_dynamic_prop (attr, die, cu, &low);
4c2ad1
@@ -17696,7 +17706,7 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
4c2ad1
       && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
4c2ad1
     high.data.const_val |= negative_mask;
4c2ad1
 
4c2ad1
-  range_type = create_range_type (NULL, orig_base_type, &low, &high);
4c2ad1
+  range_type = create_range_type (NULL, orig_base_type, &low, &high, &stride);
4c2ad1
 
4c2ad1
   if (high_bound_is_count)
4c2ad1
     TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
4c2ad1
diff --git a/gdb/eval.c b/gdb/eval.c
4c2ad1
--- a/gdb/eval.c
4c2ad1
+++ b/gdb/eval.c
4c2ad1
@@ -377,29 +377,325 @@ init_array_element (struct value *array, struct value *element,
4c2ad1
   return index;
4c2ad1
 }
4c2ad1
 
4c2ad1
+/* Evaluates any operation on Fortran arrays or strings with at least
4c2ad1
+   one user provided parameter.  Expects the input ARRAY to be either
4c2ad1
+   an array, or a string.  Evaluates EXP by incrementing POS, and
4c2ad1
+   writes the content from the elt stack into a local struct.  NARGS
4c2ad1
+   specifies number of literal or range arguments the user provided.
4c2ad1
+   NARGS must be the same number as ARRAY has dimensions.  */
4c2ad1
+
4c2ad1
 static struct value *
4c2ad1
-value_f90_subarray (struct value *array,
4c2ad1
-		    struct expression *exp, int *pos, enum noside noside)
4c2ad1
+value_f90_subarray (struct value *array, struct expression *exp,
4c2ad1
+		    int *pos, int nargs, enum noside noside)
4c2ad1
 {
4c2ad1
-  int pc = (*pos) + 1;
4c2ad1
+  int i, dim_count = 0;
4c2ad1
   LONGEST low_bound, high_bound;
4c2ad1
-  struct type *range = check_typedef (TYPE_INDEX_TYPE (value_type (array)));
4c2ad1
-  enum range_type range_type
4c2ad1
-    = (enum range_type) longest_to_int (exp->elts[pc].longconst);
4c2ad1
- 
4c2ad1
-  *pos += 3;
4c2ad1
-
4c2ad1
-  if (range_type == LOW_BOUND_DEFAULT || range_type == BOTH_BOUND_DEFAULT)
4c2ad1
-    low_bound = TYPE_LOW_BOUND (range);
4c2ad1
-  else
4c2ad1
-    low_bound = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
4c2ad1
+  struct value *new_array = array;
4c2ad1
+  struct type *array_type = check_typedef (value_type (new_array));
4c2ad1
+  struct type *elt_type;
4c2ad1
+
4c2ad1
+  typedef struct subscript_range
4c2ad1
+  {
4c2ad1
+    enum range_type f90_range_type;
4c2ad1
+    LONGEST low, high, stride;
4c2ad1
+  } subscript_range;
4c2ad1
+
4c2ad1
+  typedef enum subscript_kind
4c2ad1
+  {
4c2ad1
+    SUBSCRIPT_RANGE,    /* e.g. "(lowbound:highbound)"  */
4c2ad1
+    SUBSCRIPT_INDEX    /* e.g. "(literal)"  */
4c2ad1
+  } kind;
4c2ad1
+
4c2ad1
+  /* Local struct to hold user data for Fortran subarray dimensions.  */
4c2ad1
+  struct subscript_store
4c2ad1
+  {
4c2ad1
+    /* For every dimension, we are either working on a range or an index
4c2ad1
+       expression, so we store this info separately for later.  */
4c2ad1
+    enum subscript_kind kind;
4c2ad1
+
4c2ad1
+    /* We also store either the lower and upper bound info, or the index
4c2ad1
+       number.  Before evaluation of the input values, we do not know if we are
4c2ad1
+       actually working on a range of ranges, or an index in a range.  So as a
4c2ad1
+       first step we store all input in a union.  The array calculation itself
4c2ad1
+       deals with this later on.  */
4c2ad1
+    union element_range
4c2ad1
+    {
4c2ad1
+      subscript_range range;
4c2ad1
+      LONGEST number;
4c2ad1
+    } U;
4c2ad1
+  } *subscript_array;
4c2ad1
+
4c2ad1
+  /* Check if the number of arguments provided by the user matches
4c2ad1
+     the number of dimension of the array.  A string has only one
4c2ad1
+     dimension.  */
4c2ad1
+  if (nargs != calc_f77_array_dims (value_type (new_array)))
4c2ad1
+    error (_("Wrong number of subscripts"));
4c2ad1
+
4c2ad1
+  subscript_array = (struct subscript_store*) alloca (sizeof (*subscript_array) * nargs);
4c2ad1
+
4c2ad1
+  /* Parse the user input into the SUBSCRIPT_ARRAY to store it.  We need
4c2ad1
+     to evaluate it first, as the input is from left-to-right.  The
4c2ad1
+     array is stored from right-to-left.  So we have to use the user
4c2ad1
+     input in reverse order.  Later on, we need the input information to
4c2ad1
+     re-calculate the output array.  For multi-dimensional arrays, we
4c2ad1
+     can be dealing with any possible combination of ranges and indices
4c2ad1
+     for every dimension.  */
4c2ad1
+  for (i = 0; i < nargs; i++)
4c2ad1
+    {
4c2ad1
+      struct subscript_store *index = &subscript_array[i];
4c2ad1
 
4c2ad1
-  if (range_type == HIGH_BOUND_DEFAULT || range_type == BOTH_BOUND_DEFAULT)
4c2ad1
-    high_bound = TYPE_HIGH_BOUND (range);
4c2ad1
-  else
4c2ad1
-    high_bound = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
4c2ad1
+      /* The user input is a range, with or without lower and upper bound.
4c2ad1
+	 E.g.: "p arry(2:5)", "p arry( :5)", "p arry( : )", etc.  */
4c2ad1
+      if (exp->elts[*pos].opcode == OP_RANGE)
4c2ad1
+	{
4c2ad1
+	  int pc = (*pos) + 1;
4c2ad1
+	  subscript_range *range;
4c2ad1
+
4c2ad1
+	  index->kind = SUBSCRIPT_RANGE;
4c2ad1
+	  range = &index->U.range;
4c2ad1
+
4c2ad1
+	  *pos += 3;
4c2ad1
+	  range->f90_range_type = (enum range_type) exp->elts[pc].longconst;
4c2ad1
+
4c2ad1
+	  /* If a lower bound was provided by the user, the bit has been
4c2ad1
+	     set and we can assign the value from the elt stack.  Same for
4c2ad1
+	     upper bound.  */
4c2ad1
+	  if ((range->f90_range_type & SUBARRAY_LOW_BOUND)
4c2ad1
+	      == SUBARRAY_LOW_BOUND)
4c2ad1
+	    range->low = value_as_long (evaluate_subexp (NULL_TYPE, exp,
4c2ad1
+							 pos, noside));
4c2ad1
+	  if ((range->f90_range_type & SUBARRAY_HIGH_BOUND)
4c2ad1
+	      == SUBARRAY_HIGH_BOUND)
4c2ad1
+	    range->high = value_as_long (evaluate_subexp (NULL_TYPE, exp,
4c2ad1
+							  pos, noside));
4c2ad1
+
4c2ad1
+	  /* Assign the user's stride value if provided.  */
4c2ad1
+	  if ((range->f90_range_type & SUBARRAY_STRIDE) == SUBARRAY_STRIDE)
4c2ad1
+	    range->stride = value_as_long (evaluate_subexp (NULL_TYPE, exp,
4c2ad1
+							     pos, noside));
4c2ad1
+
4c2ad1
+	  /* Assign the default stride value '1'.  */
4c2ad1
+	  else
4c2ad1
+	    range->stride = 1;
4c2ad1
+
4c2ad1
+	  /* Check the provided stride value is illegal, aka '0'.  */
4c2ad1
+	  if (range->stride == 0)
4c2ad1
+	    error (_("Stride must not be 0"));
4c2ad1
+	}
4c2ad1
+      /* User input is an index.  E.g.: "p arry(5)".  */
4c2ad1
+      else
4c2ad1
+	{
4c2ad1
+	  struct value *val;
4c2ad1
+
4c2ad1
+	  index->kind = SUBSCRIPT_INDEX;
4c2ad1
+
4c2ad1
+	  /* Evaluate each subscript; it must be a legal integer in F77.  This
4c2ad1
+	     ensures the validity of the provided index.  */
4c2ad1
+	  val = evaluate_subexp_with_coercion (exp, pos, noside);
4c2ad1
+	  index->U.number = value_as_long (val);
4c2ad1
+	}
4c2ad1
+
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  /* Traverse the array from right to left and set the high and low bounds
4c2ad1
+     for later use.  */
4c2ad1
+  for (i = nargs - 1; i >= 0; i--)
4c2ad1
+    {
4c2ad1
+      struct subscript_store *index = &subscript_array[i];
4c2ad1
+      struct type *index_type = TYPE_INDEX_TYPE (array_type);
4c2ad1
+
4c2ad1
+      switch (index->kind)
4c2ad1
+	{
4c2ad1
+	case SUBSCRIPT_RANGE:
4c2ad1
+	  {
4c2ad1
+
4c2ad1
+	    /* When we hit the first range specified by the user, we must
4c2ad1
+	       treat any subsequent user entry as a range.  We simply
4c2ad1
+	       increment DIM_COUNT which tells us how many times we are
4c2ad1
+	       calling VALUE_SLICE_1.  */
4c2ad1
+	    subscript_range *range = &index->U.range;
4c2ad1
+
4c2ad1
+	    /* If no lower bound was provided by the user, we take the
4c2ad1
+	       default boundary.  Same for the high bound.  */
4c2ad1
+	    if ((range->f90_range_type & SUBARRAY_LOW_BOUND) == 0)
4c2ad1
+	      range->low = TYPE_LOW_BOUND (index_type);
4c2ad1
+
4c2ad1
+	    if ((range->f90_range_type & SUBARRAY_HIGH_BOUND) == 0)
4c2ad1
+	      range->high = TYPE_HIGH_BOUND (index_type);
4c2ad1
+
4c2ad1
+	    /* Both user provided low and high bound have to be inside the
4c2ad1
+	       array bounds.  Throw an error if not.  */
4c2ad1
+	    if (range->low < TYPE_LOW_BOUND (index_type)
4c2ad1
+		|| range->low > TYPE_HIGH_BOUND (index_type)
4c2ad1
+		|| range->high < TYPE_LOW_BOUND (index_type)
4c2ad1
+		|| range->high > TYPE_HIGH_BOUND (index_type))
4c2ad1
+	      error (_("provided bound(s) outside array bound(s)"));
4c2ad1
+
4c2ad1
+	    /* For a negative stride the lower boundary must be larger than the
4c2ad1
+	       upper boundary.
4c2ad1
+	       For a positive stride the lower boundary must be smaller than the
4c2ad1
+	       upper boundary.  */
4c2ad1
+	    if ((range->stride < 0 && range->low < range->high)
4c2ad1
+		|| (range->stride > 0 && range->low > range->high))
4c2ad1
+	      error (_("Wrong value provided for stride and boundaries"));
4c2ad1
+
4c2ad1
+	  }
4c2ad1
+	  break;
4c2ad1
+
4c2ad1
+	case SUBSCRIPT_INDEX:
4c2ad1
+	  break;
4c2ad1
+
4c2ad1
+	}
4c2ad1
+
4c2ad1
+       array_type = TYPE_TARGET_TYPE (array_type);
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  /* Reset ARRAY_TYPE before slicing.*/
4c2ad1
+  array_type = check_typedef (value_type (new_array));
4c2ad1
+
4c2ad1
+  /* Traverse the array from right to left and evaluate each corresponding
4c2ad1
+     user input.  VALUE_SUBSCRIPT is called for every index, until a range
4c2ad1
+     expression is evaluated.  After a range expression has been evaluated,
4c2ad1
+     every subsequent expression is also treated as a range.  */
4c2ad1
+  for (i = nargs - 1; i >= 0; i--)
4c2ad1
+    {
4c2ad1
+      struct subscript_store *index = &subscript_array[i];
4c2ad1
+      struct type *index_type = TYPE_INDEX_TYPE (array_type);
4c2ad1
+
4c2ad1
+      switch (index->kind)
4c2ad1
+	{
4c2ad1
+	case SUBSCRIPT_RANGE:
4c2ad1
+	  {
4c2ad1
+
4c2ad1
+	    /* When we hit the first range specified by the user, we must
4c2ad1
+	       treat any subsequent user entry as a range.  We simply
4c2ad1
+	       increment DIM_COUNT which tells us how many times we are
4c2ad1
+	       calling VALUE_SLICE_1.  */
4c2ad1
+	    subscript_range *range = &index->U.range;
4c2ad1
+
4c2ad1
+	    /* DIM_COUNT counts every user argument that is treated as a range.
4c2ad1
+	       This is necessary for expressions like 'print array(7, 8:9).
4c2ad1
+	       Here the first argument is a literal, but must be treated as a
4c2ad1
+	       range argument to allow the correct output representation.  */
4c2ad1
+	    dim_count++;
4c2ad1
+
4c2ad1
+	    new_array
4c2ad1
+	      = value_slice_1 (new_array, range->low,
4c2ad1
+			       range->high - range->low + 1,
4c2ad1
+			       range->stride, dim_count);
4c2ad1
+	  }
4c2ad1
+	  break;
4c2ad1
+
4c2ad1
+	case SUBSCRIPT_INDEX:
4c2ad1
+	  {
4c2ad1
+	    /* DIM_COUNT only stays '0' when no range argument was processed
4c2ad1
+	       before, starting from the last dimension.  This way we can
4c2ad1
+	       reduce the number of dimensions from the result array.
4c2ad1
+	       However, if a range has been processed before an index, we
4c2ad1
+	       treat the index like a range with equal low- and high bounds
4c2ad1
+	       to get the value offset right.  */
4c2ad1
+	    if (dim_count == 0)
4c2ad1
+	      new_array
4c2ad1
+	        = value_subscripted_rvalue (new_array, index->U.number,
4c2ad1
+					    f77_get_lowerbound (value_type
4c2ad1
+								  (new_array)));
4c2ad1
+	    else
4c2ad1
+	      {
4c2ad1
+		dim_count++;
4c2ad1
+
4c2ad1
+		/* We might end up here, because we have to treat the provided
4c2ad1
+		   index like a range. But now VALUE_SUBSCRIPTED_RVALUE
4c2ad1
+		   cannot do the range checks for us. So we have to make sure
4c2ad1
+		   ourselves that the user provided index is inside the
4c2ad1
+		   array bounds.  Throw an error if not.  */
4c2ad1
+		if (index->U.number < TYPE_LOW_BOUND (index_type)
4c2ad1
+		    && index->U.number > TYPE_HIGH_BOUND (index_type))
4c2ad1
+		  error (_("provided bound(s) outside array bound(s)"));
4c2ad1
+
4c2ad1
+		if (index->U.number > TYPE_LOW_BOUND (index_type)
4c2ad1
+		    && index->U.number > TYPE_HIGH_BOUND (index_type))
4c2ad1
+		  error (_("provided bound(s) outside array bound(s)"));
4c2ad1
+
4c2ad1
+		new_array = value_slice_1 (new_array,
4c2ad1
+					   index->U.number,
4c2ad1
+					   1, /* COUNT is '1' element  */
4c2ad1
+					   1, /* STRIDE set to '1'  */
4c2ad1
+					   dim_count);
4c2ad1
+	      }
4c2ad1
+
4c2ad1
+	  }
4c2ad1
+	  break;
4c2ad1
+	}
4c2ad1
+      array_type = TYPE_TARGET_TYPE (array_type);
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  /* With DIM_COUNT > 1 we currently have a one dimensional array, but expect
4c2ad1
+     an array of arrays, depending on how many ranges have been provided by
4c2ad1
+     the user.  So we need to rebuild the array dimensions for printing it
4c2ad1
+     correctly.
4c2ad1
+     Starting from right to left in the user input, after we hit the first
4c2ad1
+     range argument every subsequent argument is also treated as a range.
4c2ad1
+     E.g.:
4c2ad1
+     "p ary(3, 7, 2:15)" in Fortran has only 1 dimension, but we calculated 3
4c2ad1
+     ranges.
4c2ad1
+     "p ary(3, 7:12, 4)" in Fortran has only 1 dimension, but we calculated 2
4c2ad1
+     ranges.
4c2ad1
+     "p ary(2:4, 5, 7)" in Fortran has only 1 dimension, and we calculated 1
4c2ad1
+     range.  */
4c2ad1
+  if (dim_count > 1)
4c2ad1
+    {
4c2ad1
+      struct value *v = NULL;
4c2ad1
+
4c2ad1
+      elt_type = TYPE_TARGET_TYPE (value_type (new_array));
4c2ad1
+
4c2ad1
+      /* Every SUBSCRIPT_RANGE in the user input signifies an actual range in
4c2ad1
+	 the output array.  So we traverse the SUBSCRIPT_ARRAY again, looking
4c2ad1
+	 for a range entry.  When we find one, we use the range info to create
4c2ad1
+	 an additional range_type to set the correct bounds and dimensions for
4c2ad1
+	 the output array.  In addition, we may have a stride value that is not
4c2ad1
+	 '1', forcing us to adjust the number of elements in a range, according
4c2ad1
+	 to the stride value.  */
4c2ad1
+      for (i = 0; i < nargs; i++)
4c2ad1
+	{
4c2ad1
+	  struct subscript_store *index = &subscript_array[i];
4c2ad1
+
4c2ad1
+	  if (index->kind == SUBSCRIPT_RANGE)
4c2ad1
+	    {
4c2ad1
+	      struct type *range_type, *interim_array_type;
4c2ad1
+
4c2ad1
+	      int new_length;
4c2ad1
 
4c2ad1
-  return value_slice (array, low_bound, high_bound - low_bound + 1);
4c2ad1
+	      /* The length of a sub-dimension with all elements between the
4c2ad1
+		 bounds plus the start element itself.  It may be modified by
4c2ad1
+		 a user provided stride value.  */
4c2ad1
+	      new_length = index->U.range.high - index->U.range.low;
4c2ad1
+
4c2ad1
+	      new_length /= index->U.range.stride;
4c2ad1
+
4c2ad1
+	      range_type
4c2ad1
+		= create_static_range_type (NULL,
4c2ad1
+					    elt_type,
4c2ad1
+					    index->U.range.low,
4c2ad1
+					    index->U.range.low + new_length);
4c2ad1
+
4c2ad1
+	      interim_array_type = create_array_type (NULL,
4c2ad1
+						      elt_type,
4c2ad1
+						      range_type);
4c2ad1
+
4c2ad1
+	      TYPE_CODE (interim_array_type)
4c2ad1
+		= TYPE_CODE (value_type (new_array));
4c2ad1
+
4c2ad1
+	      v = allocate_value (interim_array_type);
4c2ad1
+
4c2ad1
+	      elt_type = value_type (v);
4c2ad1
+	    }
4c2ad1
+
4c2ad1
+	}
4c2ad1
+      value_contents_copy (v, 0, new_array, 0, TYPE_LENGTH (elt_type));
4c2ad1
+      return v;
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  return new_array;
4c2ad1
 }
4c2ad1
 
4c2ad1
 
4c2ad1
@@ -1926,19 +2222,8 @@ evaluate_subexp_standard (struct type *expect_type,
4c2ad1
       switch (code)
4c2ad1
 	{
4c2ad1
 	case TYPE_CODE_ARRAY:
4c2ad1
-	  if (exp->elts[*pos].opcode == OP_RANGE)
4c2ad1
-	    return value_f90_subarray (arg1, exp, pos, noside);
4c2ad1
-	  else
4c2ad1
-	    goto multi_f77_subscript;
4c2ad1
-
4c2ad1
 	case TYPE_CODE_STRING:
4c2ad1
-	  if (exp->elts[*pos].opcode == OP_RANGE)
4c2ad1
-	    return value_f90_subarray (arg1, exp, pos, noside);
4c2ad1
-	  else
4c2ad1
-	    {
4c2ad1
-	      arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
4c2ad1
-	      return value_subscript (arg1, value_as_long (arg2));
4c2ad1
-	    }
4c2ad1
+	  return value_f90_subarray (arg1, exp, pos, nargs, noside);
4c2ad1
 
4c2ad1
 	case TYPE_CODE_PTR:
4c2ad1
 	case TYPE_CODE_FUNC:
4c2ad1
@@ -2334,49 +2619,6 @@ evaluate_subexp_standard (struct type *expect_type,
4c2ad1
 	}
4c2ad1
       return (arg1);
4c2ad1
 
4c2ad1
-    multi_f77_subscript:
4c2ad1
-      {
4c2ad1
-	LONGEST subscript_array[MAX_FORTRAN_DIMS];
4c2ad1
-	int ndimensions = 1, i;
4c2ad1
-	struct value *array = arg1;
4c2ad1
-
4c2ad1
-	if (nargs > MAX_FORTRAN_DIMS)
4c2ad1
-	  error (_("Too many subscripts for F77 (%d Max)"), MAX_FORTRAN_DIMS);
4c2ad1
-
4c2ad1
-	ndimensions = calc_f77_array_dims (type);
4c2ad1
-
4c2ad1
-	if (nargs != ndimensions)
4c2ad1
-	  error (_("Wrong number of subscripts"));
4c2ad1
-
4c2ad1
-	gdb_assert (nargs > 0);
4c2ad1
-
4c2ad1
-	/* Now that we know we have a legal array subscript expression 
4c2ad1
-	   let us actually find out where this element exists in the array.  */
4c2ad1
-
4c2ad1
-	/* Take array indices left to right.  */
4c2ad1
-	for (i = 0; i < nargs; i++)
4c2ad1
-	  {
4c2ad1
-	    /* Evaluate each subscript; it must be a legal integer in F77.  */
4c2ad1
-	    arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
4c2ad1
-
4c2ad1
-	    /* Fill in the subscript array.  */
4c2ad1
-
4c2ad1
-	    subscript_array[i] = value_as_long (arg2);
4c2ad1
-	  }
4c2ad1
-
4c2ad1
-	/* Internal type of array is arranged right to left.  */
4c2ad1
-	for (i = nargs; i > 0; i--)
4c2ad1
-	  {
4c2ad1
-	    struct type *array_type = check_typedef (value_type (array));
4c2ad1
-	    LONGEST index = subscript_array[i - 1];
4c2ad1
-
4c2ad1
-	    array = value_subscripted_rvalue (array, index,
4c2ad1
-					      f77_get_lowerbound (array_type));
4c2ad1
-	  }
4c2ad1
-
4c2ad1
-	return array;
4c2ad1
-      }
4c2ad1
-
4c2ad1
     case BINOP_LOGICAL_AND:
4c2ad1
       arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
4c2ad1
       if (noside == EVAL_SKIP)
4c2ad1
@@ -3293,6 +3535,9 @@ calc_f77_array_dims (struct type *array_type)
4c2ad1
   int ndimen = 1;
4c2ad1
   struct type *tmp_type;
4c2ad1
 
4c2ad1
+  if (TYPE_CODE (array_type) == TYPE_CODE_STRING)
4c2ad1
+    return 1;
4c2ad1
+
4c2ad1
   if ((TYPE_CODE (array_type) != TYPE_CODE_ARRAY))
4c2ad1
     error (_("Can't get dimensions for a non-array type"));
4c2ad1
 
4c2ad1
diff --git a/gdb/expprint.c b/gdb/expprint.c
4c2ad1
--- a/gdb/expprint.c
4c2ad1
+++ b/gdb/expprint.c
4c2ad1
@@ -578,17 +578,14 @@ print_subexp_standard (struct expression *exp, int *pos,
4c2ad1
 	  longest_to_int (exp->elts[pc + 1].longconst);
4c2ad1
 	*pos += 2;
4c2ad1
 
4c2ad1
-	if (range_type == NONE_BOUND_DEFAULT_EXCLUSIVE
4c2ad1
-	    || range_type == LOW_BOUND_DEFAULT_EXCLUSIVE)
4c2ad1
+	if ((range_type & SUBARRAY_HIGH_BOUND_EXCLUSIVE)
4c2ad1
+	    == SUBARRAY_HIGH_BOUND_EXCLUSIVE)
4c2ad1
 	  fputs_filtered ("EXCLUSIVE_", stream);
4c2ad1
 	fputs_filtered ("RANGE(", stream);
4c2ad1
-	if (range_type == HIGH_BOUND_DEFAULT
4c2ad1
-	    || range_type == NONE_BOUND_DEFAULT
4c2ad1
-	    || range_type == NONE_BOUND_DEFAULT_EXCLUSIVE)
4c2ad1
+	if ((range_type & SUBARRAY_LOW_BOUND) == SUBARRAY_LOW_BOUND)
4c2ad1
 	  print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
4c2ad1
 	fputs_filtered ("..", stream);
4c2ad1
-	if (range_type == LOW_BOUND_DEFAULT
4c2ad1
-	    || range_type == NONE_BOUND_DEFAULT)
4c2ad1
+	if ((range_type & SUBARRAY_HIGH_BOUND) == SUBARRAY_HIGH_BOUND)
4c2ad1
 	  print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
4c2ad1
 	fputs_filtered (")", stream);
4c2ad1
 	return;
4c2ad1
@@ -1098,22 +1095,24 @@ dump_subexp_body_standard (struct expression *exp,
4c2ad1
 
4c2ad1
 	switch (range_type)
4c2ad1
 	  {
4c2ad1
-	  case BOTH_BOUND_DEFAULT:
4c2ad1
+	  case SUBARRAY_NONE_BOUND:
4c2ad1
 	    fputs_filtered ("Range '..'", stream);
4c2ad1
 	    break;
4c2ad1
-	  case LOW_BOUND_DEFAULT:
4c2ad1
+	  case SUBARRAY_HIGH_BOUND:
4c2ad1
 	    fputs_filtered ("Range '..EXP'", stream);
4c2ad1
 	    break;
4c2ad1
-	  case LOW_BOUND_DEFAULT_EXCLUSIVE:
4c2ad1
-	    fputs_filtered ("ExclusiveRange '..EXP'", stream);
4c2ad1
-	    break;
4c2ad1
-	  case HIGH_BOUND_DEFAULT:
4c2ad1
+	  case SUBARRAY_LOW_BOUND:
4c2ad1
 	    fputs_filtered ("Range 'EXP..'", stream);
4c2ad1
 	    break;
4c2ad1
-	  case NONE_BOUND_DEFAULT:
4c2ad1
+	  case (SUBARRAY_LOW_BOUND
4c2ad1
+		| SUBARRAY_HIGH_BOUND
4c2ad1
+		| SUBARRAY_HIGH_BOUND_EXCLUSIVE):
4c2ad1
+	    fputs_filtered ("ExclusiveRange '..EXP'", stream);
4c2ad1
+	    break;
4c2ad1
+	  case (SUBARRAY_LOW_BOUND | SUBARRAY_HIGH_BOUND):
4c2ad1
 	    fputs_filtered ("Range 'EXP..EXP'", stream);
4c2ad1
 	    break;
4c2ad1
-	  case NONE_BOUND_DEFAULT_EXCLUSIVE:
4c2ad1
+	  case (SUBARRAY_HIGH_BOUND | SUBARRAY_HIGH_BOUND_EXCLUSIVE):
4c2ad1
 	    fputs_filtered ("ExclusiveRange 'EXP..EXP'", stream);
4c2ad1
 	    break;
4c2ad1
 	  default:
4c2ad1
@@ -1121,11 +1120,9 @@ dump_subexp_body_standard (struct expression *exp,
4c2ad1
 	    break;
4c2ad1
 	  }
4c2ad1
 
4c2ad1
-	if (range_type == HIGH_BOUND_DEFAULT
4c2ad1
-	    || range_type == NONE_BOUND_DEFAULT)
4c2ad1
+	if ((range_type & SUBARRAY_LOW_BOUND) == SUBARRAY_LOW_BOUND)
4c2ad1
 	  elt = dump_subexp (exp, stream, elt);
4c2ad1
-	if (range_type == LOW_BOUND_DEFAULT
4c2ad1
-	    || range_type == NONE_BOUND_DEFAULT)
4c2ad1
+	if ((range_type & SUBARRAY_HIGH_BOUND) == SUBARRAY_HIGH_BOUND)
4c2ad1
 	  elt = dump_subexp (exp, stream, elt);
4c2ad1
       }
4c2ad1
       break;
4c2ad1
diff --git a/gdb/expression.h b/gdb/expression.h
4c2ad1
--- a/gdb/expression.h
4c2ad1
+++ b/gdb/expression.h
4c2ad1
@@ -148,28 +148,27 @@ extern void dump_raw_expression (struct expression *,
4c2ad1
 				 struct ui_file *, const char *);
4c2ad1
 extern void dump_prefix_expression (struct expression *, struct ui_file *);
4c2ad1
 
4c2ad1
-/* In an OP_RANGE expression, either bound could be empty, indicating
4c2ad1
-   that its value is by default that of the corresponding bound of the
4c2ad1
-   array or string.  Also, the upper end of the range can be exclusive
4c2ad1
-   or inclusive.  So we have six sorts of subrange.  This enumeration
4c2ad1
-   type is to identify this.  */
4c2ad1
+/* In an OP_RANGE expression, either bound can be provided by the
4c2ad1
+   user, or not.  In addition to this, the user can also specify a
4c2ad1
+   stride value to indicated only certain elements of the array.
4c2ad1
+   Also, the upper end of the range can be exclusive or inclusive.
4c2ad1
+   This enumeration type is to identify this.  */
4c2ad1
 
4c2ad1
 enum range_type
4c2ad1
-{
4c2ad1
-  /* Neither the low nor the high bound was given -- so this refers to
4c2ad1
-     the entire available range.  */
4c2ad1
-  BOTH_BOUND_DEFAULT,
4c2ad1
-  /* The low bound was not given and the high bound is inclusive.  */
4c2ad1
-  LOW_BOUND_DEFAULT,
4c2ad1
-  /* The high bound was not given and the low bound in inclusive.  */
4c2ad1
-  HIGH_BOUND_DEFAULT,
4c2ad1
-  /* Both bounds were given and both are inclusive.  */
4c2ad1
-  NONE_BOUND_DEFAULT,
4c2ad1
-  /* The low bound was not given and the high bound is exclusive.  */
4c2ad1
-  NONE_BOUND_DEFAULT_EXCLUSIVE,
4c2ad1
-  /* Both bounds were given.  The low bound is inclusive and the high
4c2ad1
-     bound is exclusive.  */
4c2ad1
-  LOW_BOUND_DEFAULT_EXCLUSIVE,
4c2ad1
-};
4c2ad1
+  {
4c2ad1
+    SUBARRAY_NONE_BOUND = 0x0,		/* "( : )"  */
4c2ad1
+    SUBARRAY_LOW_BOUND = 0x1,		/* "(low:)"  */
4c2ad1
+    SUBARRAY_HIGH_BOUND = 0x2,		/* "(:high)"  */
4c2ad1
+    SUBARRAY_STRIDE = 0x4,		/* "(::stride)"  */
4c2ad1
+    /* The low bound was not given and the high bound is exclusive.
4c2ad1
+       In this case we always use (SUBARRAY_HIGH_BOUND |
4c2ad1
+       SUBARRAY_HIGH_BOUND_EXCLUSIVE).  */
4c2ad1
+    SUBARRAY_HIGH_BOUND_EXCLUSIVE = 0x8,
4c2ad1
+    /* Both bounds were given.  The low bound is inclusive and the high
4c2ad1
+       bound is exclusive.  In this case, we use (SUBARRAY_LOW_BOUND |
4c2ad1
+       SUBARRAY_HIGH_BOUND | SUBARRAY_HIGH_BOUND_EXCLUSIVE).  */
4c2ad1
+    // SUBARRAY_LOW_BOUND_EXCLUSIVE = (SUBARRAY_LOW_BOUND
4c2ad1
+    // 				    | SUBARRAY_HIGH_BOUND_EXCLUSIVE),
4c2ad1
+  };
4c2ad1
 
4c2ad1
 #endif /* !defined (EXPRESSION_H) */
4c2ad1
diff --git a/gdb/f-exp.y b/gdb/f-exp.y
4c2ad1
--- a/gdb/f-exp.y
4c2ad1
+++ b/gdb/f-exp.y
4c2ad1
@@ -257,31 +257,63 @@ arglist :	subrange
4c2ad1
    
4c2ad1
 arglist	:	arglist ',' exp   %prec ABOVE_COMMA
4c2ad1
 			{ arglist_len++; }
4c2ad1
+	|	arglist ',' subrange	%prec ABOVE_COMMA
4c2ad1
+			{ arglist_len++; }
4c2ad1
 	;
4c2ad1
 
4c2ad1
 /* There are four sorts of subrange types in F90.  */
4c2ad1
 
4c2ad1
 subrange:	exp ':' exp	%prec ABOVE_COMMA
4c2ad1
-			{ write_exp_elt_opcode (pstate, OP_RANGE); 
4c2ad1
-			  write_exp_elt_longcst (pstate, NONE_BOUND_DEFAULT);
4c2ad1
+			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
+			  write_exp_elt_longcst (pstate,
4c2ad1
+						 SUBARRAY_LOW_BOUND | SUBARRAY_HIGH_BOUND);
4c2ad1
 			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
 	;
4c2ad1
 
4c2ad1
 subrange:	exp ':'	%prec ABOVE_COMMA
4c2ad1
 			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
-			  write_exp_elt_longcst (pstate, HIGH_BOUND_DEFAULT);
4c2ad1
+			  write_exp_elt_longcst (pstate, SUBARRAY_LOW_BOUND);
4c2ad1
 			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
 	;
4c2ad1
 
4c2ad1
 subrange:	':' exp	%prec ABOVE_COMMA
4c2ad1
 			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
-			  write_exp_elt_longcst (pstate, LOW_BOUND_DEFAULT);
4c2ad1
+			  write_exp_elt_longcst (pstate, SUBARRAY_HIGH_BOUND);
4c2ad1
 			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
 	;
4c2ad1
 
4c2ad1
 subrange:	':'	%prec ABOVE_COMMA
4c2ad1
 			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
-			  write_exp_elt_longcst (pstate, BOTH_BOUND_DEFAULT);
4c2ad1
+			  write_exp_elt_longcst (pstate, SUBARRAY_NONE_BOUND);
4c2ad1
+			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
+	;
4c2ad1
+
4c2ad1
+/* Each subrange type can have a stride argument.  */
4c2ad1
+subrange:	exp ':' exp ':' exp %prec ABOVE_COMMA
4c2ad1
+			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
+			  write_exp_elt_longcst (pstate, SUBARRAY_LOW_BOUND
4c2ad1
+						 | SUBARRAY_HIGH_BOUND
4c2ad1
+						 | SUBARRAY_STRIDE);
4c2ad1
+			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
+	;
4c2ad1
+
4c2ad1
+subrange:	exp ':' ':' exp %prec ABOVE_COMMA
4c2ad1
+			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
+			  write_exp_elt_longcst (pstate, SUBARRAY_LOW_BOUND
4c2ad1
+						 | SUBARRAY_STRIDE);
4c2ad1
+			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
+	;
4c2ad1
+
4c2ad1
+subrange:	':' exp ':' exp %prec ABOVE_COMMA
4c2ad1
+			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
+			  write_exp_elt_longcst (pstate, SUBARRAY_HIGH_BOUND
4c2ad1
+						 | SUBARRAY_STRIDE);
4c2ad1
+			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
+	;
4c2ad1
+
4c2ad1
+subrange:	':' ':' exp %prec ABOVE_COMMA
4c2ad1
+			{ write_exp_elt_opcode (pstate, OP_RANGE);
4c2ad1
+			  write_exp_elt_longcst (pstate, SUBARRAY_STRIDE);
4c2ad1
 			  write_exp_elt_opcode (pstate, OP_RANGE); }
4c2ad1
 	;
4c2ad1
 
4c2ad1
diff --git a/gdb/f-valprint.c b/gdb/f-valprint.c
4c2ad1
--- a/gdb/f-valprint.c
4c2ad1
+++ b/gdb/f-valprint.c
4c2ad1
@@ -119,8 +119,14 @@ f77_print_array_1 (int nss, int ndimensions, struct type *type,
4c2ad1
 
4c2ad1
   if (nss != ndimensions)
4c2ad1
     {
4c2ad1
-      size_t dim_size = TYPE_LENGTH (TYPE_TARGET_TYPE (type));
4c2ad1
+      size_t dim_size;
4c2ad1
       size_t offs = 0;
4c2ad1
+      LONGEST byte_stride = abs (TYPE_BYTE_STRIDE (range_type));
4c2ad1
+
4c2ad1
+      if (byte_stride)
4c2ad1
+        dim_size = byte_stride;
4c2ad1
+      else
4c2ad1
+        dim_size = TYPE_LENGTH (TYPE_TARGET_TYPE (type));
4c2ad1
 
4c2ad1
       for (i = lowerbound;
4c2ad1
 	   (i < upperbound + 1 && (*elts) < options->print_max);
4c2ad1
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
4c2ad1
--- a/gdb/gdbtypes.c
4c2ad1
+++ b/gdb/gdbtypes.c
4c2ad1
@@ -902,7 +902,8 @@ operator== (const range_bounds &l, const range_bounds &r)
4c2ad1
 struct type *
4c2ad1
 create_range_type (struct type *result_type, struct type *index_type,
4c2ad1
 		   const struct dynamic_prop *low_bound,
4c2ad1
-		   const struct dynamic_prop *high_bound)
4c2ad1
+		   const struct dynamic_prop *high_bound,
4c2ad1
+		   const struct dynamic_prop *stride)
4c2ad1
 {
4c2ad1
   if (result_type == NULL)
4c2ad1
     result_type = alloc_type_copy (index_type);
4c2ad1
@@ -917,6 +918,7 @@ create_range_type (struct type *result_type, struct type *index_type,
4c2ad1
     TYPE_ZALLOC (result_type, sizeof (struct range_bounds));
4c2ad1
   TYPE_RANGE_DATA (result_type)->low = *low_bound;
4c2ad1
   TYPE_RANGE_DATA (result_type)->high = *high_bound;
4c2ad1
+  TYPE_RANGE_DATA (result_type)->stride = *stride;
4c2ad1
 
4c2ad1
   if (low_bound->kind == PROP_CONST && low_bound->data.const_val >= 0)
4c2ad1
     TYPE_UNSIGNED (result_type) = 1;
4c2ad1
@@ -945,7 +947,7 @@ struct type *
4c2ad1
 create_static_range_type (struct type *result_type, struct type *index_type,
4c2ad1
 			  LONGEST low_bound, LONGEST high_bound)
4c2ad1
 {
4c2ad1
-  struct dynamic_prop low, high;
4c2ad1
+  struct dynamic_prop low, high, stride;
4c2ad1
 
4c2ad1
   low.kind = PROP_CONST;
4c2ad1
   low.data.const_val = low_bound;
4c2ad1
@@ -953,7 +955,11 @@ create_static_range_type (struct type *result_type, struct type *index_type,
4c2ad1
   high.kind = PROP_CONST;
4c2ad1
   high.data.const_val = high_bound;
4c2ad1
 
4c2ad1
-  result_type = create_range_type (result_type, index_type, &low, &high);
4c2ad1
+  stride.kind = PROP_CONST;
4c2ad1
+  stride.data.const_val = 0;
4c2ad1
+
4c2ad1
+  result_type = create_range_type (result_type, index_type,
4c2ad1
+                                   &low, &high, &stride);
4c2ad1
 
4c2ad1
   return result_type;
4c2ad1
 }
4c2ad1
@@ -1171,16 +1177,20 @@ create_array_type_with_stride (struct type *result_type,
4c2ad1
       && (!type_not_associated (result_type)
4c2ad1
 	  && !type_not_allocated (result_type)))
4c2ad1
     {
4c2ad1
-      LONGEST low_bound, high_bound;
4c2ad1
+      LONGEST low_bound, high_bound, byte_stride;
4c2ad1
 
4c2ad1
       if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
4c2ad1
 	low_bound = high_bound = 0;
4c2ad1
       element_type = check_typedef (element_type);
4c2ad1
+      byte_stride = abs (TYPE_BYTE_STRIDE (range_type));
4c2ad1
+
4c2ad1
       /* Be careful when setting the array length.  Ada arrays can be
4c2ad1
 	 empty arrays with the high_bound being smaller than the low_bound.
4c2ad1
 	 In such cases, the array length should be zero.  */
4c2ad1
       if (high_bound < low_bound)
4c2ad1
 	TYPE_LENGTH (result_type) = 0;
4c2ad1
+      else if (byte_stride > 0)
4c2ad1
+	TYPE_LENGTH (result_type) = byte_stride * (high_bound - low_bound + 1);
4c2ad1
       else if (bit_stride > 0)
4c2ad1
 	TYPE_LENGTH (result_type) =
4c2ad1
 	  (bit_stride * (high_bound - low_bound + 1) + 7) / 8;
4c2ad1
@@ -1981,12 +1991,12 @@ resolve_dynamic_range (struct type *dyn_range_type,
4c2ad1
   CORE_ADDR value;
4c2ad1
   struct type *static_range_type, *static_target_type;
4c2ad1
   const struct dynamic_prop *prop;
4c2ad1
-  struct dynamic_prop low_bound, high_bound;
4c2ad1
+  struct dynamic_prop low_bound, high_bound, stride;
4c2ad1
 
4c2ad1
   gdb_assert (TYPE_CODE (dyn_range_type) == TYPE_CODE_RANGE);
4c2ad1
 
4c2ad1
   prop = &TYPE_RANGE_DATA (dyn_range_type)->low;
4c2ad1
-  if (dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
4c2ad1
+  if (dwarf2_evaluate_property_signed (prop, NULL, addr_stack, &value, 1))
4c2ad1
     {
4c2ad1
       low_bound.kind = PROP_CONST;
4c2ad1
       low_bound.data.const_val = value;
4c2ad1
@@ -1998,7 +2008,7 @@ resolve_dynamic_range (struct type *dyn_range_type,
4c2ad1
     }
4c2ad1
 
4c2ad1
   prop = &TYPE_RANGE_DATA (dyn_range_type)->high;
4c2ad1
-  if (dwarf2_evaluate_property (prop, NULL, addr_stack, &value))
4c2ad1
+  if (dwarf2_evaluate_property_signed (prop, NULL, addr_stack, &value, 1))
4c2ad1
     {
4c2ad1
       high_bound.kind = PROP_CONST;
4c2ad1
       high_bound.data.const_val = value;
4c2ad1
@@ -2013,12 +2023,20 @@ resolve_dynamic_range (struct type *dyn_range_type,
4c2ad1
       high_bound.data.const_val = 0;
4c2ad1
     }
4c2ad1
 
4c2ad1
+  prop = &TYPE_RANGE_DATA (dyn_range_type)->stride;
4c2ad1
+  if (dwarf2_evaluate_property_signed (prop, NULL, addr_stack, &value, 1))
4c2ad1
+    {
4c2ad1
+      stride.kind = PROP_CONST;
4c2ad1
+      stride.data.const_val = value;
4c2ad1
+    }
4c2ad1
+
4c2ad1
   static_target_type
4c2ad1
     = resolve_dynamic_type_internal (TYPE_TARGET_TYPE (dyn_range_type),
4c2ad1
 				     addr_stack, 0);
4c2ad1
   static_range_type = create_range_type (copy_type (dyn_range_type),
4c2ad1
 					 static_target_type,
4c2ad1
-					 &low_bound, &high_bound);
4c2ad1
+					 &low_bound, &high_bound, &stride);
4c2ad1
+
4c2ad1
   TYPE_RANGE_DATA (static_range_type)->flag_bound_evaluated = 1;
4c2ad1
   return static_range_type;
4c2ad1
 }
4c2ad1
diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h
4c2ad1
--- a/gdb/gdbtypes.h
4c2ad1
+++ b/gdb/gdbtypes.h
4c2ad1
@@ -612,6 +612,10 @@ struct range_bounds
4c2ad1
 
4c2ad1
   struct dynamic_prop high;
4c2ad1
 
4c2ad1
+  /* * Stride of range.  */
4c2ad1
+
4c2ad1
+  struct dynamic_prop stride;
4c2ad1
+
4c2ad1
   /* True if HIGH range bound contains the number of elements in the
4c2ad1
      subrange. This affects how the final hight bound is computed.  */
4c2ad1
 
4c2ad1
@@ -776,7 +780,6 @@ struct main_type
4c2ad1
     /* * Union member used for range types.  */
4c2ad1
 
4c2ad1
     struct range_bounds *bounds;
4c2ad1
-
4c2ad1
   } flds_bnds;
4c2ad1
 
4c2ad1
   /* * Slot to point to additional language-specific fields of this
4c2ad1
@@ -1329,6 +1332,15 @@ extern bool set_type_align (struct type *, ULONGEST);
4c2ad1
   TYPE_RANGE_DATA(range_type)->high.kind
4c2ad1
 #define TYPE_LOW_BOUND_KIND(range_type) \
4c2ad1
   TYPE_RANGE_DATA(range_type)->low.kind
4c2ad1
+#define TYPE_BYTE_STRIDE(range_type) \
4c2ad1
+  TYPE_RANGE_DATA(range_type)->stride.data.const_val
4c2ad1
+#define TYPE_BYTE_STRIDE_BLOCK(range_type) \
4c2ad1
+  TYPE_RANGE_DATA(range_type)->stride.data.locexpr
4c2ad1
+#define TYPE_BYTE_STRIDE_LOCLIST(range_type) \
4c2ad1
+  TYPE_RANGE_DATA(range_type)->stride.data.loclist
4c2ad1
+#define TYPE_BYTE_STRIDE_KIND(range_type) \
4c2ad1
+  TYPE_RANGE_DATA(range_type)->stride.kind
4c2ad1
+
4c2ad1
 
4c2ad1
 /* Property accessors for the type data location.  */
4c2ad1
 #define TYPE_DATA_LOCATION(thistype) \
4c2ad1
@@ -1363,6 +1375,9 @@ extern bool set_type_align (struct type *, ULONGEST);
4c2ad1
    TYPE_HIGH_BOUND_UNDEFINED(TYPE_INDEX_TYPE(arraytype))
4c2ad1
 #define TYPE_ARRAY_LOWER_BOUND_IS_UNDEFINED(arraytype) \
4c2ad1
    TYPE_LOW_BOUND_UNDEFINED(TYPE_INDEX_TYPE(arraytype))
4c2ad1
+#define TYPE_ARRAY_STRIDE_IS_UNDEFINED(arraytype) \
4c2ad1
+   (TYPE_BYTE_STRIDE(TYPE_INDEX_TYPE(arraytype)) == 0)
4c2ad1
+
4c2ad1
 
4c2ad1
 #define TYPE_ARRAY_UPPER_BOUND_VALUE(arraytype) \
4c2ad1
    (TYPE_HIGH_BOUND(TYPE_INDEX_TYPE((arraytype))))
4c2ad1
@@ -1892,6 +1907,7 @@ extern struct type *create_array_type_with_stride
4c2ad1
    struct dynamic_prop *, unsigned int);
4c2ad1
 
4c2ad1
 extern struct type *create_range_type (struct type *, struct type *,
4c2ad1
+				       const struct dynamic_prop *,
4c2ad1
 				       const struct dynamic_prop *,
4c2ad1
 				       const struct dynamic_prop *);
4c2ad1
 
4c2ad1
diff --git a/gdb/parse.c b/gdb/parse.c
4c2ad1
--- a/gdb/parse.c
4c2ad1
+++ b/gdb/parse.c
4c2ad1
@@ -989,24 +989,20 @@ operator_length_standard (const struct expression *expr, int endpos,
4c2ad1
 
4c2ad1
     case OP_RANGE:
4c2ad1
       oplen = 3;
4c2ad1
+      args = 0;
4c2ad1
       range_type = (enum range_type)
4c2ad1
 	longest_to_int (expr->elts[endpos - 2].longconst);
4c2ad1
 
4c2ad1
-      switch (range_type)
4c2ad1
-	{
4c2ad1
-	case LOW_BOUND_DEFAULT:
4c2ad1
-	case LOW_BOUND_DEFAULT_EXCLUSIVE:
4c2ad1
-	case HIGH_BOUND_DEFAULT:
4c2ad1
-	  args = 1;
4c2ad1
-	  break;
4c2ad1
-	case BOTH_BOUND_DEFAULT:
4c2ad1
-	  args = 0;
4c2ad1
-	  break;
4c2ad1
-	case NONE_BOUND_DEFAULT:
4c2ad1
-	case NONE_BOUND_DEFAULT_EXCLUSIVE:
4c2ad1
-	  args = 2;
4c2ad1
-	  break;
4c2ad1
-	}
4c2ad1
+      /* Increment the argument counter for each argument
4c2ad1
+	 provided by the user.  */
4c2ad1
+      if ((range_type & SUBARRAY_LOW_BOUND) == SUBARRAY_LOW_BOUND)
4c2ad1
+	args++;
4c2ad1
+
4c2ad1
+      if ((range_type & SUBARRAY_HIGH_BOUND) == SUBARRAY_HIGH_BOUND)
4c2ad1
+	args++;
4c2ad1
+
4c2ad1
+      if ((range_type & SUBARRAY_STRIDE) == SUBARRAY_STRIDE)
4c2ad1
+	args++;
4c2ad1
 
4c2ad1
       break;
4c2ad1
 
4c2ad1
diff --git a/gdb/rust-exp.y b/gdb/rust-exp.y
4c2ad1
--- a/gdb/rust-exp.y
4c2ad1
+++ b/gdb/rust-exp.y
4c2ad1
@@ -2478,24 +2478,28 @@ convert_ast_to_expression (struct parser_state *state,
4c2ad1
 
4c2ad1
     case OP_RANGE:
4c2ad1
       {
4c2ad1
-	enum range_type kind = BOTH_BOUND_DEFAULT;
4c2ad1
+	enum range_type kind = SUBARRAY_NONE_BOUND;
4c2ad1
 
4c2ad1
 	if (operation->left.op != NULL)
4c2ad1
 	  {
4c2ad1
 	    convert_ast_to_expression (state, operation->left.op, top);
4c2ad1
-	    kind = HIGH_BOUND_DEFAULT;
4c2ad1
+	    kind = SUBARRAY_LOW_BOUND;
4c2ad1
 	  }
4c2ad1
 	if (operation->right.op != NULL)
4c2ad1
 	  {
4c2ad1
 	    convert_ast_to_expression (state, operation->right.op, top);
4c2ad1
-	    if (kind == BOTH_BOUND_DEFAULT)
4c2ad1
-	      kind = (operation->inclusive
4c2ad1
-		      ? LOW_BOUND_DEFAULT : LOW_BOUND_DEFAULT_EXCLUSIVE);
4c2ad1
+	    if (kind == SUBARRAY_NONE_BOUND)
4c2ad1
+	      {
4c2ad1
+		kind = (range_type) SUBARRAY_HIGH_BOUND;
4c2ad1
+		if (!operation->inclusive)
4c2ad1
+		  kind = (range_type) (kind | SUBARRAY_HIGH_BOUND_EXCLUSIVE);
4c2ad1
+	      }
4c2ad1
 	    else
4c2ad1
 	      {
4c2ad1
-		gdb_assert (kind == HIGH_BOUND_DEFAULT);
4c2ad1
-		kind = (operation->inclusive
4c2ad1
-			? NONE_BOUND_DEFAULT : NONE_BOUND_DEFAULT_EXCLUSIVE);
4c2ad1
+		gdb_assert (kind == SUBARRAY_LOW_BOUND);
4c2ad1
+		kind = (range_type) (kind | SUBARRAY_HIGH_BOUND);
4c2ad1
+		if (!operation->inclusive)
4c2ad1
+		  kind = (range_type) (kind | SUBARRAY_HIGH_BOUND_EXCLUSIVE);
4c2ad1
 	      }
4c2ad1
 	  }
4c2ad1
 	else
4c2ad1
diff --git a/gdb/rust-lang.c b/gdb/rust-lang.c
4c2ad1
--- a/gdb/rust-lang.c
4c2ad1
+++ b/gdb/rust-lang.c
4c2ad1
@@ -1149,13 +1149,11 @@ rust_range (struct expression *exp, int *pos, enum noside noside)
4c2ad1
   kind = (enum range_type) longest_to_int (exp->elts[*pos + 1].longconst);
4c2ad1
   *pos += 3;
4c2ad1
 
4c2ad1
-  if (kind == HIGH_BOUND_DEFAULT || kind == NONE_BOUND_DEFAULT
4c2ad1
-      || kind == NONE_BOUND_DEFAULT_EXCLUSIVE)
4c2ad1
+  if ((kind & SUBARRAY_LOW_BOUND) == SUBARRAY_LOW_BOUND)
4c2ad1
     low = evaluate_subexp (NULL_TYPE, exp, pos, noside);
4c2ad1
-  if (kind == LOW_BOUND_DEFAULT || kind == LOW_BOUND_DEFAULT_EXCLUSIVE
4c2ad1
-      || kind == NONE_BOUND_DEFAULT || kind == NONE_BOUND_DEFAULT_EXCLUSIVE)
4c2ad1
+  if ((kind & SUBARRAY_HIGH_BOUND) == SUBARRAY_HIGH_BOUND)
4c2ad1
     high = evaluate_subexp (NULL_TYPE, exp, pos, noside);
4c2ad1
-  bool inclusive = (kind == NONE_BOUND_DEFAULT || kind == LOW_BOUND_DEFAULT);
4c2ad1
+  bool inclusive = (!((kind & SUBARRAY_HIGH_BOUND_EXCLUSIVE) == SUBARRAY_HIGH_BOUND_EXCLUSIVE));
4c2ad1
 
4c2ad1
   if (noside == EVAL_SKIP)
4c2ad1
     return value_from_longest (builtin_type (exp->gdbarch)->builtin_int, 1);
4c2ad1
@@ -1244,7 +1242,7 @@ rust_compute_range (struct type *type, struct value *range,
4c2ad1
 
4c2ad1
   *low = 0;
4c2ad1
   *high = 0;
4c2ad1
-  *kind = BOTH_BOUND_DEFAULT;
4c2ad1
+  *kind = SUBARRAY_NONE_BOUND;
4c2ad1
 
4c2ad1
   if (TYPE_NFIELDS (type) == 0)
4c2ad1
     return;
4c2ad1
@@ -1252,15 +1250,14 @@ rust_compute_range (struct type *type, struct value *range,
4c2ad1
   i = 0;
4c2ad1
   if (strcmp (TYPE_FIELD_NAME (type, 0), "start") == 0)
4c2ad1
     {
4c2ad1
-      *kind = HIGH_BOUND_DEFAULT;
4c2ad1
+      *kind = SUBARRAY_LOW_BOUND;
4c2ad1
       *low = value_as_long (value_field (range, 0));
4c2ad1
       ++i;
4c2ad1
     }
4c2ad1
   if (TYPE_NFIELDS (type) > i
4c2ad1
       && strcmp (TYPE_FIELD_NAME (type, i), "end") == 0)
4c2ad1
     {
4c2ad1
-      *kind = (*kind == BOTH_BOUND_DEFAULT
4c2ad1
-	       ? LOW_BOUND_DEFAULT : NONE_BOUND_DEFAULT);
4c2ad1
+      *kind = (range_type) (*kind | SUBARRAY_HIGH_BOUND);
4c2ad1
       *high = value_as_long (value_field (range, i));
4c2ad1
 
4c2ad1
       if (rust_inclusive_range_type_p (type))
4c2ad1
@@ -1278,7 +1275,7 @@ rust_subscript (struct expression *exp, int *pos, enum noside noside,
4c2ad1
   struct type *rhstype;
4c2ad1
   LONGEST low, high_bound;
4c2ad1
   /* Initialized to appease the compiler.  */
4c2ad1
-  enum range_type kind = BOTH_BOUND_DEFAULT;
4c2ad1
+  enum range_type kind = SUBARRAY_NONE_BOUND;
4c2ad1
   LONGEST high = 0;
4c2ad1
   int want_slice = 0;
4c2ad1
 
4c2ad1
@@ -1376,7 +1373,7 @@ rust_subscript (struct expression *exp, int *pos, enum noside noside,
4c2ad1
 	error (_("Cannot subscript non-array type"));
4c2ad1
 
4c2ad1
       if (want_slice
4c2ad1
-	  && (kind == BOTH_BOUND_DEFAULT || kind == LOW_BOUND_DEFAULT))
4c2ad1
+	  && ((kind & SUBARRAY_LOW_BOUND) != SUBARRAY_LOW_BOUND))
4c2ad1
 	low = low_bound;
4c2ad1
       if (low < 0)
4c2ad1
 	error (_("Index less than zero"));
4c2ad1
@@ -1394,7 +1391,7 @@ rust_subscript (struct expression *exp, int *pos, enum noside noside,
4c2ad1
 	  CORE_ADDR addr;
4c2ad1
 	  struct value *addrval, *tem;
4c2ad1
 
4c2ad1
-	  if (kind == BOTH_BOUND_DEFAULT || kind == HIGH_BOUND_DEFAULT)
4c2ad1
+	  if ((kind & SUBARRAY_HIGH_BOUND) != SUBARRAY_HIGH_BOUND)
4c2ad1
 	    high = high_bound;
4c2ad1
 	  if (high < 0)
4c2ad1
 	    error (_("High index less than zero"));
4c2ad1
diff --git a/gdb/testsuite/gdb.fortran/static-arrays.exp b/gdb/testsuite/gdb.fortran/static-arrays.exp
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.fortran/static-arrays.exp
4c2ad1
@@ -0,0 +1,421 @@
4c2ad1
+# Copyright 2015 Free Software Foundation, Inc.
4c2ad1
+#
4c2ad1
+# Contributed by Intel Corp. <christoph.t.weinmann@intel.com>
4c2ad1
+#
4c2ad1
+# This program is free software; you can redistribute it and/or modify
4c2ad1
+# it under the terms of the GNU General Public License as published by
4c2ad1
+# the Free Software Foundation; either version 3 of the License, or
4c2ad1
+# (at your option) any later version.
4c2ad1
+#
4c2ad1
+# This program is distributed in the hope that it will be useful,
4c2ad1
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c2ad1
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c2ad1
+# GNU General Public License for more details.
4c2ad1
+#
4c2ad1
+# You should have received a copy of the GNU General Public License
4c2ad1
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
4c2ad1
+
4c2ad1
+standard_testfile static-arrays.f90
4c2ad1
+
4c2ad1
+if { [prepare_for_testing $testfile.exp $testfile $srcfile {debug f90}] } {
4c2ad1
+    return -1
4c2ad1
+}
4c2ad1
+
4c2ad1
+if ![runto MAIN__] then {
4c2ad1
+    perror "couldn't run to breakpoint MAIN__"
4c2ad1
+    continue
4c2ad1
+}
4c2ad1
+
4c2ad1
+gdb_breakpoint [gdb_get_line_number "BP1"]
4c2ad1
+gdb_continue_to_breakpoint "BP1" ".*BP1.*"
4c2ad1
+
4c2ad1
+# Tests subarrays of one dimensional arrays with subrange variations
4c2ad1
+gdb_test "print ar1" "\\$\[0-9\]+ = \\(1, 2, 3, 4, 5, 6, 7, 8, 9\\)" \
4c2ad1
+		"print ar1."
4c2ad1
+gdb_test "print ar1\(4:7\)" "\\$\[0-9\]+ = \\(4, 5, 6, 7\\)" \
4c2ad1
+		"print ar1\(4:7\)"
4c2ad1
+gdb_test "print ar1\(8:\)" "\\$\[0-9\]+ = \\(8, 9\\).*" \
4c2ad1
+		"print ar1\(8:\)"
4c2ad1
+gdb_test "print ar1\(:3\)" "\\$\[0-9\]+ = \\(1, 2, 3\\).*" \
4c2ad1
+		"print ar1\(:3\)"
4c2ad1
+gdb_test "print ar1\(:\)" "\\$\[0-9\]+ = \\(1, 2, 3, 4, 5, 6, 7, 8, 9\\)" \
4c2ad1
+		"print ar1\(:\)"
4c2ad1
+
4c2ad1
+# Check assignment
4c2ad1
+gdb_test_no_output "set \$my_ary = ar1\(3:8\)"
4c2ad1
+gdb_test "print \$my_ary" \
4c2ad1
+		"\\$\[0-9\]+ = \\(3, 4, 5, 6, 7, 8\\)" \
4c2ad1
+		"Assignment of subarray to variable"
4c2ad1
+gdb_test_no_output "set ar1\(5\) = 42"
4c2ad1
+		gdb_test "print ar1\(3:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(3, 4, 42, 6, 7, 8\\)" \
4c2ad1
+		"print ar1\(3:8\) after assignment"
4c2ad1
+gdb_test "print \$my_ary" \
4c2ad1
+		"\\$\[0-9\]+ = \\(3, 4, 5, 6, 7, 8\\)" \
4c2ad1
+		"Assignment of subarray to variable after original array changed"
4c2ad1
+
4c2ad1
+# Test for subarrays of one dimensional arrays with literals
4c2ad1
+		gdb_test "print ar1\(3\)" "\\$\[0-9\]+ = 3" \
4c2ad1
+		"print ar1\(3\)"
4c2ad1
+
4c2ad1
+# Tests for subranges of 2 dimensional arrays with subrange variations
4c2ad1
+gdb_test "print ar2\(2:3, 3:4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 23, 33\\) \\( 24, 34\\) \\)" \
4c2ad1
+		"print ar2\(2:3, 3:4\)."
4c2ad1
+gdb_test "print ar2\(8:9,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 88, 98\\) \\( 89, 99\\) \\)" \
4c2ad1
+		"print ar2\(8:9,8:\)"
4c2ad1
+gdb_test "print ar2\(8:9,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 81, 91\\) \\( 82, 92\\) \\)" \
4c2ad1
+		"print ar2\(8:9,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar2\(8:,8:9\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 88, 98\\) \\( 89, 99\\) \\)" \
4c2ad1
+		"print ar2\(8:,8:9\)"
4c2ad1
+gdb_test "print ar2\(8:,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 88, 98\\) \\( 89, 99\\) \\)" \
4c2ad1
+		"print ar2\(8:,8:\)"
4c2ad1
+gdb_test "print ar2\(8:,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 81, 91\\) \\( 82, 92\\) \\)" \
4c2ad1
+		"print ar2\(8:,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar2\(:2,2:3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 12, 22\\) \\( 13, 23\\) \\)" \
4c2ad1
+		"print ar2\(:2,2:3\)"
4c2ad1
+gdb_test "print ar2\(:2,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 18, 28\\) \\( 19, 29\\) \\)" \
4c2ad1
+		"print ar2\(:2,8:\)"
4c2ad1
+gdb_test "print ar2\(:2,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 11, 21\\) \\( 12, 22\\) \\)" \
4c2ad1
+		"print ar2\(:2,:2\)"
4c2ad1
+
4c2ad1
+# Test subranges of 2 dimensional arrays with literals and subrange variations
4c2ad1
+gdb_test "print ar2\(7, 3:6\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(73, 74, 75, 76\\)" \
4c2ad1
+		"print ar2\(7, 3:6\)"
4c2ad1
+gdb_test "print ar2\(7,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(78, 79\\)" \
4c2ad1
+		"print ar2\(7,8:\)"
4c2ad1
+gdb_test "print ar2\(7,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(71, 72\\)" \
4c2ad1
+		"print ar2\(7,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar2\(7:8,4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(74, 84\\)" \
4c2ad1
+		"print ar2(7:8,4\)"
4c2ad1
+gdb_test "print ar2\(8:,4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(84, 94\\)" \
4c2ad1
+		"print ar2\(8:,4\)"
4c2ad1
+gdb_test "print ar2\(:2,4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(14, 24\\)" \
4c2ad1
+		"print ar2\(:2,4\)"
4c2ad1
+gdb_test "print ar2\(3,4\)" \
4c2ad1
+		"\\$\[0-9\]+ = 34" \
4c2ad1
+		"print ar2\(3,4\)"
4c2ad1
+
4c2ad1
+# Test subarrays of 3 dimensional arrays with literals and subrange variations
4c2ad1
+gdb_test "print ar3\(2:4,3:4,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 237, 337, 437\\) \\( 247, 347, 447\\)\
4c2ad1
+		 \\) \\( \\( 238, 338, 438\\) \\( 248, 348, 448\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:4,3:4,7:8\)"
4c2ad1
+gdb_test "print ar3\(2:3,4:5,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 248, 348\\) \\( 258, 358\\) \\) \\(\
4c2ad1
+		 \\( 249, 349\\) \\( 259, 359\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,4:5,8:\)"
4c2ad1
+gdb_test "print ar3\(2:3,4:5,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 241, 341\\) \\( 251, 351\\) \\) \\(\
4c2ad1
+		 \\( 242, 342\\) \\( 252, 352\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,4:5,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(2:3,8:,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 287, 387\\) \\( 297, 397\\) \\) \\(\
4c2ad1
+		 \\( 288, 388\\) \\( 298, 398\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,8:,7:8\)"
4c2ad1
+gdb_test "print ar3\(2:3,8:,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 288, 388\\) \\( 298, 398\\) \\) \\(\
4c2ad1
+		 \\( 289, 389\\) \\( 299, 399\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,8:,8:\)"
4c2ad1
+gdb_test "print ar3\(2:3,8:,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 281, 381\\) \\( 291, 391\\) \\) \\(\
4c2ad1
+		 \\( 282, 382\\) \\( 292, 392\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,8:,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(2:3,:2,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 217, 317\\) \\( 227, 327\\) \\) \\(\
4c2ad1
+		 \\( 218, 318\\) \\( 228, 328\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,:2,7:8\)"
4c2ad1
+gdb_test "print ar3\(2:3,:2,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 218, 318\\) \\( 228, 328\\) \\) \\(\
4c2ad1
+		 \\( 219, 319\\) \\( 229, 329\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,:2,8:\)"
4c2ad1
+gdb_test "print ar3\(2:3,:2,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 211, 311\\) \\( 221, 321\\) \\) \\(\
4c2ad1
+		 \\( 212, 312\\) \\( 222, 322\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,:2,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(8:,3:4,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 837, 937\\) \\( 847, 947\\) \\) \\(\
4c2ad1
+		 \\( 838, 938\\) \\( 848, 948\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,3:4,7:8\)"
4c2ad1
+gdb_test "print ar3\(8:,4:5,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 848, 948\\) \\( 858, 958\\) \\) \\(\
4c2ad1
+		 \\( 849, 949\\) \\( 859, 959\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,4:5,8:\)"
4c2ad1
+gdb_test "print ar3\(8:,4:5,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 841, 941\\) \\( 851, 951\\) \\) \\(\
4c2ad1
+		 \\( 842, 942\\) \\( 852, 952\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,4:5,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(8:,8:,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 887, 987\\) \\( 897, 997\\) \\) \\(\
4c2ad1
+		 \\( 888, 988\\) \\( 898, 998\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,8:,7:8\)"
4c2ad1
+gdb_test "print ar3\(8:,8:,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 888, 988\\) \\( 898, 998\\) \\) \\(\
4c2ad1
+		 \\( 889, 989\\) \\( 899, 999\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,8:,8:\)"
4c2ad1
+gdb_test "print ar3\(8:,8:,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 881, 981\\) \\( 891, 991\\) \\) \\(\
4c2ad1
+		 \\( 882, 982\\) \\( 892, 992\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,8:,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(8:,:2,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 817, 917\\) \\( 827, 927\\) \\) \\(\
4c2ad1
+		 \\( 818, 918\\) \\( 828, 928\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,:2,7:8\)"
4c2ad1
+gdb_test "print ar3\(8:,:2,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 818, 918\\) \\( 828, 928\\) \\) \\(\
4c2ad1
+		 \\( 819, 919\\) \\( 829, 929\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,:2,8:\)"
4c2ad1
+gdb_test "print ar3\(8:,:2,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 811, 911\\) \\( 821, 921\\) \\) \\(\
4c2ad1
+		 \\( 812, 912\\) \\( 822, 922\\) \\) \\)" \
4c2ad1
+		"print ar3\(8:,:2,:2\)"
4c2ad1
+
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(:2,3:4,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 137, 237\\) \\( 147, 247\\) \\) \\(\
4c2ad1
+		 \\( 138, 238\\) \\( 148, 248\\) \\) \\)" \
4c2ad1
+		"print ar3 \(:2,3:4,7:8\)."
4c2ad1
+gdb_test "print ar3\(:2,3:4,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 138, 238\\) \\( 148, 248\\) \\) \\(\
4c2ad1
+		 \\( 139, 239\\) \\( 149, 249\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,3:4,8:\)"
4c2ad1
+gdb_test "print ar3\(:2,3:4,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 131, 231\\) \\( 141, 241\\) \\) \\(\
4c2ad1
+		 \\( 132, 232\\) \\( 142, 242\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,3:4,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(:2,8:,7:8\)" "\\$\[0-9\]+ = \\(\\( \\( 187, 287\\) \\(\
4c2ad1
+		 197, 297\\) \\) \\( \\( 188, 288\\) \\( 198, 298\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,8:,7:8\)"
4c2ad1
+gdb_test "print ar3\(:2,8:,8:\)" "\\$\[0-9\]+ = \\(\\( \\( 188, 288\\) \\( 198,\
4c2ad1
+		 298\\) \\) \\( \\( 189, 289\\) \\( 199, 299\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,8:,8:\)"
4c2ad1
+gdb_test "print ar3\(:2,8:,:2\)" "\\$\[0-9\]+ = \\(\\( \\( 181, 281\\) \\( 191,\
4c2ad1
+		 291\\) \\) \\( \\( 182, 282\\) \\( 192, 292\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,8:,:2\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(:2,:2,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 117, 217\\) \\( 127, 227\\) \\) \\(\
4c2ad1
+		 \\( 118, 218\\) \\( 128, 228\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,:2,7:8\)"
4c2ad1
+gdb_test "print ar3\(:2,:2,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 118, 218\\) \\( 128, 228\\) \\) \\(\
4c2ad1
+		 \\( 119, 219\\) \\( 129, 229\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,:2,8:\)"
4c2ad1
+gdb_test "print ar3\(:2,:2,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 111, 211\\) \\( 121, 221\\) \\) \\(\
4c2ad1
+		 \\( 112, 212\\) \\( 122, 222\\) \\) \\)" \
4c2ad1
+		"print ar3\(:2,:2,:2\)"
4c2ad1
+
4c2ad1
+#Tests for subarrays of 3 dimensional arrays with literals and subranges
4c2ad1
+gdb_test "print ar3\(3,3:4,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 337, 347\\) \\( 338, 348\\) \\)" \
4c2ad1
+		"print ar3\(3,3:4,7:8\)"
4c2ad1
+gdb_test "print ar3\(3,4:5,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 348, 358\\) \\( 349, 359\\) \\)" \
4c2ad1
+		"print ar3\(3,4:5,8:\)"
4c2ad1
+gdb_test "print ar3\(3,4:5,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 341, 351\\) \\( 342, 352\\) \\)" \
4c2ad1
+		"print ar3\(3,4:5,:2\)"
4c2ad1
+gdb_test "print ar3\(3,4:5,3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(343, 353\\)" \
4c2ad1
+		"print ar3\(3,4:5,3\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(2,8:,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 287, 297\\) \\( 288, 298\\) \\)" \
4c2ad1
+		"print ar3\(2,8:,7:8\)"
4c2ad1
+gdb_test "print ar3\(2,8:,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 288, 298\\) \\( 289, 299\\) \\)" \
4c2ad1
+		"print ar3\(2,8:,8:\)"
4c2ad1
+gdb_test "print ar3\(2,8:,:2\)"\
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 281, 291\\) \\( 282, 292\\) \\)" \
4c2ad1
+		"print ar3\(2,8:,:2\)"
4c2ad1
+gdb_test "print ar3\(2,8:,3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(283, 293\\)" \
4c2ad1
+		"print ar3\(2,8:,3\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(2,:2,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 217, 227\\) \\( 218, 228\\) \\)" \
4c2ad1
+		"print ar3\(2,:2,7:8\)"
4c2ad1
+gdb_test "print ar3\(2,:2,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 218, 228\\) \\( 219, 229\\) \\)" \
4c2ad1
+		"print ar3\(2,:2,8:\)"
4c2ad1
+gdb_test "print ar3\(2,:2,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 211, 221\\) \\( 212, 222\\) \\)" \
4c2ad1
+		"print ar3\(2,:2,:2\)"
4c2ad1
+gdb_test "print ar3\(2,:2,3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(213, 223\\)" \
4c2ad1
+		"print ar3\(2,:2,3\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(3,4,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(347, 348\\)" \
4c2ad1
+		"print ar3\(3,4,7:8\)"
4c2ad1
+gdb_test "print ar3\(3,4,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(348, 349\\)" \
4c2ad1
+i		"print ar3\(3,4,8:\)"
4c2ad1
+gdb_test "print ar3\(3,4,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(341, 342\\)" \
4c2ad1
+		"print ar3\(3,4,:2\)"
4c2ad1
+gdb_test "print ar3\(5,6,7\)" \
4c2ad1
+		"\\$\[0-9\]+ = 567" \
4c2ad1
+		"print ar3\(5,6,7\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(3:4,6,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 367, 467\\) \\( 368, 468\\) \\)" \
4c2ad1
+		"print ar3\(3:4,6,7:8\)"
4c2ad1
+gdb_test "print ar3\(3:4,6,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 368, 468\\) \\( 369, 469\\) \\)" \
4c2ad1
+		"print ar3\(3:4,6,8:\)"
4c2ad1
+gdb_test "print ar3\(3:4,6,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 361, 461\\) \\( 362, 462\\) \\)" \
4c2ad1
+		"print ar3\(3:4,6,:2\)"
4c2ad1
+gdb_test "print ar3\(3:4,6,5\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(365, 465\\)" \
4c2ad1
+		"print ar3\(3:4,6,5\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(8:,6,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 867, 967\\) \\( 868, 968\\) \\)" \
4c2ad1
+		"print ar3\(8:,6,7:8\)"
4c2ad1
+gdb_test "print ar3\(8:,6,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 868, 968\\) \\( 869, 969\\) \\)" \
4c2ad1
+		"print ar3\(8:,6,8:\)"
4c2ad1
+gdb_test "print ar3\(8:,6,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 861, 961\\) \\( 862, 962\\) \\)" \
4c2ad1
+		"print ar3\(8:,6,:2\)"
4c2ad1
+gdb_test "print ar3\(8:,6,5\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(865, 965\\)" \
4c2ad1
+		"print ar3\(8:,6,5\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(:2,6,7:8\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 167, 267\\) \\( 168, 268\\) \\)" \
4c2ad1
+		"print ar3\(:2,6,7:8\)"
4c2ad1
+gdb_test "print ar3\(:2,6,8:\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 168, 268\\) \\( 169, 269\\) \\)" \
4c2ad1
+		"print ar3\(:2,6,8:\)"
4c2ad1
+gdb_test "print ar3\(:2,6,:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 161, 261\\) \\( 162, 262\\) \\)" \
4c2ad1
+		"print ar3\(:2,6,:2\)"
4c2ad1
+gdb_test "print ar3\(:2,6,5\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(165, 265\\)" \
4c2ad1
+		"print ar3\(:2,6,5\)"
4c2ad1
+
4c2ad1
+gdb_test "print ar3\(3:4,5:6,4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 354, 454\\) \\( 364, 464\\) \\)" \
4c2ad1
+		"print ar2\(3:4,5:6,4\)"
4c2ad1
+gdb_test "print ar3\(8:,5:6,4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 854, 954\\) \\( 864, 964\\) \\)" \
4c2ad1
+		"print ar2\(8:,5:6,4\)"
4c2ad1
+gdb_test "print ar3\(:2,5:6,4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 154, 254\\) \\( 164, 264\\) \\)" \
4c2ad1
+		"print ar2\(:2,5:6,4\)"
4c2ad1
+
4c2ad1
+# Stride > 1
4c2ad1
+gdb_test "print ar1\(2:6:2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(2, 4, 6\\)" \
4c2ad1
+		"print ar1\(2:6:2\)"
4c2ad1
+gdb_test "print ar2\(2:6:2,3:4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 23, 43, 63\\) \\( 24, 44, 64\\) \\)" \
4c2ad1
+		"print ar2\(2:6:2,3:4\)"
4c2ad1
+gdb_test "print ar2\(2:6:2,3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(23, 43, 63\\)" \
4c2ad1
+		"print ar2\(2:6:2,3\)"
4c2ad1
+gdb_test "print ar3\(2:6:2,3:5:2,4:7:3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 234, 434, 634\\) \\( 254, 454, 654\\)\
4c2ad1
+		 \\) \\( \\( 237, 437, 637\\) \\( 257, 457, 657\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:6:2,3:5:2,4:7:3\)"
4c2ad1
+gdb_test "print ar3\(2:6:2,5,4:7:3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 254, 454, 654\\) \\( 257, 457, 657\\)\
4c2ad1
+		 \\)" \
4c2ad1
+		"print ar3\(2:6:2,5,4:7:3\)"
4c2ad1
+
4c2ad1
+# Stride < 0
4c2ad1
+gdb_test "print ar1\(8:2:-2\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(8, 6, 4, 2\\)" \
4c2ad1
+		"print ar1\(8:2:-2\)"
4c2ad1
+gdb_test "print ar2\(8:2:-2,3:4\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 83, 63, 43, 23\\) \\( 84, 64, 44, 24\\)\
4c2ad1
+		 \\)" \
4c2ad1
+		"print ar2\(8:2:-2,3:4\)"
4c2ad1
+gdb_test "print ar2\(2:6:2,3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(23, 43, 63\\)" \
4c2ad1
+		"print ar2\(2:6:2,3\)"
4c2ad1
+gdb_test "print ar3\(2:3,7:3:-4,4:7:3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 274, 374\\) \\( 234, 334\\) \\) \\(\
4c2ad1
+		 \\( 277, 377\\) \\( 237, 337\\) \\) \\)" \
4c2ad1
+		"print ar3\(2:3,7:3:-4,4:7:3\)"
4c2ad1
+gdb_test "print ar3\(2:6:2,5,7:4:-3\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( 257, 457, 657\\) \\( 254, 454, 654\\)\
4c2ad1
+		 \\)" \
4c2ad1
+		"print ar3\(2:6:2,5,7:4:-3\)"
4c2ad1
+
4c2ad1
+# Tests with negative and mixed indices
4c2ad1
+gdb_test "p ar4\(2:4, -2:1, -15:-14\)" \
4c2ad1
+		"\\$\[0-9\]+ = \\(\\( \\( 261, 361, 461\\) \\( 271, 371, 471\\)\
4c2ad1
+		 \\( 281, 381, 481\\) \\( 291, 391, 491\\) \\) \\( \\( 262,\
4c2ad1
+		 362, 462\\) \\( 272, 372, 472\\) \\( 282, 382, 482\\) \\( 292,\
4c2ad1
+		 392, 492\\) \\) \\)" \
4c2ad1
+		"print ar4(2:4, -2:1, -15:-14)"
4c2ad1
+
4c2ad1
+gdb_test "p ar4\(7,-6:2:3,-7\)" \
4c2ad1
+                "\\$\[0-9\]+ = \\(729, 759, 789\\)" \
4c2ad1
+                "print ar4(7,-6:2:3,-7)"
4c2ad1
+
4c2ad1
+gdb_test "p ar4\(9:2:-2, -6:2:3, -6:-15:-3\)" \
4c2ad1
+                "\\$\[0-9\]+ = \\(\\( \\( 930, 730, 530, 330\\) \\( 960, 760,\
4c2ad1
+		 560, 360\\) \\( 990, 790, 590, 390\\) \\) \\( \\( 927, 727,\
4c2ad1
+		 527, 327\\) \\( 957, 757, 557, 357\\) \\( 987, 787, 587,\
4c2ad1
+		 387\\) \\) \\( \\( 924, 724, 524, 324\\) \\( 954, 754, 554,\
4c2ad1
+		 354\\) \\( 984, 784, 584, 384\\) \\) \\( \\( 921, 721, 521,\
4c2ad1
+		 321\\) \\( 951, 751, 551, 351\\) \\( 981, 781, 581, 381\\) \\)\
4c2ad1
+		 \\)" \
4c2ad1
+                "print ar4(9:2:-2, -6:2:3, -6:-15:-3)"
4c2ad1
+
4c2ad1
+gdb_test "p ar4\(:,:,:\)" \
4c2ad1
+                "\\$\[0-9\]+ = \\(\\( \\( 111, 211, 311, 411, 511, 611, 711,\
4c2ad1
+		 811, .*" \
4c2ad1
+                "print ar4(:,:,:)"
4c2ad1
+
4c2ad1
+# Provoke error messages for bad user input
4c2ad1
+gdb_test "print ar1\(0:4\)" \
4c2ad1
+		"provided bound\\(s\\) outside array bound\\(s\\)" \
4c2ad1
+		"print ar1\(0:4\)"
4c2ad1
+gdb_test "print ar1\(8:12\)" \
4c2ad1
+		"provided bound\\(s\\) outside array bound\\(s\\)" \
4c2ad1
+		"print ar1\(8:12\)"
4c2ad1
+gdb_test "print ar1\(8:2:\)" \
4c2ad1
+		"A syntax error in expression, near `\\)'." \
4c2ad1
+		"print ar1\(8:2:\)"
4c2ad1
+gdb_test "print ar1\(8:2:2\)" \
4c2ad1
+		"Wrong value provided for stride and boundaries" \
4c2ad1
+		"print ar1\(8:2:2\)"
4c2ad1
+gdb_test "print ar1\(2:8:-2\)" \
4c2ad1
+		"Wrong value provided for stride and boundaries" \
4c2ad1
+		"print ar1\(2:8:-2\)"
4c2ad1
+gdb_test "print ar1\(2:7:0\)" \
4c2ad1
+		"Stride must not be 0" \
4c2ad1
+		"print ar1\(2:7:0\)"
4c2ad1
+gdb_test "print ar1\(3:7\) = 42" \
4c2ad1
+		"Invalid cast." \
4c2ad1
+		"Assignment of value to subarray"
4c2ad1
diff --git a/gdb/testsuite/gdb.fortran/static-arrays.f90 b/gdb/testsuite/gdb.fortran/static-arrays.f90
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.fortran/static-arrays.f90
4c2ad1
@@ -0,0 +1,55 @@
4c2ad1
+! Copyright 2015 Free Software Foundation, Inc.
4c2ad1
+!
4c2ad1
+! Contributed by Intel Corp. <christoph.t.weinmann@intel.com>
4c2ad1
+!
4c2ad1
+! This program is free software; you can redistribute it and/or modify
4c2ad1
+! it under the terms of the GNU General Public License as published by
4c2ad1
+! the Free Software Foundation; either version 3 of the License, or
4c2ad1
+! (at your option) any later version.
4c2ad1
+!
4c2ad1
+! This program is distributed in the hope that it will be useful,
4c2ad1
+! but WITHOUT ANY WARRANTY; without even the implied warranty of
4c2ad1
+! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c2ad1
+! GNU General Public License for more details.
4c2ad1
+!
4c2ad1
+! You should have received a copy of the GNU General Public License
4c2ad1
+! along with this program.  If not, see <http://www.gnu.org/licenses/>.
4c2ad1
+
4c2ad1
+subroutine sub
4c2ad1
+  integer, dimension(9) :: ar1
4c2ad1
+  integer, dimension(9,9) :: ar2
4c2ad1
+  integer, dimension(9,9,9) :: ar3
4c2ad1
+  integer, dimension(10,-7:3, -15:-5) :: ar4
4c2ad1
+  integer :: i,j,k
4c2ad1
+
4c2ad1
+  ar1 = 1
4c2ad1
+  ar2 = 1
4c2ad1
+  ar3 = 1
4c2ad1
+  ar4 = 4
4c2ad1
+
4c2ad1
+  ! Resulting array ar3 looks like ((( 111, 112, 113, 114,...)))
4c2ad1
+  do i = 1, 9, 1
4c2ad1
+    ar1(i) = i
4c2ad1
+    do j = 1, 9, 1
4c2ad1
+      ar2(i,j) = i*10 + j
4c2ad1
+      do k = 1, 9, 1
4c2ad1
+        ar3(i,j,k) = i*100 + j*10 + k
4c2ad1
+      end do
4c2ad1
+    end do
4c2ad1
+  end do
4c2ad1
+
4c2ad1
+  do i = 1, 10, 1
4c2ad1
+    do j = -7, 3, 1
4c2ad1
+      do k = -15, -5, 1
4c2ad1
+        ar4(i,j,k) = i*100 + (j+8)*10 + (k+16)
4c2ad1
+      end do
4c2ad1
+    end do
4c2ad1
+  end do
4c2ad1
+
4c2ad1
+  ar1(1) = 11  !BP1
4c2ad1
+  return
4c2ad1
+end
4c2ad1
+
4c2ad1
+program testprog
4c2ad1
+  call sub
4c2ad1
+end
4c2ad1
diff --git a/gdb/testsuite/gdb.fortran/vla-ptype.exp b/gdb/testsuite/gdb.fortran/vla-ptype.exp
4c2ad1
--- a/gdb/testsuite/gdb.fortran/vla-ptype.exp
4c2ad1
+++ b/gdb/testsuite/gdb.fortran/vla-ptype.exp
4c2ad1
@@ -98,3 +98,7 @@ gdb_test "ptype vla2" "type = <not allocated>" "ptype vla2 not allocated"
4c2ad1
 gdb_test "ptype vla2(5, 45, 20)" \
4c2ad1
   "no such vector element \\\(vector not allocated\\\)" \
4c2ad1
   "ptype vla2(5, 45, 20) not allocated"
4c2ad1
+
4c2ad1
+gdb_breakpoint [gdb_get_line_number "vla1-neg-bounds"]
4c2ad1
+gdb_continue_to_breakpoint "vla1-neg-bounds"
4c2ad1
+gdb_test "ptype vla1" "type = $real \\(-2:1,-5:4,-3:-1\\)" "ptype vla1 negative bounds"
4c2ad1
diff --git a/gdb/testsuite/gdb.fortran/vla-sizeof.exp b/gdb/testsuite/gdb.fortran/vla-sizeof.exp
4c2ad1
--- a/gdb/testsuite/gdb.fortran/vla-sizeof.exp
4c2ad1
+++ b/gdb/testsuite/gdb.fortran/vla-sizeof.exp
4c2ad1
@@ -44,3 +44,7 @@ gdb_test "print sizeof(pvla)" " = 0" "print sizeof non-associated pvla"
4c2ad1
 gdb_breakpoint [gdb_get_line_number "pvla-associated"]
4c2ad1
 gdb_continue_to_breakpoint "pvla-associated"
4c2ad1
 gdb_test "print sizeof(pvla)" " = 4000" "print sizeof associated pvla"
4c2ad1
+
4c2ad1
+gdb_breakpoint [gdb_get_line_number "vla1-neg-bounds"]
4c2ad1
+gdb_continue_to_breakpoint "vla1-neg-bounds"
4c2ad1
+gdb_test "print sizeof(vla1)" " = 480" "print sizeof vla1 negative bounds"
4c2ad1
diff --git a/gdb/testsuite/gdb.fortran/vla-stride.exp b/gdb/testsuite/gdb.fortran/vla-stride.exp
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.fortran/vla-stride.exp
4c2ad1
@@ -0,0 +1,44 @@
4c2ad1
+# Copyright 2016 Free Software Foundation, Inc.
4c2ad1
+
4c2ad1
+# This program is free software; you can redistribute it and/or modify
4c2ad1
+# it under the terms of the GNU General Public License as published by
4c2ad1
+# the Free Software Foundation; either version 3 of the License, or
4c2ad1
+# (at your option) any later version.
4c2ad1
+#
4c2ad1
+# This program is distributed in the hope that it will be useful,
4c2ad1
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
4c2ad1
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c2ad1
+# GNU General Public License for more details.
4c2ad1
+#
4c2ad1
+# You should have received a copy of the GNU General Public License
4c2ad1
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
4c2ad1
+
4c2ad1
+standard_testfile ".f90"
4c2ad1
+
4c2ad1
+if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} \
4c2ad1
+    {debug f90 quiet}] } {
4c2ad1
+    return -1
4c2ad1
+}
4c2ad1
+
4c2ad1
+if ![runto MAIN__] then {
4c2ad1
+    perror "couldn't run to breakpoint MAIN__"
4c2ad1
+    continue
4c2ad1
+}
4c2ad1
+
4c2ad1
+gdb_breakpoint [gdb_get_line_number "re-reverse-elements"]
4c2ad1
+gdb_continue_to_breakpoint "re-reverse-elements"
4c2ad1
+gdb_test "print pvla" " = \\\(1, 2, 3, 4, 5, 6, 7, 8, 9, 10\\\)" \
4c2ad1
+  "print re-reverse-elements"
4c2ad1
+gdb_test "print pvla(1)" " = 1" "print first re-reverse-element"
4c2ad1
+gdb_test "print pvla(10)" " = 10" "print last re-reverse-element"
4c2ad1
+
4c2ad1
+gdb_breakpoint [gdb_get_line_number "odd-elements"]
4c2ad1
+gdb_continue_to_breakpoint "odd-elements"
4c2ad1
+gdb_test "print pvla" " = \\\(1, 3, 5, 7, 9\\\)" "print odd-elements"
4c2ad1
+gdb_test "print pvla(1)" " = 1" "print first odd-element"
4c2ad1
+gdb_test "print pvla(5)" " = 9" "print last odd-element"
4c2ad1
+
4c2ad1
+gdb_breakpoint [gdb_get_line_number "single-element"]
4c2ad1
+gdb_continue_to_breakpoint "single-element"
4c2ad1
+gdb_test "print pvla" " = \\\(5\\\)" "print single-element"
4c2ad1
+gdb_test "print pvla(1)" " = 5" "print one single-element"
4c2ad1
diff --git a/gdb/testsuite/gdb.fortran/vla-stride.f90 b/gdb/testsuite/gdb.fortran/vla-stride.f90
4c2ad1
new file mode 100644
4c2ad1
--- /dev/null
4c2ad1
+++ b/gdb/testsuite/gdb.fortran/vla-stride.f90
4c2ad1
@@ -0,0 +1,29 @@
4c2ad1
+! Copyright 2016 Free Software Foundation, Inc.
4c2ad1
+!
4c2ad1
+! This program is free software; you can redistribute it and/or modify
4c2ad1
+! it under the terms of the GNU General Public License as published by
4c2ad1
+! the Free Software Foundation; either version 3 of the License, or
4c2ad1
+! (at your option) any later version.
4c2ad1
+!
4c2ad1
+! This program is distributed in the hope that it will be useful,
4c2ad1
+! but WITHOUT ANY WARRANTY; without even the implied warranty of
4c2ad1
+! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4c2ad1
+! GNU General Public License for more details.
4c2ad1
+!
4c2ad1
+! You should have received a copy of the GNU General Public License
4c2ad1
+! along with this program.  If not, see <http://www.gnu.org/licenses/>.
4c2ad1
+
4c2ad1
+program vla_stride
4c2ad1
+  integer, target, allocatable :: vla (:)
4c2ad1
+  integer, pointer :: pvla (:)
4c2ad1
+
4c2ad1
+  allocate(vla(10))
4c2ad1
+  vla = (/ (I, I = 1,10) /)
4c2ad1
+
4c2ad1
+  pvla => vla(10:1:-1)
4c2ad1
+  pvla => pvla(10:1:-1)
4c2ad1
+  pvla => vla(1:10:2)   ! re-reverse-elements
4c2ad1
+  pvla => vla(5:4:-2)   ! odd-elements
4c2ad1
+
4c2ad1
+  pvla => null()        ! single-element
4c2ad1
+end program vla_stride
4c2ad1
diff --git a/gdb/testsuite/gdb.fortran/vla.f90 b/gdb/testsuite/gdb.fortran/vla.f90
4c2ad1
--- a/gdb/testsuite/gdb.fortran/vla.f90
4c2ad1
+++ b/gdb/testsuite/gdb.fortran/vla.f90
4c2ad1
@@ -54,4 +54,14 @@ program vla
4c2ad1
 
4c2ad1
   allocate (vla3 (2,2))               ! vla2-deallocated
4c2ad1
   vla3(:,:) = 13
4c2ad1
+
4c2ad1
+  allocate (vla1 (-2:1, -5:4, -3:-1))
4c2ad1
+  l = allocated(vla1)
4c2ad1
+
4c2ad1
+  vla1(:, :, :) = 1
4c2ad1
+  vla1(-2, -3, -1) = -231
4c2ad1
+
4c2ad1
+  deallocate (vla1)                   ! vla1-neg-bounds
4c2ad1
+  l = allocated(vla1)
4c2ad1
+
4c2ad1
 end program vla
4c2ad1
diff --git a/gdb/valarith.c b/gdb/valarith.c
4c2ad1
--- a/gdb/valarith.c
4c2ad1
+++ b/gdb/valarith.c
4c2ad1
@@ -187,10 +187,16 @@ value_subscripted_rvalue (struct value *array, LONGEST index, int lowerbound)
4c2ad1
   struct type *array_type = check_typedef (value_type (array));
4c2ad1
   struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (array_type));
4c2ad1
   ULONGEST elt_size = type_length_units (elt_type);
4c2ad1
-  ULONGEST elt_offs = elt_size * (index - lowerbound);
4c2ad1
+  LONGEST elt_offs = index - lowerbound;
4c2ad1
+  LONGEST elt_stride = TYPE_BYTE_STRIDE (TYPE_INDEX_TYPE (array_type));
4c2ad1
+
4c2ad1
+  if (elt_stride != 0)
4c2ad1
+    elt_offs *= elt_stride;
4c2ad1
+  else
4c2ad1
+    elt_offs *= elt_size;
4c2ad1
 
4c2ad1
   if (index < lowerbound || (!TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (array_type)
4c2ad1
-			     && elt_offs >= type_length_units (array_type)))
4c2ad1
+			     && abs (elt_offs) >= type_length_units (array_type)))
4c2ad1
     {
4c2ad1
       if (type_not_associated (array_type))
4c2ad1
         error (_("no such vector element (vector not associated)"));
4c2ad1
diff --git a/gdb/valops.c b/gdb/valops.c
4c2ad1
--- a/gdb/valops.c
4c2ad1
+++ b/gdb/valops.c
4c2ad1
@@ -3808,56 +3808,195 @@ value_of_this_silent (const struct language_defn *lang)
4c2ad1
 
4c2ad1
 struct value *
4c2ad1
 value_slice (struct value *array, int lowbound, int length)
4c2ad1
+{
4c2ad1
+  /* Pass unaltered arguments to VALUE_SLICE_1, plus a default stride
4c2ad1
+     value of '1', which returns every element between LOWBOUND and
4c2ad1
+     (LOWBOUND + LENGTH).  We also provide a default CALL_COUNT of '1'
4c2ad1
+     as we are only considering the highest dimension, or we are
4c2ad1
+     working on a one dimensional array.  So we call VALUE_SLICE_1
4c2ad1
+     exactly once.  */
4c2ad1
+  return value_slice_1 (array, lowbound, length, 1, 1);
4c2ad1
+}
4c2ad1
+
4c2ad1
+/* VALUE_SLICE_1 is called for each array dimension to calculate the number
4c2ad1
+   of elements as defined by the subscript expression.
4c2ad1
+   CALL_COUNT is used to determine if we are calling the function once, e.g.
4c2ad1
+   we are working on the current dimension of ARRAY, or if we are calling
4c2ad1
+   the function repeatedly.  In the later case we need to take elements
4c2ad1
+   from the TARGET_TYPE of ARRAY.
4c2ad1
+   With a CALL_COUNT greater than 1 we calculate the offsets for every element
4c2ad1
+   that should be in the result array.  Then we fetch the contents and then
4c2ad1
+   copy them into the result array.  The result array will have one dimension
4c2ad1
+   less than the input array, so later on we need to recreate the indices and
4c2ad1
+   ranges in the calling function.  */
4c2ad1
+
4c2ad1
+struct value *
4c2ad1
+value_slice_1 (struct value *array, int lowbound, int length,
4c2ad1
+	       int stride_length, int call_count)
4c2ad1
 {
4c2ad1
   struct type *slice_range_type, *slice_type, *range_type;
4c2ad1
-  LONGEST lowerbound, upperbound;
4c2ad1
-  struct value *slice;
4c2ad1
-  struct type *array_type;
4c2ad1
+  struct type *array_type = check_typedef (value_type (array));
4c2ad1
+  struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (array_type));
4c2ad1
+  unsigned int elt_size, elt_offs;
4c2ad1
+  LONGEST ary_high_bound, ary_low_bound;
4c2ad1
+  struct value *v;
4c2ad1
+  int slice_range_size, i = 0, row_count = 1, elem_count = 1;
4c2ad1
 
4c2ad1
-  array_type = check_typedef (value_type (array));
4c2ad1
+  /* Check for legacy code if we are actually dealing with an array or
4c2ad1
+     string.  */
4c2ad1
   if (TYPE_CODE (array_type) != TYPE_CODE_ARRAY
4c2ad1
       && TYPE_CODE (array_type) != TYPE_CODE_STRING)
4c2ad1
     error (_("cannot take slice of non-array"));
4c2ad1
 
4c2ad1
-  range_type = TYPE_INDEX_TYPE (array_type);
4c2ad1
-  if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
4c2ad1
-    error (_("slice from bad array or bitstring"));
4c2ad1
+  ary_low_bound = TYPE_LOW_BOUND (TYPE_INDEX_TYPE (array_type));
4c2ad1
+  ary_high_bound = TYPE_HIGH_BOUND (TYPE_INDEX_TYPE (array_type));
4c2ad1
+
4c2ad1
+  /* When we are working on a multi-dimensional array, we need to get the
4c2ad1
+     attributes of the underlying type.  */
4c2ad1
+  if (call_count > 1)
4c2ad1
+    {
4c2ad1
+      ary_low_bound = TYPE_LOW_BOUND (TYPE_INDEX_TYPE (elt_type));
4c2ad1
+      ary_high_bound = TYPE_HIGH_BOUND (TYPE_INDEX_TYPE (elt_type));
4c2ad1
+      elt_type = check_typedef (TYPE_TARGET_TYPE (elt_type));
4c2ad1
+      row_count = TYPE_LENGTH (array_type)
4c2ad1
+		    / TYPE_LENGTH (TYPE_TARGET_TYPE (array_type));
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  /* With a stride of '1', the number of elements per result row is equal to
4c2ad1
+     the LENGTH of the subarray.  With non-default stride values, we skip
4c2ad1
+     elements, but have to add the start element to the total number of
4c2ad1
+     elements per row.  */
4c2ad1
+  if (stride_length == 1)
4c2ad1
+    elem_count = length;
4c2ad1
+  else
4c2ad1
+    elem_count = ((length - 1) / stride_length) + 1;
4c2ad1
+
4c2ad1
+  elt_size = TYPE_LENGTH (elt_type);
4c2ad1
+  elt_offs = lowbound - ary_low_bound;
4c2ad1
 
4c2ad1
-  if (lowbound < lowerbound || length < 0
4c2ad1
-      || lowbound + length - 1 > upperbound)
4c2ad1
-    error (_("slice out of range"));
4c2ad1
+  elt_offs *= elt_size;
4c2ad1
+
4c2ad1
+  /* Check for valid user input.  In case of Fortran this was already done
4c2ad1
+     in the calling function.  */
4c2ad1
+  if (call_count == 1
4c2ad1
+	&& (!TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (array_type)
4c2ad1
+	      && elt_offs >= TYPE_LENGTH (array_type)))
4c2ad1
+    error (_("no such vector element"));
4c2ad1
+
4c2ad1
+  /* CALL_COUNT is 1 when we are dealing either with the highest dimension
4c2ad1
+     of the array, or a one dimensional array.  Set RANGE_TYPE accordingly.
4c2ad1
+     In both cases we calculate how many rows/elements will be in the output
4c2ad1
+     array by setting slice_range_size.  */
4c2ad1
+  if (call_count == 1)
4c2ad1
+    {
4c2ad1
+      range_type = TYPE_INDEX_TYPE (array_type);
4c2ad1
+      slice_range_size = ary_low_bound + elem_count - 1;
4c2ad1
+
4c2ad1
+      /* Check if the array bounds are valid.  */
4c2ad1
+      if (get_discrete_bounds (range_type, &ary_low_bound, &ary_high_bound) < 0)
4c2ad1
+	error (_("slice from bad array or bitstring"));
4c2ad1
+    }
4c2ad1
+  /* When CALL_COUNT is greater than 1, we are dealing with an array of arrays.
4c2ad1
+     So we need to get the type below the current one and set the RANGE_TYPE
4c2ad1
+     accordingly.  */
4c2ad1
+  else
4c2ad1
+    {
4c2ad1
+      range_type = TYPE_INDEX_TYPE (TYPE_TARGET_TYPE (array_type));
4c2ad1
+      slice_range_size = ary_low_bound + (row_count * elem_count) - 1;
4c2ad1
+      ary_low_bound = TYPE_LOW_BOUND (range_type);
4c2ad1
+    }
4c2ad1
 
4c2ad1
   /* FIXME-type-allocation: need a way to free this type when we are
4c2ad1
-     done with it.  */
4c2ad1
-  slice_range_type = create_static_range_type ((struct type *) NULL,
4c2ad1
-					       TYPE_TARGET_TYPE (range_type),
4c2ad1
-					       lowbound,
4c2ad1
-					       lowbound + length - 1);
4c2ad1
+      done with it.  */
4c2ad1
 
4c2ad1
+  slice_range_type = create_static_range_type (NULL, TYPE_TARGET_TYPE (range_type),
4c2ad1
+					       ary_low_bound, slice_range_size);
4c2ad1
   {
4c2ad1
-    struct type *element_type = TYPE_TARGET_TYPE (array_type);
4c2ad1
-    LONGEST offset
4c2ad1
-      = (lowbound - lowerbound) * TYPE_LENGTH (check_typedef (element_type));
4c2ad1
+    struct type *element_type;
4c2ad1
+
4c2ad1
+    /* When both CALL_COUNT and STRIDE_LENGTH equal 1, we can use the legacy
4c2ad1
+       code for subarrays.  */
4c2ad1
+    if (call_count == 1 && stride_length == 1)
4c2ad1
+      {
4c2ad1
+	element_type = TYPE_TARGET_TYPE (array_type);
4c2ad1
+
4c2ad1
+	slice_type = create_array_type (NULL, element_type, slice_range_type);
4c2ad1
 
4c2ad1
-    slice_type = create_array_type ((struct type *) NULL,
4c2ad1
-				    element_type,
4c2ad1
-				    slice_range_type);
4c2ad1
-    TYPE_CODE (slice_type) = TYPE_CODE (array_type);
4c2ad1
+	TYPE_CODE (slice_type) = TYPE_CODE (array_type);
4c2ad1
 
4c2ad1
-    if (VALUE_LVAL (array) == lval_memory && value_lazy (array))
4c2ad1
-      slice = allocate_value_lazy (slice_type);
4c2ad1
+	if (VALUE_LVAL (array) == lval_memory && value_lazy (array))
4c2ad1
+	  v = allocate_value_lazy (slice_type);
4c2ad1
+	else
4c2ad1
+	  {
4c2ad1
+	    v = allocate_value (slice_type);
4c2ad1
+	    value_contents_copy (v,
4c2ad1
+				 value_embedded_offset (v),
4c2ad1
+				 array,
4c2ad1
+				 value_embedded_offset (array) + elt_offs,
4c2ad1
+				 elt_size * longest_to_int (length));
4c2ad1
+	  }
4c2ad1
+
4c2ad1
+      }
4c2ad1
+    /* With a CALL_COUNT or STRIDE_LENGTH are greater than 1 we are working
4c2ad1
+       on a range of ranges.  So we copy the relevant elements into the
4c2ad1
+       new array we return.  */
4c2ad1
     else
4c2ad1
       {
4c2ad1
-	slice = allocate_value (slice_type);
4c2ad1
-	value_contents_copy (slice, 0, array, offset,
4c2ad1
-			     type_length_units (slice_type));
4c2ad1
+	int j, offs_store = elt_offs;
4c2ad1
+	LONGEST dst_offset = 0;
4c2ad1
+	LONGEST src_row_length = TYPE_LENGTH (TYPE_TARGET_TYPE (array_type));
4c2ad1
+
4c2ad1
+	if (call_count == 1)
4c2ad1
+	  {
4c2ad1
+	    /* When CALL_COUNT is equal to 1 we are working on the current range
4c2ad1
+	       and use these elements directly.  */
4c2ad1
+	    element_type = TYPE_TARGET_TYPE (array_type);
4c2ad1
+	  }
4c2ad1
+	else
4c2ad1
+	  {
4c2ad1
+	    /* Working on an array of arrays, the type of the elements is the type
4c2ad1
+	       of the subarrays' type.  */
4c2ad1
+	    element_type = TYPE_TARGET_TYPE (TYPE_TARGET_TYPE (array_type));
4c2ad1
+	  }
4c2ad1
+
4c2ad1
+	slice_type = create_array_type (NULL, element_type, slice_range_type);
4c2ad1
+
4c2ad1
+	 /* If we have a one dimensional array, we copy its TYPE_CODE.  For a
4c2ad1
+	    multi dimensional array we copy the embedded type's TYPE_CODE.  */
4c2ad1
+	if (call_count == 1)
4c2ad1
+	  TYPE_CODE (slice_type) = TYPE_CODE (array_type);
4c2ad1
+	else
4c2ad1
+	  TYPE_CODE (slice_type) = TYPE_CODE (TYPE_TARGET_TYPE (array_type));
4c2ad1
+
4c2ad1
+	v = allocate_value (slice_type);
4c2ad1
+
4c2ad1
+	/* Iterate through the rows of the outer array and set the new offset
4c2ad1
+	   for each row.  */
4c2ad1
+	for (i = 0; i < row_count; i++)
4c2ad1
+	  {
4c2ad1
+	    elt_offs = offs_store + i * src_row_length;
4c2ad1
+
4c2ad1
+	    /* Iterate through the elements in each row to copy only those.  */
4c2ad1
+	    for (j = 1; j <= elem_count; j++)
4c2ad1
+	      {
4c2ad1
+		/* Fetches the contents of ARRAY and copies them into V.  */
4c2ad1
+		value_contents_copy (v, dst_offset, array, elt_offs, elt_size);
4c2ad1
+		elt_offs += elt_size * stride_length;
4c2ad1
+		dst_offset += elt_size;
4c2ad1
+	      }
4c2ad1
+	  }
4c2ad1
       }
4c2ad1
 
4c2ad1
-    set_value_component_location (slice, array);
4c2ad1
-    set_value_offset (slice, value_offset (array) + offset);
4c2ad1
+    set_value_component_location (v, array);
4c2ad1
+    if (VALUE_LVAL (v) == lval_register)
4c2ad1
+      {
4c2ad1
+	VALUE_REGNUM (v) = VALUE_REGNUM (array);
4c2ad1
+	VALUE_NEXT_FRAME_ID (v) = VALUE_NEXT_FRAME_ID (array);
4c2ad1
+      }
4c2ad1
+    set_value_offset (v, value_offset (array) + elt_offs);
4c2ad1
   }
4c2ad1
 
4c2ad1
-  return slice;
4c2ad1
+  return v;
4c2ad1
 }
4c2ad1
 
4c2ad1
 /* Create a value for a FORTRAN complex number.  Currently most of the
4c2ad1
diff --git a/gdb/value.h b/gdb/value.h
4c2ad1
--- a/gdb/value.h
4c2ad1
+++ b/gdb/value.h
4c2ad1
@@ -1139,6 +1139,8 @@ extern struct value *varying_to_slice (struct value *);
4c2ad1
 
4c2ad1
 extern struct value *value_slice (struct value *, int, int);
4c2ad1
 
4c2ad1
+extern struct value *value_slice_1 (struct value *, int, int, int, int);
4c2ad1
+
4c2ad1
 extern struct value *value_literal_complex (struct value *, struct value *,
4c2ad1
 					    struct type *);
4c2ad1