OSDN Git Service

* arith.c: Update copyright years.
[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 #ifdef USE_MAPPED_LOCATION
428           expr = (LOCATION_LINE (init->where.lb->location)
429                   > LOCATION_LINE (rvalue->where.lb->location))
430                ? init : rvalue;
431 #else
432           expr = (init->where.lb->linenum > rvalue->where.lb->linenum)
433                ? init : rvalue;
434 #endif
435           gfc_notify_std (GFC_STD_GNU, "Extension: re-initialization "
436                           "of '%s' at %L", symbol->name, &expr->where);
437         }
438
439       expr = gfc_copy_expr (rvalue);
440       if (!gfc_compare_types (&lvalue->ts, &expr->ts))
441         gfc_convert_type (expr, &lvalue->ts, 0);
442     }
443
444   if (last_con == NULL)
445     symbol->value = expr;
446   else
447     last_con->expr = expr;
448
449   return SUCCESS;
450 }
451
452
453 /* Similarly, but initialize REPEAT consecutive values in LVALUE the same
454    value in RVALUE.  For the nonce, LVALUE must refer to a full array, not
455    an array section.  */
456
457 void
458 gfc_assign_data_value_range (gfc_expr *lvalue, gfc_expr *rvalue,
459                              mpz_t index, mpz_t repeat)
460 {
461   gfc_ref *ref;
462   gfc_expr *init, *expr;
463   gfc_constructor *con, *last_con;
464   gfc_constructor *pred;
465   gfc_symbol *symbol;
466   gfc_typespec *last_ts;
467   mpz_t offset;
468   splay_tree spt;
469   splay_tree_node sptn;
470
471   symbol = lvalue->symtree->n.sym;
472   init = symbol->value;
473   last_ts = &symbol->ts;
474   last_con = NULL;
475   mpz_init_set_si (offset, 0);
476
477   /* Find/create the parent expressions for subobject references.  */
478   for (ref = lvalue->ref; ref; ref = ref->next)
479     {
480       /* Use the existing initializer expression if it exists.
481          Otherwise create a new one.  */
482       if (init == NULL)
483         expr = gfc_get_expr ();
484       else
485         expr = init;
486
487       /* Find or create this element.  */
488       switch (ref->type)
489         {
490         case REF_ARRAY:
491           if (init == NULL)
492             {
493               /* The element typespec will be the same as the array
494                  typespec.  */
495               expr->ts = *last_ts;
496               /* Setup the expression to hold the constructor.  */
497               expr->expr_type = EXPR_ARRAY;
498               expr->rank = ref->u.ar.as->rank;
499             }
500           else
501             gcc_assert (expr->expr_type == EXPR_ARRAY);
502
503           if (ref->u.ar.type == AR_ELEMENT)
504             {
505               get_array_index (&ref->u.ar, &offset);
506
507               /* This had better not be the bottom of the reference.
508                  We can still get to a full array via a component.  */
509               gcc_assert (ref->next != NULL);
510             }
511           else
512             {
513               mpz_set (offset, index);
514
515               /* We're at a full array or an array section.  This means
516                  that we've better have found a full array, and that we're
517                  at the bottom of the reference.  */
518               gcc_assert (ref->u.ar.type == AR_FULL);
519               gcc_assert (ref->next == NULL);
520             }
521
522           /* Find the same element in the existing constructor.  */
523
524           /* Splay tree containing offset and gfc_constructor.  */
525           spt = expr->con_by_offset;
526
527           if (spt == NULL)
528             {
529                spt = splay_tree_new (splay_tree_compare_ints, NULL, NULL);
530                expr->con_by_offset = spt;
531                con = NULL;
532             }
533           else 
534             con = find_con_by_offset (spt, offset);
535
536           if (con == NULL)
537             {
538               splay_tree_key j;
539               /* Create a new constructor.  */
540               con = gfc_get_constructor ();
541               mpz_set (con->n.offset, offset);
542               j = (splay_tree_key) mpz_get_si (offset);
543           
544               if (ref->next == NULL)
545                 mpz_set (con->repeat, repeat);
546               sptn = splay_tree_insert (spt, j, (splay_tree_value) con);
547               /* Fix up the linked list.  */
548               sptn = splay_tree_predecessor (spt, j);
549               if (sptn == NULL)
550                 {  /* Insert at the head.  */
551                    con->next = expr->value.constructor;
552                    expr->value.constructor = con;
553                 }
554               else
555                 {  /* Insert in the chain.  */
556                    pred = (gfc_constructor*) sptn->value;
557                    con->next = pred->next;
558                    pred->next = con;
559                 }
560             }
561           else
562             gcc_assert (ref->next != NULL);
563           break;
564
565         case REF_COMPONENT:
566           if (init == NULL)
567             {
568               /* Setup the expression to hold the constructor.  */
569               expr->expr_type = EXPR_STRUCTURE;
570               expr->ts.type = BT_DERIVED;
571               expr->ts.derived = ref->u.c.sym;
572             }
573           else
574             gcc_assert (expr->expr_type == EXPR_STRUCTURE);
575           last_ts = &ref->u.c.component->ts;
576
577           /* Find the same element in the existing constructor.  */
578           con = expr->value.constructor;
579           con = find_con_by_component (ref->u.c.component, con);
580
581           if (con == NULL)
582             {
583               /* Create a new constructor.  */
584               con = gfc_get_constructor ();
585               con->n.component = ref->u.c.component;
586               con->next = expr->value.constructor;
587               expr->value.constructor = con;
588             }
589
590           /* Since we're only intending to initialize arrays here,
591              there better be an inner reference.  */
592           gcc_assert (ref->next != NULL);
593           break;
594
595         case REF_SUBSTRING:
596         default:
597           gcc_unreachable ();
598         }
599
600       if (init == NULL)
601         {
602           /* Point the container at the new expression.  */
603           if (last_con == NULL)
604             symbol->value = expr;
605           else
606             last_con->expr = expr;
607         }
608       init = con->expr;
609       last_con = con;
610     }
611
612   if (last_ts->type == BT_CHARACTER)
613     expr = create_character_intializer (init, last_ts, NULL, rvalue);
614   else
615     {
616       /* We should never be overwriting an existing initializer.  */
617       gcc_assert (!init);
618
619       expr = gfc_copy_expr (rvalue);
620       if (!gfc_compare_types (&lvalue->ts, &expr->ts))
621         gfc_convert_type (expr, &lvalue->ts, 0);
622     }
623
624   if (last_con == NULL)
625     symbol->value = expr;
626   else
627     last_con->expr = expr;
628 }
629
630 /* Modify the index of array section and re-calculate the array offset.  */
631
632 void 
633 gfc_advance_section (mpz_t *section_index, gfc_array_ref *ar,
634                      mpz_t *offset_ret)
635 {
636   int i;
637   mpz_t delta;
638   mpz_t tmp; 
639   bool forwards;
640   int cmp;
641
642   for (i = 0; i < ar->dimen; i++)
643     {
644       if (ar->dimen_type[i] != DIMEN_RANGE)
645         continue;
646
647       if (ar->stride[i])
648         {
649           mpz_add (section_index[i], section_index[i],
650                    ar->stride[i]->value.integer);
651         if (mpz_cmp_si (ar->stride[i]->value.integer, 0) >= 0)
652           forwards = true;
653         else
654           forwards = false;
655         }
656       else
657         {
658           mpz_add_ui (section_index[i], section_index[i], 1);
659           forwards = true;
660         }
661       
662       if (ar->end[i])
663         cmp = mpz_cmp (section_index[i], ar->end[i]->value.integer);
664       else
665         cmp = mpz_cmp (section_index[i], ar->as->upper[i]->value.integer);
666
667       if ((cmp > 0 && forwards) || (cmp < 0 && !forwards))
668         {
669           /* Reset index to start, then loop to advance the next index.  */
670           if (ar->start[i])
671             mpz_set (section_index[i], ar->start[i]->value.integer);
672           else
673             mpz_set (section_index[i], ar->as->lower[i]->value.integer);
674         }
675       else
676         break;
677     }
678
679   mpz_set_si (*offset_ret, 0);
680   mpz_init_set_si (delta, 1);
681   mpz_init (tmp);
682   for (i = 0; i < ar->dimen; i++)
683     {
684       mpz_sub (tmp, section_index[i], ar->as->lower[i]->value.integer);
685       mpz_mul (tmp, tmp, delta);
686       mpz_add (*offset_ret, tmp, *offset_ret);
687
688       mpz_sub (tmp, ar->as->upper[i]->value.integer, 
689                ar->as->lower[i]->value.integer);
690       mpz_add_ui (tmp, tmp, 1);
691       mpz_mul (delta, tmp, delta);
692     }
693   mpz_clear (tmp);
694   mpz_clear (delta);
695 }
696
697
698 /* Rearrange a structure constructor so the elements are in the specified
699    order.  Also insert NULL entries if necessary.  */
700
701 static void
702 formalize_structure_cons (gfc_expr *expr)
703 {
704   gfc_constructor *head;
705   gfc_constructor *tail;
706   gfc_constructor *cur;
707   gfc_constructor *last;
708   gfc_constructor *c;
709   gfc_component *order;
710
711   c = expr->value.constructor;
712
713   /* Constructor is already formalized.  */
714   if (!c || c->n.component == NULL)
715     return;
716
717   head = tail = NULL;
718   for (order = expr->ts.derived->components; order; order = order->next)
719     {
720       /* Find the next component.  */
721       last = NULL;
722       cur = c;
723       while (cur != NULL && cur->n.component != order)
724         {
725           last = cur;
726           cur = cur->next;
727         }
728
729       if (cur == NULL)
730         {
731           /* Create a new one.  */
732           cur = gfc_get_constructor ();
733         }
734       else
735         {
736           /* Remove it from the chain.  */
737           if (last == NULL)
738             c = cur->next;
739           else
740             last->next = cur->next;
741           cur->next = NULL;
742
743           formalize_init_expr (cur->expr);
744         }
745
746       /* Add it to the new constructor.  */
747       if (head == NULL)
748         head = tail = cur;
749       else
750         {
751           tail->next = cur;
752           tail = tail->next;
753         }
754     }
755   gcc_assert (c == NULL);
756   expr->value.constructor = head;
757 }
758
759
760 /* Make sure an initialization expression is in normalized form.  Ie. all
761    elements of the constructors are in the correct order.  */
762
763 static void
764 formalize_init_expr (gfc_expr *expr)
765 {
766   expr_t type;
767   gfc_constructor *c;
768
769   if (expr == NULL)
770     return;
771
772   type = expr->expr_type;
773   switch (type)
774     {
775     case EXPR_ARRAY:
776       c = expr->value.constructor;
777       while (c)
778         {
779           formalize_init_expr (c->expr);
780           c = c->next;
781         }
782       break;
783
784     case EXPR_STRUCTURE:
785       formalize_structure_cons (expr);
786       break;
787
788     default:
789       break;
790     }
791 }
792
793
794 /* Resolve symbol's initial value after all data statement.  */
795
796 void
797 gfc_formalize_init_value (gfc_symbol *sym)
798 {
799   formalize_init_expr (sym->value);
800 }
801
802
803 /* Get the integer value into RET_AS and SECTION from AS and AR, and return
804    offset.  */
805  
806 void
807 gfc_get_section_index (gfc_array_ref *ar, mpz_t *section_index, mpz_t *offset)
808 {
809   int i;
810   mpz_t delta;
811   mpz_t tmp;
812
813   mpz_set_si (*offset, 0);
814   mpz_init (tmp);
815   mpz_init_set_si (delta, 1);
816   for (i = 0; i < ar->dimen; i++)
817     {
818       mpz_init (section_index[i]);
819       switch (ar->dimen_type[i])
820         {
821         case DIMEN_ELEMENT:
822         case DIMEN_RANGE:
823           if (ar->start[i])
824             {
825               mpz_sub (tmp, ar->start[i]->value.integer,
826                        ar->as->lower[i]->value.integer);
827               mpz_mul (tmp, tmp, delta);
828               mpz_add (*offset, tmp, *offset);
829               mpz_set (section_index[i], ar->start[i]->value.integer);
830             }
831           else
832               mpz_set (section_index[i], ar->as->lower[i]->value.integer);
833           break;
834
835         case DIMEN_VECTOR:
836           gfc_internal_error ("TODO: Vector sections in data statements");
837
838         default:
839           gcc_unreachable ();
840         }
841
842       mpz_sub (tmp, ar->as->upper[i]->value.integer, 
843                ar->as->lower[i]->value.integer);
844       mpz_add_ui (tmp, tmp, 1);
845       mpz_mul (delta, tmp, delta);
846     }
847
848   mpz_clear (tmp);
849   mpz_clear (delta);
850 }
851