OSDN Git Service

gcc
[pf3gnuchains/gcc-fork.git] / gcc / fortran / data.c
1 /* Supporting functions for resolving DATA statement.
2    Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
3    Free Software Foundation, Inc.
4    Contributed by Lifang Zeng <zlf605@hotmail.com>
5
6 This file is part of GCC.
7
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.
12
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.
17
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/>.  */
21
22
23 /* Notes for DATA statement implementation:
24                                                                                
25    We first assign initial value to each symbol by gfc_assign_data_value
26    during resolveing DATA statement. Refer to check_data_variable and
27    traverse_data_list in resolve.c.
28                                                                                
29    The complexity exists in the handling of array section, implied do
30    and array of struct appeared in DATA statement.
31                                                                                
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.  */
35
36 #include "config.h"
37 #include "gfortran.h"
38 #include "data.h"
39
40 static void formalize_init_expr (gfc_expr *);
41
42 /* Calculate the array element offset.  */
43
44 static void
45 get_array_index (gfc_array_ref *ar, mpz_t *offset)
46 {
47   gfc_expr *e;
48   int i;
49   try re;
50   mpz_t delta;
51   mpz_t tmp;
52
53   mpz_init (tmp);
54   mpz_set_si (*offset, 0);
55   mpz_init_set_si (delta, 1);
56   for (i = 0; i < ar->dimen; i++)
57     {
58       e = gfc_copy_expr (ar->start[i]);
59       re = gfc_simplify_expr (e, 1);
60
61       if ((gfc_is_constant_expr (ar->as->lower[i]) == 0)
62           || (gfc_is_constant_expr (ar->as->upper[i]) == 0)
63           || (gfc_is_constant_expr (e) == 0))
64         gfc_error ("non-constant array in DATA statement %L", &ar->where);
65
66       mpz_set (tmp, e->value.integer);
67       mpz_sub (tmp, tmp, ar->as->lower[i]->value.integer);
68       mpz_mul (tmp, tmp, delta);
69       mpz_add (*offset, tmp, *offset);
70
71       mpz_sub (tmp, ar->as->upper[i]->value.integer,
72                ar->as->lower[i]->value.integer);
73       mpz_add_ui (tmp, tmp, 1);
74       mpz_mul (delta, tmp, delta);
75     }
76   mpz_clear (delta);
77   mpz_clear (tmp);
78 }
79
80
81 /* Find if there is a constructor which offset is equal to OFFSET.  */
82
83 static gfc_constructor *
84 find_con_by_offset (splay_tree spt, mpz_t offset)
85 {
86   mpz_t tmp;
87   gfc_constructor *ret = NULL;
88   gfc_constructor *con;
89   splay_tree_node sptn;
90
91   /* The complexity is due to needing quick access to the linked list of
92      constructors.  Both a linked list and a splay tree are used, and both
93      are kept up to date if they are array elements (which is the only time
94      that a specific constructor has to be found).  */  
95
96   gcc_assert (spt != NULL);
97   mpz_init (tmp);
98
99   sptn = splay_tree_lookup (spt, (splay_tree_key) mpz_get_si (offset));
100
101   if (sptn)
102     ret = (gfc_constructor*) sptn->value;  
103   else
104     {
105        /* Need to check and see if we match a range, so we will pull
106           the next lowest index and see if the range matches.  */
107        sptn = splay_tree_predecessor (spt,
108                                       (splay_tree_key) mpz_get_si (offset));
109        if (sptn)
110          {
111             con = (gfc_constructor*) sptn->value;
112             if (mpz_cmp_ui (con->repeat, 1) > 0)
113               {
114                  mpz_init (tmp);
115                  mpz_add (tmp, con->n.offset, con->repeat);
116                  if (mpz_cmp (offset, tmp) < 0)
117                    ret = con;
118                  mpz_clear (tmp);
119               }
120             else 
121               ret = NULL; /* The range did not match.  */
122          }
123       else
124         ret = NULL; /* No pred, so no match.  */
125     }
126
127   return ret;
128 }
129
130
131 /* Find if there is a constructor which component is equal to COM.  */
132
133 static gfc_constructor *
134 find_con_by_component (gfc_component *com, gfc_constructor *con)
135 {
136   for (; con; con = con->next)
137     {
138       if (com == con->n.component)
139         return con;
140     }
141   return NULL;
142 }
143
144
145 /* Create a character type initialization expression from RVALUE.
146    TS [and REF] describe [the substring of] the variable being initialized.
147    INIT is thh existing initializer, not NULL.  Initialization is performed
148    according to normal assignment rules.  */
149
150 static gfc_expr *
151 create_character_intializer (gfc_expr *init, gfc_typespec *ts,
152                              gfc_ref *ref, gfc_expr *rvalue)
153 {
154   int len;
155   int start;
156   int end;
157   char *dest, *rvalue_string;
158             
159   gfc_extract_int (ts->cl->length, &len);
160
161   if (init == NULL)
162     {
163       /* Create a new initializer.  */
164       init = gfc_get_expr ();
165       init->expr_type = EXPR_CONSTANT;
166       init->ts = *ts;
167       
168       dest = gfc_getmem (len + 1);
169       dest[len] = '\0';
170       init->value.character.length = len;
171       init->value.character.string = dest;
172       /* Blank the string if we're only setting a substring.  */
173       if (ref != NULL)
174         memset (dest, ' ', len);
175     }
176   else
177     dest = init->value.character.string;
178
179   if (ref)
180     {
181       gfc_expr *start_expr, *end_expr;
182
183       gcc_assert (ref->type == REF_SUBSTRING);
184
185       /* Only set a substring of the destination.  Fortran substring bounds
186          are one-based [start, end], we want zero based [start, end).  */
187       start_expr = gfc_copy_expr (ref->u.ss.start);
188       end_expr = gfc_copy_expr (ref->u.ss.end);
189
190       if ((gfc_simplify_expr (start_expr, 1) == FAILURE)
191           || (gfc_simplify_expr (end_expr, 1)) == FAILURE)
192         {
193           gfc_error ("failure to simplify substring reference in DATA "
194                      "statement at %L", &ref->u.ss.start->where);
195           return NULL;
196         }
197
198       gfc_extract_int (start_expr, &start);
199       start--;
200       gfc_extract_int (end_expr, &end);
201     }
202   else
203     {
204       /* Set the whole string.  */
205       start = 0;
206       end = len;
207     }
208
209   /* Copy the initial value.  */
210   if (rvalue->ts.type == BT_HOLLERITH)
211     {
212       len = rvalue->representation.length;
213       rvalue_string = rvalue->representation.string;
214     }
215   else
216     {
217       len = rvalue->value.character.length;
218       rvalue_string = rvalue->value.character.string;
219     }
220
221   if (len > end - start)
222     {
223       len = end - start;
224       gfc_warning_now ("initialization string truncated to match variable "
225                        "at %L", &rvalue->where);
226     }
227
228   memcpy (&dest[start], rvalue_string, len);
229
230   /* Pad with spaces.  Substrings will already be blanked.  */
231   if (len < end - start && ref == NULL)
232     memset (&dest[start + len], ' ', end - (start + len));
233
234   if (rvalue->ts.type == BT_HOLLERITH)
235     {
236       init->representation.length = init->value.character.length;
237       init->representation.string = init->value.character.string;
238     }
239
240   return init;
241 }
242
243
244 /* Assign the initial value RVALUE to  LVALUE's symbol->value. If the
245    LVALUE already has an initialization, we extend this, otherwise we
246    create a new one.  */
247
248 try
249 gfc_assign_data_value (gfc_expr *lvalue, gfc_expr *rvalue, mpz_t index)
250 {
251   gfc_ref *ref;
252   gfc_expr *init;
253   gfc_expr *expr;
254   gfc_constructor *con;
255   gfc_constructor *last_con;
256   gfc_constructor *pred;
257   gfc_symbol *symbol;
258   gfc_typespec *last_ts;
259   mpz_t offset;
260   splay_tree spt;
261   splay_tree_node sptn;
262
263   symbol = lvalue->symtree->n.sym;
264   init = symbol->value;
265   last_ts = &symbol->ts;
266   last_con = NULL;
267   mpz_init_set_si (offset, 0);
268
269   /* Find/create the parent expressions for subobject references.  */
270   for (ref = lvalue->ref; ref; ref = ref->next)
271     {
272       /* Break out of the loop if we find a substring.  */
273       if (ref->type == REF_SUBSTRING)
274         {
275           /* A substring should always be the last subobject reference.  */
276           gcc_assert (ref->next == NULL);
277           break;
278         }
279
280       /* Use the existing initializer expression if it exists.  Otherwise
281          create a new one.  */
282       if (init == NULL)
283         expr = gfc_get_expr ();
284       else
285         expr = init;
286
287       /* Find or create this element.  */
288       switch (ref->type)
289         {
290         case REF_ARRAY:
291           if (init && expr->expr_type != EXPR_ARRAY)
292             {
293               gfc_error ("'%s' at %L already is initialized at %L",
294                          lvalue->symtree->n.sym->name, &lvalue->where,
295                          &init->where);
296               return FAILURE;
297             }
298
299           if (init == NULL)
300             {
301               /* The element typespec will be the same as the array
302                  typespec.  */
303               expr->ts = *last_ts;
304               /* Setup the expression to hold the constructor.  */
305               expr->expr_type = EXPR_ARRAY;
306               expr->rank = ref->u.ar.as->rank;
307             }
308
309           if (ref->u.ar.type == AR_ELEMENT)
310             get_array_index (&ref->u.ar, &offset);
311           else
312             mpz_set (offset, index);
313
314           /* Check the bounds.  */
315           if (mpz_cmp_si (offset, 0) < 0)
316             {
317               gfc_error ("Data element below array lower bound at %L",
318                          &lvalue->where);
319               return FAILURE;
320             }
321           else
322             {
323               mpz_t size;
324               if (spec_size (ref->u.ar.as, &size) == SUCCESS)
325                 {
326                   if (mpz_cmp (offset, size) >= 0)
327                   {
328                     mpz_clear (size);
329                     gfc_error ("Data element above array upper bound at %L",
330                                &lvalue->where);
331                     return FAILURE;
332                   }
333                   mpz_clear (size);
334                 }
335             }
336
337           /* Splay tree containing offset and gfc_constructor.  */
338           spt = expr->con_by_offset;
339
340           if (spt == NULL)
341             {
342                spt = splay_tree_new (splay_tree_compare_ints, NULL, NULL);
343                expr->con_by_offset = spt; 
344                con = NULL;
345             }
346          else
347           con = find_con_by_offset (spt, offset);
348
349           if (con == NULL)
350             {
351               splay_tree_key j;
352
353               /* Create a new constructor.  */
354               con = gfc_get_constructor ();
355               mpz_set (con->n.offset, offset);
356               j = (splay_tree_key) mpz_get_si (offset);
357               sptn = splay_tree_insert (spt, j, (splay_tree_value) con);
358               /* Fix up the linked list.  */
359               sptn = splay_tree_predecessor (spt, j);
360               if (sptn == NULL)
361                 {  /* Insert at the head.  */
362                    con->next = expr->value.constructor;
363                    expr->value.constructor = con;
364                 }
365               else
366                 {  /* Insert in the chain.  */
367                    pred = (gfc_constructor*) sptn->value;
368                    con->next = pred->next;
369                    pred->next = con;
370                 }
371             }
372           break;
373
374         case REF_COMPONENT:
375           if (init == NULL)
376             {
377               /* Setup the expression to hold the constructor.  */
378               expr->expr_type = EXPR_STRUCTURE;
379               expr->ts.type = BT_DERIVED;
380               expr->ts.derived = ref->u.c.sym;
381             }
382           else
383             gcc_assert (expr->expr_type == EXPR_STRUCTURE);
384           last_ts = &ref->u.c.component->ts;
385
386           /* Find the same element in the existing constructor.  */
387           con = expr->value.constructor;
388           con = find_con_by_component (ref->u.c.component, con);
389
390           if (con == NULL)
391             {
392               /* Create a new constructor.  */
393               con = gfc_get_constructor ();
394               con->n.component = ref->u.c.component;
395               con->next = expr->value.constructor;
396               expr->value.constructor = con;
397             }
398           break;
399
400         default:
401           gcc_unreachable ();
402         }
403
404       if (init == NULL)
405         {
406           /* Point the container at the new expression.  */
407           if (last_con == NULL)
408             symbol->value = expr;
409           else
410             last_con->expr = expr;
411         }
412       init = con->expr;
413       last_con = con;
414     }
415
416   if (ref || last_ts->type == BT_CHARACTER)
417     expr = create_character_intializer (init, last_ts, ref, rvalue);
418   else
419     {
420       /* Overwriting an existing initializer is non-standard but usually only
421          provokes a warning from other compilers.  */
422       if (init != NULL)
423         {
424           /* Order in which the expressions arrive here depends on whether
425              they are from data statements or F95 style declarations.
426              Therefore, check which is the most recent.  */
427           expr = (LOCATION_LINE (init->where.lb->location)
428                   > LOCATION_LINE (rvalue->where.lb->location))
429                ? init : rvalue;
430           gfc_notify_std (GFC_STD_GNU, "Extension: re-initialization "
431                           "of '%s' at %L", symbol->name, &expr->where);
432         }
433
434       expr = gfc_copy_expr (rvalue);
435       if (!gfc_compare_types (&lvalue->ts, &expr->ts))
436         gfc_convert_type (expr, &lvalue->ts, 0);
437     }
438
439   if (last_con == NULL)
440     symbol->value = expr;
441   else
442     last_con->expr = expr;
443
444   return SUCCESS;
445 }
446
447
448 /* Similarly, but initialize REPEAT consecutive values in LVALUE the same
449    value in RVALUE.  For the nonce, LVALUE must refer to a full array, not
450    an array section.  */
451
452 void
453 gfc_assign_data_value_range (gfc_expr *lvalue, gfc_expr *rvalue,
454                              mpz_t index, mpz_t repeat)
455 {
456   gfc_ref *ref;
457   gfc_expr *init, *expr;
458   gfc_constructor *con, *last_con;
459   gfc_constructor *pred;
460   gfc_symbol *symbol;
461   gfc_typespec *last_ts;
462   mpz_t offset;
463   splay_tree spt;
464   splay_tree_node sptn;
465
466   symbol = lvalue->symtree->n.sym;
467   init = symbol->value;
468   last_ts = &symbol->ts;
469   last_con = NULL;
470   mpz_init_set_si (offset, 0);
471
472   /* Find/create the parent expressions for subobject references.  */
473   for (ref = lvalue->ref; ref; ref = ref->next)
474     {
475       /* Use the existing initializer expression if it exists.
476          Otherwise create a new one.  */
477       if (init == NULL)
478         expr = gfc_get_expr ();
479       else
480         expr = init;
481
482       /* Find or create this element.  */
483       switch (ref->type)
484         {
485         case REF_ARRAY:
486           if (init == NULL)
487             {
488               /* The element typespec will be the same as the array
489                  typespec.  */
490               expr->ts = *last_ts;
491               /* Setup the expression to hold the constructor.  */
492               expr->expr_type = EXPR_ARRAY;
493               expr->rank = ref->u.ar.as->rank;
494             }
495           else
496             gcc_assert (expr->expr_type == EXPR_ARRAY);
497
498           if (ref->u.ar.type == AR_ELEMENT)
499             {
500               get_array_index (&ref->u.ar, &offset);
501
502               /* This had better not be the bottom of the reference.
503                  We can still get to a full array via a component.  */
504               gcc_assert (ref->next != NULL);
505             }
506           else
507             {
508               mpz_set (offset, index);
509
510               /* We're at a full array or an array section.  This means
511                  that we've better have found a full array, and that we're
512                  at the bottom of the reference.  */
513               gcc_assert (ref->u.ar.type == AR_FULL);
514               gcc_assert (ref->next == NULL);
515             }
516
517           /* Find the same element in the existing constructor.  */
518
519           /* Splay tree containing offset and gfc_constructor.  */
520           spt = expr->con_by_offset;
521
522           if (spt == NULL)
523             {
524                spt = splay_tree_new (splay_tree_compare_ints, NULL, NULL);
525                expr->con_by_offset = spt;
526                con = NULL;
527             }
528           else 
529             con = find_con_by_offset (spt, offset);
530
531           if (con == NULL)
532             {
533               splay_tree_key j;
534               /* Create a new constructor.  */
535               con = gfc_get_constructor ();
536               mpz_set (con->n.offset, offset);
537               j = (splay_tree_key) mpz_get_si (offset);
538           
539               if (ref->next == NULL)
540                 mpz_set (con->repeat, repeat);
541               sptn = splay_tree_insert (spt, j, (splay_tree_value) con);
542               /* Fix up the linked list.  */
543               sptn = splay_tree_predecessor (spt, j);
544               if (sptn == NULL)
545                 {  /* Insert at the head.  */
546                    con->next = expr->value.constructor;
547                    expr->value.constructor = con;
548                 }
549               else
550                 {  /* Insert in the chain.  */
551                    pred = (gfc_constructor*) sptn->value;
552                    con->next = pred->next;
553                    pred->next = con;
554                 }
555             }
556           else
557             gcc_assert (ref->next != NULL);
558           break;
559
560         case REF_COMPONENT:
561           if (init == NULL)
562             {
563               /* Setup the expression to hold the constructor.  */
564               expr->expr_type = EXPR_STRUCTURE;
565               expr->ts.type = BT_DERIVED;
566               expr->ts.derived = ref->u.c.sym;
567             }
568           else
569             gcc_assert (expr->expr_type == EXPR_STRUCTURE);
570           last_ts = &ref->u.c.component->ts;
571
572           /* Find the same element in the existing constructor.  */
573           con = expr->value.constructor;
574           con = find_con_by_component (ref->u.c.component, con);
575
576           if (con == NULL)
577             {
578               /* Create a new constructor.  */
579               con = gfc_get_constructor ();
580               con->n.component = ref->u.c.component;
581               con->next = expr->value.constructor;
582               expr->value.constructor = con;
583             }
584
585           /* Since we're only intending to initialize arrays here,
586              there better be an inner reference.  */
587           gcc_assert (ref->next != NULL);
588           break;
589
590         case REF_SUBSTRING:
591         default:
592           gcc_unreachable ();
593         }
594
595       if (init == NULL)
596         {
597           /* Point the container at the new expression.  */
598           if (last_con == NULL)
599             symbol->value = expr;
600           else
601             last_con->expr = expr;
602         }
603       init = con->expr;
604       last_con = con;
605     }
606
607   if (last_ts->type == BT_CHARACTER)
608     expr = create_character_intializer (init, last_ts, NULL, rvalue);
609   else
610     {
611       /* We should never be overwriting an existing initializer.  */
612       gcc_assert (!init);
613
614       expr = gfc_copy_expr (rvalue);
615       if (!gfc_compare_types (&lvalue->ts, &expr->ts))
616         gfc_convert_type (expr, &lvalue->ts, 0);
617     }
618
619   if (last_con == NULL)
620     symbol->value = expr;
621   else
622     last_con->expr = expr;
623 }
624
625 /* Modify the index of array section and re-calculate the array offset.  */
626
627 void 
628 gfc_advance_section (mpz_t *section_index, gfc_array_ref *ar,
629                      mpz_t *offset_ret)
630 {
631   int i;
632   mpz_t delta;
633   mpz_t tmp; 
634   bool forwards;
635   int cmp;
636
637   for (i = 0; i < ar->dimen; i++)
638     {
639       if (ar->dimen_type[i] != DIMEN_RANGE)
640         continue;
641
642       if (ar->stride[i])
643         {
644           mpz_add (section_index[i], section_index[i],
645                    ar->stride[i]->value.integer);
646         if (mpz_cmp_si (ar->stride[i]->value.integer, 0) >= 0)
647           forwards = true;
648         else
649           forwards = false;
650         }
651       else
652         {
653           mpz_add_ui (section_index[i], section_index[i], 1);
654           forwards = true;
655         }
656       
657       if (ar->end[i])
658         cmp = mpz_cmp (section_index[i], ar->end[i]->value.integer);
659       else
660         cmp = mpz_cmp (section_index[i], ar->as->upper[i]->value.integer);
661
662       if ((cmp > 0 && forwards) || (cmp < 0 && !forwards))
663         {
664           /* Reset index to start, then loop to advance the next index.  */
665           if (ar->start[i])
666             mpz_set (section_index[i], ar->start[i]->value.integer);
667           else
668             mpz_set (section_index[i], ar->as->lower[i]->value.integer);
669         }
670       else
671         break;
672     }
673
674   mpz_set_si (*offset_ret, 0);
675   mpz_init_set_si (delta, 1);
676   mpz_init (tmp);
677   for (i = 0; i < ar->dimen; i++)
678     {
679       mpz_sub (tmp, section_index[i], ar->as->lower[i]->value.integer);
680       mpz_mul (tmp, tmp, delta);
681       mpz_add (*offset_ret, tmp, *offset_ret);
682
683       mpz_sub (tmp, ar->as->upper[i]->value.integer, 
684                ar->as->lower[i]->value.integer);
685       mpz_add_ui (tmp, tmp, 1);
686       mpz_mul (delta, tmp, delta);
687     }
688   mpz_clear (tmp);
689   mpz_clear (delta);
690 }
691
692
693 /* Rearrange a structure constructor so the elements are in the specified
694    order.  Also insert NULL entries if necessary.  */
695
696 static void
697 formalize_structure_cons (gfc_expr *expr)
698 {
699   gfc_constructor *head;
700   gfc_constructor *tail;
701   gfc_constructor *cur;
702   gfc_constructor *last;
703   gfc_constructor *c;
704   gfc_component *order;
705
706   c = expr->value.constructor;
707
708   /* Constructor is already formalized.  */
709   if (!c || c->n.component == NULL)
710     return;
711
712   head = tail = NULL;
713   for (order = expr->ts.derived->components; order; order = order->next)
714     {
715       /* Find the next component.  */
716       last = NULL;
717       cur = c;
718       while (cur != NULL && cur->n.component != order)
719         {
720           last = cur;
721           cur = cur->next;
722         }
723
724       if (cur == NULL)
725         {
726           /* Create a new one.  */
727           cur = gfc_get_constructor ();
728         }
729       else
730         {
731           /* Remove it from the chain.  */
732           if (last == NULL)
733             c = cur->next;
734           else
735             last->next = cur->next;
736           cur->next = NULL;
737
738           formalize_init_expr (cur->expr);
739         }
740
741       /* Add it to the new constructor.  */
742       if (head == NULL)
743         head = tail = cur;
744       else
745         {
746           tail->next = cur;
747           tail = tail->next;
748         }
749     }
750   gcc_assert (c == NULL);
751   expr->value.constructor = head;
752 }
753
754
755 /* Make sure an initialization expression is in normalized form.  Ie. all
756    elements of the constructors are in the correct order.  */
757
758 static void
759 formalize_init_expr (gfc_expr *expr)
760 {
761   expr_t type;
762   gfc_constructor *c;
763
764   if (expr == NULL)
765     return;
766
767   type = expr->expr_type;
768   switch (type)
769     {
770     case EXPR_ARRAY:
771       c = expr->value.constructor;
772       while (c)
773         {
774           formalize_init_expr (c->expr);
775           c = c->next;
776         }
777       break;
778
779     case EXPR_STRUCTURE:
780       formalize_structure_cons (expr);
781       break;
782
783     default:
784       break;
785     }
786 }
787
788
789 /* Resolve symbol's initial value after all data statement.  */
790
791 void
792 gfc_formalize_init_value (gfc_symbol *sym)
793 {
794   formalize_init_expr (sym->value);
795 }
796
797
798 /* Get the integer value into RET_AS and SECTION from AS and AR, and return
799    offset.  */
800  
801 void
802 gfc_get_section_index (gfc_array_ref *ar, mpz_t *section_index, mpz_t *offset)
803 {
804   int i;
805   mpz_t delta;
806   mpz_t tmp;
807
808   mpz_set_si (*offset, 0);
809   mpz_init (tmp);
810   mpz_init_set_si (delta, 1);
811   for (i = 0; i < ar->dimen; i++)
812     {
813       mpz_init (section_index[i]);
814       switch (ar->dimen_type[i])
815         {
816         case DIMEN_ELEMENT:
817         case DIMEN_RANGE:
818           if (ar->start[i])
819             {
820               mpz_sub (tmp, ar->start[i]->value.integer,
821                        ar->as->lower[i]->value.integer);
822               mpz_mul (tmp, tmp, delta);
823               mpz_add (*offset, tmp, *offset);
824               mpz_set (section_index[i], ar->start[i]->value.integer);
825             }
826           else
827               mpz_set (section_index[i], ar->as->lower[i]->value.integer);
828           break;
829
830         case DIMEN_VECTOR:
831           gfc_internal_error ("TODO: Vector sections in data statements");
832
833         default:
834           gcc_unreachable ();
835         }
836
837       mpz_sub (tmp, ar->as->upper[i]->value.integer, 
838                ar->as->lower[i]->value.integer);
839       mpz_add_ui (tmp, tmp, 1);
840       mpz_mul (delta, tmp, delta);
841     }
842
843   mpz_clear (tmp);
844   mpz_clear (delta);
845 }
846