1 /* Array translation routines
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 Free Software Foundation, Inc.
5 Contributed by Paul Brook <paul@nowt.org>
6 and Steven Bosscher <s.bosscher@student.tudelft.nl>
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 /* trans-array.c-- Various array related code, including scalarization,
25 allocation, initialization and other support routines. */
27 /* How the scalarizer works.
28 In gfortran, array expressions use the same core routines as scalar
30 First, a Scalarization State (SS) chain is built. This is done by walking
31 the expression tree, and building a linear list of the terms in the
32 expression. As the tree is walked, scalar subexpressions are translated.
34 The scalarization parameters are stored in a gfc_loopinfo structure.
35 First the start and stride of each term is calculated by
36 gfc_conv_ss_startstride. During this process the expressions for the array
37 descriptors and data pointers are also translated.
39 If the expression is an assignment, we must then resolve any dependencies.
40 In fortran all the rhs values of an assignment must be evaluated before
41 any assignments take place. This can require a temporary array to store the
42 values. We also require a temporary when we are passing array expressions
43 or vector subscripts as procedure parameters.
45 Array sections are passed without copying to a temporary. These use the
46 scalarizer to determine the shape of the section. The flag
47 loop->array_parameter tells the scalarizer that the actual values and loop
48 variables will not be required.
50 The function gfc_conv_loop_setup generates the scalarization setup code.
51 It determines the range of the scalarizing loop variables. If a temporary
52 is required, this is created and initialized. Code for scalar expressions
53 taken outside the loop is also generated at this time. Next the offset and
54 scaling required to translate from loop variables to array indices for each
57 A call to gfc_start_scalarized_body marks the start of the scalarized
58 expression. This creates a scope and declares the loop variables. Before
59 calling this gfc_make_ss_chain_used must be used to indicate which terms
60 will be used inside this loop.
62 The scalar gfc_conv_* functions are then used to build the main body of the
63 scalarization loop. Scalarization loop variables and precalculated scalar
64 values are automatically substituted. Note that gfc_advance_se_ss_chain
65 must be used, rather than changing the se->ss directly.
67 For assignment expressions requiring a temporary two sub loops are
68 generated. The first stores the result of the expression in the temporary,
69 the second copies it to the result. A call to
70 gfc_trans_scalarized_loop_boundary marks the end of the main loop code and
71 the start of the copying loop. The temporary may be less than full rank.
73 Finally gfc_trans_scalarizing_loops is called to generate the implicit do
74 loops. The loops are added to the pre chain of the loopinfo. The post
75 chain may still contain cleanup code.
77 After the loop code has been added into its parent scope gfc_cleanup_loop
78 is called to free all the SS allocated by the scalarizer. */
82 #include "coretypes.h"
85 #include "diagnostic-core.h" /* For internal_error/fatal_error. */
88 #include "constructor.h"
90 #include "trans-stmt.h"
91 #include "trans-types.h"
92 #include "trans-array.h"
93 #include "trans-const.h"
94 #include "dependency.h"
96 static bool gfc_get_array_constructor_size (mpz_t *, gfc_constructor_base);
98 /* The contents of this structure aren't actually used, just the address. */
99 static gfc_ss gfc_ss_terminator_var;
100 gfc_ss * const gfc_ss_terminator = &gfc_ss_terminator_var;
104 gfc_array_dataptr_type (tree desc)
106 return (GFC_TYPE_ARRAY_DATAPTR_TYPE (TREE_TYPE (desc)));
110 /* Build expressions to access the members of an array descriptor.
111 It's surprisingly easy to mess up here, so never access
112 an array descriptor by "brute force", always use these
113 functions. This also avoids problems if we change the format
114 of an array descriptor.
116 To understand these magic numbers, look at the comments
117 before gfc_build_array_type() in trans-types.c.
119 The code within these defines should be the only code which knows the format
120 of an array descriptor.
122 Any code just needing to read obtain the bounds of an array should use
123 gfc_conv_array_* rather than the following functions as these will return
124 know constant values, and work with arrays which do not have descriptors.
126 Don't forget to #undef these! */
129 #define OFFSET_FIELD 1
130 #define DTYPE_FIELD 2
131 #define DIMENSION_FIELD 3
132 #define CAF_TOKEN_FIELD 4
134 #define STRIDE_SUBFIELD 0
135 #define LBOUND_SUBFIELD 1
136 #define UBOUND_SUBFIELD 2
138 /* This provides READ-ONLY access to the data field. The field itself
139 doesn't have the proper type. */
142 gfc_conv_descriptor_data_get (tree desc)
146 type = TREE_TYPE (desc);
147 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
149 field = TYPE_FIELDS (type);
150 gcc_assert (DATA_FIELD == 0);
152 t = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field), desc,
154 t = fold_convert (GFC_TYPE_ARRAY_DATAPTR_TYPE (type), t);
159 /* This provides WRITE access to the data field.
161 TUPLES_P is true if we are generating tuples.
163 This function gets called through the following macros:
164 gfc_conv_descriptor_data_set
165 gfc_conv_descriptor_data_set. */
168 gfc_conv_descriptor_data_set (stmtblock_t *block, tree desc, tree value)
172 type = TREE_TYPE (desc);
173 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
175 field = TYPE_FIELDS (type);
176 gcc_assert (DATA_FIELD == 0);
178 t = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field), desc,
180 gfc_add_modify (block, t, fold_convert (TREE_TYPE (field), value));
184 /* This provides address access to the data field. This should only be
185 used by array allocation, passing this on to the runtime. */
188 gfc_conv_descriptor_data_addr (tree desc)
192 type = TREE_TYPE (desc);
193 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
195 field = TYPE_FIELDS (type);
196 gcc_assert (DATA_FIELD == 0);
198 t = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field), desc,
200 return gfc_build_addr_expr (NULL_TREE, t);
204 gfc_conv_descriptor_offset (tree desc)
209 type = TREE_TYPE (desc);
210 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
212 field = gfc_advance_chain (TYPE_FIELDS (type), OFFSET_FIELD);
213 gcc_assert (field != NULL_TREE && TREE_TYPE (field) == gfc_array_index_type);
215 return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
216 desc, field, NULL_TREE);
220 gfc_conv_descriptor_offset_get (tree desc)
222 return gfc_conv_descriptor_offset (desc);
226 gfc_conv_descriptor_offset_set (stmtblock_t *block, tree desc,
229 tree t = gfc_conv_descriptor_offset (desc);
230 gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
235 gfc_conv_descriptor_dtype (tree desc)
240 type = TREE_TYPE (desc);
241 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
243 field = gfc_advance_chain (TYPE_FIELDS (type), DTYPE_FIELD);
244 gcc_assert (field != NULL_TREE && TREE_TYPE (field) == gfc_array_index_type);
246 return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
247 desc, field, NULL_TREE);
251 gfc_conv_descriptor_dimension (tree desc, tree dim)
257 type = TREE_TYPE (desc);
258 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
260 field = gfc_advance_chain (TYPE_FIELDS (type), DIMENSION_FIELD);
261 gcc_assert (field != NULL_TREE
262 && TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
263 && TREE_CODE (TREE_TYPE (TREE_TYPE (field))) == RECORD_TYPE);
265 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
266 desc, field, NULL_TREE);
267 tmp = gfc_build_array_ref (tmp, dim, NULL);
273 gfc_conv_descriptor_token (tree desc)
278 type = TREE_TYPE (desc);
279 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
280 gcc_assert (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ALLOCATABLE);
281 gcc_assert (gfc_option.coarray == GFC_FCOARRAY_LIB);
282 field = gfc_advance_chain (TYPE_FIELDS (type), CAF_TOKEN_FIELD);
283 gcc_assert (field != NULL_TREE && TREE_TYPE (field) == prvoid_type_node);
285 return fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
286 desc, field, NULL_TREE);
291 gfc_conv_descriptor_stride (tree desc, tree dim)
296 tmp = gfc_conv_descriptor_dimension (desc, dim);
297 field = TYPE_FIELDS (TREE_TYPE (tmp));
298 field = gfc_advance_chain (field, STRIDE_SUBFIELD);
299 gcc_assert (field != NULL_TREE && TREE_TYPE (field) == gfc_array_index_type);
301 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
302 tmp, field, NULL_TREE);
307 gfc_conv_descriptor_stride_get (tree desc, tree dim)
309 tree type = TREE_TYPE (desc);
310 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
311 if (integer_zerop (dim)
312 && (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ALLOCATABLE
313 ||GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ASSUMED_SHAPE_CONT
314 ||GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_POINTER_CONT))
315 return gfc_index_one_node;
317 return gfc_conv_descriptor_stride (desc, dim);
321 gfc_conv_descriptor_stride_set (stmtblock_t *block, tree desc,
322 tree dim, tree value)
324 tree t = gfc_conv_descriptor_stride (desc, dim);
325 gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
329 gfc_conv_descriptor_lbound (tree desc, tree dim)
334 tmp = gfc_conv_descriptor_dimension (desc, dim);
335 field = TYPE_FIELDS (TREE_TYPE (tmp));
336 field = gfc_advance_chain (field, LBOUND_SUBFIELD);
337 gcc_assert (field != NULL_TREE && TREE_TYPE (field) == gfc_array_index_type);
339 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
340 tmp, field, NULL_TREE);
345 gfc_conv_descriptor_lbound_get (tree desc, tree dim)
347 return gfc_conv_descriptor_lbound (desc, dim);
351 gfc_conv_descriptor_lbound_set (stmtblock_t *block, tree desc,
352 tree dim, tree value)
354 tree t = gfc_conv_descriptor_lbound (desc, dim);
355 gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
359 gfc_conv_descriptor_ubound (tree desc, tree dim)
364 tmp = gfc_conv_descriptor_dimension (desc, dim);
365 field = TYPE_FIELDS (TREE_TYPE (tmp));
366 field = gfc_advance_chain (field, UBOUND_SUBFIELD);
367 gcc_assert (field != NULL_TREE && TREE_TYPE (field) == gfc_array_index_type);
369 tmp = fold_build3_loc (input_location, COMPONENT_REF, TREE_TYPE (field),
370 tmp, field, NULL_TREE);
375 gfc_conv_descriptor_ubound_get (tree desc, tree dim)
377 return gfc_conv_descriptor_ubound (desc, dim);
381 gfc_conv_descriptor_ubound_set (stmtblock_t *block, tree desc,
382 tree dim, tree value)
384 tree t = gfc_conv_descriptor_ubound (desc, dim);
385 gfc_add_modify (block, t, fold_convert (TREE_TYPE (t), value));
388 /* Build a null array descriptor constructor. */
391 gfc_build_null_descriptor (tree type)
396 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type));
397 gcc_assert (DATA_FIELD == 0);
398 field = TYPE_FIELDS (type);
400 /* Set a NULL data pointer. */
401 tmp = build_constructor_single (type, field, null_pointer_node);
402 TREE_CONSTANT (tmp) = 1;
403 /* All other fields are ignored. */
409 /* Modify a descriptor such that the lbound of a given dimension is the value
410 specified. This also updates ubound and offset accordingly. */
413 gfc_conv_shift_descriptor_lbound (stmtblock_t* block, tree desc,
414 int dim, tree new_lbound)
416 tree offs, ubound, lbound, stride;
417 tree diff, offs_diff;
419 new_lbound = fold_convert (gfc_array_index_type, new_lbound);
421 offs = gfc_conv_descriptor_offset_get (desc);
422 lbound = gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[dim]);
423 ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[dim]);
424 stride = gfc_conv_descriptor_stride_get (desc, gfc_rank_cst[dim]);
426 /* Get difference (new - old) by which to shift stuff. */
427 diff = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
430 /* Shift ubound and offset accordingly. This has to be done before
431 updating the lbound, as they depend on the lbound expression! */
432 ubound = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
434 gfc_conv_descriptor_ubound_set (block, desc, gfc_rank_cst[dim], ubound);
435 offs_diff = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
437 offs = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
439 gfc_conv_descriptor_offset_set (block, desc, offs);
441 /* Finally set lbound to value we want. */
442 gfc_conv_descriptor_lbound_set (block, desc, gfc_rank_cst[dim], new_lbound);
446 /* Cleanup those #defines. */
451 #undef DIMENSION_FIELD
452 #undef CAF_TOKEN_FIELD
453 #undef STRIDE_SUBFIELD
454 #undef LBOUND_SUBFIELD
455 #undef UBOUND_SUBFIELD
458 /* Mark a SS chain as used. Flags specifies in which loops the SS is used.
459 flags & 1 = Main loop body.
460 flags & 2 = temp copy loop. */
463 gfc_mark_ss_chain_used (gfc_ss * ss, unsigned flags)
465 for (; ss != gfc_ss_terminator; ss = ss->next)
466 ss->useflags = flags;
469 static void gfc_free_ss (gfc_ss *);
472 /* Free a gfc_ss chain. */
475 gfc_free_ss_chain (gfc_ss * ss)
479 while (ss != gfc_ss_terminator)
481 gcc_assert (ss != NULL);
490 free_ss_info (gfc_ss_info *ss_info)
499 gfc_free_ss (gfc_ss * ss)
501 gfc_ss_info *ss_info;
506 switch (ss_info->type)
509 for (n = 0; n < ss->dimen; n++)
511 if (ss->data.info.subscript[ss->dim[n]])
512 gfc_free_ss_chain (ss->data.info.subscript[ss->dim[n]]);
520 free_ss_info (ss_info);
525 /* Creates and initializes an array type gfc_ss struct. */
528 gfc_get_array_ss (gfc_ss *next, gfc_expr *expr, int dimen, gfc_ss_type type)
531 gfc_ss_info *ss_info;
534 ss_info = gfc_get_ss_info ();
535 ss_info->type = type;
536 ss_info->expr = expr;
542 for (i = 0; i < ss->dimen; i++)
549 /* Creates and initializes a temporary type gfc_ss struct. */
552 gfc_get_temp_ss (tree type, tree string_length, int dimen)
555 gfc_ss_info *ss_info;
558 ss_info = gfc_get_ss_info ();
559 ss_info->type = GFC_SS_TEMP;
560 ss_info->string_length = string_length;
564 ss->next = gfc_ss_terminator;
565 ss->data.temp.type = type;
567 for (i = 0; i < ss->dimen; i++)
574 /* Creates and initializes a scalar type gfc_ss struct. */
577 gfc_get_scalar_ss (gfc_ss *next, gfc_expr *expr)
580 gfc_ss_info *ss_info;
582 ss_info = gfc_get_ss_info ();
583 ss_info->type = GFC_SS_SCALAR;
584 ss_info->expr = expr;
594 /* Free all the SS associated with a loop. */
597 gfc_cleanup_loop (gfc_loopinfo * loop)
603 while (ss != gfc_ss_terminator)
605 gcc_assert (ss != NULL);
606 next = ss->loop_chain;
613 /* Associate a SS chain with a loop. */
616 gfc_add_ss_to_loop (gfc_loopinfo * loop, gfc_ss * head)
620 if (head == gfc_ss_terminator)
624 for (; ss && ss != gfc_ss_terminator; ss = ss->next)
626 if (ss->next == gfc_ss_terminator)
627 ss->loop_chain = loop->ss;
629 ss->loop_chain = ss->next;
631 gcc_assert (ss == gfc_ss_terminator);
636 /* Generate an initializer for a static pointer or allocatable array. */
639 gfc_trans_static_array_pointer (gfc_symbol * sym)
643 gcc_assert (TREE_STATIC (sym->backend_decl));
644 /* Just zero the data member. */
645 type = TREE_TYPE (sym->backend_decl);
646 DECL_INITIAL (sym->backend_decl) = gfc_build_null_descriptor (type);
650 /* If the bounds of SE's loop have not yet been set, see if they can be
651 determined from array spec AS, which is the array spec of a called
652 function. MAPPING maps the callee's dummy arguments to the values
653 that the caller is passing. Add any initialization and finalization
657 gfc_set_loop_bounds_from_array_spec (gfc_interface_mapping * mapping,
658 gfc_se * se, gfc_array_spec * as)
666 if (as && as->type == AS_EXPLICIT)
667 for (n = 0; n < se->loop->dimen; n++)
669 dim = se->ss->dim[n];
670 gcc_assert (dim < as->rank);
671 gcc_assert (se->loop->dimen == as->rank);
672 if (se->loop->to[n] == NULL_TREE)
674 /* Evaluate the lower bound. */
675 gfc_init_se (&tmpse, NULL);
676 gfc_apply_interface_mapping (mapping, &tmpse, as->lower[dim]);
677 gfc_add_block_to_block (&se->pre, &tmpse.pre);
678 gfc_add_block_to_block (&se->post, &tmpse.post);
679 lower = fold_convert (gfc_array_index_type, tmpse.expr);
681 /* ...and the upper bound. */
682 gfc_init_se (&tmpse, NULL);
683 gfc_apply_interface_mapping (mapping, &tmpse, as->upper[dim]);
684 gfc_add_block_to_block (&se->pre, &tmpse.pre);
685 gfc_add_block_to_block (&se->post, &tmpse.post);
686 upper = fold_convert (gfc_array_index_type, tmpse.expr);
688 /* Set the upper bound of the loop to UPPER - LOWER. */
689 tmp = fold_build2_loc (input_location, MINUS_EXPR,
690 gfc_array_index_type, upper, lower);
691 tmp = gfc_evaluate_now (tmp, &se->pre);
692 se->loop->to[n] = tmp;
698 /* Generate code to allocate an array temporary, or create a variable to
699 hold the data. If size is NULL, zero the descriptor so that the
700 callee will allocate the array. If DEALLOC is true, also generate code to
701 free the array afterwards.
703 If INITIAL is not NULL, it is packed using internal_pack and the result used
704 as data instead of allocating a fresh, unitialized area of memory.
706 Initialization code is added to PRE and finalization code to POST.
707 DYNAMIC is true if the caller may want to extend the array later
708 using realloc. This prevents us from putting the array on the stack. */
711 gfc_trans_allocate_array_storage (stmtblock_t * pre, stmtblock_t * post,
712 gfc_array_info * info, tree size, tree nelem,
713 tree initial, bool dynamic, bool dealloc)
719 desc = info->descriptor;
720 info->offset = gfc_index_zero_node;
721 if (size == NULL_TREE || integer_zerop (size))
723 /* A callee allocated array. */
724 gfc_conv_descriptor_data_set (pre, desc, null_pointer_node);
729 /* Allocate the temporary. */
730 onstack = !dynamic && initial == NULL_TREE
731 && (gfc_option.flag_stack_arrays
732 || gfc_can_put_var_on_stack (size));
736 /* Make a temporary variable to hold the data. */
737 tmp = fold_build2_loc (input_location, MINUS_EXPR, TREE_TYPE (nelem),
738 nelem, gfc_index_one_node);
739 tmp = gfc_evaluate_now (tmp, pre);
740 tmp = build_range_type (gfc_array_index_type, gfc_index_zero_node,
742 tmp = build_array_type (gfc_get_element_type (TREE_TYPE (desc)),
744 tmp = gfc_create_var (tmp, "A");
745 /* If we're here only because of -fstack-arrays we have to
746 emit a DECL_EXPR to make the gimplifier emit alloca calls. */
747 if (!gfc_can_put_var_on_stack (size))
748 gfc_add_expr_to_block (pre,
749 fold_build1_loc (input_location,
750 DECL_EXPR, TREE_TYPE (tmp),
752 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
753 gfc_conv_descriptor_data_set (pre, desc, tmp);
757 /* Allocate memory to hold the data or call internal_pack. */
758 if (initial == NULL_TREE)
760 tmp = gfc_call_malloc (pre, NULL, size);
761 tmp = gfc_evaluate_now (tmp, pre);
768 stmtblock_t do_copying;
770 tmp = TREE_TYPE (initial); /* Pointer to descriptor. */
771 gcc_assert (TREE_CODE (tmp) == POINTER_TYPE);
772 tmp = TREE_TYPE (tmp); /* The descriptor itself. */
773 tmp = gfc_get_element_type (tmp);
774 gcc_assert (tmp == gfc_get_element_type (TREE_TYPE (desc)));
775 packed = gfc_create_var (build_pointer_type (tmp), "data");
777 tmp = build_call_expr_loc (input_location,
778 gfor_fndecl_in_pack, 1, initial);
779 tmp = fold_convert (TREE_TYPE (packed), tmp);
780 gfc_add_modify (pre, packed, tmp);
782 tmp = build_fold_indirect_ref_loc (input_location,
784 source_data = gfc_conv_descriptor_data_get (tmp);
786 /* internal_pack may return source->data without any allocation
787 or copying if it is already packed. If that's the case, we
788 need to allocate and copy manually. */
790 gfc_start_block (&do_copying);
791 tmp = gfc_call_malloc (&do_copying, NULL, size);
792 tmp = fold_convert (TREE_TYPE (packed), tmp);
793 gfc_add_modify (&do_copying, packed, tmp);
794 tmp = gfc_build_memcpy_call (packed, source_data, size);
795 gfc_add_expr_to_block (&do_copying, tmp);
797 was_packed = fold_build2_loc (input_location, EQ_EXPR,
798 boolean_type_node, packed,
800 tmp = gfc_finish_block (&do_copying);
801 tmp = build3_v (COND_EXPR, was_packed, tmp,
802 build_empty_stmt (input_location));
803 gfc_add_expr_to_block (pre, tmp);
805 tmp = fold_convert (pvoid_type_node, packed);
808 gfc_conv_descriptor_data_set (pre, desc, tmp);
811 info->data = gfc_conv_descriptor_data_get (desc);
813 /* The offset is zero because we create temporaries with a zero
815 gfc_conv_descriptor_offset_set (pre, desc, gfc_index_zero_node);
817 if (dealloc && !onstack)
819 /* Free the temporary. */
820 tmp = gfc_conv_descriptor_data_get (desc);
821 tmp = gfc_call_free (fold_convert (pvoid_type_node, tmp));
822 gfc_add_expr_to_block (post, tmp);
827 /* Get the array reference dimension corresponding to the given loop dimension.
828 It is different from the true array dimension given by the dim array in
829 the case of a partial array reference
830 It is different from the loop dimension in the case of a transposed array.
834 get_array_ref_dim (gfc_ss *ss, int loop_dim)
836 int n, array_dim, array_ref_dim;
839 array_dim = ss->dim[loop_dim];
841 for (n = 0; n < ss->dimen; n++)
842 if (ss->dim[n] < array_dim)
845 return array_ref_dim;
849 /* Generate code to create and initialize the descriptor for a temporary
850 array. This is used for both temporaries needed by the scalarizer, and
851 functions returning arrays. Adjusts the loop variables to be
852 zero-based, and calculates the loop bounds for callee allocated arrays.
853 Allocate the array unless it's callee allocated (we have a callee
854 allocated array if 'callee_alloc' is true, or if loop->to[n] is
855 NULL_TREE for any n). Also fills in the descriptor, data and offset
856 fields of info if known. Returns the size of the array, or NULL for a
857 callee allocated array.
859 PRE, POST, INITIAL, DYNAMIC and DEALLOC are as for
860 gfc_trans_allocate_array_storage.
864 gfc_trans_create_temp_array (stmtblock_t * pre, stmtblock_t * post,
865 gfc_loopinfo * loop, gfc_ss * ss,
866 tree eltype, tree initial, bool dynamic,
867 bool dealloc, bool callee_alloc, locus * where)
869 gfc_array_info *info;
870 tree from[GFC_MAX_DIMENSIONS], to[GFC_MAX_DIMENSIONS];
880 memset (from, 0, sizeof (from));
881 memset (to, 0, sizeof (to));
883 info = &ss->data.info;
885 gcc_assert (ss->dimen > 0);
886 gcc_assert (loop->dimen == ss->dimen);
888 if (gfc_option.warn_array_temp && where)
889 gfc_warning ("Creating array temporary at %L", where);
891 /* Set the lower bound to zero. */
892 for (n = 0; n < loop->dimen; n++)
896 /* Callee allocated arrays may not have a known bound yet. */
898 loop->to[n] = gfc_evaluate_now (
899 fold_build2_loc (input_location, MINUS_EXPR,
900 gfc_array_index_type,
901 loop->to[n], loop->from[n]),
903 loop->from[n] = gfc_index_zero_node;
905 /* We are constructing the temporary's descriptor based on the loop
906 dimensions. As the dimensions may be accessed in arbitrary order
907 (think of transpose) the size taken from the n'th loop may not map
908 to the n'th dimension of the array. We need to reconstruct loop infos
909 in the right order before using it to set the descriptor
911 tmp_dim = get_array_ref_dim (ss, n);
912 from[tmp_dim] = loop->from[n];
913 to[tmp_dim] = loop->to[n];
915 info->delta[dim] = gfc_index_zero_node;
916 info->start[dim] = gfc_index_zero_node;
917 info->end[dim] = gfc_index_zero_node;
918 info->stride[dim] = gfc_index_one_node;
921 /* Initialize the descriptor. */
923 gfc_get_array_type_bounds (eltype, ss->dimen, 0, from, to, 1,
924 GFC_ARRAY_UNKNOWN, true);
925 desc = gfc_create_var (type, "atmp");
926 GFC_DECL_PACKED_ARRAY (desc) = 1;
928 info->descriptor = desc;
929 size = gfc_index_one_node;
931 /* Fill in the array dtype. */
932 tmp = gfc_conv_descriptor_dtype (desc);
933 gfc_add_modify (pre, tmp, gfc_get_dtype (TREE_TYPE (desc)));
936 Fill in the bounds and stride. This is a packed array, so:
939 for (n = 0; n < rank; n++)
942 delta = ubound[n] + 1 - lbound[n];
945 size = size * sizeof(element);
950 /* If there is at least one null loop->to[n], it is a callee allocated
952 for (n = 0; n < loop->dimen; n++)
953 if (loop->to[n] == NULL_TREE)
959 for (n = 0; n < loop->dimen; n++)
963 if (size == NULL_TREE)
965 /* For a callee allocated array express the loop bounds in terms
966 of the descriptor fields. */
967 tmp = fold_build2_loc (input_location,
968 MINUS_EXPR, gfc_array_index_type,
969 gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[dim]),
970 gfc_conv_descriptor_lbound_get (desc, gfc_rank_cst[dim]));
975 /* Store the stride and bound components in the descriptor. */
976 gfc_conv_descriptor_stride_set (pre, desc, gfc_rank_cst[n], size);
978 gfc_conv_descriptor_lbound_set (pre, desc, gfc_rank_cst[n],
979 gfc_index_zero_node);
981 gfc_conv_descriptor_ubound_set (pre, desc, gfc_rank_cst[n],
984 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
985 to[n], gfc_index_one_node);
987 /* Check whether the size for this dimension is negative. */
988 cond = fold_build2_loc (input_location, LE_EXPR, boolean_type_node, tmp,
989 gfc_index_zero_node);
990 cond = gfc_evaluate_now (cond, pre);
995 or_expr = fold_build2_loc (input_location, TRUTH_OR_EXPR,
996 boolean_type_node, or_expr, cond);
998 size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
1000 size = gfc_evaluate_now (size, pre);
1003 /* Get the size of the array. */
1005 if (size && !callee_alloc)
1007 /* If or_expr is true, then the extent in at least one
1008 dimension is zero and the size is set to zero. */
1009 size = fold_build3_loc (input_location, COND_EXPR, gfc_array_index_type,
1010 or_expr, gfc_index_zero_node, size);
1013 size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
1015 fold_convert (gfc_array_index_type,
1016 TYPE_SIZE_UNIT (gfc_get_element_type (type))));
1024 gfc_trans_allocate_array_storage (pre, post, info, size, nelem, initial,
1027 if (ss->dimen > loop->temp_dim)
1028 loop->temp_dim = ss->dimen;
1034 /* Return the number of iterations in a loop that starts at START,
1035 ends at END, and has step STEP. */
1038 gfc_get_iteration_count (tree start, tree end, tree step)
1043 type = TREE_TYPE (step);
1044 tmp = fold_build2_loc (input_location, MINUS_EXPR, type, end, start);
1045 tmp = fold_build2_loc (input_location, FLOOR_DIV_EXPR, type, tmp, step);
1046 tmp = fold_build2_loc (input_location, PLUS_EXPR, type, tmp,
1047 build_int_cst (type, 1));
1048 tmp = fold_build2_loc (input_location, MAX_EXPR, type, tmp,
1049 build_int_cst (type, 0));
1050 return fold_convert (gfc_array_index_type, tmp);
1054 /* Extend the data in array DESC by EXTRA elements. */
1057 gfc_grow_array (stmtblock_t * pblock, tree desc, tree extra)
1064 if (integer_zerop (extra))
1067 ubound = gfc_conv_descriptor_ubound_get (desc, gfc_rank_cst[0]);
1069 /* Add EXTRA to the upper bound. */
1070 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1072 gfc_conv_descriptor_ubound_set (pblock, desc, gfc_rank_cst[0], tmp);
1074 /* Get the value of the current data pointer. */
1075 arg0 = gfc_conv_descriptor_data_get (desc);
1077 /* Calculate the new array size. */
1078 size = TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (desc)));
1079 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1080 ubound, gfc_index_one_node);
1081 arg1 = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
1082 fold_convert (size_type_node, tmp),
1083 fold_convert (size_type_node, size));
1085 /* Call the realloc() function. */
1086 tmp = gfc_call_realloc (pblock, arg0, arg1);
1087 gfc_conv_descriptor_data_set (pblock, desc, tmp);
1091 /* Return true if the bounds of iterator I can only be determined
1095 gfc_iterator_has_dynamic_bounds (gfc_iterator * i)
1097 return (i->start->expr_type != EXPR_CONSTANT
1098 || i->end->expr_type != EXPR_CONSTANT
1099 || i->step->expr_type != EXPR_CONSTANT);
1103 /* Split the size of constructor element EXPR into the sum of two terms,
1104 one of which can be determined at compile time and one of which must
1105 be calculated at run time. Set *SIZE to the former and return true
1106 if the latter might be nonzero. */
1109 gfc_get_array_constructor_element_size (mpz_t * size, gfc_expr * expr)
1111 if (expr->expr_type == EXPR_ARRAY)
1112 return gfc_get_array_constructor_size (size, expr->value.constructor);
1113 else if (expr->rank > 0)
1115 /* Calculate everything at run time. */
1116 mpz_set_ui (*size, 0);
1121 /* A single element. */
1122 mpz_set_ui (*size, 1);
1128 /* Like gfc_get_array_constructor_element_size, but applied to the whole
1129 of array constructor C. */
1132 gfc_get_array_constructor_size (mpz_t * size, gfc_constructor_base base)
1140 mpz_set_ui (*size, 0);
1145 for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
1148 if (i && gfc_iterator_has_dynamic_bounds (i))
1152 dynamic |= gfc_get_array_constructor_element_size (&len, c->expr);
1155 /* Multiply the static part of the element size by the
1156 number of iterations. */
1157 mpz_sub (val, i->end->value.integer, i->start->value.integer);
1158 mpz_fdiv_q (val, val, i->step->value.integer);
1159 mpz_add_ui (val, val, 1);
1160 if (mpz_sgn (val) > 0)
1161 mpz_mul (len, len, val);
1163 mpz_set_ui (len, 0);
1165 mpz_add (*size, *size, len);
1174 /* Make sure offset is a variable. */
1177 gfc_put_offset_into_var (stmtblock_t * pblock, tree * poffset,
1180 /* We should have already created the offset variable. We cannot
1181 create it here because we may be in an inner scope. */
1182 gcc_assert (*offsetvar != NULL_TREE);
1183 gfc_add_modify (pblock, *offsetvar, *poffset);
1184 *poffset = *offsetvar;
1185 TREE_USED (*offsetvar) = 1;
1189 /* Variables needed for bounds-checking. */
1190 static bool first_len;
1191 static tree first_len_val;
1192 static bool typespec_chararray_ctor;
1195 gfc_trans_array_ctor_element (stmtblock_t * pblock, tree desc,
1196 tree offset, gfc_se * se, gfc_expr * expr)
1200 gfc_conv_expr (se, expr);
1202 /* Store the value. */
1203 tmp = build_fold_indirect_ref_loc (input_location,
1204 gfc_conv_descriptor_data_get (desc));
1205 tmp = gfc_build_array_ref (tmp, offset, NULL);
1207 if (expr->ts.type == BT_CHARACTER)
1209 int i = gfc_validate_kind (BT_CHARACTER, expr->ts.kind, false);
1212 esize = size_in_bytes (gfc_get_element_type (TREE_TYPE (desc)));
1213 esize = fold_convert (gfc_charlen_type_node, esize);
1214 esize = fold_build2_loc (input_location, TRUNC_DIV_EXPR,
1215 gfc_charlen_type_node, esize,
1216 build_int_cst (gfc_charlen_type_node,
1217 gfc_character_kinds[i].bit_size / 8));
1219 gfc_conv_string_parameter (se);
1220 if (POINTER_TYPE_P (TREE_TYPE (tmp)))
1222 /* The temporary is an array of pointers. */
1223 se->expr = fold_convert (TREE_TYPE (tmp), se->expr);
1224 gfc_add_modify (&se->pre, tmp, se->expr);
1228 /* The temporary is an array of string values. */
1229 tmp = gfc_build_addr_expr (gfc_get_pchar_type (expr->ts.kind), tmp);
1230 /* We know the temporary and the value will be the same length,
1231 so can use memcpy. */
1232 gfc_trans_string_copy (&se->pre, esize, tmp, expr->ts.kind,
1233 se->string_length, se->expr, expr->ts.kind);
1235 if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS) && !typespec_chararray_ctor)
1239 gfc_add_modify (&se->pre, first_len_val,
1245 /* Verify that all constructor elements are of the same
1247 tree cond = fold_build2_loc (input_location, NE_EXPR,
1248 boolean_type_node, first_len_val,
1250 gfc_trans_runtime_check
1251 (true, false, cond, &se->pre, &expr->where,
1252 "Different CHARACTER lengths (%ld/%ld) in array constructor",
1253 fold_convert (long_integer_type_node, first_len_val),
1254 fold_convert (long_integer_type_node, se->string_length));
1260 /* TODO: Should the frontend already have done this conversion? */
1261 se->expr = fold_convert (TREE_TYPE (tmp), se->expr);
1262 gfc_add_modify (&se->pre, tmp, se->expr);
1265 gfc_add_block_to_block (pblock, &se->pre);
1266 gfc_add_block_to_block (pblock, &se->post);
1270 /* Add the contents of an array to the constructor. DYNAMIC is as for
1271 gfc_trans_array_constructor_value. */
1274 gfc_trans_array_constructor_subarray (stmtblock_t * pblock,
1275 tree type ATTRIBUTE_UNUSED,
1276 tree desc, gfc_expr * expr,
1277 tree * poffset, tree * offsetvar,
1288 /* We need this to be a variable so we can increment it. */
1289 gfc_put_offset_into_var (pblock, poffset, offsetvar);
1291 gfc_init_se (&se, NULL);
1293 /* Walk the array expression. */
1294 ss = gfc_walk_expr (expr);
1295 gcc_assert (ss != gfc_ss_terminator);
1297 /* Initialize the scalarizer. */
1298 gfc_init_loopinfo (&loop);
1299 gfc_add_ss_to_loop (&loop, ss);
1301 /* Initialize the loop. */
1302 gfc_conv_ss_startstride (&loop);
1303 gfc_conv_loop_setup (&loop, &expr->where);
1305 /* Make sure the constructed array has room for the new data. */
1308 /* Set SIZE to the total number of elements in the subarray. */
1309 size = gfc_index_one_node;
1310 for (n = 0; n < loop.dimen; n++)
1312 tmp = gfc_get_iteration_count (loop.from[n], loop.to[n],
1313 gfc_index_one_node);
1314 size = fold_build2_loc (input_location, MULT_EXPR,
1315 gfc_array_index_type, size, tmp);
1318 /* Grow the constructed array by SIZE elements. */
1319 gfc_grow_array (&loop.pre, desc, size);
1322 /* Make the loop body. */
1323 gfc_mark_ss_chain_used (ss, 1);
1324 gfc_start_scalarized_body (&loop, &body);
1325 gfc_copy_loopinfo_to_se (&se, &loop);
1328 gfc_trans_array_ctor_element (&body, desc, *poffset, &se, expr);
1329 gcc_assert (se.ss == gfc_ss_terminator);
1331 /* Increment the offset. */
1332 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1333 *poffset, gfc_index_one_node);
1334 gfc_add_modify (&body, *poffset, tmp);
1336 /* Finish the loop. */
1337 gfc_trans_scalarizing_loops (&loop, &body);
1338 gfc_add_block_to_block (&loop.pre, &loop.post);
1339 tmp = gfc_finish_block (&loop.pre);
1340 gfc_add_expr_to_block (pblock, tmp);
1342 gfc_cleanup_loop (&loop);
1346 /* Assign the values to the elements of an array constructor. DYNAMIC
1347 is true if descriptor DESC only contains enough data for the static
1348 size calculated by gfc_get_array_constructor_size. When true, memory
1349 for the dynamic parts must be allocated using realloc. */
1352 gfc_trans_array_constructor_value (stmtblock_t * pblock, tree type,
1353 tree desc, gfc_constructor_base base,
1354 tree * poffset, tree * offsetvar,
1363 tree shadow_loopvar = NULL_TREE;
1364 gfc_saved_var saved_loopvar;
1367 for (c = gfc_constructor_first (base); c; c = gfc_constructor_next (c))
1369 /* If this is an iterator or an array, the offset must be a variable. */
1370 if ((c->iterator || c->expr->rank > 0) && INTEGER_CST_P (*poffset))
1371 gfc_put_offset_into_var (pblock, poffset, offsetvar);
1373 /* Shadowing the iterator avoids changing its value and saves us from
1374 keeping track of it. Further, it makes sure that there's always a
1375 backend-decl for the symbol, even if there wasn't one before,
1376 e.g. in the case of an iterator that appears in a specification
1377 expression in an interface mapping. */
1380 gfc_symbol *sym = c->iterator->var->symtree->n.sym;
1381 tree type = gfc_typenode_for_spec (&sym->ts);
1383 shadow_loopvar = gfc_create_var (type, "shadow_loopvar");
1384 gfc_shadow_sym (sym, shadow_loopvar, &saved_loopvar);
1387 gfc_start_block (&body);
1389 if (c->expr->expr_type == EXPR_ARRAY)
1391 /* Array constructors can be nested. */
1392 gfc_trans_array_constructor_value (&body, type, desc,
1393 c->expr->value.constructor,
1394 poffset, offsetvar, dynamic);
1396 else if (c->expr->rank > 0)
1398 gfc_trans_array_constructor_subarray (&body, type, desc, c->expr,
1399 poffset, offsetvar, dynamic);
1403 /* This code really upsets the gimplifier so don't bother for now. */
1410 while (p && !(p->iterator || p->expr->expr_type != EXPR_CONSTANT))
1412 p = gfc_constructor_next (p);
1417 /* Scalar values. */
1418 gfc_init_se (&se, NULL);
1419 gfc_trans_array_ctor_element (&body, desc, *poffset,
1422 *poffset = fold_build2_loc (input_location, PLUS_EXPR,
1423 gfc_array_index_type,
1424 *poffset, gfc_index_one_node);
1428 /* Collect multiple scalar constants into a constructor. */
1429 VEC(constructor_elt,gc) *v = NULL;
1433 HOST_WIDE_INT idx = 0;
1436 /* Count the number of consecutive scalar constants. */
1437 while (p && !(p->iterator
1438 || p->expr->expr_type != EXPR_CONSTANT))
1440 gfc_init_se (&se, NULL);
1441 gfc_conv_constant (&se, p->expr);
1443 if (c->expr->ts.type != BT_CHARACTER)
1444 se.expr = fold_convert (type, se.expr);
1445 /* For constant character array constructors we build
1446 an array of pointers. */
1447 else if (POINTER_TYPE_P (type))
1448 se.expr = gfc_build_addr_expr
1449 (gfc_get_pchar_type (p->expr->ts.kind),
1452 CONSTRUCTOR_APPEND_ELT (v,
1453 build_int_cst (gfc_array_index_type,
1457 p = gfc_constructor_next (p);
1460 bound = size_int (n - 1);
1461 /* Create an array type to hold them. */
1462 tmptype = build_range_type (gfc_array_index_type,
1463 gfc_index_zero_node, bound);
1464 tmptype = build_array_type (type, tmptype);
1466 init = build_constructor (tmptype, v);
1467 TREE_CONSTANT (init) = 1;
1468 TREE_STATIC (init) = 1;
1469 /* Create a static variable to hold the data. */
1470 tmp = gfc_create_var (tmptype, "data");
1471 TREE_STATIC (tmp) = 1;
1472 TREE_CONSTANT (tmp) = 1;
1473 TREE_READONLY (tmp) = 1;
1474 DECL_INITIAL (tmp) = init;
1477 /* Use BUILTIN_MEMCPY to assign the values. */
1478 tmp = gfc_conv_descriptor_data_get (desc);
1479 tmp = build_fold_indirect_ref_loc (input_location,
1481 tmp = gfc_build_array_ref (tmp, *poffset, NULL);
1482 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
1483 init = gfc_build_addr_expr (NULL_TREE, init);
1485 size = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (type));
1486 bound = build_int_cst (size_type_node, n * size);
1487 tmp = build_call_expr_loc (input_location,
1488 builtin_decl_explicit (BUILT_IN_MEMCPY),
1489 3, tmp, init, bound);
1490 gfc_add_expr_to_block (&body, tmp);
1492 *poffset = fold_build2_loc (input_location, PLUS_EXPR,
1493 gfc_array_index_type, *poffset,
1494 build_int_cst (gfc_array_index_type, n));
1496 if (!INTEGER_CST_P (*poffset))
1498 gfc_add_modify (&body, *offsetvar, *poffset);
1499 *poffset = *offsetvar;
1503 /* The frontend should already have done any expansions
1507 /* Pass the code as is. */
1508 tmp = gfc_finish_block (&body);
1509 gfc_add_expr_to_block (pblock, tmp);
1513 /* Build the implied do-loop. */
1514 stmtblock_t implied_do_block;
1522 loopbody = gfc_finish_block (&body);
1524 /* Create a new block that holds the implied-do loop. A temporary
1525 loop-variable is used. */
1526 gfc_start_block(&implied_do_block);
1528 /* Initialize the loop. */
1529 gfc_init_se (&se, NULL);
1530 gfc_conv_expr_val (&se, c->iterator->start);
1531 gfc_add_block_to_block (&implied_do_block, &se.pre);
1532 gfc_add_modify (&implied_do_block, shadow_loopvar, se.expr);
1534 gfc_init_se (&se, NULL);
1535 gfc_conv_expr_val (&se, c->iterator->end);
1536 gfc_add_block_to_block (&implied_do_block, &se.pre);
1537 end = gfc_evaluate_now (se.expr, &implied_do_block);
1539 gfc_init_se (&se, NULL);
1540 gfc_conv_expr_val (&se, c->iterator->step);
1541 gfc_add_block_to_block (&implied_do_block, &se.pre);
1542 step = gfc_evaluate_now (se.expr, &implied_do_block);
1544 /* If this array expands dynamically, and the number of iterations
1545 is not constant, we won't have allocated space for the static
1546 part of C->EXPR's size. Do that now. */
1547 if (dynamic && gfc_iterator_has_dynamic_bounds (c->iterator))
1549 /* Get the number of iterations. */
1550 tmp = gfc_get_iteration_count (shadow_loopvar, end, step);
1552 /* Get the static part of C->EXPR's size. */
1553 gfc_get_array_constructor_element_size (&size, c->expr);
1554 tmp2 = gfc_conv_mpz_to_tree (size, gfc_index_integer_kind);
1556 /* Grow the array by TMP * TMP2 elements. */
1557 tmp = fold_build2_loc (input_location, MULT_EXPR,
1558 gfc_array_index_type, tmp, tmp2);
1559 gfc_grow_array (&implied_do_block, desc, tmp);
1562 /* Generate the loop body. */
1563 exit_label = gfc_build_label_decl (NULL_TREE);
1564 gfc_start_block (&body);
1566 /* Generate the exit condition. Depending on the sign of
1567 the step variable we have to generate the correct
1569 tmp = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
1570 step, build_int_cst (TREE_TYPE (step), 0));
1571 cond = fold_build3_loc (input_location, COND_EXPR,
1572 boolean_type_node, tmp,
1573 fold_build2_loc (input_location, GT_EXPR,
1574 boolean_type_node, shadow_loopvar, end),
1575 fold_build2_loc (input_location, LT_EXPR,
1576 boolean_type_node, shadow_loopvar, end));
1577 tmp = build1_v (GOTO_EXPR, exit_label);
1578 TREE_USED (exit_label) = 1;
1579 tmp = build3_v (COND_EXPR, cond, tmp,
1580 build_empty_stmt (input_location));
1581 gfc_add_expr_to_block (&body, tmp);
1583 /* The main loop body. */
1584 gfc_add_expr_to_block (&body, loopbody);
1586 /* Increase loop variable by step. */
1587 tmp = fold_build2_loc (input_location, PLUS_EXPR,
1588 TREE_TYPE (shadow_loopvar), shadow_loopvar,
1590 gfc_add_modify (&body, shadow_loopvar, tmp);
1592 /* Finish the loop. */
1593 tmp = gfc_finish_block (&body);
1594 tmp = build1_v (LOOP_EXPR, tmp);
1595 gfc_add_expr_to_block (&implied_do_block, tmp);
1597 /* Add the exit label. */
1598 tmp = build1_v (LABEL_EXPR, exit_label);
1599 gfc_add_expr_to_block (&implied_do_block, tmp);
1601 /* Finishe the implied-do loop. */
1602 tmp = gfc_finish_block(&implied_do_block);
1603 gfc_add_expr_to_block(pblock, tmp);
1605 gfc_restore_sym (c->iterator->var->symtree->n.sym, &saved_loopvar);
1612 /* A catch-all to obtain the string length for anything that is not a
1613 a substring of non-constant length, a constant, array or variable. */
1616 get_array_ctor_all_strlen (stmtblock_t *block, gfc_expr *e, tree *len)
1621 /* Don't bother if we already know the length is a constant. */
1622 if (*len && INTEGER_CST_P (*len))
1625 if (!e->ref && e->ts.u.cl && e->ts.u.cl->length
1626 && e->ts.u.cl->length->expr_type == EXPR_CONSTANT)
1629 gfc_conv_const_charlen (e->ts.u.cl);
1630 *len = e->ts.u.cl->backend_decl;
1634 /* Otherwise, be brutal even if inefficient. */
1635 ss = gfc_walk_expr (e);
1636 gfc_init_se (&se, NULL);
1638 /* No function call, in case of side effects. */
1639 se.no_function_call = 1;
1640 if (ss == gfc_ss_terminator)
1641 gfc_conv_expr (&se, e);
1643 gfc_conv_expr_descriptor (&se, e, ss);
1645 /* Fix the value. */
1646 *len = gfc_evaluate_now (se.string_length, &se.pre);
1648 gfc_add_block_to_block (block, &se.pre);
1649 gfc_add_block_to_block (block, &se.post);
1651 e->ts.u.cl->backend_decl = *len;
1656 /* Figure out the string length of a variable reference expression.
1657 Used by get_array_ctor_strlen. */
1660 get_array_ctor_var_strlen (stmtblock_t *block, gfc_expr * expr, tree * len)
1666 /* Don't bother if we already know the length is a constant. */
1667 if (*len && INTEGER_CST_P (*len))
1670 ts = &expr->symtree->n.sym->ts;
1671 for (ref = expr->ref; ref; ref = ref->next)
1676 /* Array references don't change the string length. */
1680 /* Use the length of the component. */
1681 ts = &ref->u.c.component->ts;
1685 if (ref->u.ss.start->expr_type != EXPR_CONSTANT
1686 || ref->u.ss.end->expr_type != EXPR_CONSTANT)
1688 /* Note that this might evaluate expr. */
1689 get_array_ctor_all_strlen (block, expr, len);
1692 mpz_init_set_ui (char_len, 1);
1693 mpz_add (char_len, char_len, ref->u.ss.end->value.integer);
1694 mpz_sub (char_len, char_len, ref->u.ss.start->value.integer);
1695 *len = gfc_conv_mpz_to_tree (char_len, gfc_default_integer_kind);
1696 *len = convert (gfc_charlen_type_node, *len);
1697 mpz_clear (char_len);
1705 *len = ts->u.cl->backend_decl;
1709 /* Figure out the string length of a character array constructor.
1710 If len is NULL, don't calculate the length; this happens for recursive calls
1711 when a sub-array-constructor is an element but not at the first position,
1712 so when we're not interested in the length.
1713 Returns TRUE if all elements are character constants. */
1716 get_array_ctor_strlen (stmtblock_t *block, gfc_constructor_base base, tree * len)
1723 if (gfc_constructor_first (base) == NULL)
1726 *len = build_int_cstu (gfc_charlen_type_node, 0);
1730 /* Loop over all constructor elements to find out is_const, but in len we
1731 want to store the length of the first, not the last, element. We can
1732 of course exit the loop as soon as is_const is found to be false. */
1733 for (c = gfc_constructor_first (base);
1734 c && is_const; c = gfc_constructor_next (c))
1736 switch (c->expr->expr_type)
1739 if (len && !(*len && INTEGER_CST_P (*len)))
1740 *len = build_int_cstu (gfc_charlen_type_node,
1741 c->expr->value.character.length);
1745 if (!get_array_ctor_strlen (block, c->expr->value.constructor, len))
1752 get_array_ctor_var_strlen (block, c->expr, len);
1758 get_array_ctor_all_strlen (block, c->expr, len);
1762 /* After the first iteration, we don't want the length modified. */
1769 /* Check whether the array constructor C consists entirely of constant
1770 elements, and if so returns the number of those elements, otherwise
1771 return zero. Note, an empty or NULL array constructor returns zero. */
1773 unsigned HOST_WIDE_INT
1774 gfc_constant_array_constructor_p (gfc_constructor_base base)
1776 unsigned HOST_WIDE_INT nelem = 0;
1778 gfc_constructor *c = gfc_constructor_first (base);
1782 || c->expr->rank > 0
1783 || c->expr->expr_type != EXPR_CONSTANT)
1785 c = gfc_constructor_next (c);
1792 /* Given EXPR, the constant array constructor specified by an EXPR_ARRAY,
1793 and the tree type of it's elements, TYPE, return a static constant
1794 variable that is compile-time initialized. */
1797 gfc_build_constant_array_constructor (gfc_expr * expr, tree type)
1799 tree tmptype, init, tmp;
1800 HOST_WIDE_INT nelem;
1805 VEC(constructor_elt,gc) *v = NULL;
1807 /* First traverse the constructor list, converting the constants
1808 to tree to build an initializer. */
1810 c = gfc_constructor_first (expr->value.constructor);
1813 gfc_init_se (&se, NULL);
1814 gfc_conv_constant (&se, c->expr);
1815 if (c->expr->ts.type != BT_CHARACTER)
1816 se.expr = fold_convert (type, se.expr);
1817 else if (POINTER_TYPE_P (type))
1818 se.expr = gfc_build_addr_expr (gfc_get_pchar_type (c->expr->ts.kind),
1820 CONSTRUCTOR_APPEND_ELT (v, build_int_cst (gfc_array_index_type, nelem),
1822 c = gfc_constructor_next (c);
1826 /* Next determine the tree type for the array. We use the gfortran
1827 front-end's gfc_get_nodesc_array_type in order to create a suitable
1828 GFC_ARRAY_TYPE_P that may be used by the scalarizer. */
1830 memset (&as, 0, sizeof (gfc_array_spec));
1832 as.rank = expr->rank;
1833 as.type = AS_EXPLICIT;
1836 as.lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 0);
1837 as.upper[0] = gfc_get_int_expr (gfc_default_integer_kind,
1841 for (i = 0; i < expr->rank; i++)
1843 int tmp = (int) mpz_get_si (expr->shape[i]);
1844 as.lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 0);
1845 as.upper[i] = gfc_get_int_expr (gfc_default_integer_kind,
1849 tmptype = gfc_get_nodesc_array_type (type, &as, PACKED_STATIC, true);
1851 /* as is not needed anymore. */
1852 for (i = 0; i < as.rank + as.corank; i++)
1854 gfc_free_expr (as.lower[i]);
1855 gfc_free_expr (as.upper[i]);
1858 init = build_constructor (tmptype, v);
1860 TREE_CONSTANT (init) = 1;
1861 TREE_STATIC (init) = 1;
1863 tmp = gfc_create_var (tmptype, "A");
1864 TREE_STATIC (tmp) = 1;
1865 TREE_CONSTANT (tmp) = 1;
1866 TREE_READONLY (tmp) = 1;
1867 DECL_INITIAL (tmp) = init;
1873 /* Translate a constant EXPR_ARRAY array constructor for the scalarizer.
1874 This mostly initializes the scalarizer state info structure with the
1875 appropriate values to directly use the array created by the function
1876 gfc_build_constant_array_constructor. */
1879 trans_constant_array_constructor (gfc_ss * ss, tree type)
1881 gfc_array_info *info;
1885 tmp = gfc_build_constant_array_constructor (ss->info->expr, type);
1887 info = &ss->data.info;
1889 info->descriptor = tmp;
1890 info->data = gfc_build_addr_expr (NULL_TREE, tmp);
1891 info->offset = gfc_index_zero_node;
1893 for (i = 0; i < ss->dimen; i++)
1895 info->delta[i] = gfc_index_zero_node;
1896 info->start[i] = gfc_index_zero_node;
1897 info->end[i] = gfc_index_zero_node;
1898 info->stride[i] = gfc_index_one_node;
1902 /* Helper routine of gfc_trans_array_constructor to determine if the
1903 bounds of the loop specified by LOOP are constant and simple enough
1904 to use with trans_constant_array_constructor. Returns the
1905 iteration count of the loop if suitable, and NULL_TREE otherwise. */
1908 constant_array_constructor_loop_size (gfc_loopinfo * loop)
1910 tree size = gfc_index_one_node;
1914 for (i = 0; i < loop->dimen; i++)
1916 /* If the bounds aren't constant, return NULL_TREE. */
1917 if (!INTEGER_CST_P (loop->from[i]) || !INTEGER_CST_P (loop->to[i]))
1919 if (!integer_zerop (loop->from[i]))
1921 /* Only allow nonzero "from" in one-dimensional arrays. */
1922 if (loop->dimen != 1)
1924 tmp = fold_build2_loc (input_location, MINUS_EXPR,
1925 gfc_array_index_type,
1926 loop->to[i], loop->from[i]);
1930 tmp = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
1931 tmp, gfc_index_one_node);
1932 size = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
1940 /* Array constructors are handled by constructing a temporary, then using that
1941 within the scalarization loop. This is not optimal, but seems by far the
1945 gfc_trans_array_constructor (gfc_loopinfo * loop, gfc_ss * ss, locus * where)
1947 gfc_constructor_base c;
1954 bool old_first_len, old_typespec_chararray_ctor;
1955 tree old_first_len_val;
1956 gfc_ss_info *ss_info;
1959 /* Save the old values for nested checking. */
1960 old_first_len = first_len;
1961 old_first_len_val = first_len_val;
1962 old_typespec_chararray_ctor = typespec_chararray_ctor;
1965 expr = ss_info->expr;
1967 /* Do bounds-checking here and in gfc_trans_array_ctor_element only if no
1968 typespec was given for the array constructor. */
1969 typespec_chararray_ctor = (expr->ts.u.cl
1970 && expr->ts.u.cl->length_from_typespec);
1972 if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
1973 && expr->ts.type == BT_CHARACTER && !typespec_chararray_ctor)
1975 first_len_val = gfc_create_var (gfc_charlen_type_node, "len");
1979 gcc_assert (ss->dimen == loop->dimen);
1981 c = expr->value.constructor;
1982 if (expr->ts.type == BT_CHARACTER)
1986 /* get_array_ctor_strlen walks the elements of the constructor, if a
1987 typespec was given, we already know the string length and want the one
1989 if (typespec_chararray_ctor && expr->ts.u.cl->length
1990 && expr->ts.u.cl->length->expr_type != EXPR_CONSTANT)
1994 const_string = false;
1995 gfc_init_se (&length_se, NULL);
1996 gfc_conv_expr_type (&length_se, expr->ts.u.cl->length,
1997 gfc_charlen_type_node);
1998 ss_info->string_length = length_se.expr;
1999 gfc_add_block_to_block (&loop->pre, &length_se.pre);
2000 gfc_add_block_to_block (&loop->post, &length_se.post);
2003 const_string = get_array_ctor_strlen (&loop->pre, c,
2004 &ss_info->string_length);
2006 /* Complex character array constructors should have been taken care of
2007 and not end up here. */
2008 gcc_assert (ss_info->string_length);
2010 expr->ts.u.cl->backend_decl = ss_info->string_length;
2012 type = gfc_get_character_type_len (expr->ts.kind, ss_info->string_length);
2014 type = build_pointer_type (type);
2017 type = gfc_typenode_for_spec (&expr->ts);
2019 /* See if the constructor determines the loop bounds. */
2022 if (expr->shape && loop->dimen > 1 && loop->to[0] == NULL_TREE)
2024 /* We have a multidimensional parameter. */
2026 for (n = 0; n < expr->rank; n++)
2028 loop->from[n] = gfc_index_zero_node;
2029 loop->to[n] = gfc_conv_mpz_to_tree (expr->shape [n],
2030 gfc_index_integer_kind);
2031 loop->to[n] = fold_build2_loc (input_location, MINUS_EXPR,
2032 gfc_array_index_type,
2033 loop->to[n], gfc_index_one_node);
2037 if (loop->to[0] == NULL_TREE)
2041 /* We should have a 1-dimensional, zero-based loop. */
2042 gcc_assert (loop->dimen == 1);
2043 gcc_assert (integer_zerop (loop->from[0]));
2045 /* Split the constructor size into a static part and a dynamic part.
2046 Allocate the static size up-front and record whether the dynamic
2047 size might be nonzero. */
2049 dynamic = gfc_get_array_constructor_size (&size, c);
2050 mpz_sub_ui (size, size, 1);
2051 loop->to[0] = gfc_conv_mpz_to_tree (size, gfc_index_integer_kind);
2055 /* Special case constant array constructors. */
2058 unsigned HOST_WIDE_INT nelem = gfc_constant_array_constructor_p (c);
2061 tree size = constant_array_constructor_loop_size (loop);
2062 if (size && compare_tree_int (size, nelem) == 0)
2064 trans_constant_array_constructor (ss, type);
2070 if (TREE_CODE (loop->to[0]) == VAR_DECL)
2073 gfc_trans_create_temp_array (&loop->pre, &loop->post, loop, ss,
2074 type, NULL_TREE, dynamic, true, false, where);
2076 desc = ss->data.info.descriptor;
2077 offset = gfc_index_zero_node;
2078 offsetvar = gfc_create_var_np (gfc_array_index_type, "offset");
2079 TREE_NO_WARNING (offsetvar) = 1;
2080 TREE_USED (offsetvar) = 0;
2081 gfc_trans_array_constructor_value (&loop->pre, type, desc, c,
2082 &offset, &offsetvar, dynamic);
2084 /* If the array grows dynamically, the upper bound of the loop variable
2085 is determined by the array's final upper bound. */
2088 tmp = fold_build2_loc (input_location, MINUS_EXPR,
2089 gfc_array_index_type,
2090 offsetvar, gfc_index_one_node);
2091 tmp = gfc_evaluate_now (tmp, &loop->pre);
2092 gfc_conv_descriptor_ubound_set (&loop->pre, desc, gfc_rank_cst[0], tmp);
2093 if (loop->to[0] && TREE_CODE (loop->to[0]) == VAR_DECL)
2094 gfc_add_modify (&loop->pre, loop->to[0], tmp);
2099 if (TREE_USED (offsetvar))
2100 pushdecl (offsetvar);
2102 gcc_assert (INTEGER_CST_P (offset));
2105 /* Disable bound checking for now because it's probably broken. */
2106 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2113 /* Restore old values of globals. */
2114 first_len = old_first_len;
2115 first_len_val = old_first_len_val;
2116 typespec_chararray_ctor = old_typespec_chararray_ctor;
2120 /* INFO describes a GFC_SS_SECTION in loop LOOP, and this function is
2121 called after evaluating all of INFO's vector dimensions. Go through
2122 each such vector dimension and see if we can now fill in any missing
2126 set_vector_loop_bounds (gfc_loopinfo * loop, gfc_ss * ss)
2128 gfc_array_info *info;
2136 info = &ss->data.info;
2138 for (n = 0; n < loop->dimen; n++)
2141 if (info->ref->u.ar.dimen_type[dim] == DIMEN_VECTOR
2142 && loop->to[n] == NULL)
2144 /* Loop variable N indexes vector dimension DIM, and we don't
2145 yet know the upper bound of loop variable N. Set it to the
2146 difference between the vector's upper and lower bounds. */
2147 gcc_assert (loop->from[n] == gfc_index_zero_node);
2148 gcc_assert (info->subscript[dim]
2149 && info->subscript[dim]->info->type == GFC_SS_VECTOR);
2151 gfc_init_se (&se, NULL);
2152 desc = info->subscript[dim]->data.info.descriptor;
2153 zero = gfc_rank_cst[0];
2154 tmp = fold_build2_loc (input_location, MINUS_EXPR,
2155 gfc_array_index_type,
2156 gfc_conv_descriptor_ubound_get (desc, zero),
2157 gfc_conv_descriptor_lbound_get (desc, zero));
2158 tmp = gfc_evaluate_now (tmp, &loop->pre);
2165 /* Add the pre and post chains for all the scalar expressions in a SS chain
2166 to loop. This is called after the loop parameters have been calculated,
2167 but before the actual scalarizing loops. */
2170 gfc_add_loop_ss_code (gfc_loopinfo * loop, gfc_ss * ss, bool subscript,
2174 gfc_ss_info *ss_info;
2178 /* TODO: This can generate bad code if there are ordering dependencies,
2179 e.g., a callee allocated function and an unknown size constructor. */
2180 gcc_assert (ss != NULL);
2182 for (; ss != gfc_ss_terminator; ss = ss->loop_chain)
2187 expr = ss_info->expr;
2189 switch (ss_info->type)
2192 /* Scalar expression. Evaluate this now. This includes elemental
2193 dimension indices, but not array section bounds. */
2194 gfc_init_se (&se, NULL);
2195 gfc_conv_expr (&se, expr);
2196 gfc_add_block_to_block (&loop->pre, &se.pre);
2198 if (expr->ts.type != BT_CHARACTER)
2200 /* Move the evaluation of scalar expressions outside the
2201 scalarization loop, except for WHERE assignments. */
2203 se.expr = convert(gfc_array_index_type, se.expr);
2205 se.expr = gfc_evaluate_now (se.expr, &loop->pre);
2206 gfc_add_block_to_block (&loop->pre, &se.post);
2209 gfc_add_block_to_block (&loop->post, &se.post);
2211 ss->data.scalar.expr = se.expr;
2212 ss_info->string_length = se.string_length;
2215 case GFC_SS_REFERENCE:
2216 /* Scalar argument to elemental procedure. Evaluate this
2218 gfc_init_se (&se, NULL);
2219 gfc_conv_expr (&se, expr);
2220 gfc_add_block_to_block (&loop->pre, &se.pre);
2221 gfc_add_block_to_block (&loop->post, &se.post);
2223 ss->data.scalar.expr = gfc_evaluate_now (se.expr, &loop->pre);
2224 ss_info->string_length = se.string_length;
2227 case GFC_SS_SECTION:
2228 /* Add the expressions for scalar and vector subscripts. */
2229 for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
2230 if (ss->data.info.subscript[n])
2231 gfc_add_loop_ss_code (loop, ss->data.info.subscript[n], true,
2234 set_vector_loop_bounds (loop, ss);
2238 /* Get the vector's descriptor and store it in SS. */
2239 gfc_init_se (&se, NULL);
2240 gfc_conv_expr_descriptor (&se, expr, gfc_walk_expr (expr));
2241 gfc_add_block_to_block (&loop->pre, &se.pre);
2242 gfc_add_block_to_block (&loop->post, &se.post);
2243 ss->data.info.descriptor = se.expr;
2246 case GFC_SS_INTRINSIC:
2247 gfc_add_intrinsic_ss_code (loop, ss);
2250 case GFC_SS_FUNCTION:
2251 /* Array function return value. We call the function and save its
2252 result in a temporary for use inside the loop. */
2253 gfc_init_se (&se, NULL);
2256 gfc_conv_expr (&se, expr);
2257 gfc_add_block_to_block (&loop->pre, &se.pre);
2258 gfc_add_block_to_block (&loop->post, &se.post);
2259 ss_info->string_length = se.string_length;
2262 case GFC_SS_CONSTRUCTOR:
2263 if (expr->ts.type == BT_CHARACTER
2264 && ss_info->string_length == NULL
2266 && expr->ts.u.cl->length)
2268 gfc_init_se (&se, NULL);
2269 gfc_conv_expr_type (&se, expr->ts.u.cl->length,
2270 gfc_charlen_type_node);
2271 ss_info->string_length = se.expr;
2272 gfc_add_block_to_block (&loop->pre, &se.pre);
2273 gfc_add_block_to_block (&loop->post, &se.post);
2275 gfc_trans_array_constructor (loop, ss, where);
2279 case GFC_SS_COMPONENT:
2280 /* Do nothing. These are handled elsewhere. */
2290 /* Translate expressions for the descriptor and data pointer of a SS. */
2294 gfc_conv_ss_descriptor (stmtblock_t * block, gfc_ss * ss, int base)
2297 gfc_ss_info *ss_info;
2302 /* Get the descriptor for the array to be scalarized. */
2303 gcc_assert (ss_info->expr->expr_type == EXPR_VARIABLE);
2304 gfc_init_se (&se, NULL);
2305 se.descriptor_only = 1;
2306 gfc_conv_expr_lhs (&se, ss_info->expr);
2307 gfc_add_block_to_block (block, &se.pre);
2308 ss->data.info.descriptor = se.expr;
2309 ss_info->string_length = se.string_length;
2313 /* Also the data pointer. */
2314 tmp = gfc_conv_array_data (se.expr);
2315 /* If this is a variable or address of a variable we use it directly.
2316 Otherwise we must evaluate it now to avoid breaking dependency
2317 analysis by pulling the expressions for elemental array indices
2320 || (TREE_CODE (tmp) == ADDR_EXPR
2321 && DECL_P (TREE_OPERAND (tmp, 0)))))
2322 tmp = gfc_evaluate_now (tmp, block);
2323 ss->data.info.data = tmp;
2325 tmp = gfc_conv_array_offset (se.expr);
2326 ss->data.info.offset = gfc_evaluate_now (tmp, block);
2328 /* Make absolutely sure that the saved_offset is indeed saved
2329 so that the variable is still accessible after the loops
2331 ss->data.info.saved_offset = ss->data.info.offset;
2336 /* Initialize a gfc_loopinfo structure. */
2339 gfc_init_loopinfo (gfc_loopinfo * loop)
2343 memset (loop, 0, sizeof (gfc_loopinfo));
2344 gfc_init_block (&loop->pre);
2345 gfc_init_block (&loop->post);
2347 /* Initially scalarize in order and default to no loop reversal. */
2348 for (n = 0; n < GFC_MAX_DIMENSIONS; n++)
2351 loop->reverse[n] = GFC_INHIBIT_REVERSE;
2354 loop->ss = gfc_ss_terminator;
2358 /* Copies the loop variable info to a gfc_se structure. Does not copy the SS
2362 gfc_copy_loopinfo_to_se (gfc_se * se, gfc_loopinfo * loop)
2368 /* Return an expression for the data pointer of an array. */
2371 gfc_conv_array_data (tree descriptor)
2375 type = TREE_TYPE (descriptor);
2376 if (GFC_ARRAY_TYPE_P (type))
2378 if (TREE_CODE (type) == POINTER_TYPE)
2382 /* Descriptorless arrays. */
2383 return gfc_build_addr_expr (NULL_TREE, descriptor);
2387 return gfc_conv_descriptor_data_get (descriptor);
2391 /* Return an expression for the base offset of an array. */
2394 gfc_conv_array_offset (tree descriptor)
2398 type = TREE_TYPE (descriptor);
2399 if (GFC_ARRAY_TYPE_P (type))
2400 return GFC_TYPE_ARRAY_OFFSET (type);
2402 return gfc_conv_descriptor_offset_get (descriptor);
2406 /* Get an expression for the array stride. */
2409 gfc_conv_array_stride (tree descriptor, int dim)
2414 type = TREE_TYPE (descriptor);
2416 /* For descriptorless arrays use the array size. */
2417 tmp = GFC_TYPE_ARRAY_STRIDE (type, dim);
2418 if (tmp != NULL_TREE)
2421 tmp = gfc_conv_descriptor_stride_get (descriptor, gfc_rank_cst[dim]);
2426 /* Like gfc_conv_array_stride, but for the lower bound. */
2429 gfc_conv_array_lbound (tree descriptor, int dim)
2434 type = TREE_TYPE (descriptor);
2436 tmp = GFC_TYPE_ARRAY_LBOUND (type, dim);
2437 if (tmp != NULL_TREE)
2440 tmp = gfc_conv_descriptor_lbound_get (descriptor, gfc_rank_cst[dim]);
2445 /* Like gfc_conv_array_stride, but for the upper bound. */
2448 gfc_conv_array_ubound (tree descriptor, int dim)
2453 type = TREE_TYPE (descriptor);
2455 tmp = GFC_TYPE_ARRAY_UBOUND (type, dim);
2456 if (tmp != NULL_TREE)
2459 /* This should only ever happen when passing an assumed shape array
2460 as an actual parameter. The value will never be used. */
2461 if (GFC_ARRAY_TYPE_P (TREE_TYPE (descriptor)))
2462 return gfc_index_zero_node;
2464 tmp = gfc_conv_descriptor_ubound_get (descriptor, gfc_rank_cst[dim]);
2469 /* Generate code to perform an array index bound check. */
2472 trans_array_bound_check (gfc_se * se, gfc_ss *ss, tree index, int n,
2473 locus * where, bool check_upper)
2476 tree tmp_lo, tmp_up;
2479 const char * name = NULL;
2481 if (!(gfc_option.rtcheck & GFC_RTCHECK_BOUNDS))
2484 descriptor = ss->data.info.descriptor;
2486 index = gfc_evaluate_now (index, &se->pre);
2488 /* We find a name for the error message. */
2489 name = ss->info->expr->symtree->n.sym->name;
2490 gcc_assert (name != NULL);
2492 if (TREE_CODE (descriptor) == VAR_DECL)
2493 name = IDENTIFIER_POINTER (DECL_NAME (descriptor));
2495 /* If upper bound is present, include both bounds in the error message. */
2498 tmp_lo = gfc_conv_array_lbound (descriptor, n);
2499 tmp_up = gfc_conv_array_ubound (descriptor, n);
2502 asprintf (&msg, "Index '%%ld' of dimension %d of array '%s' "
2503 "outside of expected range (%%ld:%%ld)", n+1, name);
2505 asprintf (&msg, "Index '%%ld' of dimension %d "
2506 "outside of expected range (%%ld:%%ld)", n+1);
2508 fault = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2510 gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
2511 fold_convert (long_integer_type_node, index),
2512 fold_convert (long_integer_type_node, tmp_lo),
2513 fold_convert (long_integer_type_node, tmp_up));
2514 fault = fold_build2_loc (input_location, GT_EXPR, boolean_type_node,
2516 gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
2517 fold_convert (long_integer_type_node, index),
2518 fold_convert (long_integer_type_node, tmp_lo),
2519 fold_convert (long_integer_type_node, tmp_up));
2524 tmp_lo = gfc_conv_array_lbound (descriptor, n);
2527 asprintf (&msg, "Index '%%ld' of dimension %d of array '%s' "
2528 "below lower bound of %%ld", n+1, name);
2530 asprintf (&msg, "Index '%%ld' of dimension %d "
2531 "below lower bound of %%ld", n+1);
2533 fault = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2535 gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
2536 fold_convert (long_integer_type_node, index),
2537 fold_convert (long_integer_type_node, tmp_lo));
2545 /* Return the offset for an index. Performs bound checking for elemental
2546 dimensions. Single element references are processed separately.
2547 DIM is the array dimension, I is the loop dimension. */
2550 conv_array_index_offset (gfc_se * se, gfc_ss * ss, int dim, int i,
2551 gfc_array_ref * ar, tree stride)
2553 gfc_array_info *info;
2558 info = &ss->data.info;
2560 /* Get the index into the array for this dimension. */
2563 gcc_assert (ar->type != AR_ELEMENT);
2564 switch (ar->dimen_type[dim])
2566 case DIMEN_THIS_IMAGE:
2570 /* Elemental dimension. */
2571 gcc_assert (info->subscript[dim]
2572 && info->subscript[dim]->info->type == GFC_SS_SCALAR);
2573 /* We've already translated this value outside the loop. */
2574 index = info->subscript[dim]->data.scalar.expr;
2576 index = trans_array_bound_check (se, ss, index, dim, &ar->where,
2577 ar->as->type != AS_ASSUMED_SIZE
2578 || dim < ar->dimen - 1);
2582 gcc_assert (info && se->loop);
2583 gcc_assert (info->subscript[dim]
2584 && info->subscript[dim]->info->type == GFC_SS_VECTOR);
2585 desc = info->subscript[dim]->data.info.descriptor;
2587 /* Get a zero-based index into the vector. */
2588 index = fold_build2_loc (input_location, MINUS_EXPR,
2589 gfc_array_index_type,
2590 se->loop->loopvar[i], se->loop->from[i]);
2592 /* Multiply the index by the stride. */
2593 index = fold_build2_loc (input_location, MULT_EXPR,
2594 gfc_array_index_type,
2595 index, gfc_conv_array_stride (desc, 0));
2597 /* Read the vector to get an index into info->descriptor. */
2598 data = build_fold_indirect_ref_loc (input_location,
2599 gfc_conv_array_data (desc));
2600 index = gfc_build_array_ref (data, index, NULL);
2601 index = gfc_evaluate_now (index, &se->pre);
2602 index = fold_convert (gfc_array_index_type, index);
2604 /* Do any bounds checking on the final info->descriptor index. */
2605 index = trans_array_bound_check (se, ss, index, dim, &ar->where,
2606 ar->as->type != AS_ASSUMED_SIZE
2607 || dim < ar->dimen - 1);
2611 /* Scalarized dimension. */
2612 gcc_assert (info && se->loop);
2614 /* Multiply the loop variable by the stride and delta. */
2615 index = se->loop->loopvar[i];
2616 if (!integer_onep (info->stride[dim]))
2617 index = fold_build2_loc (input_location, MULT_EXPR,
2618 gfc_array_index_type, index,
2620 if (!integer_zerop (info->delta[dim]))
2621 index = fold_build2_loc (input_location, PLUS_EXPR,
2622 gfc_array_index_type, index,
2632 /* Temporary array or derived type component. */
2633 gcc_assert (se->loop);
2634 index = se->loop->loopvar[se->loop->order[i]];
2636 /* Pointer functions can have stride[0] different from unity.
2637 Use the stride returned by the function call and stored in
2638 the descriptor for the temporary. */
2639 if (se->ss && se->ss->info->type == GFC_SS_FUNCTION
2640 && se->ss->info->expr
2641 && se->ss->info->expr->symtree
2642 && se->ss->info->expr->symtree->n.sym->result
2643 && se->ss->info->expr->symtree->n.sym->result->attr.pointer)
2644 stride = gfc_conv_descriptor_stride_get (info->descriptor,
2647 if (!integer_zerop (info->delta[dim]))
2648 index = fold_build2_loc (input_location, PLUS_EXPR,
2649 gfc_array_index_type, index, info->delta[dim]);
2652 /* Multiply by the stride. */
2653 if (!integer_onep (stride))
2654 index = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
2661 /* Build a scalarized reference to an array. */
2664 gfc_conv_scalarized_array_ref (gfc_se * se, gfc_array_ref * ar)
2666 gfc_array_info *info;
2667 tree decl = NULL_TREE;
2675 expr = ss->info->expr;
2676 info = &ss->data.info;
2678 n = se->loop->order[0];
2682 index = conv_array_index_offset (se, ss, ss->dim[n], n, ar, info->stride0);
2683 /* Add the offset for this dimension to the stored offset for all other
2685 if (!integer_zerop (info->offset))
2686 index = fold_build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
2687 index, info->offset);
2689 if (expr && is_subref_array (expr))
2690 decl = expr->symtree->n.sym->backend_decl;
2692 tmp = build_fold_indirect_ref_loc (input_location, info->data);
2693 se->expr = gfc_build_array_ref (tmp, index, decl);
2697 /* Translate access of temporary array. */
2700 gfc_conv_tmp_array_ref (gfc_se * se)
2702 se->string_length = se->ss->info->string_length;
2703 gfc_conv_scalarized_array_ref (se, NULL);
2704 gfc_advance_se_ss_chain (se);
2707 /* Add T to the offset pair *OFFSET, *CST_OFFSET. */
2710 add_to_offset (tree *cst_offset, tree *offset, tree t)
2712 if (TREE_CODE (t) == INTEGER_CST)
2713 *cst_offset = int_const_binop (PLUS_EXPR, *cst_offset, t);
2716 if (!integer_zerop (*offset))
2717 *offset = fold_build2_loc (input_location, PLUS_EXPR,
2718 gfc_array_index_type, *offset, t);
2724 /* Build an array reference. se->expr already holds the array descriptor.
2725 This should be either a variable, indirect variable reference or component
2726 reference. For arrays which do not have a descriptor, se->expr will be
2728 a(i, j, k) = base[offset + i * stride[0] + j * stride[1] + k * stride[2]]*/
2731 gfc_conv_array_ref (gfc_se * se, gfc_array_ref * ar, gfc_symbol * sym,
2735 tree offset, cst_offset;
2743 gcc_assert (ar->codimen);
2745 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (se->expr)))
2746 se->expr = build_fold_indirect_ref (gfc_conv_array_data (se->expr));
2749 if (GFC_ARRAY_TYPE_P (TREE_TYPE (se->expr))
2750 && TREE_CODE (TREE_TYPE (se->expr)) == POINTER_TYPE)
2751 se->expr = build_fold_indirect_ref_loc (input_location, se->expr);
2753 /* Use the actual tree type and not the wrapped coarray. */
2754 if (!se->want_pointer)
2755 se->expr = fold_convert (TYPE_MAIN_VARIANT (TREE_TYPE (se->expr)),
2762 /* Handle scalarized references separately. */
2763 if (ar->type != AR_ELEMENT)
2765 gfc_conv_scalarized_array_ref (se, ar);
2766 gfc_advance_se_ss_chain (se);
2770 cst_offset = offset = gfc_index_zero_node;
2771 add_to_offset (&cst_offset, &offset, gfc_conv_array_offset (se->expr));
2773 /* Calculate the offsets from all the dimensions. Make sure to associate
2774 the final offset so that we form a chain of loop invariant summands. */
2775 for (n = ar->dimen - 1; n >= 0; n--)
2777 /* Calculate the index for this dimension. */
2778 gfc_init_se (&indexse, se);
2779 gfc_conv_expr_type (&indexse, ar->start[n], gfc_array_index_type);
2780 gfc_add_block_to_block (&se->pre, &indexse.pre);
2782 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
2784 /* Check array bounds. */
2788 /* Evaluate the indexse.expr only once. */
2789 indexse.expr = save_expr (indexse.expr);
2792 tmp = gfc_conv_array_lbound (se->expr, n);
2793 if (sym->attr.temporary)
2795 gfc_init_se (&tmpse, se);
2796 gfc_conv_expr_type (&tmpse, ar->as->lower[n],
2797 gfc_array_index_type);
2798 gfc_add_block_to_block (&se->pre, &tmpse.pre);
2802 cond = fold_build2_loc (input_location, LT_EXPR, boolean_type_node,
2804 asprintf (&msg, "Index '%%ld' of dimension %d of array '%s' "
2805 "below lower bound of %%ld", n+1, sym->name);
2806 gfc_trans_runtime_check (true, false, cond, &se->pre, where, msg,
2807 fold_convert (long_integer_type_node,
2809 fold_convert (long_integer_type_node, tmp));
2812 /* Upper bound, but not for the last dimension of assumed-size
2814 if (n < ar->dimen - 1 || ar->as->type != AS_ASSUMED_SIZE)
2816 tmp = gfc_conv_array_ubound (se->expr, n);
2817 if (sym->attr.temporary)
2819 gfc_init_se (&tmpse, se);
2820 gfc_conv_expr_type (&tmpse, ar->as->upper[n],
2821 gfc_array_index_type);
2822 gfc_add_block_to_block (&se->pre, &tmpse.pre);
2826 cond = fold_build2_loc (input_location, GT_EXPR,
2827 boolean_type_node, indexse.expr, tmp);
2828 asprintf (&msg, "Index '%%ld' of dimension %d of array '%s' "
2829 "above upper bound of %%ld", n+1, sym->name);
2830 gfc_trans_runtime_check (true, false, cond, &se->pre, where, msg,
2831 fold_convert (long_integer_type_node,
2833 fold_convert (long_integer_type_node, tmp));
2838 /* Multiply the index by the stride. */
2839 stride = gfc_conv_array_stride (se->expr, n);
2840 tmp = fold_build2_loc (input_location, MULT_EXPR, gfc_array_index_type,
2841 indexse.expr, stride);
2843 /* And add it to the total. */
2844 add_to_offset (&cst_offset, &offset, tmp);
2847 if (!integer_zerop (cst_offset))
2848 offset = fold_build2_loc (input_location, PLUS_EXPR,
2849 gfc_array_index_type, offset, cst_offset);
2851 /* Access the calculated element. */
2852 tmp = gfc_conv_array_data (se->expr);
2853 tmp = build_fold_indirect_ref (tmp);
2854 se->expr = gfc_build_array_ref (tmp, offset, sym->backend_decl);
2858 /* Add the offset corresponding to array's ARRAY_DIM dimension and loop's
2859 LOOP_DIM dimension (if any) to array's offset. */
2862 add_array_offset (stmtblock_t *pblock, gfc_loopinfo *loop, gfc_ss *ss,
2863 gfc_array_ref *ar, int array_dim, int loop_dim)
2866 gfc_array_info *info;
2869 info = &ss->data.info;
2871 gfc_init_se (&se, NULL);
2873 se.expr = info->descriptor;
2874 stride = gfc_conv_array_stride (info->descriptor, array_dim);
2875 index = conv_array_index_offset (&se, ss, array_dim, loop_dim, ar, stride);
2876 gfc_add_block_to_block (pblock, &se.pre);
2878 info->offset = fold_build2_loc (input_location, PLUS_EXPR,
2879 gfc_array_index_type,
2880 info->offset, index);
2881 info->offset = gfc_evaluate_now (info->offset, pblock);
2885 /* Generate the code to be executed immediately before entering a
2886 scalarization loop. */
2889 gfc_trans_preloop_setup (gfc_loopinfo * loop, int dim, int flag,
2890 stmtblock_t * pblock)
2893 gfc_array_info *info;
2894 gfc_ss_type ss_type;
2899 /* This code will be executed before entering the scalarization loop
2900 for this dimension. */
2901 for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
2903 if ((ss->useflags & flag) == 0)
2906 ss_type = ss->info->type;
2907 if (ss_type != GFC_SS_SECTION
2908 && ss_type != GFC_SS_FUNCTION
2909 && ss_type != GFC_SS_CONSTRUCTOR
2910 && ss_type != GFC_SS_COMPONENT)
2913 info = &ss->data.info;
2915 gcc_assert (dim < ss->dimen);
2916 gcc_assert (ss->dimen == loop->dimen);
2919 ar = &info->ref->u.ar;
2923 if (dim == loop->dimen - 1)
2928 /* For the time being, there is no loop reordering. */
2929 gcc_assert (i == loop->order[i]);
2932 if (dim == loop->dimen - 1)
2934 stride = gfc_conv_array_stride (info->descriptor, ss->dim[i]);
2936 /* Calculate the stride of the innermost loop. Hopefully this will
2937 allow the backend optimizers to do their stuff more effectively.
2939 info->stride0 = gfc_evaluate_now (stride, pblock);
2941 /* For the outermost loop calculate the offset due to any
2942 elemental dimensions. It will have been initialized with the
2943 base offset of the array. */
2946 for (i = 0; i < ar->dimen; i++)
2948 if (ar->dimen_type[i] != DIMEN_ELEMENT)
2951 add_array_offset (pblock, loop, ss, ar, i, /* unused */ -1);
2956 /* Add the offset for the previous loop dimension. */
2957 add_array_offset (pblock, loop, ss, ar, ss->dim[i], i);
2959 /* Remember this offset for the second loop. */
2960 if (dim == loop->temp_dim - 1)
2961 info->saved_offset = info->offset;
2966 /* Start a scalarized expression. Creates a scope and declares loop
2970 gfc_start_scalarized_body (gfc_loopinfo * loop, stmtblock_t * pbody)
2976 gcc_assert (!loop->array_parameter);
2978 for (dim = loop->dimen - 1; dim >= 0; dim--)
2980 n = loop->order[dim];
2982 gfc_start_block (&loop->code[n]);
2984 /* Create the loop variable. */
2985 loop->loopvar[n] = gfc_create_var (gfc_array_index_type, "S");
2987 if (dim < loop->temp_dim)
2991 /* Calculate values that will be constant within this loop. */
2992 gfc_trans_preloop_setup (loop, dim, flags, &loop->code[n]);
2994 gfc_start_block (pbody);
2998 /* Generates the actual loop code for a scalarization loop. */
3001 gfc_trans_scalarized_loop_end (gfc_loopinfo * loop, int n,
3002 stmtblock_t * pbody)
3013 if ((ompws_flags & (OMPWS_WORKSHARE_FLAG | OMPWS_SCALARIZER_WS))
3014 == (OMPWS_WORKSHARE_FLAG | OMPWS_SCALARIZER_WS)
3015 && n == loop->dimen - 1)
3017 /* We create an OMP_FOR construct for the outermost scalarized loop. */
3018 init = make_tree_vec (1);
3019 cond = make_tree_vec (1);
3020 incr = make_tree_vec (1);
3022 /* Cycle statement is implemented with a goto. Exit statement must not
3023 be present for this loop. */
3024 exit_label = gfc_build_label_decl (NULL_TREE);
3025 TREE_USED (exit_label) = 1;
3027 /* Label for cycle statements (if needed). */
3028 tmp = build1_v (LABEL_EXPR, exit_label);
3029 gfc_add_expr_to_block (pbody, tmp);
3031 stmt = make_node (OMP_FOR);
3033 TREE_TYPE (stmt) = void_type_node;
3034 OMP_FOR_BODY (stmt) = loopbody = gfc_finish_block (pbody);
3036 OMP_FOR_CLAUSES (stmt) = build_omp_clause (input_location,
3037 OMP_CLAUSE_SCHEDULE);
3038 OMP_CLAUSE_SCHEDULE_KIND (OMP_FOR_CLAUSES (stmt))
3039 = OMP_CLAUSE_SCHEDULE_STATIC;
3040 if (ompws_flags & OMPWS_NOWAIT)
3041 OMP_CLAUSE_CHAIN (OMP_FOR_CLAUSES (stmt))
3042 = build_omp_clause (input_location, OMP_CLAUSE_NOWAIT);
3044 /* Initialize the loopvar. */
3045 TREE_VEC_ELT (init, 0) = build2_v (MODIFY_EXPR, loop->loopvar[n],
3047 OMP_FOR_INIT (stmt) = init;
3048 /* The exit condition. */
3049 TREE_VEC_ELT (cond, 0) = build2_loc (input_location, LE_EXPR,
3051 loop->loopvar[n], loop->to[n]);
3052 SET_EXPR_LOCATION (TREE_VEC_ELT (cond, 0), input_location);
3053 OMP_FOR_COND (stmt) = cond;
3054 /* Increment the loopvar. */
3055 tmp = build2_loc (input_location, PLUS_EXPR, gfc_array_index_type,
3056 loop->loopvar[n], gfc_index_one_node);
3057 TREE_VEC_ELT (incr, 0) = fold_build2_loc (input_location, MODIFY_EXPR,
3058 void_type_node, loop->loopvar[n], tmp);
3059 OMP_FOR_INCR (stmt) = incr;
3061 ompws_flags &= ~OMPWS_CURR_SINGLEUNIT;
3062 gfc_add_expr_to_block (&loop->code[n], stmt);
3066 bool reverse_loop = (loop->reverse[n] == GFC_REVERSE_SET)
3067 && (loop->temp_ss == NULL);
3069 loopbody = gfc_finish_block (pbody);
3073 tmp = loop->from[n];
3074 loop->from[n] = loop->to[n];
3078 /* Initialize the loopvar. */
3079 if (loop->loopvar[n] != loop->from[n])
3080 gfc_add_modify (&loop->code[n], loop->loopvar[n], loop->from[n]);
3082 exit_label = gfc_build_label_decl (NULL_TREE);
3084 /* Generate the loop body. */
3085 gfc_init_block (&block);
3087 /* The exit condition. */
3088 cond = fold_build2_loc (input_location, reverse_loop ? LT_EXPR : GT_EXPR,
3089 boolean_type_node, loop->loopvar[n], loop->to[n]);
3090 tmp = build1_v (GOTO_EXPR, exit_label);
3091 TREE_USED (exit_label) = 1;
3092 tmp = build3_v (COND_EXPR, cond, tmp, build_empty_stmt (input_location));
3093 gfc_add_expr_to_block (&block, tmp);
3095 /* The main body. */
3096 gfc_add_expr_to_block (&block, loopbody);
3098 /* Increment the loopvar. */
3099 tmp = fold_build2_loc (input_location,
3100 reverse_loop ? MINUS_EXPR : PLUS_EXPR,
3101 gfc_array_index_type, loop->loopvar[n],
3102 gfc_index_one_node);
3104 gfc_add_modify (&block, loop->loopvar[n], tmp);
3106 /* Build the loop. */
3107 tmp = gfc_finish_block (&block);
3108 tmp = build1_v (LOOP_EXPR, tmp);
3109 gfc_add_expr_to_block (&loop->code[n], tmp);
3111 /* Add the exit label. */
3112 tmp = build1_v (LABEL_EXPR, exit_label);
3113 gfc_add_expr_to_block (&loop->code[n], tmp);
3119 /* Finishes and generates the loops for a scalarized expression. */
3122 gfc_trans_scalarizing_loops (gfc_loopinfo * loop, stmtblock_t * body)
3127 stmtblock_t *pblock;
3131 /* Generate the loops. */
3132 for (dim = 0; dim < loop->dimen; dim++)
3134 n = loop->order[dim];
3135 gfc_trans_scalarized_loop_end (loop, n, pblock);
3136 loop->loopvar[n] = NULL_TREE;
3137 pblock = &loop->code[n];
3140 tmp = gfc_finish_block (pblock);
3141 gfc_add_expr_to_block (&loop->pre, tmp);
3143 /* Clear all the used flags. */
3144 for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
3149 /* Finish the main body of a scalarized expression, and start the secondary
3153 gfc_trans_scalarized_loop_boundary (gfc_loopinfo * loop, stmtblock_t * body)
3157 stmtblock_t *pblock;
3161 /* We finish as many loops as are used by the temporary. */
3162 for (dim = 0; dim < loop->temp_dim - 1; dim++)
3164 n = loop->order[dim];
3165 gfc_trans_scalarized_loop_end (loop, n, pblock);
3166 loop->loopvar[n] = NULL_TREE;
3167 pblock = &loop->code[n];
3170 /* We don't want to finish the outermost loop entirely. */
3171 n = loop->order[loop->temp_dim - 1];
3172 gfc_trans_scalarized_loop_end (loop, n, pblock);
3174 /* Restore the initial offsets. */
3175 for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
3177 gfc_ss_type ss_type;
3179 if ((ss->useflags & 2) == 0)
3182 ss_type = ss->info->type;
3183 if (ss_type != GFC_SS_SECTION
3184 && ss_type != GFC_SS_FUNCTION
3185 && ss_type != GFC_SS_CONSTRUCTOR
3186 && ss_type != GFC_SS_COMPONENT)
3189 ss->data.info.offset = ss->data.info.saved_offset;
3192 /* Restart all the inner loops we just finished. */
3193 for (dim = loop->temp_dim - 2; dim >= 0; dim--)
3195 n = loop->order[dim];
3197 gfc_start_block (&loop->code[n]);
3199 loop->loopvar[n] = gfc_create_var (gfc_array_index_type, "Q");
3201 gfc_trans_preloop_setup (loop, dim, 2, &loop->code[n]);
3204 /* Start a block for the secondary copying code. */
3205 gfc_start_block (body);
3209 /* Precalculate (either lower or upper) bound of an array section.
3210 BLOCK: Block in which the (pre)calculation code will go.
3211 BOUNDS[DIM]: Where the bound value will be stored once evaluated.
3212 VALUES[DIM]: Specified bound (NULL <=> unspecified).
3213 DESC: Array descriptor from which the bound will be picked if unspecified
3214 (either lower or upper bound according to LBOUND). */
3217 evaluate_bound (stmtblock_t *block, tree *bounds, gfc_expr ** values,
3218 tree desc, int dim, bool lbound)
3221 gfc_expr * input_val = values[dim];
3222 tree *output = &bounds[dim];
3227 /* Specified section bound. */
3228 gfc_init_se (&se, NULL);
3229 gfc_conv_expr_type (&se, input_val, gfc_array_index_type);
3230 gfc_add_block_to_block (block, &se.pre);
3235 /* No specific bound specified so use the bound of the array. */
3236 *output = lbound ? gfc_conv_array_lbound (desc, dim) :
3237 gfc_conv_array_ubound (desc, dim);
3239 *output = gfc_evaluate_now (*output, block);
3243 /* Calculate the lower bound of an array section. */
3246 gfc_conv_section_startstride (gfc_loopinfo * loop, gfc_ss * ss, int dim)
3248 gfc_expr *stride = NULL;
3251 gfc_array_info *info;
3254 gcc_assert (ss->info->type == GFC_SS_SECTION);
3256 info = &ss->data.info;
3257 ar = &info->ref->u.ar;
3259 if (ar->dimen_type[dim] == DIMEN_VECTOR)
3261 /* We use a zero-based index to access the vector. */
3262 info->start[dim] = gfc_index_zero_node;
3263 info->end[dim] = NULL;
3264 info->stride[dim] = gfc_index_one_node;
3268 gcc_assert (ar->dimen_type[dim] == DIMEN_RANGE
3269 || ar->dimen_type[dim] == DIMEN_THIS_IMAGE);
3270 desc = info->descriptor;
3271 stride = ar->stride[dim];
3273 /* Calculate the start of the range. For vector subscripts this will
3274 be the range of the vector. */
3275 evaluate_bound (&loop->pre, info->start, ar->start, desc, dim, true);
3277 /* Similarly calculate the end. Although this is not used in the
3278 scalarizer, it is needed when checking bounds and where the end
3279 is an expression with side-effects. */
3280 evaluate_bound (&loop->pre, info->end, ar->end, desc, dim, false);
3282 /* Calculate the stride. */
3284 info->stride[dim] = gfc_index_one_node;
3287 gfc_init_se (&se, NULL);
3288 gfc_conv_expr_type (&se, stride, gfc_array_index_type);
3289 gfc_add_block_to_block (&loop->pre, &se.pre);
3290 info->stride[dim] = gfc_evaluate_now (se.expr, &loop->pre);
3295 /* Calculates the range start and stride for a SS chain. Also gets the
3296 descriptor and data pointer. The range of vector subscripts is the size
3297 of the vector. Array bounds are also checked. */
3300 gfc_conv_ss_startstride (gfc_loopinfo * loop)
3308 /* Determine the rank of the loop. */
3309 for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
3311 switch (ss->info->type)
3313 case GFC_SS_SECTION:
3314 case GFC_SS_CONSTRUCTOR:
3315 case GFC_SS_FUNCTION:
3316 case GFC_SS_COMPONENT:
3317 loop->dimen = ss->dimen;
3320 /* As usual, lbound and ubound are exceptions!. */
3321 case GFC_SS_INTRINSIC:
3322 switch (ss->info->expr->value.function.isym->id)
3324 case GFC_ISYM_LBOUND:
3325 case GFC_ISYM_UBOUND:
3326 case GFC_ISYM_LCOBOUND:
3327 case GFC_ISYM_UCOBOUND:
3328 case GFC_ISYM_THIS_IMAGE:
3329 loop->dimen = ss->dimen;
3341 /* We should have determined the rank of the expression by now. If
3342 not, that's bad news. */
3346 /* Loop over all the SS in the chain. */
3347 for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
3349 gfc_ss_info *ss_info;
3350 gfc_array_info *info;
3354 expr = ss_info->expr;
3355 info = &ss->data.info;
3357 if (expr && expr->shape && !info->shape)
3358 info->shape = expr->shape;
3360 switch (ss_info->type)
3362 case GFC_SS_SECTION:
3363 /* Get the descriptor for the array. */
3364 gfc_conv_ss_descriptor (&loop->pre, ss, !loop->array_parameter);
3366 for (n = 0; n < ss->dimen; n++)
3367 gfc_conv_section_startstride (loop, ss, ss->dim[n]);
3370 case GFC_SS_INTRINSIC:
3371 switch (expr->value.function.isym->id)
3373 /* Fall through to supply start and stride. */
3374 case GFC_ISYM_LBOUND:
3375 case GFC_ISYM_UBOUND:
3376 case GFC_ISYM_LCOBOUND:
3377 case GFC_ISYM_UCOBOUND:
3378 case GFC_ISYM_THIS_IMAGE:
3385 case GFC_SS_CONSTRUCTOR:
3386 case GFC_SS_FUNCTION:
3387 for (n = 0; n < ss->dimen; n++)
3389 int dim = ss->dim[n];
3391 ss->data.info.start[dim] = gfc_index_zero_node;
3392 ss->data.info.end[dim] = gfc_index_zero_node;
3393 ss->data.info.stride[dim] = gfc_index_one_node;
3402 /* The rest is just runtime bound checking. */
3403 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
3406 tree lbound, ubound;
3408 tree size[GFC_MAX_DIMENSIONS];
3409 tree stride_pos, stride_neg, non_zerosized, tmp2, tmp3;
3410 gfc_array_info *info;
3414 gfc_start_block (&block);
3416 for (n = 0; n < loop->dimen; n++)
3417 size[n] = NULL_TREE;
3419 for (ss = loop->ss; ss != gfc_ss_terminator; ss = ss->loop_chain)
3422 gfc_ss_info *ss_info;
3425 const char *expr_name;