Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / fortran / data.c
blobdd5e62cb2de42c1bbe66675c4419510d0180b603
1 /* Supporting functions for resolving DATA statement.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Lifang Zeng <zlf605@hotmail.com>
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/>. */
23 /* Notes for DATA statement implementation:
25 We first assign initial value to each symbol by gfc_assign_data_value
26 during resolving DATA statement. Refer to check_data_variable and
27 traverse_data_list in resolve.c.
29 The complexity exists in the handling of array section, implied do
30 and array of struct appeared in DATA statement.
32 We call gfc_conv_structure, gfc_con_array_array_initializer,
33 etc., to convert the initial value. Refer to trans-expr.c and
34 trans-array.c. */
36 #include "config.h"
37 #include "system.h"
38 #include "gfortran.h"
39 #include "data.h"
40 #include "constructor.h"
42 static void formalize_init_expr (gfc_expr *);
44 /* Calculate the array element offset. */
46 static void
47 get_array_index (gfc_array_ref *ar, mpz_t *offset)
49 gfc_expr *e;
50 int i;
51 mpz_t delta;
52 mpz_t tmp;
54 mpz_init (tmp);
55 mpz_set_si (*offset, 0);
56 mpz_init_set_si (delta, 1);
57 for (i = 0; i < ar->dimen; i++)
59 e = gfc_copy_expr (ar->start[i]);
60 gfc_simplify_expr (e, 1);
62 if ((gfc_is_constant_expr (ar->as->lower[i]) == 0)
63 || (gfc_is_constant_expr (ar->as->upper[i]) == 0)
64 || (gfc_is_constant_expr (e) == 0))
65 gfc_error ("non-constant array in DATA statement %L", &ar->where);
67 mpz_set (tmp, e->value.integer);
68 mpz_sub (tmp, tmp, ar->as->lower[i]->value.integer);
69 mpz_mul (tmp, tmp, delta);
70 mpz_add (*offset, tmp, *offset);
72 mpz_sub (tmp, ar->as->upper[i]->value.integer,
73 ar->as->lower[i]->value.integer);
74 mpz_add_ui (tmp, tmp, 1);
75 mpz_mul (delta, tmp, delta);
77 mpz_clear (delta);
78 mpz_clear (tmp);
81 /* Find if there is a constructor which component is equal to COM.
82 TODO: remove this, use symbol.c(gfc_find_component) instead. */
84 static gfc_constructor *
85 find_con_by_component (gfc_component *com, gfc_constructor_base base)
87 gfc_constructor *c;
89 for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
90 if (com == c->n.component)
91 return c;
93 return NULL;
97 /* Create a character type initialization expression from RVALUE.
98 TS [and REF] describe [the substring of] the variable being initialized.
99 INIT is the existing initializer, not NULL. Initialization is performed
100 according to normal assignment rules. */
102 static gfc_expr *
103 create_character_intializer (gfc_expr *init, gfc_typespec *ts,
104 gfc_ref *ref, gfc_expr *rvalue)
106 int len, start, end;
107 gfc_char_t *dest;
109 gfc_extract_int (ts->u.cl->length, &len);
111 if (init == NULL)
113 /* Create a new initializer. */
114 init = gfc_get_character_expr (ts->kind, NULL, NULL, len);
115 init->ts = *ts;
118 dest = init->value.character.string;
120 if (ref)
122 gfc_expr *start_expr, *end_expr;
124 gcc_assert (ref->type == REF_SUBSTRING);
126 /* Only set a substring of the destination. Fortran substring bounds
127 are one-based [start, end], we want zero based [start, end). */
128 start_expr = gfc_copy_expr (ref->u.ss.start);
129 end_expr = gfc_copy_expr (ref->u.ss.end);
131 if ((gfc_simplify_expr (start_expr, 1) == FAILURE)
132 || (gfc_simplify_expr (end_expr, 1)) == FAILURE)
134 gfc_error ("failure to simplify substring reference in DATA "
135 "statement at %L", &ref->u.ss.start->where);
136 return NULL;
139 gfc_extract_int (start_expr, &start);
140 start--;
141 gfc_extract_int (end_expr, &end);
143 else
145 /* Set the whole string. */
146 start = 0;
147 end = len;
150 /* Copy the initial value. */
151 if (rvalue->ts.type == BT_HOLLERITH)
152 len = rvalue->representation.length;
153 else
154 len = rvalue->value.character.length;
156 if (len > end - start)
158 gfc_warning_now ("Initialization string starting at %L was "
159 "truncated to fit the variable (%d/%d)",
160 &rvalue->where, end - start, len);
161 len = end - start;
164 if (rvalue->ts.type == BT_HOLLERITH)
166 int i;
167 for (i = 0; i < len; i++)
168 dest[start+i] = rvalue->representation.string[i];
170 else
171 memcpy (&dest[start], rvalue->value.character.string,
172 len * sizeof (gfc_char_t));
174 /* Pad with spaces. Substrings will already be blanked. */
175 if (len < end - start && ref == NULL)
176 gfc_wide_memset (&dest[start + len], ' ', end - (start + len));
178 if (rvalue->ts.type == BT_HOLLERITH)
180 init->representation.length = init->value.character.length;
181 init->representation.string
182 = gfc_widechar_to_char (init->value.character.string,
183 init->value.character.length);
186 return init;
190 /* Assign the initial value RVALUE to LVALUE's symbol->value. If the
191 LVALUE already has an initialization, we extend this, otherwise we
192 create a new one. */
194 gfc_try
195 gfc_assign_data_value (gfc_expr *lvalue, gfc_expr *rvalue, mpz_t index)
197 gfc_ref *ref;
198 gfc_expr *init;
199 gfc_expr *expr;
200 gfc_constructor *con;
201 gfc_constructor *last_con;
202 gfc_symbol *symbol;
203 gfc_typespec *last_ts;
204 mpz_t offset;
206 symbol = lvalue->symtree->n.sym;
207 init = symbol->value;
208 last_ts = &symbol->ts;
209 last_con = NULL;
210 mpz_init_set_si (offset, 0);
212 /* Find/create the parent expressions for subobject references. */
213 for (ref = lvalue->ref; ref; ref = ref->next)
215 /* Break out of the loop if we find a substring. */
216 if (ref->type == REF_SUBSTRING)
218 /* A substring should always be the last subobject reference. */
219 gcc_assert (ref->next == NULL);
220 break;
223 /* Use the existing initializer expression if it exists. Otherwise
224 create a new one. */
225 if (init == NULL)
226 expr = gfc_get_expr ();
227 else
228 expr = init;
230 /* Find or create this element. */
231 switch (ref->type)
233 case REF_ARRAY:
234 if (ref->u.ar.as->rank == 0)
236 gcc_assert (ref->u.ar.as->corank > 0);
237 if (init == NULL)
238 gfc_free (expr);
239 continue;
242 if (init && expr->expr_type != EXPR_ARRAY)
244 gfc_error ("'%s' at %L already is initialized at %L",
245 lvalue->symtree->n.sym->name, &lvalue->where,
246 &init->where);
247 return FAILURE;
250 if (init == NULL)
252 /* The element typespec will be the same as the array
253 typespec. */
254 expr->ts = *last_ts;
255 /* Setup the expression to hold the constructor. */
256 expr->expr_type = EXPR_ARRAY;
257 expr->rank = ref->u.ar.as->rank;
260 if (ref->u.ar.type == AR_ELEMENT)
261 get_array_index (&ref->u.ar, &offset);
262 else
263 mpz_set (offset, index);
265 /* Check the bounds. */
266 if (mpz_cmp_si (offset, 0) < 0)
268 gfc_error ("Data element below array lower bound at %L",
269 &lvalue->where);
270 return FAILURE;
272 else
274 mpz_t size;
275 if (spec_size (ref->u.ar.as, &size) == SUCCESS)
277 if (mpz_cmp (offset, size) >= 0)
279 mpz_clear (size);
280 gfc_error ("Data element above array upper bound at %L",
281 &lvalue->where);
282 return FAILURE;
284 mpz_clear (size);
288 con = gfc_constructor_lookup (expr->value.constructor,
289 mpz_get_si (offset));
290 if (!con)
292 con = gfc_constructor_insert_expr (&expr->value.constructor,
293 NULL, &rvalue->where,
294 mpz_get_si (offset));
296 break;
298 case REF_COMPONENT:
299 if (init == NULL)
301 /* Setup the expression to hold the constructor. */
302 expr->expr_type = EXPR_STRUCTURE;
303 expr->ts.type = BT_DERIVED;
304 expr->ts.u.derived = ref->u.c.sym;
306 else
307 gcc_assert (expr->expr_type == EXPR_STRUCTURE);
308 last_ts = &ref->u.c.component->ts;
310 /* Find the same element in the existing constructor. */
311 con = find_con_by_component (ref->u.c.component,
312 expr->value.constructor);
314 if (con == NULL)
316 /* Create a new constructor. */
317 con = gfc_constructor_append_expr (&expr->value.constructor,
318 NULL, NULL);
319 con->n.component = ref->u.c.component;
321 break;
323 default:
324 gcc_unreachable ();
327 if (init == NULL)
329 /* Point the container at the new expression. */
330 if (last_con == NULL)
331 symbol->value = expr;
332 else
333 last_con->expr = expr;
335 init = con->expr;
336 last_con = con;
339 if (ref || last_ts->type == BT_CHARACTER)
341 if (lvalue->ts.u.cl->length == NULL && !(ref && ref->u.ss.length != NULL))
342 return FAILURE;
343 expr = create_character_intializer (init, last_ts, ref, rvalue);
345 else
347 /* Overwriting an existing initializer is non-standard but usually only
348 provokes a warning from other compilers. */
349 if (init != NULL)
351 /* Order in which the expressions arrive here depends on whether
352 they are from data statements or F95 style declarations.
353 Therefore, check which is the most recent. */
354 expr = (LOCATION_LINE (init->where.lb->location)
355 > LOCATION_LINE (rvalue->where.lb->location))
356 ? init : rvalue;
357 if (gfc_notify_std (GFC_STD_GNU,"Extension: "
358 "re-initialization of '%s' at %L",
359 symbol->name, &expr->where) == FAILURE)
360 return FAILURE;
363 expr = gfc_copy_expr (rvalue);
364 if (!gfc_compare_types (&lvalue->ts, &expr->ts))
365 gfc_convert_type (expr, &lvalue->ts, 0);
368 if (last_con == NULL)
369 symbol->value = expr;
370 else
371 last_con->expr = expr;
373 return SUCCESS;
377 /* Similarly, but initialize REPEAT consecutive values in LVALUE the same
378 value in RVALUE. */
380 gfc_try
381 gfc_assign_data_value_range (gfc_expr *lvalue, gfc_expr *rvalue,
382 mpz_t index, mpz_t repeat)
384 mpz_t offset, last_offset;
385 gfc_try t;
387 mpz_init (offset);
388 mpz_init (last_offset);
389 mpz_add (last_offset, index, repeat);
391 t = SUCCESS;
392 for (mpz_set(offset, index) ; mpz_cmp(offset, last_offset) < 0;
393 mpz_add_ui (offset, offset, 1))
394 if (gfc_assign_data_value (lvalue, rvalue, offset) == FAILURE)
396 t = FAILURE;
397 break;
400 mpz_clear (offset);
401 mpz_clear (last_offset);
403 return t;
407 /* Modify the index of array section and re-calculate the array offset. */
409 void
410 gfc_advance_section (mpz_t *section_index, gfc_array_ref *ar,
411 mpz_t *offset_ret)
413 int i;
414 mpz_t delta;
415 mpz_t tmp;
416 bool forwards;
417 int cmp;
419 for (i = 0; i < ar->dimen; i++)
421 if (ar->dimen_type[i] != DIMEN_RANGE)
422 continue;
424 if (ar->stride[i])
426 mpz_add (section_index[i], section_index[i],
427 ar->stride[i]->value.integer);
428 if (mpz_cmp_si (ar->stride[i]->value.integer, 0) >= 0)
429 forwards = true;
430 else
431 forwards = false;
433 else
435 mpz_add_ui (section_index[i], section_index[i], 1);
436 forwards = true;
439 if (ar->end[i])
440 cmp = mpz_cmp (section_index[i], ar->end[i]->value.integer);
441 else
442 cmp = mpz_cmp (section_index[i], ar->as->upper[i]->value.integer);
444 if ((cmp > 0 && forwards) || (cmp < 0 && !forwards))
446 /* Reset index to start, then loop to advance the next index. */
447 if (ar->start[i])
448 mpz_set (section_index[i], ar->start[i]->value.integer);
449 else
450 mpz_set (section_index[i], ar->as->lower[i]->value.integer);
452 else
453 break;
456 mpz_set_si (*offset_ret, 0);
457 mpz_init_set_si (delta, 1);
458 mpz_init (tmp);
459 for (i = 0; i < ar->dimen; i++)
461 mpz_sub (tmp, section_index[i], ar->as->lower[i]->value.integer);
462 mpz_mul (tmp, tmp, delta);
463 mpz_add (*offset_ret, tmp, *offset_ret);
465 mpz_sub (tmp, ar->as->upper[i]->value.integer,
466 ar->as->lower[i]->value.integer);
467 mpz_add_ui (tmp, tmp, 1);
468 mpz_mul (delta, tmp, delta);
470 mpz_clear (tmp);
471 mpz_clear (delta);
475 /* Rearrange a structure constructor so the elements are in the specified
476 order. Also insert NULL entries if necessary. */
478 static void
479 formalize_structure_cons (gfc_expr *expr)
481 gfc_constructor_base base = NULL;
482 gfc_constructor *cur;
483 gfc_component *order;
485 /* Constructor is already formalized. */
486 cur = gfc_constructor_first (expr->value.constructor);
487 if (!cur || cur->n.component == NULL)
488 return;
490 for (order = expr->ts.u.derived->components; order; order = order->next)
492 cur = find_con_by_component (order, expr->value.constructor);
493 if (cur)
494 gfc_constructor_append_expr (&base, cur->expr, &cur->expr->where);
495 else
496 gfc_constructor_append_expr (&base, NULL, NULL);
499 /* For all what it's worth, one would expect
500 gfc_constructor_free (expr->value.constructor);
501 here. However, if the constructor is actually free'd,
502 hell breaks loose in the testsuite?! */
504 expr->value.constructor = base;
508 /* Make sure an initialization expression is in normalized form, i.e., all
509 elements of the constructors are in the correct order. */
511 static void
512 formalize_init_expr (gfc_expr *expr)
514 expr_t type;
515 gfc_constructor *c;
517 if (expr == NULL)
518 return;
520 type = expr->expr_type;
521 switch (type)
523 case EXPR_ARRAY:
524 for (c = gfc_constructor_first (expr->value.constructor);
525 c; c = gfc_constructor_next (c))
526 formalize_init_expr (c->expr);
528 break;
530 case EXPR_STRUCTURE:
531 formalize_structure_cons (expr);
532 break;
534 default:
535 break;
540 /* Resolve symbol's initial value after all data statement. */
542 void
543 gfc_formalize_init_value (gfc_symbol *sym)
545 formalize_init_expr (sym->value);
549 /* Get the integer value into RET_AS and SECTION from AS and AR, and return
550 offset. */
552 void
553 gfc_get_section_index (gfc_array_ref *ar, mpz_t *section_index, mpz_t *offset)
555 int i;
556 mpz_t delta;
557 mpz_t tmp;
559 mpz_set_si (*offset, 0);
560 mpz_init (tmp);
561 mpz_init_set_si (delta, 1);
562 for (i = 0; i < ar->dimen; i++)
564 mpz_init (section_index[i]);
565 switch (ar->dimen_type[i])
567 case DIMEN_ELEMENT:
568 case DIMEN_RANGE:
569 if (ar->start[i])
571 mpz_sub (tmp, ar->start[i]->value.integer,
572 ar->as->lower[i]->value.integer);
573 mpz_mul (tmp, tmp, delta);
574 mpz_add (*offset, tmp, *offset);
575 mpz_set (section_index[i], ar->start[i]->value.integer);
577 else
578 mpz_set (section_index[i], ar->as->lower[i]->value.integer);
579 break;
581 case DIMEN_VECTOR:
582 gfc_internal_error ("TODO: Vector sections in data statements");
584 default:
585 gcc_unreachable ();
588 mpz_sub (tmp, ar->as->upper[i]->value.integer,
589 ar->as->lower[i]->value.integer);
590 mpz_add_ui (tmp, tmp, 1);
591 mpz_mul (delta, tmp, delta);
594 mpz_clear (tmp);
595 mpz_clear (delta);