re PR testsuite/40567 (Revision 149002 caused many failures)
[official-gcc.git] / gcc / fortran / array.c
blob4d3345f3fd4347206b796db2a6f6fc3ca0e87a28
1 /* Array things
2 Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Contributed by Andy Vaught
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "gfortran.h"
25 #include "match.h"
27 /**************** Array reference matching subroutines *****************/
29 /* Copy an array reference structure. */
31 gfc_array_ref *
32 gfc_copy_array_ref (gfc_array_ref *src)
34 gfc_array_ref *dest;
35 int i;
37 if (src == NULL)
38 return NULL;
40 dest = gfc_get_array_ref ();
42 *dest = *src;
44 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
46 dest->start[i] = gfc_copy_expr (src->start[i]);
47 dest->end[i] = gfc_copy_expr (src->end[i]);
48 dest->stride[i] = gfc_copy_expr (src->stride[i]);
51 dest->offset = gfc_copy_expr (src->offset);
53 return dest;
57 /* Match a single dimension of an array reference. This can be a
58 single element or an array section. Any modifications we've made
59 to the ar structure are cleaned up by the caller. If the init
60 is set, we require the subscript to be a valid initialization
61 expression. */
63 static match
64 match_subscript (gfc_array_ref *ar, int init)
66 match m;
67 int i;
69 i = ar->dimen;
71 ar->c_where[i] = gfc_current_locus;
72 ar->start[i] = ar->end[i] = ar->stride[i] = NULL;
74 /* We can't be sure of the difference between DIMEN_ELEMENT and
75 DIMEN_VECTOR until we know the type of the element itself at
76 resolution time. */
78 ar->dimen_type[i] = DIMEN_UNKNOWN;
80 if (gfc_match_char (':') == MATCH_YES)
81 goto end_element;
83 /* Get start element. */
84 if (init)
85 m = gfc_match_init_expr (&ar->start[i]);
86 else
87 m = gfc_match_expr (&ar->start[i]);
89 if (m == MATCH_NO)
90 gfc_error ("Expected array subscript at %C");
91 if (m != MATCH_YES)
92 return MATCH_ERROR;
94 if (gfc_match_char (':') == MATCH_NO)
95 return MATCH_YES;
97 /* Get an optional end element. Because we've seen the colon, we
98 definitely have a range along this dimension. */
99 end_element:
100 ar->dimen_type[i] = DIMEN_RANGE;
102 if (init)
103 m = gfc_match_init_expr (&ar->end[i]);
104 else
105 m = gfc_match_expr (&ar->end[i]);
107 if (m == MATCH_ERROR)
108 return MATCH_ERROR;
110 /* See if we have an optional stride. */
111 if (gfc_match_char (':') == MATCH_YES)
113 m = init ? gfc_match_init_expr (&ar->stride[i])
114 : gfc_match_expr (&ar->stride[i]);
116 if (m == MATCH_NO)
117 gfc_error ("Expected array subscript stride at %C");
118 if (m != MATCH_YES)
119 return MATCH_ERROR;
122 return MATCH_YES;
126 /* Match an array reference, whether it is the whole array or a
127 particular elements or a section. If init is set, the reference has
128 to consist of init expressions. */
130 match
131 gfc_match_array_ref (gfc_array_ref *ar, gfc_array_spec *as, int init)
133 match m;
135 memset (ar, '\0', sizeof (ar));
137 ar->where = gfc_current_locus;
138 ar->as = as;
140 if (gfc_match_char ('(') != MATCH_YES)
142 ar->type = AR_FULL;
143 ar->dimen = 0;
144 return MATCH_YES;
147 ar->type = AR_UNKNOWN;
149 for (ar->dimen = 0; ar->dimen < GFC_MAX_DIMENSIONS; ar->dimen++)
151 m = match_subscript (ar, init);
152 if (m == MATCH_ERROR)
153 goto error;
155 if (gfc_match_char (')') == MATCH_YES)
156 goto matched;
158 if (gfc_match_char (',') != MATCH_YES)
160 gfc_error ("Invalid form of array reference at %C");
161 goto error;
165 gfc_error ("Array reference at %C cannot have more than %d dimensions",
166 GFC_MAX_DIMENSIONS);
168 error:
169 return MATCH_ERROR;
171 matched:
172 ar->dimen++;
174 return MATCH_YES;
178 /************** Array specification matching subroutines ***************/
180 /* Free all of the expressions associated with array bounds
181 specifications. */
183 void
184 gfc_free_array_spec (gfc_array_spec *as)
186 int i;
188 if (as == NULL)
189 return;
191 for (i = 0; i < as->rank; i++)
193 gfc_free_expr (as->lower[i]);
194 gfc_free_expr (as->upper[i]);
197 gfc_free (as);
201 /* Take an array bound, resolves the expression, that make up the
202 shape and check associated constraints. */
204 static gfc_try
205 resolve_array_bound (gfc_expr *e, int check_constant)
207 if (e == NULL)
208 return SUCCESS;
210 if (gfc_resolve_expr (e) == FAILURE
211 || gfc_specification_expr (e) == FAILURE)
212 return FAILURE;
214 if (check_constant && gfc_is_constant_expr (e) == 0)
216 gfc_error ("Variable '%s' at %L in this context must be constant",
217 e->symtree->n.sym->name, &e->where);
218 return FAILURE;
221 return SUCCESS;
225 /* Takes an array specification, resolves the expressions that make up
226 the shape and make sure everything is integral. */
228 gfc_try
229 gfc_resolve_array_spec (gfc_array_spec *as, int check_constant)
231 gfc_expr *e;
232 int i;
234 if (as == NULL)
235 return SUCCESS;
237 for (i = 0; i < as->rank; i++)
239 e = as->lower[i];
240 if (resolve_array_bound (e, check_constant) == FAILURE)
241 return FAILURE;
243 e = as->upper[i];
244 if (resolve_array_bound (e, check_constant) == FAILURE)
245 return FAILURE;
247 if ((as->lower[i] == NULL) || (as->upper[i] == NULL))
248 continue;
250 /* If the size is negative in this dimension, set it to zero. */
251 if (as->lower[i]->expr_type == EXPR_CONSTANT
252 && as->upper[i]->expr_type == EXPR_CONSTANT
253 && mpz_cmp (as->upper[i]->value.integer,
254 as->lower[i]->value.integer) < 0)
256 gfc_free_expr (as->upper[i]);
257 as->upper[i] = gfc_copy_expr (as->lower[i]);
258 mpz_sub_ui (as->upper[i]->value.integer,
259 as->upper[i]->value.integer, 1);
263 return SUCCESS;
267 /* Match a single array element specification. The return values as
268 well as the upper and lower bounds of the array spec are filled
269 in according to what we see on the input. The caller makes sure
270 individual specifications make sense as a whole.
273 Parsed Lower Upper Returned
274 ------------------------------------
275 : NULL NULL AS_DEFERRED (*)
276 x 1 x AS_EXPLICIT
277 x: x NULL AS_ASSUMED_SHAPE
278 x:y x y AS_EXPLICIT
279 x:* x NULL AS_ASSUMED_SIZE
280 * 1 NULL AS_ASSUMED_SIZE
282 (*) For non-pointer dummy arrays this is AS_ASSUMED_SHAPE. This
283 is fixed during the resolution of formal interfaces.
285 Anything else AS_UNKNOWN. */
287 static array_type
288 match_array_element_spec (gfc_array_spec *as)
290 gfc_expr **upper, **lower;
291 match m;
293 lower = &as->lower[as->rank - 1];
294 upper = &as->upper[as->rank - 1];
296 if (gfc_match_char ('*') == MATCH_YES)
298 *lower = gfc_int_expr (1);
299 return AS_ASSUMED_SIZE;
302 if (gfc_match_char (':') == MATCH_YES)
303 return AS_DEFERRED;
305 m = gfc_match_expr (upper);
306 if (m == MATCH_NO)
307 gfc_error ("Expected expression in array specification at %C");
308 if (m != MATCH_YES)
309 return AS_UNKNOWN;
310 if (gfc_expr_check_typed (*upper, gfc_current_ns, false) == FAILURE)
311 return AS_UNKNOWN;
313 if (gfc_match_char (':') == MATCH_NO)
315 *lower = gfc_int_expr (1);
316 return AS_EXPLICIT;
319 *lower = *upper;
320 *upper = NULL;
322 if (gfc_match_char ('*') == MATCH_YES)
323 return AS_ASSUMED_SIZE;
325 m = gfc_match_expr (upper);
326 if (m == MATCH_ERROR)
327 return AS_UNKNOWN;
328 if (m == MATCH_NO)
329 return AS_ASSUMED_SHAPE;
330 if (gfc_expr_check_typed (*upper, gfc_current_ns, false) == FAILURE)
331 return AS_UNKNOWN;
333 return AS_EXPLICIT;
337 /* Matches an array specification, incidentally figuring out what sort
338 it is. */
340 match
341 gfc_match_array_spec (gfc_array_spec **asp)
343 array_type current_type;
344 gfc_array_spec *as;
345 int i;
347 if (gfc_match_char ('(') != MATCH_YES)
349 *asp = NULL;
350 return MATCH_NO;
353 as = gfc_get_array_spec ();
355 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
357 as->lower[i] = NULL;
358 as->upper[i] = NULL;
361 as->rank = 1;
363 for (;;)
365 current_type = match_array_element_spec (as);
367 if (as->rank == 1)
369 if (current_type == AS_UNKNOWN)
370 goto cleanup;
371 as->type = current_type;
373 else
374 switch (as->type)
375 { /* See how current spec meshes with the existing. */
376 case AS_UNKNOWN:
377 goto cleanup;
379 case AS_EXPLICIT:
380 if (current_type == AS_ASSUMED_SIZE)
382 as->type = AS_ASSUMED_SIZE;
383 break;
386 if (current_type == AS_EXPLICIT)
387 break;
389 gfc_error ("Bad array specification for an explicitly shaped "
390 "array at %C");
392 goto cleanup;
394 case AS_ASSUMED_SHAPE:
395 if ((current_type == AS_ASSUMED_SHAPE)
396 || (current_type == AS_DEFERRED))
397 break;
399 gfc_error ("Bad array specification for assumed shape "
400 "array at %C");
401 goto cleanup;
403 case AS_DEFERRED:
404 if (current_type == AS_DEFERRED)
405 break;
407 if (current_type == AS_ASSUMED_SHAPE)
409 as->type = AS_ASSUMED_SHAPE;
410 break;
413 gfc_error ("Bad specification for deferred shape array at %C");
414 goto cleanup;
416 case AS_ASSUMED_SIZE:
417 gfc_error ("Bad specification for assumed size array at %C");
418 goto cleanup;
421 if (gfc_match_char (')') == MATCH_YES)
422 break;
424 if (gfc_match_char (',') != MATCH_YES)
426 gfc_error ("Expected another dimension in array declaration at %C");
427 goto cleanup;
430 if (as->rank >= GFC_MAX_DIMENSIONS)
432 gfc_error ("Array specification at %C has more than %d dimensions",
433 GFC_MAX_DIMENSIONS);
434 goto cleanup;
437 if (as->rank >= 7
438 && gfc_notify_std (GFC_STD_F2008, "Fortran 2008: Array "
439 "specification at %C with more than 7 dimensions")
440 == FAILURE)
441 goto cleanup;
443 as->rank++;
446 /* If a lower bounds of an assumed shape array is blank, put in one. */
447 if (as->type == AS_ASSUMED_SHAPE)
449 for (i = 0; i < as->rank; i++)
451 if (as->lower[i] == NULL)
452 as->lower[i] = gfc_int_expr (1);
455 *asp = as;
456 return MATCH_YES;
458 cleanup:
459 /* Something went wrong. */
460 gfc_free_array_spec (as);
461 return MATCH_ERROR;
465 /* Given a symbol and an array specification, modify the symbol to
466 have that array specification. The error locus is needed in case
467 something goes wrong. On failure, the caller must free the spec. */
469 gfc_try
470 gfc_set_array_spec (gfc_symbol *sym, gfc_array_spec *as, locus *error_loc)
472 if (as == NULL)
473 return SUCCESS;
475 if (gfc_add_dimension (&sym->attr, sym->name, error_loc) == FAILURE)
476 return FAILURE;
478 sym->as = as;
480 return SUCCESS;
484 /* Copy an array specification. */
486 gfc_array_spec *
487 gfc_copy_array_spec (gfc_array_spec *src)
489 gfc_array_spec *dest;
490 int i;
492 if (src == NULL)
493 return NULL;
495 dest = gfc_get_array_spec ();
497 *dest = *src;
499 for (i = 0; i < dest->rank; i++)
501 dest->lower[i] = gfc_copy_expr (dest->lower[i]);
502 dest->upper[i] = gfc_copy_expr (dest->upper[i]);
505 return dest;
509 /* Returns nonzero if the two expressions are equal. Only handles integer
510 constants. */
512 static int
513 compare_bounds (gfc_expr *bound1, gfc_expr *bound2)
515 if (bound1 == NULL || bound2 == NULL
516 || bound1->expr_type != EXPR_CONSTANT
517 || bound2->expr_type != EXPR_CONSTANT
518 || bound1->ts.type != BT_INTEGER
519 || bound2->ts.type != BT_INTEGER)
520 gfc_internal_error ("gfc_compare_array_spec(): Array spec clobbered");
522 if (mpz_cmp (bound1->value.integer, bound2->value.integer) == 0)
523 return 1;
524 else
525 return 0;
529 /* Compares two array specifications. They must be constant or deferred
530 shape. */
533 gfc_compare_array_spec (gfc_array_spec *as1, gfc_array_spec *as2)
535 int i;
537 if (as1 == NULL && as2 == NULL)
538 return 1;
540 if (as1 == NULL || as2 == NULL)
541 return 0;
543 if (as1->rank != as2->rank)
544 return 0;
546 if (as1->rank == 0)
547 return 1;
549 if (as1->type != as2->type)
550 return 0;
552 if (as1->type == AS_EXPLICIT)
553 for (i = 0; i < as1->rank; i++)
555 if (compare_bounds (as1->lower[i], as2->lower[i]) == 0)
556 return 0;
558 if (compare_bounds (as1->upper[i], as2->upper[i]) == 0)
559 return 0;
562 return 1;
566 /****************** Array constructor functions ******************/
568 /* Start an array constructor. The constructor starts with zero
569 elements and should be appended to by gfc_append_constructor(). */
571 gfc_expr *
572 gfc_start_constructor (bt type, int kind, locus *where)
574 gfc_expr *result;
576 result = gfc_get_expr ();
578 result->expr_type = EXPR_ARRAY;
579 result->rank = 1;
581 result->ts.type = type;
582 result->ts.kind = kind;
583 result->where = *where;
584 return result;
588 /* Given an array constructor expression, append the new expression
589 node onto the constructor. */
591 void
592 gfc_append_constructor (gfc_expr *base, gfc_expr *new_expr)
594 gfc_constructor *c;
596 if (base->value.constructor == NULL)
597 base->value.constructor = c = gfc_get_constructor ();
598 else
600 c = base->value.constructor;
601 while (c->next)
602 c = c->next;
604 c->next = gfc_get_constructor ();
605 c = c->next;
608 c->expr = new_expr;
610 if (new_expr
611 && (new_expr->ts.type != base->ts.type || new_expr->ts.kind != base->ts.kind))
612 gfc_internal_error ("gfc_append_constructor(): New node has wrong kind");
616 /* Given an array constructor expression, insert the new expression's
617 constructor onto the base's one according to the offset. */
619 void
620 gfc_insert_constructor (gfc_expr *base, gfc_constructor *c1)
622 gfc_constructor *c, *pre;
623 expr_t type;
624 int t;
626 type = base->expr_type;
628 if (base->value.constructor == NULL)
629 base->value.constructor = c1;
630 else
632 c = pre = base->value.constructor;
633 while (c)
635 if (type == EXPR_ARRAY)
637 t = mpz_cmp (c->n.offset, c1->n.offset);
638 if (t < 0)
640 pre = c;
641 c = c->next;
643 else if (t == 0)
645 gfc_error ("duplicated initializer");
646 break;
648 else
649 break;
651 else
653 pre = c;
654 c = c->next;
658 if (pre != c)
660 pre->next = c1;
661 c1->next = c;
663 else
665 c1->next = c;
666 base->value.constructor = c1;
672 /* Get a new constructor. */
674 gfc_constructor *
675 gfc_get_constructor (void)
677 gfc_constructor *c;
679 c = XCNEW (gfc_constructor);
680 c->expr = NULL;
681 c->iterator = NULL;
682 c->next = NULL;
683 mpz_init_set_si (c->n.offset, 0);
684 mpz_init_set_si (c->repeat, 0);
685 return c;
689 /* Free chains of gfc_constructor structures. */
691 void
692 gfc_free_constructor (gfc_constructor *p)
694 gfc_constructor *next;
696 if (p == NULL)
697 return;
699 for (; p; p = next)
701 next = p->next;
703 if (p->expr)
704 gfc_free_expr (p->expr);
705 if (p->iterator != NULL)
706 gfc_free_iterator (p->iterator, 1);
707 mpz_clear (p->n.offset);
708 mpz_clear (p->repeat);
709 gfc_free (p);
714 /* Given an expression node that might be an array constructor and a
715 symbol, make sure that no iterators in this or child constructors
716 use the symbol as an implied-DO iterator. Returns nonzero if a
717 duplicate was found. */
719 static int
720 check_duplicate_iterator (gfc_constructor *c, gfc_symbol *master)
722 gfc_expr *e;
724 for (; c; c = c->next)
726 e = c->expr;
728 if (e->expr_type == EXPR_ARRAY
729 && check_duplicate_iterator (e->value.constructor, master))
730 return 1;
732 if (c->iterator == NULL)
733 continue;
735 if (c->iterator->var->symtree->n.sym == master)
737 gfc_error ("DO-iterator '%s' at %L is inside iterator of the "
738 "same name", master->name, &c->where);
740 return 1;
744 return 0;
748 /* Forward declaration because these functions are mutually recursive. */
749 static match match_array_cons_element (gfc_constructor **);
751 /* Match a list of array elements. */
753 static match
754 match_array_list (gfc_constructor **result)
756 gfc_constructor *p, *head, *tail, *new_cons;
757 gfc_iterator iter;
758 locus old_loc;
759 gfc_expr *e;
760 match m;
761 int n;
763 old_loc = gfc_current_locus;
765 if (gfc_match_char ('(') == MATCH_NO)
766 return MATCH_NO;
768 memset (&iter, '\0', sizeof (gfc_iterator));
769 head = NULL;
771 m = match_array_cons_element (&head);
772 if (m != MATCH_YES)
773 goto cleanup;
775 tail = head;
777 if (gfc_match_char (',') != MATCH_YES)
779 m = MATCH_NO;
780 goto cleanup;
783 for (n = 1;; n++)
785 m = gfc_match_iterator (&iter, 0);
786 if (m == MATCH_YES)
787 break;
788 if (m == MATCH_ERROR)
789 goto cleanup;
791 m = match_array_cons_element (&new_cons);
792 if (m == MATCH_ERROR)
793 goto cleanup;
794 if (m == MATCH_NO)
796 if (n > 2)
797 goto syntax;
798 m = MATCH_NO;
799 goto cleanup; /* Could be a complex constant */
802 tail->next = new_cons;
803 tail = new_cons;
805 if (gfc_match_char (',') != MATCH_YES)
807 if (n > 2)
808 goto syntax;
809 m = MATCH_NO;
810 goto cleanup;
814 if (gfc_match_char (')') != MATCH_YES)
815 goto syntax;
817 if (check_duplicate_iterator (head, iter.var->symtree->n.sym))
819 m = MATCH_ERROR;
820 goto cleanup;
823 e = gfc_get_expr ();
824 e->expr_type = EXPR_ARRAY;
825 e->where = old_loc;
826 e->value.constructor = head;
828 p = gfc_get_constructor ();
829 p->where = gfc_current_locus;
830 p->iterator = gfc_get_iterator ();
831 *p->iterator = iter;
833 p->expr = e;
834 *result = p;
836 return MATCH_YES;
838 syntax:
839 gfc_error ("Syntax error in array constructor at %C");
840 m = MATCH_ERROR;
842 cleanup:
843 gfc_free_constructor (head);
844 gfc_free_iterator (&iter, 0);
845 gfc_current_locus = old_loc;
846 return m;
850 /* Match a single element of an array constructor, which can be a
851 single expression or a list of elements. */
853 static match
854 match_array_cons_element (gfc_constructor **result)
856 gfc_constructor *p;
857 gfc_expr *expr;
858 match m;
860 m = match_array_list (result);
861 if (m != MATCH_NO)
862 return m;
864 m = gfc_match_expr (&expr);
865 if (m != MATCH_YES)
866 return m;
868 p = gfc_get_constructor ();
869 p->where = gfc_current_locus;
870 p->expr = expr;
872 *result = p;
873 return MATCH_YES;
877 /* Match an array constructor. */
879 match
880 gfc_match_array_constructor (gfc_expr **result)
882 gfc_constructor *head, *tail, *new_cons;
883 gfc_expr *expr;
884 gfc_typespec ts;
885 locus where;
886 match m;
887 const char *end_delim;
888 bool seen_ts;
890 if (gfc_match (" (/") == MATCH_NO)
892 if (gfc_match (" [") == MATCH_NO)
893 return MATCH_NO;
894 else
896 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: [...] "
897 "style array constructors at %C") == FAILURE)
898 return MATCH_ERROR;
899 end_delim = " ]";
902 else
903 end_delim = " /)";
905 where = gfc_current_locus;
906 head = tail = NULL;
907 seen_ts = false;
909 /* Try to match an optional "type-spec ::" */
910 if (gfc_match_type_spec (&ts, 0) == MATCH_YES)
912 seen_ts = (gfc_match (" ::") == MATCH_YES);
914 if (seen_ts)
916 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Array constructor "
917 "including type specification at %C") == FAILURE)
918 goto cleanup;
922 if (! seen_ts)
923 gfc_current_locus = where;
925 if (gfc_match (end_delim) == MATCH_YES)
927 if (seen_ts)
928 goto done;
929 else
931 gfc_error ("Empty array constructor at %C is not allowed");
932 goto cleanup;
936 for (;;)
938 m = match_array_cons_element (&new_cons);
939 if (m == MATCH_ERROR)
940 goto cleanup;
941 if (m == MATCH_NO)
942 goto syntax;
944 if (head == NULL)
945 head = new_cons;
946 else
947 tail->next = new_cons;
949 tail = new_cons;
951 if (gfc_match_char (',') == MATCH_NO)
952 break;
955 if (gfc_match (end_delim) == MATCH_NO)
956 goto syntax;
958 done:
959 expr = gfc_get_expr ();
961 expr->expr_type = EXPR_ARRAY;
963 expr->value.constructor = head;
964 /* Size must be calculated at resolution time. */
966 if (seen_ts)
967 expr->ts = ts;
968 else
969 expr->ts.type = BT_UNKNOWN;
971 if (expr->ts.cl)
972 expr->ts.cl->length_from_typespec = seen_ts;
974 expr->where = where;
975 expr->rank = 1;
977 *result = expr;
978 return MATCH_YES;
980 syntax:
981 gfc_error ("Syntax error in array constructor at %C");
983 cleanup:
984 gfc_free_constructor (head);
985 return MATCH_ERROR;
990 /************** Check array constructors for correctness **************/
992 /* Given an expression, compare it's type with the type of the current
993 constructor. Returns nonzero if an error was issued. The
994 cons_state variable keeps track of whether the type of the
995 constructor being read or resolved is known to be good, bad or just
996 starting out. */
998 static gfc_typespec constructor_ts;
999 static enum
1000 { CONS_START, CONS_GOOD, CONS_BAD }
1001 cons_state;
1003 static int
1004 check_element_type (gfc_expr *expr, bool convert)
1006 if (cons_state == CONS_BAD)
1007 return 0; /* Suppress further errors */
1009 if (cons_state == CONS_START)
1011 if (expr->ts.type == BT_UNKNOWN)
1012 cons_state = CONS_BAD;
1013 else
1015 cons_state = CONS_GOOD;
1016 constructor_ts = expr->ts;
1019 return 0;
1022 if (gfc_compare_types (&constructor_ts, &expr->ts))
1023 return 0;
1025 if (convert)
1026 return gfc_convert_type (expr, &constructor_ts, 1) == SUCCESS ? 0 : 1;
1028 gfc_error ("Element in %s array constructor at %L is %s",
1029 gfc_typename (&constructor_ts), &expr->where,
1030 gfc_typename (&expr->ts));
1032 cons_state = CONS_BAD;
1033 return 1;
1037 /* Recursive work function for gfc_check_constructor_type(). */
1039 static gfc_try
1040 check_constructor_type (gfc_constructor *c, bool convert)
1042 gfc_expr *e;
1044 for (; c; c = c->next)
1046 e = c->expr;
1048 if (e->expr_type == EXPR_ARRAY)
1050 if (check_constructor_type (e->value.constructor, convert) == FAILURE)
1051 return FAILURE;
1053 continue;
1056 if (check_element_type (e, convert))
1057 return FAILURE;
1060 return SUCCESS;
1064 /* Check that all elements of an array constructor are the same type.
1065 On FAILURE, an error has been generated. */
1067 gfc_try
1068 gfc_check_constructor_type (gfc_expr *e)
1070 gfc_try t;
1072 if (e->ts.type != BT_UNKNOWN)
1074 cons_state = CONS_GOOD;
1075 constructor_ts = e->ts;
1077 else
1079 cons_state = CONS_START;
1080 gfc_clear_ts (&constructor_ts);
1083 /* If e->ts.type != BT_UNKNOWN, the array constructor included a
1084 typespec, and we will now convert the values on the fly. */
1085 t = check_constructor_type (e->value.constructor, e->ts.type != BT_UNKNOWN);
1086 if (t == SUCCESS && e->ts.type == BT_UNKNOWN)
1087 e->ts = constructor_ts;
1089 return t;
1094 typedef struct cons_stack
1096 gfc_iterator *iterator;
1097 struct cons_stack *previous;
1099 cons_stack;
1101 static cons_stack *base;
1103 static gfc_try check_constructor (gfc_constructor *, gfc_try (*) (gfc_expr *));
1105 /* Check an EXPR_VARIABLE expression in a constructor to make sure
1106 that that variable is an iteration variables. */
1108 gfc_try
1109 gfc_check_iter_variable (gfc_expr *expr)
1111 gfc_symbol *sym;
1112 cons_stack *c;
1114 sym = expr->symtree->n.sym;
1116 for (c = base; c; c = c->previous)
1117 if (sym == c->iterator->var->symtree->n.sym)
1118 return SUCCESS;
1120 return FAILURE;
1124 /* Recursive work function for gfc_check_constructor(). This amounts
1125 to calling the check function for each expression in the
1126 constructor, giving variables with the names of iterators a pass. */
1128 static gfc_try
1129 check_constructor (gfc_constructor *c, gfc_try (*check_function) (gfc_expr *))
1131 cons_stack element;
1132 gfc_expr *e;
1133 gfc_try t;
1135 for (; c; c = c->next)
1137 e = c->expr;
1139 if (e->expr_type != EXPR_ARRAY)
1141 if ((*check_function) (e) == FAILURE)
1142 return FAILURE;
1143 continue;
1146 element.previous = base;
1147 element.iterator = c->iterator;
1149 base = &element;
1150 t = check_constructor (e->value.constructor, check_function);
1151 base = element.previous;
1153 if (t == FAILURE)
1154 return FAILURE;
1157 /* Nothing went wrong, so all OK. */
1158 return SUCCESS;
1162 /* Checks a constructor to see if it is a particular kind of
1163 expression -- specification, restricted, or initialization as
1164 determined by the check_function. */
1166 gfc_try
1167 gfc_check_constructor (gfc_expr *expr, gfc_try (*check_function) (gfc_expr *))
1169 cons_stack *base_save;
1170 gfc_try t;
1172 base_save = base;
1173 base = NULL;
1175 t = check_constructor (expr->value.constructor, check_function);
1176 base = base_save;
1178 return t;
1183 /**************** Simplification of array constructors ****************/
1185 iterator_stack *iter_stack;
1187 typedef struct
1189 gfc_constructor *new_head, *new_tail;
1190 int extract_count, extract_n;
1191 gfc_expr *extracted;
1192 mpz_t *count;
1194 mpz_t *offset;
1195 gfc_component *component;
1196 mpz_t *repeat;
1198 gfc_try (*expand_work_function) (gfc_expr *);
1200 expand_info;
1202 static expand_info current_expand;
1204 static gfc_try expand_constructor (gfc_constructor *);
1207 /* Work function that counts the number of elements present in a
1208 constructor. */
1210 static gfc_try
1211 count_elements (gfc_expr *e)
1213 mpz_t result;
1215 if (e->rank == 0)
1216 mpz_add_ui (*current_expand.count, *current_expand.count, 1);
1217 else
1219 if (gfc_array_size (e, &result) == FAILURE)
1221 gfc_free_expr (e);
1222 return FAILURE;
1225 mpz_add (*current_expand.count, *current_expand.count, result);
1226 mpz_clear (result);
1229 gfc_free_expr (e);
1230 return SUCCESS;
1234 /* Work function that extracts a particular element from an array
1235 constructor, freeing the rest. */
1237 static gfc_try
1238 extract_element (gfc_expr *e)
1241 if (e->rank != 0)
1242 { /* Something unextractable */
1243 gfc_free_expr (e);
1244 return FAILURE;
1247 if (current_expand.extract_count == current_expand.extract_n)
1248 current_expand.extracted = e;
1249 else
1250 gfc_free_expr (e);
1252 current_expand.extract_count++;
1253 return SUCCESS;
1257 /* Work function that constructs a new constructor out of the old one,
1258 stringing new elements together. */
1260 static gfc_try
1261 expand (gfc_expr *e)
1263 if (current_expand.new_head == NULL)
1264 current_expand.new_head = current_expand.new_tail =
1265 gfc_get_constructor ();
1266 else
1268 current_expand.new_tail->next = gfc_get_constructor ();
1269 current_expand.new_tail = current_expand.new_tail->next;
1272 current_expand.new_tail->where = e->where;
1273 current_expand.new_tail->expr = e;
1275 mpz_set (current_expand.new_tail->n.offset, *current_expand.offset);
1276 current_expand.new_tail->n.component = current_expand.component;
1277 mpz_set (current_expand.new_tail->repeat, *current_expand.repeat);
1278 return SUCCESS;
1282 /* Given an initialization expression that is a variable reference,
1283 substitute the current value of the iteration variable. */
1285 void
1286 gfc_simplify_iterator_var (gfc_expr *e)
1288 iterator_stack *p;
1290 for (p = iter_stack; p; p = p->prev)
1291 if (e->symtree == p->variable)
1292 break;
1294 if (p == NULL)
1295 return; /* Variable not found */
1297 gfc_replace_expr (e, gfc_int_expr (0));
1299 mpz_set (e->value.integer, p->value);
1301 return;
1305 /* Expand an expression with that is inside of a constructor,
1306 recursing into other constructors if present. */
1308 static gfc_try
1309 expand_expr (gfc_expr *e)
1311 if (e->expr_type == EXPR_ARRAY)
1312 return expand_constructor (e->value.constructor);
1314 e = gfc_copy_expr (e);
1316 if (gfc_simplify_expr (e, 1) == FAILURE)
1318 gfc_free_expr (e);
1319 return FAILURE;
1322 return current_expand.expand_work_function (e);
1326 static gfc_try
1327 expand_iterator (gfc_constructor *c)
1329 gfc_expr *start, *end, *step;
1330 iterator_stack frame;
1331 mpz_t trip;
1332 gfc_try t;
1334 end = step = NULL;
1336 t = FAILURE;
1338 mpz_init (trip);
1339 mpz_init (frame.value);
1340 frame.prev = NULL;
1342 start = gfc_copy_expr (c->iterator->start);
1343 if (gfc_simplify_expr (start, 1) == FAILURE)
1344 goto cleanup;
1346 if (start->expr_type != EXPR_CONSTANT || start->ts.type != BT_INTEGER)
1347 goto cleanup;
1349 end = gfc_copy_expr (c->iterator->end);
1350 if (gfc_simplify_expr (end, 1) == FAILURE)
1351 goto cleanup;
1353 if (end->expr_type != EXPR_CONSTANT || end->ts.type != BT_INTEGER)
1354 goto cleanup;
1356 step = gfc_copy_expr (c->iterator->step);
1357 if (gfc_simplify_expr (step, 1) == FAILURE)
1358 goto cleanup;
1360 if (step->expr_type != EXPR_CONSTANT || step->ts.type != BT_INTEGER)
1361 goto cleanup;
1363 if (mpz_sgn (step->value.integer) == 0)
1365 gfc_error ("Iterator step at %L cannot be zero", &step->where);
1366 goto cleanup;
1369 /* Calculate the trip count of the loop. */
1370 mpz_sub (trip, end->value.integer, start->value.integer);
1371 mpz_add (trip, trip, step->value.integer);
1372 mpz_tdiv_q (trip, trip, step->value.integer);
1374 mpz_set (frame.value, start->value.integer);
1376 frame.prev = iter_stack;
1377 frame.variable = c->iterator->var->symtree;
1378 iter_stack = &frame;
1380 while (mpz_sgn (trip) > 0)
1382 if (expand_expr (c->expr) == FAILURE)
1383 goto cleanup;
1385 mpz_add (frame.value, frame.value, step->value.integer);
1386 mpz_sub_ui (trip, trip, 1);
1389 t = SUCCESS;
1391 cleanup:
1392 gfc_free_expr (start);
1393 gfc_free_expr (end);
1394 gfc_free_expr (step);
1396 mpz_clear (trip);
1397 mpz_clear (frame.value);
1399 iter_stack = frame.prev;
1401 return t;
1405 /* Expand a constructor into constant constructors without any
1406 iterators, calling the work function for each of the expanded
1407 expressions. The work function needs to either save or free the
1408 passed expression. */
1410 static gfc_try
1411 expand_constructor (gfc_constructor *c)
1413 gfc_expr *e;
1415 for (; c; c = c->next)
1417 if (c->iterator != NULL)
1419 if (expand_iterator (c) == FAILURE)
1420 return FAILURE;
1421 continue;
1424 e = c->expr;
1426 if (e->expr_type == EXPR_ARRAY)
1428 if (expand_constructor (e->value.constructor) == FAILURE)
1429 return FAILURE;
1431 continue;
1434 e = gfc_copy_expr (e);
1435 if (gfc_simplify_expr (e, 1) == FAILURE)
1437 gfc_free_expr (e);
1438 return FAILURE;
1440 current_expand.offset = &c->n.offset;
1441 current_expand.component = c->n.component;
1442 current_expand.repeat = &c->repeat;
1443 if (current_expand.expand_work_function (e) == FAILURE)
1444 return FAILURE;
1446 return SUCCESS;
1450 /* Top level subroutine for expanding constructors. We only expand
1451 constructor if they are small enough. */
1453 gfc_try
1454 gfc_expand_constructor (gfc_expr *e)
1456 expand_info expand_save;
1457 gfc_expr *f;
1458 gfc_try rc;
1460 f = gfc_get_array_element (e, gfc_option.flag_max_array_constructor);
1461 if (f != NULL)
1463 gfc_free_expr (f);
1464 return SUCCESS;
1467 expand_save = current_expand;
1468 current_expand.new_head = current_expand.new_tail = NULL;
1470 iter_stack = NULL;
1472 current_expand.expand_work_function = expand;
1474 if (expand_constructor (e->value.constructor) == FAILURE)
1476 gfc_free_constructor (current_expand.new_head);
1477 rc = FAILURE;
1478 goto done;
1481 gfc_free_constructor (e->value.constructor);
1482 e->value.constructor = current_expand.new_head;
1484 rc = SUCCESS;
1486 done:
1487 current_expand = expand_save;
1489 return rc;
1493 /* Work function for checking that an element of a constructor is a
1494 constant, after removal of any iteration variables. We return
1495 FAILURE if not so. */
1497 static gfc_try
1498 constant_element (gfc_expr *e)
1500 int rv;
1502 rv = gfc_is_constant_expr (e);
1503 gfc_free_expr (e);
1505 return rv ? SUCCESS : FAILURE;
1509 /* Given an array constructor, determine if the constructor is
1510 constant or not by expanding it and making sure that all elements
1511 are constants. This is a bit of a hack since something like (/ (i,
1512 i=1,100000000) /) will take a while as* opposed to a more clever
1513 function that traverses the expression tree. FIXME. */
1516 gfc_constant_ac (gfc_expr *e)
1518 expand_info expand_save;
1519 gfc_try rc;
1521 iter_stack = NULL;
1522 expand_save = current_expand;
1523 current_expand.expand_work_function = constant_element;
1525 rc = expand_constructor (e->value.constructor);
1527 current_expand = expand_save;
1528 if (rc == FAILURE)
1529 return 0;
1531 return 1;
1535 /* Returns nonzero if an array constructor has been completely
1536 expanded (no iterators) and zero if iterators are present. */
1539 gfc_expanded_ac (gfc_expr *e)
1541 gfc_constructor *p;
1543 if (e->expr_type == EXPR_ARRAY)
1544 for (p = e->value.constructor; p; p = p->next)
1545 if (p->iterator != NULL || !gfc_expanded_ac (p->expr))
1546 return 0;
1548 return 1;
1552 /*************** Type resolution of array constructors ***************/
1554 /* Recursive array list resolution function. All of the elements must
1555 be of the same type. */
1557 static gfc_try
1558 resolve_array_list (gfc_constructor *p)
1560 gfc_try t;
1562 t = SUCCESS;
1564 for (; p; p = p->next)
1566 if (p->iterator != NULL
1567 && gfc_resolve_iterator (p->iterator, false) == FAILURE)
1568 t = FAILURE;
1570 if (gfc_resolve_expr (p->expr) == FAILURE)
1571 t = FAILURE;
1574 return t;
1577 /* Resolve character array constructor. If it has a specified constant character
1578 length, pad/truncate the elements here; if the length is not specified and
1579 all elements are of compile-time known length, emit an error as this is
1580 invalid. */
1582 gfc_try
1583 gfc_resolve_character_array_constructor (gfc_expr *expr)
1585 gfc_constructor *p;
1586 int found_length;
1588 gcc_assert (expr->expr_type == EXPR_ARRAY);
1589 gcc_assert (expr->ts.type == BT_CHARACTER);
1591 if (expr->ts.cl == NULL)
1593 for (p = expr->value.constructor; p; p = p->next)
1594 if (p->expr->ts.cl != NULL)
1596 /* Ensure that if there is a char_len around that it is
1597 used; otherwise the middle-end confuses them! */
1598 expr->ts.cl = p->expr->ts.cl;
1599 goto got_charlen;
1602 expr->ts.cl = gfc_get_charlen ();
1603 expr->ts.cl->next = gfc_current_ns->cl_list;
1604 gfc_current_ns->cl_list = expr->ts.cl;
1607 got_charlen:
1609 found_length = -1;
1611 if (expr->ts.cl->length == NULL)
1613 /* Check that all constant string elements have the same length until
1614 we reach the end or find a variable-length one. */
1616 for (p = expr->value.constructor; p; p = p->next)
1618 int current_length = -1;
1619 gfc_ref *ref;
1620 for (ref = p->expr->ref; ref; ref = ref->next)
1621 if (ref->type == REF_SUBSTRING
1622 && ref->u.ss.start->expr_type == EXPR_CONSTANT
1623 && ref->u.ss.end->expr_type == EXPR_CONSTANT)
1624 break;
1626 if (p->expr->expr_type == EXPR_CONSTANT)
1627 current_length = p->expr->value.character.length;
1628 else if (ref)
1630 long j;
1631 j = mpz_get_ui (ref->u.ss.end->value.integer)
1632 - mpz_get_ui (ref->u.ss.start->value.integer) + 1;
1633 current_length = (int) j;
1635 else if (p->expr->ts.cl && p->expr->ts.cl->length
1636 && p->expr->ts.cl->length->expr_type == EXPR_CONSTANT)
1638 long j;
1639 j = mpz_get_si (p->expr->ts.cl->length->value.integer);
1640 current_length = (int) j;
1642 else
1643 return SUCCESS;
1645 gcc_assert (current_length != -1);
1647 if (found_length == -1)
1648 found_length = current_length;
1649 else if (found_length != current_length)
1651 gfc_error ("Different CHARACTER lengths (%d/%d) in array"
1652 " constructor at %L", found_length, current_length,
1653 &p->expr->where);
1654 return FAILURE;
1657 gcc_assert (found_length == current_length);
1660 gcc_assert (found_length != -1);
1662 /* Update the character length of the array constructor. */
1663 expr->ts.cl->length = gfc_int_expr (found_length);
1665 else
1667 /* We've got a character length specified. It should be an integer,
1668 otherwise an error is signalled elsewhere. */
1669 gcc_assert (expr->ts.cl->length);
1671 /* If we've got a constant character length, pad according to this.
1672 gfc_extract_int does check for BT_INTEGER and EXPR_CONSTANT and sets
1673 max_length only if they pass. */
1674 gfc_extract_int (expr->ts.cl->length, &found_length);
1676 /* Now pad/truncate the elements accordingly to the specified character
1677 length. This is ok inside this conditional, as in the case above
1678 (without typespec) all elements are verified to have the same length
1679 anyway. */
1680 if (found_length != -1)
1681 for (p = expr->value.constructor; p; p = p->next)
1682 if (p->expr->expr_type == EXPR_CONSTANT)
1684 gfc_expr *cl = NULL;
1685 int current_length = -1;
1686 bool has_ts;
1688 if (p->expr->ts.cl && p->expr->ts.cl->length)
1690 cl = p->expr->ts.cl->length;
1691 gfc_extract_int (cl, &current_length);
1694 /* If gfc_extract_int above set current_length, we implicitly
1695 know the type is BT_INTEGER and it's EXPR_CONSTANT. */
1697 has_ts = (expr->ts.cl && expr->ts.cl->length_from_typespec);
1699 if (! cl
1700 || (current_length != -1 && current_length < found_length))
1701 gfc_set_constant_character_len (found_length, p->expr,
1702 has_ts ? -1 : found_length);
1706 return SUCCESS;
1710 /* Resolve all of the expressions in an array list. */
1712 gfc_try
1713 gfc_resolve_array_constructor (gfc_expr *expr)
1715 gfc_try t;
1717 t = resolve_array_list (expr->value.constructor);
1718 if (t == SUCCESS)
1719 t = gfc_check_constructor_type (expr);
1721 /* gfc_resolve_character_array_constructor is called in gfc_resolve_expr after
1722 the call to this function, so we don't need to call it here; if it was
1723 called twice, an error message there would be duplicated. */
1725 return t;
1729 /* Copy an iterator structure. */
1731 static gfc_iterator *
1732 copy_iterator (gfc_iterator *src)
1734 gfc_iterator *dest;
1736 if (src == NULL)
1737 return NULL;
1739 dest = gfc_get_iterator ();
1741 dest->var = gfc_copy_expr (src->var);
1742 dest->start = gfc_copy_expr (src->start);
1743 dest->end = gfc_copy_expr (src->end);
1744 dest->step = gfc_copy_expr (src->step);
1746 return dest;
1750 /* Copy a constructor structure. */
1752 gfc_constructor *
1753 gfc_copy_constructor (gfc_constructor *src)
1755 gfc_constructor *dest;
1756 gfc_constructor *tail;
1758 if (src == NULL)
1759 return NULL;
1761 dest = tail = NULL;
1762 while (src)
1764 if (dest == NULL)
1765 dest = tail = gfc_get_constructor ();
1766 else
1768 tail->next = gfc_get_constructor ();
1769 tail = tail->next;
1771 tail->where = src->where;
1772 tail->expr = gfc_copy_expr (src->expr);
1773 tail->iterator = copy_iterator (src->iterator);
1774 mpz_set (tail->n.offset, src->n.offset);
1775 tail->n.component = src->n.component;
1776 mpz_set (tail->repeat, src->repeat);
1777 src = src->next;
1780 return dest;
1784 /* Given an array expression and an element number (starting at zero),
1785 return a pointer to the array element. NULL is returned if the
1786 size of the array has been exceeded. The expression node returned
1787 remains a part of the array and should not be freed. Access is not
1788 efficient at all, but this is another place where things do not
1789 have to be particularly fast. */
1791 gfc_expr *
1792 gfc_get_array_element (gfc_expr *array, int element)
1794 expand_info expand_save;
1795 gfc_expr *e;
1796 gfc_try rc;
1798 expand_save = current_expand;
1799 current_expand.extract_n = element;
1800 current_expand.expand_work_function = extract_element;
1801 current_expand.extracted = NULL;
1802 current_expand.extract_count = 0;
1804 iter_stack = NULL;
1806 rc = expand_constructor (array->value.constructor);
1807 e = current_expand.extracted;
1808 current_expand = expand_save;
1810 if (rc == FAILURE)
1811 return NULL;
1813 return e;
1817 /********* Subroutines for determining the size of an array *********/
1819 /* These are needed just to accommodate RESHAPE(). There are no
1820 diagnostics here, we just return a negative number if something
1821 goes wrong. */
1824 /* Get the size of single dimension of an array specification. The
1825 array is guaranteed to be one dimensional. */
1827 gfc_try
1828 spec_dimen_size (gfc_array_spec *as, int dimen, mpz_t *result)
1830 if (as == NULL)
1831 return FAILURE;
1833 if (dimen < 0 || dimen > as->rank - 1)
1834 gfc_internal_error ("spec_dimen_size(): Bad dimension");
1836 if (as->type != AS_EXPLICIT
1837 || as->lower[dimen]->expr_type != EXPR_CONSTANT
1838 || as->upper[dimen]->expr_type != EXPR_CONSTANT
1839 || as->lower[dimen]->ts.type != BT_INTEGER
1840 || as->upper[dimen]->ts.type != BT_INTEGER)
1841 return FAILURE;
1843 mpz_init (*result);
1845 mpz_sub (*result, as->upper[dimen]->value.integer,
1846 as->lower[dimen]->value.integer);
1848 mpz_add_ui (*result, *result, 1);
1850 return SUCCESS;
1854 gfc_try
1855 spec_size (gfc_array_spec *as, mpz_t *result)
1857 mpz_t size;
1858 int d;
1860 mpz_init_set_ui (*result, 1);
1862 for (d = 0; d < as->rank; d++)
1864 if (spec_dimen_size (as, d, &size) == FAILURE)
1866 mpz_clear (*result);
1867 return FAILURE;
1870 mpz_mul (*result, *result, size);
1871 mpz_clear (size);
1874 return SUCCESS;
1878 /* Get the number of elements in an array section. */
1880 gfc_try
1881 gfc_ref_dimen_size (gfc_array_ref *ar, int dimen, mpz_t *result)
1883 mpz_t upper, lower, stride;
1884 gfc_try t;
1886 if (dimen < 0 || ar == NULL || dimen > ar->dimen - 1)
1887 gfc_internal_error ("gfc_ref_dimen_size(): Bad dimension");
1889 switch (ar->dimen_type[dimen])
1891 case DIMEN_ELEMENT:
1892 mpz_init (*result);
1893 mpz_set_ui (*result, 1);
1894 t = SUCCESS;
1895 break;
1897 case DIMEN_VECTOR:
1898 t = gfc_array_size (ar->start[dimen], result); /* Recurse! */
1899 break;
1901 case DIMEN_RANGE:
1902 mpz_init (upper);
1903 mpz_init (lower);
1904 mpz_init (stride);
1905 t = FAILURE;
1907 if (ar->start[dimen] == NULL)
1909 if (ar->as->lower[dimen] == NULL
1910 || ar->as->lower[dimen]->expr_type != EXPR_CONSTANT)
1911 goto cleanup;
1912 mpz_set (lower, ar->as->lower[dimen]->value.integer);
1914 else
1916 if (ar->start[dimen]->expr_type != EXPR_CONSTANT)
1917 goto cleanup;
1918 mpz_set (lower, ar->start[dimen]->value.integer);
1921 if (ar->end[dimen] == NULL)
1923 if (ar->as->upper[dimen] == NULL
1924 || ar->as->upper[dimen]->expr_type != EXPR_CONSTANT)
1925 goto cleanup;
1926 mpz_set (upper, ar->as->upper[dimen]->value.integer);
1928 else
1930 if (ar->end[dimen]->expr_type != EXPR_CONSTANT)
1931 goto cleanup;
1932 mpz_set (upper, ar->end[dimen]->value.integer);
1935 if (ar->stride[dimen] == NULL)
1936 mpz_set_ui (stride, 1);
1937 else
1939 if (ar->stride[dimen]->expr_type != EXPR_CONSTANT)
1940 goto cleanup;
1941 mpz_set (stride, ar->stride[dimen]->value.integer);
1944 mpz_init (*result);
1945 mpz_sub (*result, upper, lower);
1946 mpz_add (*result, *result, stride);
1947 mpz_div (*result, *result, stride);
1949 /* Zero stride caught earlier. */
1950 if (mpz_cmp_ui (*result, 0) < 0)
1951 mpz_set_ui (*result, 0);
1952 t = SUCCESS;
1954 cleanup:
1955 mpz_clear (upper);
1956 mpz_clear (lower);
1957 mpz_clear (stride);
1958 return t;
1960 default:
1961 gfc_internal_error ("gfc_ref_dimen_size(): Bad dimen_type");
1964 return t;
1968 static gfc_try
1969 ref_size (gfc_array_ref *ar, mpz_t *result)
1971 mpz_t size;
1972 int d;
1974 mpz_init_set_ui (*result, 1);
1976 for (d = 0; d < ar->dimen; d++)
1978 if (gfc_ref_dimen_size (ar, d, &size) == FAILURE)
1980 mpz_clear (*result);
1981 return FAILURE;
1984 mpz_mul (*result, *result, size);
1985 mpz_clear (size);
1988 return SUCCESS;
1992 /* Given an array expression and a dimension, figure out how many
1993 elements it has along that dimension. Returns SUCCESS if we were
1994 able to return a result in the 'result' variable, FAILURE
1995 otherwise. */
1997 gfc_try
1998 gfc_array_dimen_size (gfc_expr *array, int dimen, mpz_t *result)
2000 gfc_ref *ref;
2001 int i;
2003 if (dimen < 0 || array == NULL || dimen > array->rank - 1)
2004 gfc_internal_error ("gfc_array_dimen_size(): Bad dimension");
2006 switch (array->expr_type)
2008 case EXPR_VARIABLE:
2009 case EXPR_FUNCTION:
2010 for (ref = array->ref; ref; ref = ref->next)
2012 if (ref->type != REF_ARRAY)
2013 continue;
2015 if (ref->u.ar.type == AR_FULL)
2016 return spec_dimen_size (ref->u.ar.as, dimen, result);
2018 if (ref->u.ar.type == AR_SECTION)
2020 for (i = 0; dimen >= 0; i++)
2021 if (ref->u.ar.dimen_type[i] != DIMEN_ELEMENT)
2022 dimen--;
2024 return gfc_ref_dimen_size (&ref->u.ar, i - 1, result);
2028 if (array->shape && array->shape[dimen])
2030 mpz_init_set (*result, array->shape[dimen]);
2031 return SUCCESS;
2034 if (spec_dimen_size (array->symtree->n.sym->as, dimen, result) == FAILURE)
2035 return FAILURE;
2037 break;
2039 case EXPR_ARRAY:
2040 if (array->shape == NULL) {
2041 /* Expressions with rank > 1 should have "shape" properly set */
2042 if ( array->rank != 1 )
2043 gfc_internal_error ("gfc_array_dimen_size(): Bad EXPR_ARRAY expr");
2044 return gfc_array_size(array, result);
2047 /* Fall through */
2048 default:
2049 if (array->shape == NULL)
2050 return FAILURE;
2052 mpz_init_set (*result, array->shape[dimen]);
2054 break;
2057 return SUCCESS;
2061 /* Given an array expression, figure out how many elements are in the
2062 array. Returns SUCCESS if this is possible, and sets the 'result'
2063 variable. Otherwise returns FAILURE. */
2065 gfc_try
2066 gfc_array_size (gfc_expr *array, mpz_t *result)
2068 expand_info expand_save;
2069 gfc_ref *ref;
2070 int i;
2071 gfc_try t;
2073 switch (array->expr_type)
2075 case EXPR_ARRAY:
2076 gfc_push_suppress_errors ();
2078 expand_save = current_expand;
2080 current_expand.count = result;
2081 mpz_init_set_ui (*result, 0);
2083 current_expand.expand_work_function = count_elements;
2084 iter_stack = NULL;
2086 t = expand_constructor (array->value.constructor);
2088 gfc_pop_suppress_errors ();
2090 if (t == FAILURE)
2091 mpz_clear (*result);
2092 current_expand = expand_save;
2093 return t;
2095 case EXPR_VARIABLE:
2096 for (ref = array->ref; ref; ref = ref->next)
2098 if (ref->type != REF_ARRAY)
2099 continue;
2101 if (ref->u.ar.type == AR_FULL)
2102 return spec_size (ref->u.ar.as, result);
2104 if (ref->u.ar.type == AR_SECTION)
2105 return ref_size (&ref->u.ar, result);
2108 return spec_size (array->symtree->n.sym->as, result);
2111 default:
2112 if (array->rank == 0 || array->shape == NULL)
2113 return FAILURE;
2115 mpz_init_set_ui (*result, 1);
2117 for (i = 0; i < array->rank; i++)
2118 mpz_mul (*result, *result, array->shape[i]);
2120 break;
2123 return SUCCESS;
2127 /* Given an array reference, return the shape of the reference in an
2128 array of mpz_t integers. */
2130 gfc_try
2131 gfc_array_ref_shape (gfc_array_ref *ar, mpz_t *shape)
2133 int d;
2134 int i;
2136 d = 0;
2138 switch (ar->type)
2140 case AR_FULL:
2141 for (; d < ar->as->rank; d++)
2142 if (spec_dimen_size (ar->as, d, &shape[d]) == FAILURE)
2143 goto cleanup;
2145 return SUCCESS;
2147 case AR_SECTION:
2148 for (i = 0; i < ar->dimen; i++)
2150 if (ar->dimen_type[i] != DIMEN_ELEMENT)
2152 if (gfc_ref_dimen_size (ar, i, &shape[d]) == FAILURE)
2153 goto cleanup;
2154 d++;
2158 return SUCCESS;
2160 default:
2161 break;
2164 cleanup:
2165 for (d--; d >= 0; d--)
2166 mpz_clear (shape[d]);
2168 return FAILURE;
2172 /* Given an array expression, find the array reference structure that
2173 characterizes the reference. */
2175 gfc_array_ref *
2176 gfc_find_array_ref (gfc_expr *e)
2178 gfc_ref *ref;
2180 for (ref = e->ref; ref; ref = ref->next)
2181 if (ref->type == REF_ARRAY
2182 && (ref->u.ar.type == AR_FULL || ref->u.ar.type == AR_SECTION))
2183 break;
2185 if (ref == NULL)
2186 gfc_internal_error ("gfc_find_array_ref(): No ref found");
2188 return &ref->u.ar;
2192 /* Find out if an array shape is known at compile time. */
2195 gfc_is_compile_time_shape (gfc_array_spec *as)
2197 int i;
2199 if (as->type != AS_EXPLICIT)
2200 return 0;
2202 for (i = 0; i < as->rank; i++)
2203 if (!gfc_is_constant_expr (as->lower[i])
2204 || !gfc_is_constant_expr (as->upper[i]))
2205 return 0;
2207 return 1;