1 /* Array translation routines
2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
4 Contributed by Paul Brook <paul@nowt.org>
5 and Steven Bosscher <s.bosscher@student.tudelft.nl>
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2, or (at your option) any later
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to the Free
21 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
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 subecripts 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"
84 #include "tree-gimple.h"
91 #include "trans-stmt.h"
92 #include "trans-types.h"
93 #include "trans-array.h"
94 #include "trans-const.h"
95 #include "dependency.h"
97 static gfc_ss
*gfc_walk_subexpr (gfc_ss
*, gfc_expr
*);
98 static bool gfc_get_array_constructor_size (mpz_t
*, gfc_constructor
*);
100 /* The contents of this structure aren't actually used, just the address. */
101 static gfc_ss gfc_ss_terminator_var
;
102 gfc_ss
* const gfc_ss_terminator
= &gfc_ss_terminator_var
;
106 gfc_array_dataptr_type (tree desc
)
108 return (GFC_TYPE_ARRAY_DATAPTR_TYPE (TREE_TYPE (desc
)));
112 /* Build expressions to access the members of an array descriptor.
113 It's surprisingly easy to mess up here, so never access
114 an array descriptor by "brute force", always use these
115 functions. This also avoids problems if we change the format
116 of an array descriptor.
118 To understand these magic numbers, look at the comments
119 before gfc_build_array_type() in trans-types.c.
121 The code within these defines should be the only code which knows the format
122 of an array descriptor.
124 Any code just needing to read obtain the bounds of an array should use
125 gfc_conv_array_* rather than the following functions as these will return
126 know constant values, and work with arrays which do not have descriptors.
128 Don't forget to #undef these! */
131 #define OFFSET_FIELD 1
132 #define DTYPE_FIELD 2
133 #define DIMENSION_FIELD 3
135 #define STRIDE_SUBFIELD 0
136 #define LBOUND_SUBFIELD 1
137 #define UBOUND_SUBFIELD 2
139 /* This provides READ-ONLY access to the data field. The field itself
140 doesn't have the proper type. */
143 gfc_conv_descriptor_data_get (tree desc
)
147 type
= TREE_TYPE (desc
);
148 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type
));
150 field
= TYPE_FIELDS (type
);
151 gcc_assert (DATA_FIELD
== 0);
153 t
= build3 (COMPONENT_REF
, TREE_TYPE (field
), desc
, field
, NULL_TREE
);
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_tuples. */
168 gfc_conv_descriptor_data_set_internal (stmtblock_t
*block
,
169 tree desc
, tree value
,
174 type
= TREE_TYPE (desc
);
175 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type
));
177 field
= TYPE_FIELDS (type
);
178 gcc_assert (DATA_FIELD
== 0);
180 t
= build3 (COMPONENT_REF
, TREE_TYPE (field
), desc
, field
, NULL_TREE
);
181 gfc_add_modify (block
, t
, fold_convert (TREE_TYPE (field
), value
), tuples_p
);
185 /* This provides address access to the data field. This should only be
186 used by array allocation, passing this on to the runtime. */
189 gfc_conv_descriptor_data_addr (tree desc
)
193 type
= TREE_TYPE (desc
);
194 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type
));
196 field
= TYPE_FIELDS (type
);
197 gcc_assert (DATA_FIELD
== 0);
199 t
= build3 (COMPONENT_REF
, TREE_TYPE (field
), desc
, field
, NULL_TREE
);
200 return build_fold_addr_expr (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 build3 (COMPONENT_REF
, TREE_TYPE (field
), desc
, field
, NULL_TREE
);
219 gfc_conv_descriptor_dtype (tree desc
)
224 type
= TREE_TYPE (desc
);
225 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type
));
227 field
= gfc_advance_chain (TYPE_FIELDS (type
), DTYPE_FIELD
);
228 gcc_assert (field
!= NULL_TREE
&& TREE_TYPE (field
) == gfc_array_index_type
);
230 return build3 (COMPONENT_REF
, TREE_TYPE (field
), desc
, field
, NULL_TREE
);
234 gfc_conv_descriptor_dimension (tree desc
, tree dim
)
240 type
= TREE_TYPE (desc
);
241 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type
));
243 field
= gfc_advance_chain (TYPE_FIELDS (type
), DIMENSION_FIELD
);
244 gcc_assert (field
!= NULL_TREE
245 && TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
246 && TREE_CODE (TREE_TYPE (TREE_TYPE (field
))) == RECORD_TYPE
);
248 tmp
= build3 (COMPONENT_REF
, TREE_TYPE (field
), desc
, field
, NULL_TREE
);
249 tmp
= gfc_build_array_ref (tmp
, dim
);
254 gfc_conv_descriptor_stride (tree desc
, tree dim
)
259 tmp
= gfc_conv_descriptor_dimension (desc
, dim
);
260 field
= TYPE_FIELDS (TREE_TYPE (tmp
));
261 field
= gfc_advance_chain (field
, STRIDE_SUBFIELD
);
262 gcc_assert (field
!= NULL_TREE
&& TREE_TYPE (field
) == gfc_array_index_type
);
264 tmp
= build3 (COMPONENT_REF
, TREE_TYPE (field
), tmp
, field
, NULL_TREE
);
269 gfc_conv_descriptor_lbound (tree desc
, tree dim
)
274 tmp
= gfc_conv_descriptor_dimension (desc
, dim
);
275 field
= TYPE_FIELDS (TREE_TYPE (tmp
));
276 field
= gfc_advance_chain (field
, LBOUND_SUBFIELD
);
277 gcc_assert (field
!= NULL_TREE
&& TREE_TYPE (field
) == gfc_array_index_type
);
279 tmp
= build3 (COMPONENT_REF
, TREE_TYPE (field
), tmp
, field
, NULL_TREE
);
284 gfc_conv_descriptor_ubound (tree desc
, tree dim
)
289 tmp
= gfc_conv_descriptor_dimension (desc
, dim
);
290 field
= TYPE_FIELDS (TREE_TYPE (tmp
));
291 field
= gfc_advance_chain (field
, UBOUND_SUBFIELD
);
292 gcc_assert (field
!= NULL_TREE
&& TREE_TYPE (field
) == gfc_array_index_type
);
294 tmp
= build3 (COMPONENT_REF
, TREE_TYPE (field
), tmp
, field
, NULL_TREE
);
299 /* Build a null array descriptor constructor. */
302 gfc_build_null_descriptor (tree type
)
307 gcc_assert (GFC_DESCRIPTOR_TYPE_P (type
));
308 gcc_assert (DATA_FIELD
== 0);
309 field
= TYPE_FIELDS (type
);
311 /* Set a NULL data pointer. */
312 tmp
= build_constructor_single (type
, field
, null_pointer_node
);
313 TREE_CONSTANT (tmp
) = 1;
314 TREE_INVARIANT (tmp
) = 1;
315 /* All other fields are ignored. */
321 /* Cleanup those #defines. */
326 #undef DIMENSION_FIELD
327 #undef STRIDE_SUBFIELD
328 #undef LBOUND_SUBFIELD
329 #undef UBOUND_SUBFIELD
332 /* Mark a SS chain as used. Flags specifies in which loops the SS is used.
333 flags & 1 = Main loop body.
334 flags & 2 = temp copy loop. */
337 gfc_mark_ss_chain_used (gfc_ss
* ss
, unsigned flags
)
339 for (; ss
!= gfc_ss_terminator
; ss
= ss
->next
)
340 ss
->useflags
= flags
;
343 static void gfc_free_ss (gfc_ss
*);
346 /* Free a gfc_ss chain. */
349 gfc_free_ss_chain (gfc_ss
* ss
)
353 while (ss
!= gfc_ss_terminator
)
355 gcc_assert (ss
!= NULL
);
366 gfc_free_ss (gfc_ss
* ss
)
373 for (n
= 0; n
< GFC_MAX_DIMENSIONS
; n
++)
375 if (ss
->data
.info
.subscript
[n
])
376 gfc_free_ss_chain (ss
->data
.info
.subscript
[n
]);
388 /* Free all the SS associated with a loop. */
391 gfc_cleanup_loop (gfc_loopinfo
* loop
)
397 while (ss
!= gfc_ss_terminator
)
399 gcc_assert (ss
!= NULL
);
400 next
= ss
->loop_chain
;
407 /* Associate a SS chain with a loop. */
410 gfc_add_ss_to_loop (gfc_loopinfo
* loop
, gfc_ss
* head
)
414 if (head
== gfc_ss_terminator
)
418 for (; ss
&& ss
!= gfc_ss_terminator
; ss
= ss
->next
)
420 if (ss
->next
== gfc_ss_terminator
)
421 ss
->loop_chain
= loop
->ss
;
423 ss
->loop_chain
= ss
->next
;
425 gcc_assert (ss
== gfc_ss_terminator
);
430 /* Generate an initializer for a static pointer or allocatable array. */
433 gfc_trans_static_array_pointer (gfc_symbol
* sym
)
437 gcc_assert (TREE_STATIC (sym
->backend_decl
));
438 /* Just zero the data member. */
439 type
= TREE_TYPE (sym
->backend_decl
);
440 DECL_INITIAL (sym
->backend_decl
) = gfc_build_null_descriptor (type
);
444 /* If the bounds of SE's loop have not yet been set, see if they can be
445 determined from array spec AS, which is the array spec of a called
446 function. MAPPING maps the callee's dummy arguments to the values
447 that the caller is passing. Add any initialization and finalization
451 gfc_set_loop_bounds_from_array_spec (gfc_interface_mapping
* mapping
,
452 gfc_se
* se
, gfc_array_spec
* as
)
460 if (as
&& as
->type
== AS_EXPLICIT
)
461 for (dim
= 0; dim
< se
->loop
->dimen
; dim
++)
463 n
= se
->loop
->order
[dim
];
464 if (se
->loop
->to
[n
] == NULL_TREE
)
466 /* Evaluate the lower bound. */
467 gfc_init_se (&tmpse
, NULL
);
468 gfc_apply_interface_mapping (mapping
, &tmpse
, as
->lower
[dim
]);
469 gfc_add_block_to_block (&se
->pre
, &tmpse
.pre
);
470 gfc_add_block_to_block (&se
->post
, &tmpse
.post
);
473 /* ...and the upper bound. */
474 gfc_init_se (&tmpse
, NULL
);
475 gfc_apply_interface_mapping (mapping
, &tmpse
, as
->upper
[dim
]);
476 gfc_add_block_to_block (&se
->pre
, &tmpse
.pre
);
477 gfc_add_block_to_block (&se
->post
, &tmpse
.post
);
480 /* Set the upper bound of the loop to UPPER - LOWER. */
481 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
, upper
, lower
);
482 tmp
= gfc_evaluate_now (tmp
, &se
->pre
);
483 se
->loop
->to
[n
] = tmp
;
489 /* Generate code to allocate an array temporary, or create a variable to
490 hold the data. If size is NULL, zero the descriptor so that the
491 callee will allocate the array. If DEALLOC is true, also generate code to
492 free the array afterwards.
494 Initialization code is added to PRE and finalization code to POST.
495 DYNAMIC is true if the caller may want to extend the array later
496 using realloc. This prevents us from putting the array on the stack. */
499 gfc_trans_allocate_array_storage (stmtblock_t
* pre
, stmtblock_t
* post
,
500 gfc_ss_info
* info
, tree size
, tree nelem
,
501 bool dynamic
, bool dealloc
)
508 desc
= info
->descriptor
;
509 info
->offset
= gfc_index_zero_node
;
510 if (size
== NULL_TREE
|| integer_zerop (size
))
512 /* A callee allocated array. */
513 gfc_conv_descriptor_data_set (pre
, desc
, null_pointer_node
);
518 /* Allocate the temporary. */
519 onstack
= !dynamic
&& gfc_can_put_var_on_stack (size
);
523 /* Make a temporary variable to hold the data. */
524 tmp
= fold_build2 (MINUS_EXPR
, TREE_TYPE (nelem
), nelem
,
526 tmp
= build_range_type (gfc_array_index_type
, gfc_index_zero_node
,
528 tmp
= build_array_type (gfc_get_element_type (TREE_TYPE (desc
)),
530 tmp
= gfc_create_var (tmp
, "A");
531 tmp
= build_fold_addr_expr (tmp
);
532 gfc_conv_descriptor_data_set (pre
, desc
, tmp
);
536 /* Allocate memory to hold the data. */
537 args
= gfc_chainon_list (NULL_TREE
, size
);
539 if (gfc_index_integer_kind
== 4)
540 tmp
= gfor_fndecl_internal_malloc
;
541 else if (gfc_index_integer_kind
== 8)
542 tmp
= gfor_fndecl_internal_malloc64
;
545 tmp
= build_function_call_expr (tmp
, args
);
546 tmp
= gfc_evaluate_now (tmp
, pre
);
547 gfc_conv_descriptor_data_set (pre
, desc
, tmp
);
550 info
->data
= gfc_conv_descriptor_data_get (desc
);
552 /* The offset is zero because we create temporaries with a zero
554 tmp
= gfc_conv_descriptor_offset (desc
);
555 gfc_add_modify_expr (pre
, tmp
, gfc_index_zero_node
);
557 if (dealloc
&& !onstack
)
559 /* Free the temporary. */
560 tmp
= gfc_conv_descriptor_data_get (desc
);
561 tmp
= fold_convert (pvoid_type_node
, tmp
);
562 tmp
= gfc_chainon_list (NULL_TREE
, tmp
);
563 tmp
= build_function_call_expr (gfor_fndecl_internal_free
, tmp
);
564 gfc_add_expr_to_block (post
, tmp
);
569 /* Generate code to create and initialize the descriptor for a temporary
570 array. This is used for both temporaries needed by the scalarizer, and
571 functions returning arrays. Adjusts the loop variables to be
572 zero-based, and calculates the loop bounds for callee allocated arrays.
573 Allocate the array unless it's callee allocated (we have a callee
574 allocated array if 'callee_alloc' is true, or if loop->to[n] is
575 NULL_TREE for any n). Also fills in the descriptor, data and offset
576 fields of info if known. Returns the size of the array, or NULL for a
577 callee allocated array.
579 PRE, POST, DYNAMIC and DEALLOC are as for gfc_trans_allocate_array_storage.
583 gfc_trans_create_temp_array (stmtblock_t
* pre
, stmtblock_t
* post
,
584 gfc_loopinfo
* loop
, gfc_ss_info
* info
,
585 tree eltype
, bool dynamic
, bool dealloc
,
586 bool callee_alloc
, bool function
)
598 stmtblock_t thenblock
;
599 stmtblock_t elseblock
;
603 gcc_assert (info
->dimen
> 0);
604 /* Set the lower bound to zero. */
605 for (dim
= 0; dim
< info
->dimen
; dim
++)
607 n
= loop
->order
[dim
];
608 if (n
< loop
->temp_dim
)
609 gcc_assert (integer_zerop (loop
->from
[n
]));
612 /* Callee allocated arrays may not have a known bound yet. */
614 loop
->to
[n
] = fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
615 loop
->to
[n
], loop
->from
[n
]);
616 loop
->from
[n
] = gfc_index_zero_node
;
619 info
->delta
[dim
] = gfc_index_zero_node
;
620 info
->start
[dim
] = gfc_index_zero_node
;
621 info
->end
[dim
] = gfc_index_zero_node
;
622 info
->stride
[dim
] = gfc_index_one_node
;
623 info
->dim
[dim
] = dim
;
626 /* Initialize the descriptor. */
628 gfc_get_array_type_bounds (eltype
, info
->dimen
, loop
->from
, loop
->to
, 1);
629 desc
= gfc_create_var (type
, "atmp");
630 GFC_DECL_PACKED_ARRAY (desc
) = 1;
632 info
->descriptor
= desc
;
633 size
= gfc_index_one_node
;
635 /* Fill in the array dtype. */
636 tmp
= gfc_conv_descriptor_dtype (desc
);
637 gfc_add_modify_expr (pre
, tmp
, gfc_get_dtype (TREE_TYPE (desc
)));
640 Fill in the bounds and stride. This is a packed array, so:
643 for (n = 0; n < rank; n++)
646 delta = ubound[n] + 1 - lbound[n];
649 size = size * sizeof(element);
654 for (n
= 0; n
< info
->dimen
; n
++)
656 if (loop
->to
[n
] == NULL_TREE
)
658 /* For a callee allocated array express the loop bounds in terms
659 of the descriptor fields. */
660 tmp
= build2 (MINUS_EXPR
, gfc_array_index_type
,
661 gfc_conv_descriptor_ubound (desc
, gfc_rank_cst
[n
]),
662 gfc_conv_descriptor_lbound (desc
, gfc_rank_cst
[n
]));
668 /* Store the stride and bound components in the descriptor. */
669 tmp
= gfc_conv_descriptor_stride (desc
, gfc_rank_cst
[n
]);
670 gfc_add_modify_expr (pre
, tmp
, size
);
672 tmp
= gfc_conv_descriptor_lbound (desc
, gfc_rank_cst
[n
]);
673 gfc_add_modify_expr (pre
, tmp
, gfc_index_zero_node
);
675 tmp
= gfc_conv_descriptor_ubound (desc
, gfc_rank_cst
[n
]);
676 gfc_add_modify_expr (pre
, tmp
, loop
->to
[n
]);
678 tmp
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
679 loop
->to
[n
], gfc_index_one_node
);
683 /* Check whether the size for this dimension is negative. */
684 cond
= fold_build2 (LE_EXPR
, boolean_type_node
, tmp
,
685 gfc_index_zero_node
);
687 cond
= gfc_evaluate_now (cond
, pre
);
692 or_expr
= fold_build2 (TRUTH_OR_EXPR
, boolean_type_node
, or_expr
, cond
);
694 size
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, size
, tmp
);
695 size
= gfc_evaluate_now (size
, pre
);
698 /* Get the size of the array. */
700 if (size
&& !callee_alloc
)
704 /* If we know at compile-time whether any dimension size is
705 negative, we can avoid a conditional and pass the true size
706 to gfc_trans_allocate_array_storage, which can then decide
707 whether to allocate this on the heap or on the stack. */
708 if (integer_zerop (or_expr
))
710 else if (integer_onep (or_expr
))
711 size
= gfc_index_zero_node
;
714 var
= gfc_create_var (TREE_TYPE (size
), "size");
715 gfc_start_block (&thenblock
);
716 gfc_add_modify_expr (&thenblock
, var
, gfc_index_zero_node
);
717 thencase
= gfc_finish_block (&thenblock
);
719 gfc_start_block (&elseblock
);
720 gfc_add_modify_expr (&elseblock
, var
, size
);
721 elsecase
= gfc_finish_block (&elseblock
);
723 tmp
= gfc_evaluate_now (or_expr
, pre
);
724 tmp
= build3_v (COND_EXPR
, tmp
, thencase
, elsecase
);
725 gfc_add_expr_to_block (pre
, tmp
);
731 size
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, size
,
732 TYPE_SIZE_UNIT (gfc_get_element_type (type
)));
740 gfc_trans_allocate_array_storage (pre
, post
, info
, size
, nelem
, dynamic
,
743 if (info
->dimen
> loop
->temp_dim
)
744 loop
->temp_dim
= info
->dimen
;
750 /* Generate code to transpose array EXPR by creating a new descriptor
751 in which the dimension specifications have been reversed. */
754 gfc_conv_array_transpose (gfc_se
* se
, gfc_expr
* expr
)
756 tree dest
, src
, dest_index
, src_index
;
758 gfc_ss_info
*dest_info
, *src_info
;
759 gfc_ss
*dest_ss
, *src_ss
;
765 src_ss
= gfc_walk_expr (expr
);
768 src_info
= &src_ss
->data
.info
;
769 dest_info
= &dest_ss
->data
.info
;
770 gcc_assert (dest_info
->dimen
== 2);
771 gcc_assert (src_info
->dimen
== 2);
773 /* Get a descriptor for EXPR. */
774 gfc_init_se (&src_se
, NULL
);
775 gfc_conv_expr_descriptor (&src_se
, expr
, src_ss
);
776 gfc_add_block_to_block (&se
->pre
, &src_se
.pre
);
777 gfc_add_block_to_block (&se
->post
, &src_se
.post
);
780 /* Allocate a new descriptor for the return value. */
781 dest
= gfc_create_var (TREE_TYPE (src
), "atmp");
782 dest_info
->descriptor
= dest
;
785 /* Copy across the dtype field. */
786 gfc_add_modify_expr (&se
->pre
,
787 gfc_conv_descriptor_dtype (dest
),
788 gfc_conv_descriptor_dtype (src
));
790 /* Copy the dimension information, renumbering dimension 1 to 0 and
792 for (n
= 0; n
< 2; n
++)
794 dest_info
->delta
[n
] = gfc_index_zero_node
;
795 dest_info
->start
[n
] = gfc_index_zero_node
;
796 dest_info
->end
[n
] = gfc_index_zero_node
;
797 dest_info
->stride
[n
] = gfc_index_one_node
;
798 dest_info
->dim
[n
] = n
;
800 dest_index
= gfc_rank_cst
[n
];
801 src_index
= gfc_rank_cst
[1 - n
];
803 gfc_add_modify_expr (&se
->pre
,
804 gfc_conv_descriptor_stride (dest
, dest_index
),
805 gfc_conv_descriptor_stride (src
, src_index
));
807 gfc_add_modify_expr (&se
->pre
,
808 gfc_conv_descriptor_lbound (dest
, dest_index
),
809 gfc_conv_descriptor_lbound (src
, src_index
));
811 gfc_add_modify_expr (&se
->pre
,
812 gfc_conv_descriptor_ubound (dest
, dest_index
),
813 gfc_conv_descriptor_ubound (src
, src_index
));
817 gcc_assert (integer_zerop (loop
->from
[n
]));
818 loop
->to
[n
] = build2 (MINUS_EXPR
, gfc_array_index_type
,
819 gfc_conv_descriptor_ubound (dest
, dest_index
),
820 gfc_conv_descriptor_lbound (dest
, dest_index
));
824 /* Copy the data pointer. */
825 dest_info
->data
= gfc_conv_descriptor_data_get (src
);
826 gfc_conv_descriptor_data_set (&se
->pre
, dest
, dest_info
->data
);
828 /* Copy the offset. This is not changed by transposition: the top-left
829 element is still at the same offset as before. */
830 dest_info
->offset
= gfc_conv_descriptor_offset (src
);
831 gfc_add_modify_expr (&se
->pre
,
832 gfc_conv_descriptor_offset (dest
),
835 if (dest_info
->dimen
> loop
->temp_dim
)
836 loop
->temp_dim
= dest_info
->dimen
;
840 /* Return the number of iterations in a loop that starts at START,
841 ends at END, and has step STEP. */
844 gfc_get_iteration_count (tree start
, tree end
, tree step
)
849 type
= TREE_TYPE (step
);
850 tmp
= fold_build2 (MINUS_EXPR
, type
, end
, start
);
851 tmp
= fold_build2 (FLOOR_DIV_EXPR
, type
, tmp
, step
);
852 tmp
= fold_build2 (PLUS_EXPR
, type
, tmp
, build_int_cst (type
, 1));
853 tmp
= fold_build2 (MAX_EXPR
, type
, tmp
, build_int_cst (type
, 0));
854 return fold_convert (gfc_array_index_type
, tmp
);
858 /* Extend the data in array DESC by EXTRA elements. */
861 gfc_grow_array (stmtblock_t
* pblock
, tree desc
, tree extra
)
868 if (integer_zerop (extra
))
871 ubound
= gfc_conv_descriptor_ubound (desc
, gfc_rank_cst
[0]);
873 /* Add EXTRA to the upper bound. */
874 tmp
= build2 (PLUS_EXPR
, gfc_array_index_type
, ubound
, extra
);
875 gfc_add_modify_expr (pblock
, ubound
, tmp
);
877 /* Get the value of the current data pointer. */
878 tmp
= gfc_conv_descriptor_data_get (desc
);
879 args
= gfc_chainon_list (NULL_TREE
, tmp
);
881 /* Calculate the new array size. */
882 size
= TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (desc
)));
883 tmp
= build2 (PLUS_EXPR
, gfc_array_index_type
, ubound
, gfc_index_one_node
);
884 tmp
= build2 (MULT_EXPR
, gfc_array_index_type
, tmp
, size
);
885 args
= gfc_chainon_list (args
, tmp
);
887 /* Pick the appropriate realloc function. */
888 if (gfc_index_integer_kind
== 4)
889 tmp
= gfor_fndecl_internal_realloc
;
890 else if (gfc_index_integer_kind
== 8)
891 tmp
= gfor_fndecl_internal_realloc64
;
895 /* Set the new data pointer. */
896 tmp
= build_function_call_expr (tmp
, args
);
897 gfc_conv_descriptor_data_set (pblock
, desc
, tmp
);
901 /* Return true if the bounds of iterator I can only be determined
905 gfc_iterator_has_dynamic_bounds (gfc_iterator
* i
)
907 return (i
->start
->expr_type
!= EXPR_CONSTANT
908 || i
->end
->expr_type
!= EXPR_CONSTANT
909 || i
->step
->expr_type
!= EXPR_CONSTANT
);
913 /* Split the size of constructor element EXPR into the sum of two terms,
914 one of which can be determined at compile time and one of which must
915 be calculated at run time. Set *SIZE to the former and return true
916 if the latter might be nonzero. */
919 gfc_get_array_constructor_element_size (mpz_t
* size
, gfc_expr
* expr
)
921 if (expr
->expr_type
== EXPR_ARRAY
)
922 return gfc_get_array_constructor_size (size
, expr
->value
.constructor
);
923 else if (expr
->rank
> 0)
925 /* Calculate everything at run time. */
926 mpz_set_ui (*size
, 0);
931 /* A single element. */
932 mpz_set_ui (*size
, 1);
938 /* Like gfc_get_array_constructor_element_size, but applied to the whole
939 of array constructor C. */
942 gfc_get_array_constructor_size (mpz_t
* size
, gfc_constructor
* c
)
949 mpz_set_ui (*size
, 0);
954 for (; c
; c
= c
->next
)
957 if (i
&& gfc_iterator_has_dynamic_bounds (i
))
961 dynamic
|= gfc_get_array_constructor_element_size (&len
, c
->expr
);
964 /* Multiply the static part of the element size by the
965 number of iterations. */
966 mpz_sub (val
, i
->end
->value
.integer
, i
->start
->value
.integer
);
967 mpz_fdiv_q (val
, val
, i
->step
->value
.integer
);
968 mpz_add_ui (val
, val
, 1);
969 if (mpz_sgn (val
) > 0)
970 mpz_mul (len
, len
, val
);
974 mpz_add (*size
, *size
, len
);
983 /* Make sure offset is a variable. */
986 gfc_put_offset_into_var (stmtblock_t
* pblock
, tree
* poffset
,
989 /* We should have already created the offset variable. We cannot
990 create it here because we may be in an inner scope. */
991 gcc_assert (*offsetvar
!= NULL_TREE
);
992 gfc_add_modify_expr (pblock
, *offsetvar
, *poffset
);
993 *poffset
= *offsetvar
;
994 TREE_USED (*offsetvar
) = 1;
998 /* Assign an element of an array constructor. */
1001 gfc_trans_array_ctor_element (stmtblock_t
* pblock
, tree desc
,
1002 tree offset
, gfc_se
* se
, gfc_expr
* expr
)
1007 gfc_conv_expr (se
, expr
);
1009 /* Store the value. */
1010 tmp
= build_fold_indirect_ref (gfc_conv_descriptor_data_get (desc
));
1011 tmp
= gfc_build_array_ref (tmp
, offset
);
1012 if (expr
->ts
.type
== BT_CHARACTER
)
1014 gfc_conv_string_parameter (se
);
1015 if (POINTER_TYPE_P (TREE_TYPE (tmp
)))
1017 /* The temporary is an array of pointers. */
1018 se
->expr
= fold_convert (TREE_TYPE (tmp
), se
->expr
);
1019 gfc_add_modify_expr (&se
->pre
, tmp
, se
->expr
);
1023 /* The temporary is an array of string values. */
1024 tmp
= gfc_build_addr_expr (pchar_type_node
, tmp
);
1025 /* We know the temporary and the value will be the same length,
1026 so can use memcpy. */
1027 args
= gfc_chainon_list (NULL_TREE
, tmp
);
1028 args
= gfc_chainon_list (args
, se
->expr
);
1029 args
= gfc_chainon_list (args
, se
->string_length
);
1030 tmp
= built_in_decls
[BUILT_IN_MEMCPY
];
1031 tmp
= build_function_call_expr (tmp
, args
);
1032 gfc_add_expr_to_block (&se
->pre
, tmp
);
1037 /* TODO: Should the frontend already have done this conversion? */
1038 se
->expr
= fold_convert (TREE_TYPE (tmp
), se
->expr
);
1039 gfc_add_modify_expr (&se
->pre
, tmp
, se
->expr
);
1042 gfc_add_block_to_block (pblock
, &se
->pre
);
1043 gfc_add_block_to_block (pblock
, &se
->post
);
1047 /* Add the contents of an array to the constructor. DYNAMIC is as for
1048 gfc_trans_array_constructor_value. */
1051 gfc_trans_array_constructor_subarray (stmtblock_t
* pblock
,
1052 tree type ATTRIBUTE_UNUSED
,
1053 tree desc
, gfc_expr
* expr
,
1054 tree
* poffset
, tree
* offsetvar
,
1065 /* We need this to be a variable so we can increment it. */
1066 gfc_put_offset_into_var (pblock
, poffset
, offsetvar
);
1068 gfc_init_se (&se
, NULL
);
1070 /* Walk the array expression. */
1071 ss
= gfc_walk_expr (expr
);
1072 gcc_assert (ss
!= gfc_ss_terminator
);
1074 /* Initialize the scalarizer. */
1075 gfc_init_loopinfo (&loop
);
1076 gfc_add_ss_to_loop (&loop
, ss
);
1078 /* Initialize the loop. */
1079 gfc_conv_ss_startstride (&loop
);
1080 gfc_conv_loop_setup (&loop
);
1082 /* Make sure the constructed array has room for the new data. */
1085 /* Set SIZE to the total number of elements in the subarray. */
1086 size
= gfc_index_one_node
;
1087 for (n
= 0; n
< loop
.dimen
; n
++)
1089 tmp
= gfc_get_iteration_count (loop
.from
[n
], loop
.to
[n
],
1090 gfc_index_one_node
);
1091 size
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, size
, tmp
);
1094 /* Grow the constructed array by SIZE elements. */
1095 gfc_grow_array (&loop
.pre
, desc
, size
);
1098 /* Make the loop body. */
1099 gfc_mark_ss_chain_used (ss
, 1);
1100 gfc_start_scalarized_body (&loop
, &body
);
1101 gfc_copy_loopinfo_to_se (&se
, &loop
);
1104 gfc_trans_array_ctor_element (&body
, desc
, *poffset
, &se
, expr
);
1105 gcc_assert (se
.ss
== gfc_ss_terminator
);
1107 /* Increment the offset. */
1108 tmp
= build2 (PLUS_EXPR
, gfc_array_index_type
, *poffset
, gfc_index_one_node
);
1109 gfc_add_modify_expr (&body
, *poffset
, tmp
);
1111 /* Finish the loop. */
1112 gfc_trans_scalarizing_loops (&loop
, &body
);
1113 gfc_add_block_to_block (&loop
.pre
, &loop
.post
);
1114 tmp
= gfc_finish_block (&loop
.pre
);
1115 gfc_add_expr_to_block (pblock
, tmp
);
1117 gfc_cleanup_loop (&loop
);
1121 /* Assign the values to the elements of an array constructor. DYNAMIC
1122 is true if descriptor DESC only contains enough data for the static
1123 size calculated by gfc_get_array_constructor_size. When true, memory
1124 for the dynamic parts must be allocated using realloc. */
1127 gfc_trans_array_constructor_value (stmtblock_t
* pblock
, tree type
,
1128 tree desc
, gfc_constructor
* c
,
1129 tree
* poffset
, tree
* offsetvar
,
1138 for (; c
; c
= c
->next
)
1140 /* If this is an iterator or an array, the offset must be a variable. */
1141 if ((c
->iterator
|| c
->expr
->rank
> 0) && INTEGER_CST_P (*poffset
))
1142 gfc_put_offset_into_var (pblock
, poffset
, offsetvar
);
1144 gfc_start_block (&body
);
1146 if (c
->expr
->expr_type
== EXPR_ARRAY
)
1148 /* Array constructors can be nested. */
1149 gfc_trans_array_constructor_value (&body
, type
, desc
,
1150 c
->expr
->value
.constructor
,
1151 poffset
, offsetvar
, dynamic
);
1153 else if (c
->expr
->rank
> 0)
1155 gfc_trans_array_constructor_subarray (&body
, type
, desc
, c
->expr
,
1156 poffset
, offsetvar
, dynamic
);
1160 /* This code really upsets the gimplifier so don't bother for now. */
1167 while (p
&& !(p
->iterator
|| p
->expr
->expr_type
!= EXPR_CONSTANT
))
1174 /* Scalar values. */
1175 gfc_init_se (&se
, NULL
);
1176 gfc_trans_array_ctor_element (&body
, desc
, *poffset
,
1179 *poffset
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
1180 *poffset
, gfc_index_one_node
);
1184 /* Collect multiple scalar constants into a constructor. */
1192 /* Count the number of consecutive scalar constants. */
1193 while (p
&& !(p
->iterator
1194 || p
->expr
->expr_type
!= EXPR_CONSTANT
))
1196 gfc_init_se (&se
, NULL
);
1197 gfc_conv_constant (&se
, p
->expr
);
1198 if (p
->expr
->ts
.type
== BT_CHARACTER
1199 && POINTER_TYPE_P (type
))
1201 /* For constant character array constructors we build
1202 an array of pointers. */
1203 se
.expr
= gfc_build_addr_expr (pchar_type_node
,
1207 list
= tree_cons (NULL_TREE
, se
.expr
, list
);
1212 bound
= build_int_cst (NULL_TREE
, n
- 1);
1213 /* Create an array type to hold them. */
1214 tmptype
= build_range_type (gfc_array_index_type
,
1215 gfc_index_zero_node
, bound
);
1216 tmptype
= build_array_type (type
, tmptype
);
1218 init
= build_constructor_from_list (tmptype
, nreverse (list
));
1219 TREE_CONSTANT (init
) = 1;
1220 TREE_INVARIANT (init
) = 1;
1221 TREE_STATIC (init
) = 1;
1222 /* Create a static variable to hold the data. */
1223 tmp
= gfc_create_var (tmptype
, "data");
1224 TREE_STATIC (tmp
) = 1;
1225 TREE_CONSTANT (tmp
) = 1;
1226 TREE_INVARIANT (tmp
) = 1;
1227 TREE_READONLY (tmp
) = 1;
1228 DECL_INITIAL (tmp
) = init
;
1231 /* Use BUILTIN_MEMCPY to assign the values. */
1232 tmp
= gfc_conv_descriptor_data_get (desc
);
1233 tmp
= build_fold_indirect_ref (tmp
);
1234 tmp
= gfc_build_array_ref (tmp
, *poffset
);
1235 tmp
= build_fold_addr_expr (tmp
);
1236 init
= build_fold_addr_expr (init
);
1238 size
= TREE_INT_CST_LOW (TYPE_SIZE_UNIT (type
));
1239 bound
= build_int_cst (NULL_TREE
, n
* size
);
1240 tmp
= gfc_chainon_list (NULL_TREE
, tmp
);
1241 tmp
= gfc_chainon_list (tmp
, init
);
1242 tmp
= gfc_chainon_list (tmp
, bound
);
1243 tmp
= build_function_call_expr (built_in_decls
[BUILT_IN_MEMCPY
],
1245 gfc_add_expr_to_block (&body
, tmp
);
1247 *poffset
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
1248 *poffset
, build_int_cst (NULL_TREE
, n
));
1250 if (!INTEGER_CST_P (*poffset
))
1252 gfc_add_modify_expr (&body
, *offsetvar
, *poffset
);
1253 *poffset
= *offsetvar
;
1257 /* The frontend should already have done any expansions possible
1261 /* Pass the code as is. */
1262 tmp
= gfc_finish_block (&body
);
1263 gfc_add_expr_to_block (pblock
, tmp
);
1267 /* Build the implied do-loop. */
1277 loopbody
= gfc_finish_block (&body
);
1279 gfc_init_se (&se
, NULL
);
1280 gfc_conv_expr (&se
, c
->iterator
->var
);
1281 gfc_add_block_to_block (pblock
, &se
.pre
);
1284 /* Make a temporary, store the current value in that
1285 and return it, once the loop is done. */
1286 tmp_loopvar
= gfc_create_var (TREE_TYPE (loopvar
), "loopvar");
1287 gfc_add_modify_expr (pblock
, tmp_loopvar
, loopvar
);
1289 /* Initialize the loop. */
1290 gfc_init_se (&se
, NULL
);
1291 gfc_conv_expr_val (&se
, c
->iterator
->start
);
1292 gfc_add_block_to_block (pblock
, &se
.pre
);
1293 gfc_add_modify_expr (pblock
, loopvar
, se
.expr
);
1295 gfc_init_se (&se
, NULL
);
1296 gfc_conv_expr_val (&se
, c
->iterator
->end
);
1297 gfc_add_block_to_block (pblock
, &se
.pre
);
1298 end
= gfc_evaluate_now (se
.expr
, pblock
);
1300 gfc_init_se (&se
, NULL
);
1301 gfc_conv_expr_val (&se
, c
->iterator
->step
);
1302 gfc_add_block_to_block (pblock
, &se
.pre
);
1303 step
= gfc_evaluate_now (se
.expr
, pblock
);
1305 /* If this array expands dynamically, and the number of iterations
1306 is not constant, we won't have allocated space for the static
1307 part of C->EXPR's size. Do that now. */
1308 if (dynamic
&& gfc_iterator_has_dynamic_bounds (c
->iterator
))
1310 /* Get the number of iterations. */
1311 tmp
= gfc_get_iteration_count (loopvar
, end
, step
);
1313 /* Get the static part of C->EXPR's size. */
1314 gfc_get_array_constructor_element_size (&size
, c
->expr
);
1315 tmp2
= gfc_conv_mpz_to_tree (size
, gfc_index_integer_kind
);
1317 /* Grow the array by TMP * TMP2 elements. */
1318 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, tmp
, tmp2
);
1319 gfc_grow_array (pblock
, desc
, tmp
);
1322 /* Generate the loop body. */
1323 exit_label
= gfc_build_label_decl (NULL_TREE
);
1324 gfc_start_block (&body
);
1326 /* Generate the exit condition. Depending on the sign of
1327 the step variable we have to generate the correct
1329 tmp
= fold_build2 (GT_EXPR
, boolean_type_node
, step
,
1330 build_int_cst (TREE_TYPE (step
), 0));
1331 cond
= fold_build3 (COND_EXPR
, boolean_type_node
, tmp
,
1332 build2 (GT_EXPR
, boolean_type_node
,
1334 build2 (LT_EXPR
, boolean_type_node
,
1336 tmp
= build1_v (GOTO_EXPR
, exit_label
);
1337 TREE_USED (exit_label
) = 1;
1338 tmp
= build3_v (COND_EXPR
, cond
, tmp
, build_empty_stmt ());
1339 gfc_add_expr_to_block (&body
, tmp
);
1341 /* The main loop body. */
1342 gfc_add_expr_to_block (&body
, loopbody
);
1344 /* Increase loop variable by step. */
1345 tmp
= build2 (PLUS_EXPR
, TREE_TYPE (loopvar
), loopvar
, step
);
1346 gfc_add_modify_expr (&body
, loopvar
, tmp
);
1348 /* Finish the loop. */
1349 tmp
= gfc_finish_block (&body
);
1350 tmp
= build1_v (LOOP_EXPR
, tmp
);
1351 gfc_add_expr_to_block (pblock
, tmp
);
1353 /* Add the exit label. */
1354 tmp
= build1_v (LABEL_EXPR
, exit_label
);
1355 gfc_add_expr_to_block (pblock
, tmp
);
1357 /* Restore the original value of the loop counter. */
1358 gfc_add_modify_expr (pblock
, loopvar
, tmp_loopvar
);
1365 /* Figure out the string length of a variable reference expression.
1366 Used by get_array_ctor_strlen. */
1369 get_array_ctor_var_strlen (gfc_expr
* expr
, tree
* len
)
1375 /* Don't bother if we already know the length is a constant. */
1376 if (*len
&& INTEGER_CST_P (*len
))
1379 ts
= &expr
->symtree
->n
.sym
->ts
;
1380 for (ref
= expr
->ref
; ref
; ref
= ref
->next
)
1385 /* Array references don't change the string length. */
1389 /* Use the length of the component. */
1390 ts
= &ref
->u
.c
.component
->ts
;
1394 if (ref
->u
.ss
.start
->expr_type
!= EXPR_CONSTANT
1395 || ref
->u
.ss
.start
->expr_type
!= EXPR_CONSTANT
)
1397 mpz_init_set_ui (char_len
, 1);
1398 mpz_add (char_len
, char_len
, ref
->u
.ss
.end
->value
.integer
);
1399 mpz_sub (char_len
, char_len
, ref
->u
.ss
.start
->value
.integer
);
1400 *len
= gfc_conv_mpz_to_tree (char_len
,
1401 gfc_default_character_kind
);
1402 *len
= convert (gfc_charlen_type_node
, *len
);
1403 mpz_clear (char_len
);
1407 /* TODO: Substrings are tricky because we can't evaluate the
1408 expression more than once. For now we just give up, and hope
1409 we can figure it out elsewhere. */
1414 *len
= ts
->cl
->backend_decl
;
1418 /* Figure out the string length of a character array constructor.
1419 Returns TRUE if all elements are character constants. */
1422 get_array_ctor_strlen (gfc_constructor
* c
, tree
* len
)
1427 for (; c
; c
= c
->next
)
1429 switch (c
->expr
->expr_type
)
1432 if (!(*len
&& INTEGER_CST_P (*len
)))
1433 *len
= build_int_cstu (gfc_charlen_type_node
,
1434 c
->expr
->value
.character
.length
);
1438 if (!get_array_ctor_strlen (c
->expr
->value
.constructor
, len
))
1444 get_array_ctor_var_strlen (c
->expr
, len
);
1450 /* Hope that whatever we have possesses a constant character
1452 if (!(*len
&& INTEGER_CST_P (*len
)) && c
->expr
->ts
.cl
)
1454 gfc_conv_const_charlen (c
->expr
->ts
.cl
);
1455 *len
= c
->expr
->ts
.cl
->backend_decl
;
1457 /* TODO: For now we just ignore anything we don't know how to
1458 handle, and hope we can figure it out a different way. */
1466 /* Check whether the array constructor C consists entirely of constant
1467 elements, and if so returns the number of those elements, otherwise
1468 return zero. Note, an empty or NULL array constructor returns zero. */
1470 unsigned HOST_WIDE_INT
1471 gfc_constant_array_constructor_p (gfc_constructor
* c
)
1473 unsigned HOST_WIDE_INT nelem
= 0;
1478 || c
->expr
->rank
> 0
1479 || c
->expr
->expr_type
!= EXPR_CONSTANT
)
1488 /* Given EXPR, the constant array constructor specified by an EXPR_ARRAY,
1489 and the tree type of it's elements, TYPE, return a static constant
1490 variable that is compile-time initialized. */
1493 gfc_build_constant_array_constructor (gfc_expr
* expr
, tree type
)
1495 tree tmptype
, list
, init
, tmp
;
1496 HOST_WIDE_INT nelem
;
1502 /* First traverse the constructor list, converting the constants
1503 to tree to build an initializer. */
1506 c
= expr
->value
.constructor
;
1509 gfc_init_se (&se
, NULL
);
1510 gfc_conv_constant (&se
, c
->expr
);
1511 if (c
->expr
->ts
.type
== BT_CHARACTER
1512 && POINTER_TYPE_P (type
))
1513 se
.expr
= gfc_build_addr_expr (pchar_type_node
, se
.expr
);
1514 list
= tree_cons (NULL_TREE
, se
.expr
, list
);
1519 /* Next determine the tree type for the array. We use the gfortran
1520 front-end's gfc_get_nodesc_array_type in order to create a suitable
1521 GFC_ARRAY_TYPE_P that may be used by the scalarizer. */
1523 memset (&as
, 0, sizeof (gfc_array_spec
));
1526 as
.type
= AS_EXPLICIT
;
1527 as
.lower
[0] = gfc_int_expr (0);
1528 as
.upper
[0] = gfc_int_expr (nelem
- 1);
1529 tmptype
= gfc_get_nodesc_array_type (type
, &as
, 3);
1531 init
= build_constructor_from_list (tmptype
, nreverse (list
));
1533 TREE_CONSTANT (init
) = 1;
1534 TREE_INVARIANT (init
) = 1;
1535 TREE_STATIC (init
) = 1;
1537 tmp
= gfc_create_var (tmptype
, "A");
1538 TREE_STATIC (tmp
) = 1;
1539 TREE_CONSTANT (tmp
) = 1;
1540 TREE_INVARIANT (tmp
) = 1;
1541 TREE_READONLY (tmp
) = 1;
1542 DECL_INITIAL (tmp
) = init
;
1548 /* Translate a constant EXPR_ARRAY array constructor for the scalarizer.
1549 This mostly initializes the scalarizer state info structure with the
1550 appropriate values to directly use the array created by the function
1551 gfc_build_constant_array_constructor. */
1554 gfc_trans_constant_array_constructor (gfc_loopinfo
* loop
,
1555 gfc_ss
* ss
, tree type
)
1560 tmp
= gfc_build_constant_array_constructor (ss
->expr
, type
);
1562 info
= &ss
->data
.info
;
1564 info
->descriptor
= tmp
;
1565 info
->data
= build_fold_addr_expr (tmp
);
1566 info
->offset
= fold_build1 (NEGATE_EXPR
, gfc_array_index_type
,
1569 info
->delta
[0] = gfc_index_zero_node
;
1570 info
->start
[0] = gfc_index_zero_node
;
1571 info
->end
[0] = gfc_index_zero_node
;
1572 info
->stride
[0] = gfc_index_one_node
;
1575 if (info
->dimen
> loop
->temp_dim
)
1576 loop
->temp_dim
= info
->dimen
;
1580 /* Array constructors are handled by constructing a temporary, then using that
1581 within the scalarization loop. This is not optimal, but seems by far the
1585 gfc_trans_array_constructor (gfc_loopinfo
* loop
, gfc_ss
* ss
)
1594 ss
->data
.info
.dimen
= loop
->dimen
;
1596 c
= ss
->expr
->value
.constructor
;
1597 if (ss
->expr
->ts
.type
== BT_CHARACTER
)
1599 bool const_string
= get_array_ctor_strlen (c
, &ss
->string_length
);
1600 if (!ss
->string_length
)
1601 gfc_todo_error ("complex character array constructors");
1603 type
= gfc_get_character_type_len (ss
->expr
->ts
.kind
, ss
->string_length
);
1605 type
= build_pointer_type (type
);
1608 type
= gfc_typenode_for_spec (&ss
->expr
->ts
);
1610 /* See if the constructor determines the loop bounds. */
1612 if (loop
->to
[0] == NULL_TREE
)
1616 /* We should have a 1-dimensional, zero-based loop. */
1617 gcc_assert (loop
->dimen
== 1);
1618 gcc_assert (integer_zerop (loop
->from
[0]));
1620 /* Split the constructor size into a static part and a dynamic part.
1621 Allocate the static size up-front and record whether the dynamic
1622 size might be nonzero. */
1624 dynamic
= gfc_get_array_constructor_size (&size
, c
);
1625 mpz_sub_ui (size
, size
, 1);
1626 loop
->to
[0] = gfc_conv_mpz_to_tree (size
, gfc_index_integer_kind
);
1630 /* Special case constant array constructors. */
1633 && INTEGER_CST_P (loop
->from
[0])
1634 && INTEGER_CST_P (loop
->to
[0]))
1636 unsigned HOST_WIDE_INT nelem
= gfc_constant_array_constructor_p (c
);
1639 tree diff
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
1640 loop
->to
[0], loop
->from
[0]);
1641 if (compare_tree_int (diff
, nelem
- 1) == 0)
1643 gfc_trans_constant_array_constructor (loop
, ss
, type
);
1649 gfc_trans_create_temp_array (&loop
->pre
, &loop
->post
, loop
, &ss
->data
.info
,
1650 type
, dynamic
, true, false, false);
1652 desc
= ss
->data
.info
.descriptor
;
1653 offset
= gfc_index_zero_node
;
1654 offsetvar
= gfc_create_var_np (gfc_array_index_type
, "offset");
1655 TREE_USED (offsetvar
) = 0;
1656 gfc_trans_array_constructor_value (&loop
->pre
, type
, desc
, c
,
1657 &offset
, &offsetvar
, dynamic
);
1659 /* If the array grows dynamically, the upper bound of the loop variable
1660 is determined by the array's final upper bound. */
1662 loop
->to
[0] = gfc_conv_descriptor_ubound (desc
, gfc_rank_cst
[0]);
1664 if (TREE_USED (offsetvar
))
1665 pushdecl (offsetvar
);
1667 gcc_assert (INTEGER_CST_P (offset
));
1669 /* Disable bound checking for now because it's probably broken. */
1670 if (flag_bounds_check
)
1678 /* INFO describes a GFC_SS_SECTION in loop LOOP, and this function is
1679 called after evaluating all of INFO's vector dimensions. Go through
1680 each such vector dimension and see if we can now fill in any missing
1684 gfc_set_vector_loop_bounds (gfc_loopinfo
* loop
, gfc_ss_info
* info
)
1693 for (n
= 0; n
< loop
->dimen
; n
++)
1696 if (info
->ref
->u
.ar
.dimen_type
[dim
] == DIMEN_VECTOR
1697 && loop
->to
[n
] == NULL
)
1699 /* Loop variable N indexes vector dimension DIM, and we don't
1700 yet know the upper bound of loop variable N. Set it to the
1701 difference between the vector's upper and lower bounds. */
1702 gcc_assert (loop
->from
[n
] == gfc_index_zero_node
);
1703 gcc_assert (info
->subscript
[dim
]
1704 && info
->subscript
[dim
]->type
== GFC_SS_VECTOR
);
1706 gfc_init_se (&se
, NULL
);
1707 desc
= info
->subscript
[dim
]->data
.info
.descriptor
;
1708 zero
= gfc_rank_cst
[0];
1709 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
1710 gfc_conv_descriptor_ubound (desc
, zero
),
1711 gfc_conv_descriptor_lbound (desc
, zero
));
1712 tmp
= gfc_evaluate_now (tmp
, &loop
->pre
);
1719 /* Add the pre and post chains for all the scalar expressions in a SS chain
1720 to loop. This is called after the loop parameters have been calculated,
1721 but before the actual scalarizing loops. */
1724 gfc_add_loop_ss_code (gfc_loopinfo
* loop
, gfc_ss
* ss
, bool subscript
)
1729 /* TODO: This can generate bad code if there are ordering dependencies.
1730 eg. a callee allocated function and an unknown size constructor. */
1731 gcc_assert (ss
!= NULL
);
1733 for (; ss
!= gfc_ss_terminator
; ss
= ss
->loop_chain
)
1740 /* Scalar expression. Evaluate this now. This includes elemental
1741 dimension indices, but not array section bounds. */
1742 gfc_init_se (&se
, NULL
);
1743 gfc_conv_expr (&se
, ss
->expr
);
1744 gfc_add_block_to_block (&loop
->pre
, &se
.pre
);
1746 if (ss
->expr
->ts
.type
!= BT_CHARACTER
)
1748 /* Move the evaluation of scalar expressions outside the
1749 scalarization loop. */
1751 se
.expr
= convert(gfc_array_index_type
, se
.expr
);
1752 se
.expr
= gfc_evaluate_now (se
.expr
, &loop
->pre
);
1753 gfc_add_block_to_block (&loop
->pre
, &se
.post
);
1756 gfc_add_block_to_block (&loop
->post
, &se
.post
);
1758 ss
->data
.scalar
.expr
= se
.expr
;
1759 ss
->string_length
= se
.string_length
;
1762 case GFC_SS_REFERENCE
:
1763 /* Scalar reference. Evaluate this now. */
1764 gfc_init_se (&se
, NULL
);
1765 gfc_conv_expr_reference (&se
, ss
->expr
);
1766 gfc_add_block_to_block (&loop
->pre
, &se
.pre
);
1767 gfc_add_block_to_block (&loop
->post
, &se
.post
);
1769 ss
->data
.scalar
.expr
= gfc_evaluate_now (se
.expr
, &loop
->pre
);
1770 ss
->string_length
= se
.string_length
;
1773 case GFC_SS_SECTION
:
1774 /* Add the expressions for scalar and vector subscripts. */
1775 for (n
= 0; n
< GFC_MAX_DIMENSIONS
; n
++)
1776 if (ss
->data
.info
.subscript
[n
])
1777 gfc_add_loop_ss_code (loop
, ss
->data
.info
.subscript
[n
], true);
1779 gfc_set_vector_loop_bounds (loop
, &ss
->data
.info
);
1783 /* Get the vector's descriptor and store it in SS. */
1784 gfc_init_se (&se
, NULL
);
1785 gfc_conv_expr_descriptor (&se
, ss
->expr
, gfc_walk_expr (ss
->expr
));
1786 gfc_add_block_to_block (&loop
->pre
, &se
.pre
);
1787 gfc_add_block_to_block (&loop
->post
, &se
.post
);
1788 ss
->data
.info
.descriptor
= se
.expr
;
1791 case GFC_SS_INTRINSIC
:
1792 gfc_add_intrinsic_ss_code (loop
, ss
);
1795 case GFC_SS_FUNCTION
:
1796 /* Array function return value. We call the function and save its
1797 result in a temporary for use inside the loop. */
1798 gfc_init_se (&se
, NULL
);
1801 gfc_conv_expr (&se
, ss
->expr
);
1802 gfc_add_block_to_block (&loop
->pre
, &se
.pre
);
1803 gfc_add_block_to_block (&loop
->post
, &se
.post
);
1804 ss
->string_length
= se
.string_length
;
1807 case GFC_SS_CONSTRUCTOR
:
1808 gfc_trans_array_constructor (loop
, ss
);
1812 case GFC_SS_COMPONENT
:
1813 /* Do nothing. These are handled elsewhere. */
1823 /* Translate expressions for the descriptor and data pointer of a SS. */
1827 gfc_conv_ss_descriptor (stmtblock_t
* block
, gfc_ss
* ss
, int base
)
1832 /* Get the descriptor for the array to be scalarized. */
1833 gcc_assert (ss
->expr
->expr_type
== EXPR_VARIABLE
);
1834 gfc_init_se (&se
, NULL
);
1835 se
.descriptor_only
= 1;
1836 gfc_conv_expr_lhs (&se
, ss
->expr
);
1837 gfc_add_block_to_block (block
, &se
.pre
);
1838 ss
->data
.info
.descriptor
= se
.expr
;
1839 ss
->string_length
= se
.string_length
;
1843 /* Also the data pointer. */
1844 tmp
= gfc_conv_array_data (se
.expr
);
1845 /* If this is a variable or address of a variable we use it directly.
1846 Otherwise we must evaluate it now to avoid breaking dependency
1847 analysis by pulling the expressions for elemental array indices
1850 || (TREE_CODE (tmp
) == ADDR_EXPR
1851 && DECL_P (TREE_OPERAND (tmp
, 0)))))
1852 tmp
= gfc_evaluate_now (tmp
, block
);
1853 ss
->data
.info
.data
= tmp
;
1855 tmp
= gfc_conv_array_offset (se
.expr
);
1856 ss
->data
.info
.offset
= gfc_evaluate_now (tmp
, block
);
1861 /* Initialize a gfc_loopinfo structure. */
1864 gfc_init_loopinfo (gfc_loopinfo
* loop
)
1868 memset (loop
, 0, sizeof (gfc_loopinfo
));
1869 gfc_init_block (&loop
->pre
);
1870 gfc_init_block (&loop
->post
);
1872 /* Initially scalarize in order. */
1873 for (n
= 0; n
< GFC_MAX_DIMENSIONS
; n
++)
1876 loop
->ss
= gfc_ss_terminator
;
1880 /* Copies the loop variable info to a gfc_se structure. Does not copy the SS
1884 gfc_copy_loopinfo_to_se (gfc_se
* se
, gfc_loopinfo
* loop
)
1890 /* Return an expression for the data pointer of an array. */
1893 gfc_conv_array_data (tree descriptor
)
1897 type
= TREE_TYPE (descriptor
);
1898 if (GFC_ARRAY_TYPE_P (type
))
1900 if (TREE_CODE (type
) == POINTER_TYPE
)
1904 /* Descriptorless arrays. */
1905 return build_fold_addr_expr (descriptor
);
1909 return gfc_conv_descriptor_data_get (descriptor
);
1913 /* Return an expression for the base offset of an array. */
1916 gfc_conv_array_offset (tree descriptor
)
1920 type
= TREE_TYPE (descriptor
);
1921 if (GFC_ARRAY_TYPE_P (type
))
1922 return GFC_TYPE_ARRAY_OFFSET (type
);
1924 return gfc_conv_descriptor_offset (descriptor
);
1928 /* Get an expression for the array stride. */
1931 gfc_conv_array_stride (tree descriptor
, int dim
)
1936 type
= TREE_TYPE (descriptor
);
1938 /* For descriptorless arrays use the array size. */
1939 tmp
= GFC_TYPE_ARRAY_STRIDE (type
, dim
);
1940 if (tmp
!= NULL_TREE
)
1943 tmp
= gfc_conv_descriptor_stride (descriptor
, gfc_rank_cst
[dim
]);
1948 /* Like gfc_conv_array_stride, but for the lower bound. */
1951 gfc_conv_array_lbound (tree descriptor
, int dim
)
1956 type
= TREE_TYPE (descriptor
);
1958 tmp
= GFC_TYPE_ARRAY_LBOUND (type
, dim
);
1959 if (tmp
!= NULL_TREE
)
1962 tmp
= gfc_conv_descriptor_lbound (descriptor
, gfc_rank_cst
[dim
]);
1967 /* Like gfc_conv_array_stride, but for the upper bound. */
1970 gfc_conv_array_ubound (tree descriptor
, int dim
)
1975 type
= TREE_TYPE (descriptor
);
1977 tmp
= GFC_TYPE_ARRAY_UBOUND (type
, dim
);
1978 if (tmp
!= NULL_TREE
)
1981 /* This should only ever happen when passing an assumed shape array
1982 as an actual parameter. The value will never be used. */
1983 if (GFC_ARRAY_TYPE_P (TREE_TYPE (descriptor
)))
1984 return gfc_index_zero_node
;
1986 tmp
= gfc_conv_descriptor_ubound (descriptor
, gfc_rank_cst
[dim
]);
1991 /* Generate code to perform an array index bound check. */
1994 gfc_trans_array_bound_check (gfc_se
* se
, tree descriptor
, tree index
, int n
,
2000 const char * name
= NULL
;
2002 if (!flag_bounds_check
)
2005 index
= gfc_evaluate_now (index
, &se
->pre
);
2007 /* We find a name for the error message. */
2009 name
= se
->ss
->expr
->symtree
->name
;
2011 if (!name
&& se
->loop
&& se
->loop
->ss
&& se
->loop
->ss
->expr
2012 && se
->loop
->ss
->expr
->symtree
)
2013 name
= se
->loop
->ss
->expr
->symtree
->name
;
2015 if (!name
&& se
->loop
&& se
->loop
->ss
&& se
->loop
->ss
->loop_chain
2016 && se
->loop
->ss
->loop_chain
->expr
2017 && se
->loop
->ss
->loop_chain
->expr
->symtree
)
2018 name
= se
->loop
->ss
->loop_chain
->expr
->symtree
->name
;
2020 if (!name
&& se
->loop
&& se
->loop
->ss
&& se
->loop
->ss
->loop_chain
2021 && se
->loop
->ss
->loop_chain
->expr
->symtree
)
2022 name
= se
->loop
->ss
->loop_chain
->expr
->symtree
->name
;
2024 if (!name
&& se
->loop
&& se
->loop
->ss
&& se
->loop
->ss
->expr
)
2026 if (se
->loop
->ss
->expr
->expr_type
== EXPR_FUNCTION
2027 && se
->loop
->ss
->expr
->value
.function
.name
)
2028 name
= se
->loop
->ss
->expr
->value
.function
.name
;
2030 if (se
->loop
->ss
->type
== GFC_SS_CONSTRUCTOR
2031 || se
->loop
->ss
->type
== GFC_SS_SCALAR
)
2032 name
= "unnamed constant";
2035 /* Check lower bound. */
2036 tmp
= gfc_conv_array_lbound (descriptor
, n
);
2037 fault
= fold_build2 (LT_EXPR
, boolean_type_node
, index
, tmp
);
2039 asprintf (&msg
, "%s for array '%s', lower bound of dimension %d exceeded",
2040 gfc_msg_fault
, name
, n
+1);
2042 asprintf (&msg
, "%s, lower bound of dimension %d exceeded",
2043 gfc_msg_fault
, n
+1);
2044 gfc_trans_runtime_check (fault
, msg
, &se
->pre
, where
);
2047 /* Check upper bound. */
2048 tmp
= gfc_conv_array_ubound (descriptor
, n
);
2049 fault
= fold_build2 (GT_EXPR
, boolean_type_node
, index
, tmp
);
2051 asprintf (&msg
, "%s for array '%s', upper bound of dimension %d exceeded",
2052 gfc_msg_fault
, name
, n
+1);
2054 asprintf (&msg
, "%s, upper bound of dimension %d exceeded",
2055 gfc_msg_fault
, n
+1);
2056 gfc_trans_runtime_check (fault
, msg
, &se
->pre
, where
);
2063 /* Return the offset for an index. Performs bound checking for elemental
2064 dimensions. Single element references are processed separately. */
2067 gfc_conv_array_index_offset (gfc_se
* se
, gfc_ss_info
* info
, int dim
, int i
,
2068 gfc_array_ref
* ar
, tree stride
)
2074 /* Get the index into the array for this dimension. */
2077 gcc_assert (ar
->type
!= AR_ELEMENT
);
2078 switch (ar
->dimen_type
[dim
])
2081 gcc_assert (i
== -1);
2082 /* Elemental dimension. */
2083 gcc_assert (info
->subscript
[dim
]
2084 && info
->subscript
[dim
]->type
== GFC_SS_SCALAR
);
2085 /* We've already translated this value outside the loop. */
2086 index
= info
->subscript
[dim
]->data
.scalar
.expr
;
2088 if ((ar
->as
->type
!= AS_ASSUMED_SIZE
&& !ar
->as
->cp_was_assumed
)
2089 || dim
< ar
->dimen
- 1)
2090 index
= gfc_trans_array_bound_check (se
, info
->descriptor
,
2091 index
, dim
, &ar
->where
);
2095 gcc_assert (info
&& se
->loop
);
2096 gcc_assert (info
->subscript
[dim
]
2097 && info
->subscript
[dim
]->type
== GFC_SS_VECTOR
);
2098 desc
= info
->subscript
[dim
]->data
.info
.descriptor
;
2100 /* Get a zero-based index into the vector. */
2101 index
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
2102 se
->loop
->loopvar
[i
], se
->loop
->from
[i
]);
2104 /* Multiply the index by the stride. */
2105 index
= fold_build2 (MULT_EXPR
, gfc_array_index_type
,
2106 index
, gfc_conv_array_stride (desc
, 0));
2108 /* Read the vector to get an index into info->descriptor. */
2109 data
= build_fold_indirect_ref (gfc_conv_array_data (desc
));
2110 index
= gfc_build_array_ref (data
, index
);
2111 index
= gfc_evaluate_now (index
, &se
->pre
);
2113 /* Do any bounds checking on the final info->descriptor index. */
2114 if ((ar
->as
->type
!= AS_ASSUMED_SIZE
&& !ar
->as
->cp_was_assumed
)
2115 || dim
< ar
->dimen
- 1)
2116 index
= gfc_trans_array_bound_check (se
, info
->descriptor
,
2117 index
, dim
, &ar
->where
);
2121 /* Scalarized dimension. */
2122 gcc_assert (info
&& se
->loop
);
2124 /* Multiply the loop variable by the stride and delta. */
2125 index
= se
->loop
->loopvar
[i
];
2126 if (!integer_onep (info
->stride
[i
]))
2127 index
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, index
,
2129 if (!integer_zerop (info
->delta
[i
]))
2130 index
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, index
,
2140 /* Temporary array or derived type component. */
2141 gcc_assert (se
->loop
);
2142 index
= se
->loop
->loopvar
[se
->loop
->order
[i
]];
2143 if (!integer_zerop (info
->delta
[i
]))
2144 index
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
2145 index
, info
->delta
[i
]);
2148 /* Multiply by the stride. */
2149 if (!integer_onep (stride
))
2150 index
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, index
, stride
);
2156 /* Build a scalarized reference to an array. */
2159 gfc_conv_scalarized_array_ref (gfc_se
* se
, gfc_array_ref
* ar
)
2166 info
= &se
->ss
->data
.info
;
2168 n
= se
->loop
->order
[0];
2172 index
= gfc_conv_array_index_offset (se
, info
, info
->dim
[n
], n
, ar
,
2174 /* Add the offset for this dimension to the stored offset for all other
2176 if (!integer_zerop (info
->offset
))
2177 index
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, index
, info
->offset
);
2179 tmp
= build_fold_indirect_ref (info
->data
);
2180 se
->expr
= gfc_build_array_ref (tmp
, index
);
2184 /* Translate access of temporary array. */
2187 gfc_conv_tmp_array_ref (gfc_se
* se
)
2189 se
->string_length
= se
->ss
->string_length
;
2190 gfc_conv_scalarized_array_ref (se
, NULL
);
2194 /* Build an array reference. se->expr already holds the array descriptor.
2195 This should be either a variable, indirect variable reference or component
2196 reference. For arrays which do not have a descriptor, se->expr will be
2198 a(i, j, k) = base[offset + i * stride[0] + j * stride[1] + k * stride[2]]*/
2201 gfc_conv_array_ref (gfc_se
* se
, gfc_array_ref
* ar
, gfc_symbol
* sym
,
2210 /* Handle scalarized references separately. */
2211 if (ar
->type
!= AR_ELEMENT
)
2213 gfc_conv_scalarized_array_ref (se
, ar
);
2214 gfc_advance_se_ss_chain (se
);
2218 index
= gfc_index_zero_node
;
2220 /* Calculate the offsets from all the dimensions. */
2221 for (n
= 0; n
< ar
->dimen
; n
++)
2223 /* Calculate the index for this dimension. */
2224 gfc_init_se (&indexse
, se
);
2225 gfc_conv_expr_type (&indexse
, ar
->start
[n
], gfc_array_index_type
);
2226 gfc_add_block_to_block (&se
->pre
, &indexse
.pre
);
2228 if (flag_bounds_check
&&
2229 ((ar
->as
->type
!= AS_ASSUMED_SIZE
&& !ar
->as
->cp_was_assumed
)
2230 || n
< ar
->dimen
- 1))
2232 /* Check array bounds. */
2236 tmp
= gfc_conv_array_lbound (se
->expr
, n
);
2237 cond
= fold_build2 (LT_EXPR
, boolean_type_node
,
2239 asprintf (&msg
, "%s for array '%s', "
2240 "lower bound of dimension %d exceeded", gfc_msg_fault
,
2242 gfc_trans_runtime_check (cond
, msg
, &se
->pre
, where
);
2245 tmp
= gfc_conv_array_ubound (se
->expr
, n
);
2246 cond
= fold_build2 (GT_EXPR
, boolean_type_node
,
2248 asprintf (&msg
, "%s for array '%s', "
2249 "upper bound of dimension %d exceeded", gfc_msg_fault
,
2251 gfc_trans_runtime_check (cond
, msg
, &se
->pre
, where
);
2255 /* Multiply the index by the stride. */
2256 stride
= gfc_conv_array_stride (se
->expr
, n
);
2257 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, indexse
.expr
,
2260 /* And add it to the total. */
2261 index
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, index
, tmp
);
2264 tmp
= gfc_conv_array_offset (se
->expr
);
2265 if (!integer_zerop (tmp
))
2266 index
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, index
, tmp
);
2268 /* Access the calculated element. */
2269 tmp
= gfc_conv_array_data (se
->expr
);
2270 tmp
= build_fold_indirect_ref (tmp
);
2271 se
->expr
= gfc_build_array_ref (tmp
, index
);
2275 /* Generate the code to be executed immediately before entering a
2276 scalarization loop. */
2279 gfc_trans_preloop_setup (gfc_loopinfo
* loop
, int dim
, int flag
,
2280 stmtblock_t
* pblock
)
2289 /* This code will be executed before entering the scalarization loop
2290 for this dimension. */
2291 for (ss
= loop
->ss
; ss
!= gfc_ss_terminator
; ss
= ss
->loop_chain
)
2293 if ((ss
->useflags
& flag
) == 0)
2296 if (ss
->type
!= GFC_SS_SECTION
2297 && ss
->type
!= GFC_SS_FUNCTION
&& ss
->type
!= GFC_SS_CONSTRUCTOR
2298 && ss
->type
!= GFC_SS_COMPONENT
)
2301 info
= &ss
->data
.info
;
2303 if (dim
>= info
->dimen
)
2306 if (dim
== info
->dimen
- 1)
2308 /* For the outermost loop calculate the offset due to any
2309 elemental dimensions. It will have been initialized with the
2310 base offset of the array. */
2313 for (i
= 0; i
< info
->ref
->u
.ar
.dimen
; i
++)
2315 if (info
->ref
->u
.ar
.dimen_type
[i
] != DIMEN_ELEMENT
)
2318 gfc_init_se (&se
, NULL
);
2320 se
.expr
= info
->descriptor
;
2321 stride
= gfc_conv_array_stride (info
->descriptor
, i
);
2322 index
= gfc_conv_array_index_offset (&se
, info
, i
, -1,
2325 gfc_add_block_to_block (pblock
, &se
.pre
);
2327 info
->offset
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
2328 info
->offset
, index
);
2329 info
->offset
= gfc_evaluate_now (info
->offset
, pblock
);
2333 stride
= gfc_conv_array_stride (info
->descriptor
, info
->dim
[i
]);
2336 stride
= gfc_conv_array_stride (info
->descriptor
, 0);
2338 /* Calculate the stride of the innermost loop. Hopefully this will
2339 allow the backend optimizers to do their stuff more effectively.
2341 info
->stride0
= gfc_evaluate_now (stride
, pblock
);
2345 /* Add the offset for the previous loop dimension. */
2350 ar
= &info
->ref
->u
.ar
;
2351 i
= loop
->order
[dim
+ 1];
2359 gfc_init_se (&se
, NULL
);
2361 se
.expr
= info
->descriptor
;
2362 stride
= gfc_conv_array_stride (info
->descriptor
, info
->dim
[i
]);
2363 index
= gfc_conv_array_index_offset (&se
, info
, info
->dim
[i
], i
,
2365 gfc_add_block_to_block (pblock
, &se
.pre
);
2366 info
->offset
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
2367 info
->offset
, index
);
2368 info
->offset
= gfc_evaluate_now (info
->offset
, pblock
);
2371 /* Remember this offset for the second loop. */
2372 if (dim
== loop
->temp_dim
- 1)
2373 info
->saved_offset
= info
->offset
;
2378 /* Start a scalarized expression. Creates a scope and declares loop
2382 gfc_start_scalarized_body (gfc_loopinfo
* loop
, stmtblock_t
* pbody
)
2388 gcc_assert (!loop
->array_parameter
);
2390 for (dim
= loop
->dimen
- 1; dim
>= 0; dim
--)
2392 n
= loop
->order
[dim
];
2394 gfc_start_block (&loop
->code
[n
]);
2396 /* Create the loop variable. */
2397 loop
->loopvar
[n
] = gfc_create_var (gfc_array_index_type
, "S");
2399 if (dim
< loop
->temp_dim
)
2403 /* Calculate values that will be constant within this loop. */
2404 gfc_trans_preloop_setup (loop
, dim
, flags
, &loop
->code
[n
]);
2406 gfc_start_block (pbody
);
2410 /* Generates the actual loop code for a scalarization loop. */
2413 gfc_trans_scalarized_loop_end (gfc_loopinfo
* loop
, int n
,
2414 stmtblock_t
* pbody
)
2422 loopbody
= gfc_finish_block (pbody
);
2424 /* Initialize the loopvar. */
2425 gfc_add_modify_expr (&loop
->code
[n
], loop
->loopvar
[n
], loop
->from
[n
]);
2427 exit_label
= gfc_build_label_decl (NULL_TREE
);
2429 /* Generate the loop body. */
2430 gfc_init_block (&block
);
2432 /* The exit condition. */
2433 cond
= build2 (GT_EXPR
, boolean_type_node
, loop
->loopvar
[n
], loop
->to
[n
]);
2434 tmp
= build1_v (GOTO_EXPR
, exit_label
);
2435 TREE_USED (exit_label
) = 1;
2436 tmp
= build3_v (COND_EXPR
, cond
, tmp
, build_empty_stmt ());
2437 gfc_add_expr_to_block (&block
, tmp
);
2439 /* The main body. */
2440 gfc_add_expr_to_block (&block
, loopbody
);
2442 /* Increment the loopvar. */
2443 tmp
= build2 (PLUS_EXPR
, gfc_array_index_type
,
2444 loop
->loopvar
[n
], gfc_index_one_node
);
2445 gfc_add_modify_expr (&block
, loop
->loopvar
[n
], tmp
);
2447 /* Build the loop. */
2448 tmp
= gfc_finish_block (&block
);
2449 tmp
= build1_v (LOOP_EXPR
, tmp
);
2450 gfc_add_expr_to_block (&loop
->code
[n
], tmp
);
2452 /* Add the exit label. */
2453 tmp
= build1_v (LABEL_EXPR
, exit_label
);
2454 gfc_add_expr_to_block (&loop
->code
[n
], tmp
);
2458 /* Finishes and generates the loops for a scalarized expression. */
2461 gfc_trans_scalarizing_loops (gfc_loopinfo
* loop
, stmtblock_t
* body
)
2466 stmtblock_t
*pblock
;
2470 /* Generate the loops. */
2471 for (dim
= 0; dim
< loop
->dimen
; dim
++)
2473 n
= loop
->order
[dim
];
2474 gfc_trans_scalarized_loop_end (loop
, n
, pblock
);
2475 loop
->loopvar
[n
] = NULL_TREE
;
2476 pblock
= &loop
->code
[n
];
2479 tmp
= gfc_finish_block (pblock
);
2480 gfc_add_expr_to_block (&loop
->pre
, tmp
);
2482 /* Clear all the used flags. */
2483 for (ss
= loop
->ss
; ss
; ss
= ss
->loop_chain
)
2488 /* Finish the main body of a scalarized expression, and start the secondary
2492 gfc_trans_scalarized_loop_boundary (gfc_loopinfo
* loop
, stmtblock_t
* body
)
2496 stmtblock_t
*pblock
;
2500 /* We finish as many loops as are used by the temporary. */
2501 for (dim
= 0; dim
< loop
->temp_dim
- 1; dim
++)
2503 n
= loop
->order
[dim
];
2504 gfc_trans_scalarized_loop_end (loop
, n
, pblock
);
2505 loop
->loopvar
[n
] = NULL_TREE
;
2506 pblock
= &loop
->code
[n
];
2509 /* We don't want to finish the outermost loop entirely. */
2510 n
= loop
->order
[loop
->temp_dim
- 1];
2511 gfc_trans_scalarized_loop_end (loop
, n
, pblock
);
2513 /* Restore the initial offsets. */
2514 for (ss
= loop
->ss
; ss
!= gfc_ss_terminator
; ss
= ss
->loop_chain
)
2516 if ((ss
->useflags
& 2) == 0)
2519 if (ss
->type
!= GFC_SS_SECTION
2520 && ss
->type
!= GFC_SS_FUNCTION
&& ss
->type
!= GFC_SS_CONSTRUCTOR
2521 && ss
->type
!= GFC_SS_COMPONENT
)
2524 ss
->data
.info
.offset
= ss
->data
.info
.saved_offset
;
2527 /* Restart all the inner loops we just finished. */
2528 for (dim
= loop
->temp_dim
- 2; dim
>= 0; dim
--)
2530 n
= loop
->order
[dim
];
2532 gfc_start_block (&loop
->code
[n
]);
2534 loop
->loopvar
[n
] = gfc_create_var (gfc_array_index_type
, "Q");
2536 gfc_trans_preloop_setup (loop
, dim
, 2, &loop
->code
[n
]);
2539 /* Start a block for the secondary copying code. */
2540 gfc_start_block (body
);
2544 /* Calculate the upper bound of an array section. */
2547 gfc_conv_section_upper_bound (gfc_ss
* ss
, int n
, stmtblock_t
* pblock
)
2556 gcc_assert (ss
->type
== GFC_SS_SECTION
);
2558 info
= &ss
->data
.info
;
2561 if (info
->ref
->u
.ar
.dimen_type
[dim
] == DIMEN_VECTOR
)
2562 /* We'll calculate the upper bound once we have access to the
2563 vector's descriptor. */
2566 gcc_assert (info
->ref
->u
.ar
.dimen_type
[dim
] == DIMEN_RANGE
);
2567 desc
= info
->descriptor
;
2568 end
= info
->ref
->u
.ar
.end
[dim
];
2572 /* The upper bound was specified. */
2573 gfc_init_se (&se
, NULL
);
2574 gfc_conv_expr_type (&se
, end
, gfc_array_index_type
);
2575 gfc_add_block_to_block (pblock
, &se
.pre
);
2580 /* No upper bound was specified, so use the bound of the array. */
2581 bound
= gfc_conv_array_ubound (desc
, dim
);
2588 /* Calculate the lower bound of an array section. */
2591 gfc_conv_section_startstride (gfc_loopinfo
* loop
, gfc_ss
* ss
, int n
)
2601 gcc_assert (ss
->type
== GFC_SS_SECTION
);
2603 info
= &ss
->data
.info
;
2606 if (info
->ref
->u
.ar
.dimen_type
[dim
] == DIMEN_VECTOR
)
2608 /* We use a zero-based index to access the vector. */
2609 info
->start
[n
] = gfc_index_zero_node
;
2610 info
->end
[n
] = gfc_index_zero_node
;
2611 info
->stride
[n
] = gfc_index_one_node
;
2615 gcc_assert (info
->ref
->u
.ar
.dimen_type
[dim
] == DIMEN_RANGE
);
2616 desc
= info
->descriptor
;
2617 start
= info
->ref
->u
.ar
.start
[dim
];
2618 end
= info
->ref
->u
.ar
.end
[dim
];
2619 stride
= info
->ref
->u
.ar
.stride
[dim
];
2621 /* Calculate the start of the range. For vector subscripts this will
2622 be the range of the vector. */
2625 /* Specified section start. */
2626 gfc_init_se (&se
, NULL
);
2627 gfc_conv_expr_type (&se
, start
, gfc_array_index_type
);
2628 gfc_add_block_to_block (&loop
->pre
, &se
.pre
);
2629 info
->start
[n
] = se
.expr
;
2633 /* No lower bound specified so use the bound of the array. */
2634 info
->start
[n
] = gfc_conv_array_lbound (desc
, dim
);
2636 info
->start
[n
] = gfc_evaluate_now (info
->start
[n
], &loop
->pre
);
2638 /* Similarly calculate the end. Although this is not used in the
2639 scalarizer, it is needed when checking bounds and where the end
2640 is an expression with side-effects. */
2643 /* Specified section start. */
2644 gfc_init_se (&se
, NULL
);
2645 gfc_conv_expr_type (&se
, end
, gfc_array_index_type
);
2646 gfc_add_block_to_block (&loop
->pre
, &se
.pre
);
2647 info
->end
[n
] = se
.expr
;
2651 /* No upper bound specified so use the bound of the array. */
2652 info
->end
[n
] = gfc_conv_array_ubound (desc
, dim
);
2654 info
->end
[n
] = gfc_evaluate_now (info
->end
[n
], &loop
->pre
);
2656 /* Calculate the stride. */
2658 info
->stride
[n
] = gfc_index_one_node
;
2661 gfc_init_se (&se
, NULL
);
2662 gfc_conv_expr_type (&se
, stride
, gfc_array_index_type
);
2663 gfc_add_block_to_block (&loop
->pre
, &se
.pre
);
2664 info
->stride
[n
] = gfc_evaluate_now (se
.expr
, &loop
->pre
);
2669 /* Calculates the range start and stride for a SS chain. Also gets the
2670 descriptor and data pointer. The range of vector subscripts is the size
2671 of the vector. Array bounds are also checked. */
2674 gfc_conv_ss_startstride (gfc_loopinfo
* loop
)
2682 /* Determine the rank of the loop. */
2684 ss
!= gfc_ss_terminator
&& loop
->dimen
== 0; ss
= ss
->loop_chain
)
2688 case GFC_SS_SECTION
:
2689 case GFC_SS_CONSTRUCTOR
:
2690 case GFC_SS_FUNCTION
:
2691 case GFC_SS_COMPONENT
:
2692 loop
->dimen
= ss
->data
.info
.dimen
;
2695 /* As usual, lbound and ubound are exceptions!. */
2696 case GFC_SS_INTRINSIC
:
2697 switch (ss
->expr
->value
.function
.isym
->generic_id
)
2699 case GFC_ISYM_LBOUND
:
2700 case GFC_ISYM_UBOUND
:
2701 loop
->dimen
= ss
->data
.info
.dimen
;
2712 if (loop
->dimen
== 0)
2713 gfc_todo_error ("Unable to determine rank of expression");
2716 /* Loop over all the SS in the chain. */
2717 for (ss
= loop
->ss
; ss
!= gfc_ss_terminator
; ss
= ss
->loop_chain
)
2719 if (ss
->expr
&& ss
->expr
->shape
&& !ss
->shape
)
2720 ss
->shape
= ss
->expr
->shape
;
2724 case GFC_SS_SECTION
:
2725 /* Get the descriptor for the array. */
2726 gfc_conv_ss_descriptor (&loop
->pre
, ss
, !loop
->array_parameter
);
2728 for (n
= 0; n
< ss
->data
.info
.dimen
; n
++)
2729 gfc_conv_section_startstride (loop
, ss
, n
);
2732 case GFC_SS_INTRINSIC
:
2733 switch (ss
->expr
->value
.function
.isym
->generic_id
)
2735 /* Fall through to supply start and stride. */
2736 case GFC_ISYM_LBOUND
:
2737 case GFC_ISYM_UBOUND
:
2743 case GFC_SS_CONSTRUCTOR
:
2744 case GFC_SS_FUNCTION
:
2745 for (n
= 0; n
< ss
->data
.info
.dimen
; n
++)
2747 ss
->data
.info
.start
[n
] = gfc_index_zero_node
;
2748 ss
->data
.info
.end
[n
] = gfc_index_zero_node
;
2749 ss
->data
.info
.stride
[n
] = gfc_index_one_node
;
2758 /* The rest is just runtime bound checking. */
2759 if (flag_bounds_check
)
2762 tree lbound
, ubound
;
2764 tree size
[GFC_MAX_DIMENSIONS
];
2765 tree stride_pos
, stride_neg
, non_zerosized
, tmp2
;
2770 gfc_start_block (&block
);
2772 for (n
= 0; n
< loop
->dimen
; n
++)
2773 size
[n
] = NULL_TREE
;
2775 for (ss
= loop
->ss
; ss
!= gfc_ss_terminator
; ss
= ss
->loop_chain
)
2777 if (ss
->type
!= GFC_SS_SECTION
)
2780 /* TODO: range checking for mapped dimensions. */
2781 info
= &ss
->data
.info
;
2783 /* This code only checks ranges. Elemental and vector
2784 dimensions are checked later. */
2785 for (n
= 0; n
< loop
->dimen
; n
++)
2788 if (info
->ref
->u
.ar
.dimen_type
[dim
] != DIMEN_RANGE
)
2790 if (n
== info
->ref
->u
.ar
.dimen
- 1
2791 && (info
->ref
->u
.ar
.as
->type
== AS_ASSUMED_SIZE
2792 || info
->ref
->u
.ar
.as
->cp_was_assumed
))
2795 desc
= ss
->data
.info
.descriptor
;
2797 /* This is the run-time equivalent of resolve.c's
2798 check_dimension(). The logical is more readable there
2799 than it is here, with all the trees. */
2800 lbound
= gfc_conv_array_lbound (desc
, dim
);
2801 ubound
= gfc_conv_array_ubound (desc
, dim
);
2804 /* Zero stride is not allowed. */
2805 tmp
= fold_build2 (EQ_EXPR
, boolean_type_node
, info
->stride
[n
],
2806 gfc_index_zero_node
);
2807 asprintf (&msg
, "Zero stride is not allowed, for dimension %d "
2808 "of array '%s'", info
->dim
[n
]+1,
2809 ss
->expr
->symtree
->name
);
2810 gfc_trans_runtime_check (tmp
, msg
, &block
, &ss
->expr
->where
);
2813 /* non_zerosized is true when the selected range is not
2815 stride_pos
= fold_build2 (GT_EXPR
, boolean_type_node
,
2816 info
->stride
[n
], gfc_index_zero_node
);
2817 tmp
= fold_build2 (LE_EXPR
, boolean_type_node
, info
->start
[n
],
2819 stride_pos
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
2822 stride_neg
= fold_build2 (LT_EXPR
, boolean_type_node
,
2823 info
->stride
[n
], gfc_index_zero_node
);
2824 tmp
= fold_build2 (GE_EXPR
, boolean_type_node
, info
->start
[n
],
2826 stride_neg
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
2828 non_zerosized
= fold_build2 (TRUTH_OR_EXPR
, boolean_type_node
,
2829 stride_pos
, stride_neg
);
2831 /* Check the start of the range against the lower and upper
2832 bounds of the array, if the range is not empty. */
2833 tmp
= fold_build2 (LT_EXPR
, boolean_type_node
, info
->start
[n
],
2835 tmp
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
2836 non_zerosized
, tmp
);
2837 asprintf (&msg
, "%s, lower bound of dimension %d of array '%s'"
2838 " exceeded", gfc_msg_fault
, info
->dim
[n
]+1,
2839 ss
->expr
->symtree
->name
);
2840 gfc_trans_runtime_check (tmp
, msg
, &block
, &ss
->expr
->where
);
2843 tmp
= fold_build2 (GT_EXPR
, boolean_type_node
, info
->start
[n
],
2845 tmp
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
2846 non_zerosized
, tmp
);
2847 asprintf (&msg
, "%s, upper bound of dimension %d of array '%s'"
2848 " exceeded", gfc_msg_fault
, info
->dim
[n
]+1,
2849 ss
->expr
->symtree
->name
);
2850 gfc_trans_runtime_check (tmp
, msg
, &block
, &ss
->expr
->where
);
2853 /* Compute the last element of the range, which is not
2854 necessarily "end" (think 0:5:3, which doesn't contain 5)
2855 and check it against both lower and upper bounds. */
2856 tmp2
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
, end
,
2858 tmp2
= fold_build2 (TRUNC_MOD_EXPR
, gfc_array_index_type
, tmp2
,
2860 tmp2
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
, end
,
2863 tmp
= fold_build2 (LT_EXPR
, boolean_type_node
, tmp2
, lbound
);
2864 tmp
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
2865 non_zerosized
, tmp
);
2866 asprintf (&msg
, "%s, lower bound of dimension %d of array '%s'"
2867 " exceeded", gfc_msg_fault
, info
->dim
[n
]+1,
2868 ss
->expr
->symtree
->name
);
2869 gfc_trans_runtime_check (tmp
, msg
, &block
, &ss
->expr
->where
);
2872 tmp
= fold_build2 (GT_EXPR
, boolean_type_node
, tmp2
, ubound
);
2873 tmp
= fold_build2 (TRUTH_AND_EXPR
, boolean_type_node
,
2874 non_zerosized
, tmp
);
2875 asprintf (&msg
, "%s, upper bound of dimension %d of array '%s'"
2876 " exceeded", gfc_msg_fault
, info
->dim
[n
]+1,
2877 ss
->expr
->symtree
->name
);
2878 gfc_trans_runtime_check (tmp
, msg
, &block
, &ss
->expr
->where
);
2881 /* Check the section sizes match. */
2882 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
, end
,
2884 tmp
= fold_build2 (FLOOR_DIV_EXPR
, gfc_array_index_type
, tmp
,
2886 /* We remember the size of the first section, and check all the
2887 others against this. */
2891 fold_build2 (NE_EXPR
, boolean_type_node
, tmp
, size
[n
]);
2892 asprintf (&msg
, "%s, size mismatch for dimension %d "
2893 "of array '%s'", gfc_msg_bounds
, info
->dim
[n
]+1,
2894 ss
->expr
->symtree
->name
);
2895 gfc_trans_runtime_check (tmp
, msg
, &block
, &ss
->expr
->where
);
2899 size
[n
] = gfc_evaluate_now (tmp
, &block
);
2903 tmp
= gfc_finish_block (&block
);
2904 gfc_add_expr_to_block (&loop
->pre
, tmp
);
2909 /* Return true if the two SS could be aliased, i.e. both point to the same data
2911 /* TODO: resolve aliases based on frontend expressions. */
2914 gfc_could_be_alias (gfc_ss
* lss
, gfc_ss
* rss
)
2921 lsym
= lss
->expr
->symtree
->n
.sym
;
2922 rsym
= rss
->expr
->symtree
->n
.sym
;
2923 if (gfc_symbols_could_alias (lsym
, rsym
))
2926 if (rsym
->ts
.type
!= BT_DERIVED
2927 && lsym
->ts
.type
!= BT_DERIVED
)
2930 /* For derived types we must check all the component types. We can ignore
2931 array references as these will have the same base type as the previous
2933 for (lref
= lss
->expr
->ref
; lref
!= lss
->data
.info
.ref
; lref
= lref
->next
)
2935 if (lref
->type
!= REF_COMPONENT
)
2938 if (gfc_symbols_could_alias (lref
->u
.c
.sym
, rsym
))
2941 for (rref
= rss
->expr
->ref
; rref
!= rss
->data
.info
.ref
;
2944 if (rref
->type
!= REF_COMPONENT
)
2947 if (gfc_symbols_could_alias (lref
->u
.c
.sym
, rref
->u
.c
.sym
))
2952 for (rref
= rss
->expr
->ref
; rref
!= rss
->data
.info
.ref
; rref
= rref
->next
)
2954 if (rref
->type
!= REF_COMPONENT
)
2957 if (gfc_symbols_could_alias (rref
->u
.c
.sym
, lsym
))
2965 /* Resolve array data dependencies. Creates a temporary if required. */
2966 /* TODO: Calc dependencies with gfc_expr rather than gfc_ss, and move to
2970 gfc_conv_resolve_dependencies (gfc_loopinfo
* loop
, gfc_ss
* dest
,
2980 loop
->temp_ss
= NULL
;
2981 aref
= dest
->data
.info
.ref
;
2984 for (ss
= rss
; ss
!= gfc_ss_terminator
; ss
= ss
->next
)
2986 if (ss
->type
!= GFC_SS_SECTION
)
2989 if (gfc_could_be_alias (dest
, ss
)
2990 || gfc_are_equivalenced_arrays (dest
->expr
, ss
->expr
))
2996 if (dest
->expr
->symtree
->n
.sym
== ss
->expr
->symtree
->n
.sym
)
2998 lref
= dest
->expr
->ref
;
2999 rref
= ss
->expr
->ref
;
3001 nDepend
= gfc_dep_resolver (lref
, rref
);
3003 /* TODO : loop shifting. */
3006 /* Mark the dimensions for LOOP SHIFTING */
3007 for (n
= 0; n
< loop
->dimen
; n
++)
3009 int dim
= dest
->data
.info
.dim
[n
];
3011 if (lref
->u
.ar
.dimen_type
[dim
] == DIMEN_VECTOR
)
3013 else if (! gfc_is_same_range (&lref
->u
.ar
,
3014 &rref
->u
.ar
, dim
, 0))
3018 /* Put all the dimensions with dependencies in the
3021 for (n
= 0; n
< loop
->dimen
; n
++)
3023 gcc_assert (loop
->order
[n
] == n
);
3025 loop
->order
[dim
++] = n
;
3028 for (n
= 0; n
< loop
->dimen
; n
++)
3031 loop
->order
[dim
++] = n
;
3034 gcc_assert (dim
== loop
->dimen
);
3043 tree base_type
= gfc_typenode_for_spec (&dest
->expr
->ts
);
3044 if (GFC_ARRAY_TYPE_P (base_type
)
3045 || GFC_DESCRIPTOR_TYPE_P (base_type
))
3046 base_type
= gfc_get_element_type (base_type
);
3047 loop
->temp_ss
= gfc_get_ss ();
3048 loop
->temp_ss
->type
= GFC_SS_TEMP
;
3049 loop
->temp_ss
->data
.temp
.type
= base_type
;
3050 loop
->temp_ss
->string_length
= dest
->string_length
;
3051 loop
->temp_ss
->data
.temp
.dimen
= loop
->dimen
;
3052 loop
->temp_ss
->next
= gfc_ss_terminator
;
3053 gfc_add_ss_to_loop (loop
, loop
->temp_ss
);
3056 loop
->temp_ss
= NULL
;
3060 /* Initialize the scalarization loop. Creates the loop variables. Determines
3061 the range of the loop variables. Creates a temporary if required.
3062 Calculates how to transform from loop variables to array indices for each
3063 expression. Also generates code for scalar expressions which have been
3064 moved outside the loop. */
3067 gfc_conv_loop_setup (gfc_loopinfo
* loop
)
3072 gfc_ss_info
*specinfo
;
3076 gfc_ss
*loopspec
[GFC_MAX_DIMENSIONS
];
3077 bool dynamic
[GFC_MAX_DIMENSIONS
];
3083 for (n
= 0; n
< loop
->dimen
; n
++)
3087 /* We use one SS term, and use that to determine the bounds of the
3088 loop for this dimension. We try to pick the simplest term. */
3089 for (ss
= loop
->ss
; ss
!= gfc_ss_terminator
; ss
= ss
->loop_chain
)
3093 /* The frontend has worked out the size for us. */
3098 if (ss
->type
== GFC_SS_CONSTRUCTOR
)
3100 /* An unknown size constructor will always be rank one.
3101 Higher rank constructors will either have known shape,
3102 or still be wrapped in a call to reshape. */
3103 gcc_assert (loop
->dimen
== 1);
3105 /* Always prefer to use the constructor bounds if the size
3106 can be determined at compile time. Prefer not to otherwise,
3107 since the general case involves realloc, and it's better to
3108 avoid that overhead if possible. */
3109 c
= ss
->expr
->value
.constructor
;
3110 dynamic
[n
] = gfc_get_array_constructor_size (&i
, c
);
3111 if (!dynamic
[n
] || !loopspec
[n
])
3116 /* TODO: Pick the best bound if we have a choice between a
3117 function and something else. */
3118 if (ss
->type
== GFC_SS_FUNCTION
)
3124 if (ss
->type
!= GFC_SS_SECTION
)
3128 specinfo
= &loopspec
[n
]->data
.info
;
3131 info
= &ss
->data
.info
;
3135 /* Criteria for choosing a loop specifier (most important first):
3136 doesn't need realloc
3142 else if (loopspec
[n
]->type
== GFC_SS_CONSTRUCTOR
&& dynamic
[n
])
3144 else if (integer_onep (info
->stride
[n
])
3145 && !integer_onep (specinfo
->stride
[n
]))
3147 else if (INTEGER_CST_P (info
->stride
[n
])
3148 && !INTEGER_CST_P (specinfo
->stride
[n
]))
3150 else if (INTEGER_CST_P (info
->start
[n
])
3151 && !INTEGER_CST_P (specinfo
->start
[n
]))
3153 /* We don't work out the upper bound.
3154 else if (INTEGER_CST_P (info->finish[n])
3155 && ! INTEGER_CST_P (specinfo->finish[n]))
3156 loopspec[n] = ss; */
3160 gfc_todo_error ("Unable to find scalarization loop specifier");
3162 info
= &loopspec
[n
]->data
.info
;
3164 /* Set the extents of this range. */
3165 cshape
= loopspec
[n
]->shape
;
3166 if (cshape
&& INTEGER_CST_P (info
->start
[n
])
3167 && INTEGER_CST_P (info
->stride
[n
]))
3169 loop
->from
[n
] = info
->start
[n
];
3170 mpz_set (i
, cshape
[n
]);
3171 mpz_sub_ui (i
, i
, 1);
3172 /* To = from + (size - 1) * stride. */
3173 tmp
= gfc_conv_mpz_to_tree (i
, gfc_index_integer_kind
);
3174 if (!integer_onep (info
->stride
[n
]))
3175 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
,
3176 tmp
, info
->stride
[n
]);
3177 loop
->to
[n
] = fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
3178 loop
->from
[n
], tmp
);
3182 loop
->from
[n
] = info
->start
[n
];
3183 switch (loopspec
[n
]->type
)
3185 case GFC_SS_CONSTRUCTOR
:
3186 /* The upper bound is calculated when we expand the
3188 gcc_assert (loop
->to
[n
] == NULL_TREE
);
3191 case GFC_SS_SECTION
:
3192 loop
->to
[n
] = gfc_conv_section_upper_bound (loopspec
[n
], n
,
3196 case GFC_SS_FUNCTION
:
3197 /* The loop bound will be set when we generate the call. */
3198 gcc_assert (loop
->to
[n
] == NULL_TREE
);
3206 /* Transform everything so we have a simple incrementing variable. */
3207 if (integer_onep (info
->stride
[n
]))
3208 info
->delta
[n
] = gfc_index_zero_node
;
3211 /* Set the delta for this section. */
3212 info
->delta
[n
] = gfc_evaluate_now (loop
->from
[n
], &loop
->pre
);
3213 /* Number of iterations is (end - start + step) / step.
3214 with start = 0, this simplifies to
3216 for (i = 0; i<=last; i++){...}; */
3217 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
3218 loop
->to
[n
], loop
->from
[n
]);
3219 tmp
= fold_build2 (TRUNC_DIV_EXPR
, gfc_array_index_type
,
3220 tmp
, info
->stride
[n
]);
3221 loop
->to
[n
] = gfc_evaluate_now (tmp
, &loop
->pre
);
3222 /* Make the loop variable start at 0. */
3223 loop
->from
[n
] = gfc_index_zero_node
;
3227 /* Add all the scalar code that can be taken out of the loops.
3228 This may include calculating the loop bounds, so do it before
3229 allocating the temporary. */
3230 gfc_add_loop_ss_code (loop
, loop
->ss
, false);
3232 /* If we want a temporary then create it. */
3233 if (loop
->temp_ss
!= NULL
)
3235 gcc_assert (loop
->temp_ss
->type
== GFC_SS_TEMP
);
3236 tmp
= loop
->temp_ss
->data
.temp
.type
;
3237 len
= loop
->temp_ss
->string_length
;
3238 n
= loop
->temp_ss
->data
.temp
.dimen
;
3239 memset (&loop
->temp_ss
->data
.info
, 0, sizeof (gfc_ss_info
));
3240 loop
->temp_ss
->type
= GFC_SS_SECTION
;
3241 loop
->temp_ss
->data
.info
.dimen
= n
;
3242 gfc_trans_create_temp_array (&loop
->pre
, &loop
->post
, loop
,
3243 &loop
->temp_ss
->data
.info
, tmp
, false, true,
3247 for (n
= 0; n
< loop
->temp_dim
; n
++)
3248 loopspec
[loop
->order
[n
]] = NULL
;
3252 /* For array parameters we don't have loop variables, so don't calculate the
3254 if (loop
->array_parameter
)
3257 /* Calculate the translation from loop variables to array indices. */
3258 for (ss
= loop
->ss
; ss
!= gfc_ss_terminator
; ss
= ss
->loop_chain
)
3260 if (ss
->type
!= GFC_SS_SECTION
&& ss
->type
!= GFC_SS_COMPONENT
)
3263 info
= &ss
->data
.info
;
3265 for (n
= 0; n
< info
->dimen
; n
++)
3269 /* If we are specifying the range the delta is already set. */
3270 if (loopspec
[n
] != ss
)
3272 /* Calculate the offset relative to the loop variable.
3273 First multiply by the stride. */
3274 tmp
= loop
->from
[n
];
3275 if (!integer_onep (info
->stride
[n
]))
3276 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
,
3277 tmp
, info
->stride
[n
]);
3279 /* Then subtract this from our starting value. */
3280 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
3281 info
->start
[n
], tmp
);
3283 info
->delta
[n
] = gfc_evaluate_now (tmp
, &loop
->pre
);
3290 /* Fills in an array descriptor, and returns the size of the array. The size
3291 will be a simple_val, ie a variable or a constant. Also calculates the
3292 offset of the base. Returns the size of the array.
3296 for (n = 0; n < rank; n++)
3298 a.lbound[n] = specified_lower_bound;
3299 offset = offset + a.lbond[n] * stride;
3301 a.ubound[n] = specified_upper_bound;
3302 a.stride[n] = stride;
3303 size = ubound + size; //size = ubound + 1 - lbound
3304 stride = stride * size;
3311 gfc_array_init_size (tree descriptor
, int rank
, tree
* poffset
,
3312 gfc_expr
** lower
, gfc_expr
** upper
,
3313 stmtblock_t
* pblock
)
3325 stmtblock_t thenblock
;
3326 stmtblock_t elseblock
;
3331 type
= TREE_TYPE (descriptor
);
3333 stride
= gfc_index_one_node
;
3334 offset
= gfc_index_zero_node
;
3336 /* Set the dtype. */
3337 tmp
= gfc_conv_descriptor_dtype (descriptor
);
3338 gfc_add_modify_expr (pblock
, tmp
, gfc_get_dtype (TREE_TYPE (descriptor
)));
3340 or_expr
= NULL_TREE
;
3342 for (n
= 0; n
< rank
; n
++)
3344 /* We have 3 possibilities for determining the size of the array:
3345 lower == NULL => lbound = 1, ubound = upper[n]
3346 upper[n] = NULL => lbound = 1, ubound = lower[n]
3347 upper[n] != NULL => lbound = lower[n], ubound = upper[n] */
3350 /* Set lower bound. */
3351 gfc_init_se (&se
, NULL
);
3353 se
.expr
= gfc_index_one_node
;
3356 gcc_assert (lower
[n
]);
3359 gfc_conv_expr_type (&se
, lower
[n
], gfc_array_index_type
);
3360 gfc_add_block_to_block (pblock
, &se
.pre
);
3364 se
.expr
= gfc_index_one_node
;
3368 tmp
= gfc_conv_descriptor_lbound (descriptor
, gfc_rank_cst
[n
]);
3369 gfc_add_modify_expr (pblock
, tmp
, se
.expr
);
3371 /* Work out the offset for this component. */
3372 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, se
.expr
, stride
);
3373 offset
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
, offset
, tmp
);
3375 /* Start the calculation for the size of this dimension. */
3376 size
= build2 (MINUS_EXPR
, gfc_array_index_type
,
3377 gfc_index_one_node
, se
.expr
);
3379 /* Set upper bound. */
3380 gfc_init_se (&se
, NULL
);
3381 gcc_assert (ubound
);
3382 gfc_conv_expr_type (&se
, ubound
, gfc_array_index_type
);
3383 gfc_add_block_to_block (pblock
, &se
.pre
);
3385 tmp
= gfc_conv_descriptor_ubound (descriptor
, gfc_rank_cst
[n
]);
3386 gfc_add_modify_expr (pblock
, tmp
, se
.expr
);
3388 /* Store the stride. */
3389 tmp
= gfc_conv_descriptor_stride (descriptor
, gfc_rank_cst
[n
]);
3390 gfc_add_modify_expr (pblock
, tmp
, stride
);
3392 /* Calculate the size of this dimension. */
3393 size
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, se
.expr
, size
);
3395 /* Check whether the size for this dimension is negative. */
3396 cond
= fold_build2 (LE_EXPR
, boolean_type_node
, size
,
3397 gfc_index_zero_node
);
3401 or_expr
= fold_build2 (TRUTH_OR_EXPR
, boolean_type_node
, or_expr
, cond
);
3403 /* Multiply the stride by the number of elements in this dimension. */
3404 stride
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, stride
, size
);
3405 stride
= gfc_evaluate_now (stride
, pblock
);
3408 /* The stride is the number of elements in the array, so multiply by the
3409 size of an element to get the total size. */
3410 tmp
= TYPE_SIZE_UNIT (gfc_get_element_type (type
));
3411 size
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, stride
, tmp
);
3413 if (poffset
!= NULL
)
3415 offset
= gfc_evaluate_now (offset
, pblock
);
3419 if (integer_zerop (or_expr
))
3421 if (integer_onep (or_expr
))
3422 return gfc_index_zero_node
;
3424 var
= gfc_create_var (TREE_TYPE (size
), "size");
3425 gfc_start_block (&thenblock
);
3426 gfc_add_modify_expr (&thenblock
, var
, gfc_index_zero_node
);
3427 thencase
= gfc_finish_block (&thenblock
);
3429 gfc_start_block (&elseblock
);
3430 gfc_add_modify_expr (&elseblock
, var
, size
);
3431 elsecase
= gfc_finish_block (&elseblock
);
3433 tmp
= gfc_evaluate_now (or_expr
, pblock
);
3434 tmp
= build3_v (COND_EXPR
, tmp
, thencase
, elsecase
);
3435 gfc_add_expr_to_block (pblock
, tmp
);
3441 /* Initializes the descriptor and generates a call to _gfor_allocate. Does
3442 the work for an ALLOCATE statement. */
3446 gfc_array_allocate (gfc_se
* se
, gfc_expr
* expr
, tree pstat
)
3455 gfc_ref
*ref
, *prev_ref
= NULL
;
3456 bool allocatable_array
;
3460 /* Find the last reference in the chain. */
3461 while (ref
&& ref
->next
!= NULL
)
3463 gcc_assert (ref
->type
!= REF_ARRAY
|| ref
->u
.ar
.type
== AR_ELEMENT
);
3468 if (ref
== NULL
|| ref
->type
!= REF_ARRAY
)
3472 allocatable_array
= expr
->symtree
->n
.sym
->attr
.allocatable
;
3474 allocatable_array
= prev_ref
->u
.c
.component
->allocatable
;
3476 /* Figure out the size of the array. */
3477 switch (ref
->u
.ar
.type
)
3481 upper
= ref
->u
.ar
.start
;
3485 gcc_assert (ref
->u
.ar
.as
->type
== AS_EXPLICIT
);
3487 lower
= ref
->u
.ar
.as
->lower
;
3488 upper
= ref
->u
.ar
.as
->upper
;
3492 lower
= ref
->u
.ar
.start
;
3493 upper
= ref
->u
.ar
.end
;
3501 size
= gfc_array_init_size (se
->expr
, ref
->u
.ar
.as
->rank
, &offset
,
3502 lower
, upper
, &se
->pre
);
3504 /* Allocate memory to store the data. */
3505 pointer
= gfc_conv_descriptor_data_get (se
->expr
);
3506 STRIP_NOPS (pointer
);
3508 if (TYPE_PRECISION (gfc_array_index_type
) == 32)
3510 if (allocatable_array
)
3511 allocate
= gfor_fndecl_allocate_array
;
3513 allocate
= gfor_fndecl_allocate
;
3515 else if (TYPE_PRECISION (gfc_array_index_type
) == 64)
3517 if (allocatable_array
)
3518 allocate
= gfor_fndecl_allocate64_array
;
3520 allocate
= gfor_fndecl_allocate64
;
3526 /* The allocate_array variants take the old pointer as first argument. */
3527 if (allocatable_array
)
3528 tmp
= gfc_chainon_list (tmp
, pointer
);
3529 tmp
= gfc_chainon_list (tmp
, size
);
3530 tmp
= gfc_chainon_list (tmp
, pstat
);
3531 tmp
= build_function_call_expr (allocate
, tmp
);
3532 tmp
= build2 (MODIFY_EXPR
, void_type_node
, pointer
, tmp
);
3533 gfc_add_expr_to_block (&se
->pre
, tmp
);
3535 tmp
= gfc_conv_descriptor_offset (se
->expr
);
3536 gfc_add_modify_expr (&se
->pre
, tmp
, offset
);
3538 if (expr
->ts
.type
== BT_DERIVED
3539 && expr
->ts
.derived
->attr
.alloc_comp
)
3541 tmp
= gfc_nullify_alloc_comp (expr
->ts
.derived
, se
->expr
,
3542 ref
->u
.ar
.as
->rank
);
3543 gfc_add_expr_to_block (&se
->pre
, tmp
);
3550 /* Deallocate an array variable. Also used when an allocated variable goes
3555 gfc_array_deallocate (tree descriptor
, tree pstat
)
3561 gfc_start_block (&block
);
3562 /* Get a pointer to the data. */
3563 var
= gfc_conv_descriptor_data_get (descriptor
);
3566 /* Parameter is the address of the data component. */
3567 tmp
= gfc_chainon_list (NULL_TREE
, var
);
3568 tmp
= gfc_chainon_list (tmp
, pstat
);
3569 tmp
= build_function_call_expr (gfor_fndecl_deallocate
, tmp
);
3570 gfc_add_expr_to_block (&block
, tmp
);
3572 /* Zero the data pointer. */
3573 tmp
= build2 (MODIFY_EXPR
, void_type_node
,
3574 var
, build_int_cst (TREE_TYPE (var
), 0));
3575 gfc_add_expr_to_block (&block
, tmp
);
3577 return gfc_finish_block (&block
);
3581 /* Create an array constructor from an initialization expression.
3582 We assume the frontend already did any expansions and conversions. */
3585 gfc_conv_array_initializer (tree type
, gfc_expr
* expr
)
3592 unsigned HOST_WIDE_INT lo
;
3594 VEC(constructor_elt
,gc
) *v
= NULL
;
3596 switch (expr
->expr_type
)
3599 case EXPR_STRUCTURE
:
3600 /* A single scalar or derived type value. Create an array with all
3601 elements equal to that value. */
3602 gfc_init_se (&se
, NULL
);
3604 if (expr
->expr_type
== EXPR_CONSTANT
)
3605 gfc_conv_constant (&se
, expr
);
3607 gfc_conv_structure (&se
, expr
, 1);
3609 tmp
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
3610 gcc_assert (tmp
&& INTEGER_CST_P (tmp
));
3611 hi
= TREE_INT_CST_HIGH (tmp
);
3612 lo
= TREE_INT_CST_LOW (tmp
);
3616 /* This will probably eat buckets of memory for large arrays. */
3617 while (hi
!= 0 || lo
!= 0)
3619 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, se
.expr
);
3627 /* Create a vector of all the elements. */
3628 for (c
= expr
->value
.constructor
; c
; c
= c
->next
)
3632 /* Problems occur when we get something like
3633 integer :: a(lots) = (/(i, i=1,lots)/) */
3634 /* TODO: Unexpanded array initializers. */
3636 ("Possible frontend bug: array constructor not expanded");
3638 if (mpz_cmp_si (c
->n
.offset
, 0) != 0)
3639 index
= gfc_conv_mpz_to_tree (c
->n
.offset
, gfc_index_integer_kind
);
3643 if (mpz_cmp_si (c
->repeat
, 0) != 0)
3647 mpz_set (maxval
, c
->repeat
);
3648 mpz_add (maxval
, c
->n
.offset
, maxval
);
3649 mpz_sub_ui (maxval
, maxval
, 1);
3650 tmp2
= gfc_conv_mpz_to_tree (maxval
, gfc_index_integer_kind
);
3651 if (mpz_cmp_si (c
->n
.offset
, 0) != 0)
3653 mpz_add_ui (maxval
, c
->n
.offset
, 1);
3654 tmp1
= gfc_conv_mpz_to_tree (maxval
, gfc_index_integer_kind
);
3657 tmp1
= gfc_conv_mpz_to_tree (c
->n
.offset
, gfc_index_integer_kind
);
3659 range
= build2 (RANGE_EXPR
, integer_type_node
, tmp1
, tmp2
);
3665 gfc_init_se (&se
, NULL
);
3666 switch (c
->expr
->expr_type
)
3669 gfc_conv_constant (&se
, c
->expr
);
3670 if (range
== NULL_TREE
)
3671 CONSTRUCTOR_APPEND_ELT (v
, index
, se
.expr
);
3674 if (index
!= NULL_TREE
)
3675 CONSTRUCTOR_APPEND_ELT (v
, index
, se
.expr
);
3676 CONSTRUCTOR_APPEND_ELT (v
, range
, se
.expr
);
3680 case EXPR_STRUCTURE
:
3681 gfc_conv_structure (&se
, c
->expr
, 1);
3682 CONSTRUCTOR_APPEND_ELT (v
, index
, se
.expr
);
3692 return gfc_build_null_descriptor (type
);
3698 /* Create a constructor from the list of elements. */
3699 tmp
= build_constructor (type
, v
);
3700 TREE_CONSTANT (tmp
) = 1;
3701 TREE_INVARIANT (tmp
) = 1;
3706 /* Generate code to evaluate non-constant array bounds. Sets *poffset and
3707 returns the size (in elements) of the array. */
3710 gfc_trans_array_bounds (tree type
, gfc_symbol
* sym
, tree
* poffset
,
3711 stmtblock_t
* pblock
)
3726 size
= gfc_index_one_node
;
3727 offset
= gfc_index_zero_node
;
3728 for (dim
= 0; dim
< as
->rank
; dim
++)
3730 /* Evaluate non-constant array bound expressions. */
3731 lbound
= GFC_TYPE_ARRAY_LBOUND (type
, dim
);
3732 if (as
->lower
[dim
] && !INTEGER_CST_P (lbound
))
3734 gfc_init_se (&se
, NULL
);
3735 gfc_conv_expr_type (&se
, as
->lower
[dim
], gfc_array_index_type
);
3736 gfc_add_block_to_block (pblock
, &se
.pre
);
3737 gfc_add_modify_expr (pblock
, lbound
, se
.expr
);
3739 ubound
= GFC_TYPE_ARRAY_UBOUND (type
, dim
);
3740 if (as
->upper
[dim
] && !INTEGER_CST_P (ubound
))
3742 gfc_init_se (&se
, NULL
);
3743 gfc_conv_expr_type (&se
, as
->upper
[dim
], gfc_array_index_type
);
3744 gfc_add_block_to_block (pblock
, &se
.pre
);
3745 gfc_add_modify_expr (pblock
, ubound
, se
.expr
);
3747 /* The offset of this dimension. offset = offset - lbound * stride. */
3748 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, lbound
, size
);
3749 offset
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
, offset
, tmp
);
3751 /* The size of this dimension, and the stride of the next. */
3752 if (dim
+ 1 < as
->rank
)
3753 stride
= GFC_TYPE_ARRAY_STRIDE (type
, dim
+ 1);
3755 stride
= GFC_TYPE_ARRAY_SIZE (type
);
3757 if (ubound
!= NULL_TREE
&& !(stride
&& INTEGER_CST_P (stride
)))
3759 /* Calculate stride = size * (ubound + 1 - lbound). */
3760 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
3761 gfc_index_one_node
, lbound
);
3762 tmp
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, ubound
, tmp
);
3763 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, size
, tmp
);
3765 gfc_add_modify_expr (pblock
, stride
, tmp
);
3767 stride
= gfc_evaluate_now (tmp
, pblock
);
3769 /* Make sure that negative size arrays are translated
3770 to being zero size. */
3771 tmp
= build2 (GE_EXPR
, boolean_type_node
,
3772 stride
, gfc_index_zero_node
);
3773 tmp
= build3 (COND_EXPR
, gfc_array_index_type
, tmp
,
3774 stride
, gfc_index_zero_node
);
3775 gfc_add_modify_expr (pblock
, stride
, tmp
);
3781 gfc_trans_vla_type_sizes (sym
, pblock
);
3788 /* Generate code to initialize/allocate an array variable. */
3791 gfc_trans_auto_array_allocation (tree decl
, gfc_symbol
* sym
, tree fnbody
)
3801 gcc_assert (!(sym
->attr
.pointer
|| sym
->attr
.allocatable
));
3803 /* Do nothing for USEd variables. */
3804 if (sym
->attr
.use_assoc
)
3807 type
= TREE_TYPE (decl
);
3808 gcc_assert (GFC_ARRAY_TYPE_P (type
));
3809 onstack
= TREE_CODE (type
) != POINTER_TYPE
;
3811 gfc_start_block (&block
);
3813 /* Evaluate character string length. */
3814 if (sym
->ts
.type
== BT_CHARACTER
3815 && onstack
&& !INTEGER_CST_P (sym
->ts
.cl
->backend_decl
))
3817 gfc_trans_init_string_length (sym
->ts
.cl
, &block
);
3819 gfc_trans_vla_type_sizes (sym
, &block
);
3821 /* Emit a DECL_EXPR for this variable, which will cause the
3822 gimplifier to allocate storage, and all that good stuff. */
3823 tmp
= build1 (DECL_EXPR
, TREE_TYPE (decl
), decl
);
3824 gfc_add_expr_to_block (&block
, tmp
);
3829 gfc_add_expr_to_block (&block
, fnbody
);
3830 return gfc_finish_block (&block
);
3833 type
= TREE_TYPE (type
);
3835 gcc_assert (!sym
->attr
.use_assoc
);
3836 gcc_assert (!TREE_STATIC (decl
));
3837 gcc_assert (!sym
->module
);
3839 if (sym
->ts
.type
== BT_CHARACTER
3840 && !INTEGER_CST_P (sym
->ts
.cl
->backend_decl
))
3841 gfc_trans_init_string_length (sym
->ts
.cl
, &block
);
3843 size
= gfc_trans_array_bounds (type
, sym
, &offset
, &block
);
3845 /* Don't actually allocate space for Cray Pointees. */
3846 if (sym
->attr
.cray_pointee
)
3848 if (TREE_CODE (GFC_TYPE_ARRAY_OFFSET (type
)) == VAR_DECL
)
3849 gfc_add_modify_expr (&block
, GFC_TYPE_ARRAY_OFFSET (type
), offset
);
3850 gfc_add_expr_to_block (&block
, fnbody
);
3851 return gfc_finish_block (&block
);
3854 /* The size is the number of elements in the array, so multiply by the
3855 size of an element to get the total size. */
3856 tmp
= TYPE_SIZE_UNIT (gfc_get_element_type (type
));
3857 size
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, size
, tmp
);
3859 /* Allocate memory to hold the data. */
3860 tmp
= gfc_chainon_list (NULL_TREE
, size
);
3862 if (gfc_index_integer_kind
== 4)
3863 fndecl
= gfor_fndecl_internal_malloc
;
3864 else if (gfc_index_integer_kind
== 8)
3865 fndecl
= gfor_fndecl_internal_malloc64
;
3868 tmp
= build_function_call_expr (fndecl
, tmp
);
3869 tmp
= fold (convert (TREE_TYPE (decl
), tmp
));
3870 gfc_add_modify_expr (&block
, decl
, tmp
);
3872 /* Set offset of the array. */
3873 if (TREE_CODE (GFC_TYPE_ARRAY_OFFSET (type
)) == VAR_DECL
)
3874 gfc_add_modify_expr (&block
, GFC_TYPE_ARRAY_OFFSET (type
), offset
);
3877 /* Automatic arrays should not have initializers. */
3878 gcc_assert (!sym
->value
);
3880 gfc_add_expr_to_block (&block
, fnbody
);
3882 /* Free the temporary. */
3883 tmp
= convert (pvoid_type_node
, decl
);
3884 tmp
= gfc_chainon_list (NULL_TREE
, tmp
);
3885 tmp
= build_function_call_expr (gfor_fndecl_internal_free
, tmp
);
3886 gfc_add_expr_to_block (&block
, tmp
);
3888 return gfc_finish_block (&block
);
3892 /* Generate entry and exit code for g77 calling convention arrays. */
3895 gfc_trans_g77_array (gfc_symbol
* sym
, tree body
)
3905 gfc_get_backend_locus (&loc
);
3906 gfc_set_backend_locus (&sym
->declared_at
);
3908 /* Descriptor type. */
3909 parm
= sym
->backend_decl
;
3910 type
= TREE_TYPE (parm
);
3911 gcc_assert (GFC_ARRAY_TYPE_P (type
));
3913 gfc_start_block (&block
);
3915 if (sym
->ts
.type
== BT_CHARACTER
3916 && TREE_CODE (sym
->ts
.cl
->backend_decl
) == VAR_DECL
)
3917 gfc_trans_init_string_length (sym
->ts
.cl
, &block
);
3919 /* Evaluate the bounds of the array. */
3920 gfc_trans_array_bounds (type
, sym
, &offset
, &block
);
3922 /* Set the offset. */
3923 if (TREE_CODE (GFC_TYPE_ARRAY_OFFSET (type
)) == VAR_DECL
)
3924 gfc_add_modify_expr (&block
, GFC_TYPE_ARRAY_OFFSET (type
), offset
);
3926 /* Set the pointer itself if we aren't using the parameter directly. */
3927 if (TREE_CODE (parm
) != PARM_DECL
)
3929 tmp
= convert (TREE_TYPE (parm
), GFC_DECL_SAVED_DESCRIPTOR (parm
));
3930 gfc_add_modify_expr (&block
, parm
, tmp
);
3932 stmt
= gfc_finish_block (&block
);
3934 gfc_set_backend_locus (&loc
);
3936 gfc_start_block (&block
);
3938 /* Add the initialization code to the start of the function. */
3940 if (sym
->attr
.optional
|| sym
->attr
.not_always_present
)
3942 tmp
= gfc_conv_expr_present (sym
);
3943 stmt
= build3_v (COND_EXPR
, tmp
, stmt
, build_empty_stmt ());
3946 gfc_add_expr_to_block (&block
, stmt
);
3947 gfc_add_expr_to_block (&block
, body
);
3949 return gfc_finish_block (&block
);
3953 /* Modify the descriptor of an array parameter so that it has the
3954 correct lower bound. Also move the upper bound accordingly.
3955 If the array is not packed, it will be copied into a temporary.
3956 For each dimension we set the new lower and upper bounds. Then we copy the
3957 stride and calculate the offset for this dimension. We also work out
3958 what the stride of a packed array would be, and see it the two match.
3959 If the array need repacking, we set the stride to the values we just
3960 calculated, recalculate the offset and copy the array data.
3961 Code is also added to copy the data back at the end of the function.
3965 gfc_trans_dummy_array_bias (gfc_symbol
* sym
, tree tmpdesc
, tree body
)
3972 stmtblock_t cleanup
;
3980 tree stride
, stride2
;
3990 /* Do nothing for pointer and allocatable arrays. */
3991 if (sym
->attr
.pointer
|| sym
->attr
.allocatable
)
3994 if (sym
->attr
.dummy
&& gfc_is_nodesc_array (sym
))
3995 return gfc_trans_g77_array (sym
, body
);
3997 gfc_get_backend_locus (&loc
);
3998 gfc_set_backend_locus (&sym
->declared_at
);
4000 /* Descriptor type. */
4001 type
= TREE_TYPE (tmpdesc
);
4002 gcc_assert (GFC_ARRAY_TYPE_P (type
));
4003 dumdesc
= GFC_DECL_SAVED_DESCRIPTOR (tmpdesc
);
4004 dumdesc
= build_fold_indirect_ref (dumdesc
);
4005 gfc_start_block (&block
);
4007 if (sym
->ts
.type
== BT_CHARACTER
4008 && TREE_CODE (sym
->ts
.cl
->backend_decl
) == VAR_DECL
)
4009 gfc_trans_init_string_length (sym
->ts
.cl
, &block
);
4011 checkparm
= (sym
->as
->type
== AS_EXPLICIT
&& flag_bounds_check
);
4013 no_repack
= !(GFC_DECL_PACKED_ARRAY (tmpdesc
)
4014 || GFC_DECL_PARTIAL_PACKED_ARRAY (tmpdesc
));
4016 if (GFC_DECL_PARTIAL_PACKED_ARRAY (tmpdesc
))
4018 /* For non-constant shape arrays we only check if the first dimension
4019 is contiguous. Repacking higher dimensions wouldn't gain us
4020 anything as we still don't know the array stride. */
4021 partial
= gfc_create_var (boolean_type_node
, "partial");
4022 TREE_USED (partial
) = 1;
4023 tmp
= gfc_conv_descriptor_stride (dumdesc
, gfc_rank_cst
[0]);
4024 tmp
= fold_build2 (EQ_EXPR
, boolean_type_node
, tmp
, gfc_index_one_node
);
4025 gfc_add_modify_expr (&block
, partial
, tmp
);
4029 partial
= NULL_TREE
;
4032 /* The naming of stmt_unpacked and stmt_packed may be counter-intuitive
4033 here, however I think it does the right thing. */
4036 /* Set the first stride. */
4037 stride
= gfc_conv_descriptor_stride (dumdesc
, gfc_rank_cst
[0]);
4038 stride
= gfc_evaluate_now (stride
, &block
);
4040 tmp
= build2 (EQ_EXPR
, boolean_type_node
, stride
, gfc_index_zero_node
);
4041 tmp
= build3 (COND_EXPR
, gfc_array_index_type
, tmp
,
4042 gfc_index_one_node
, stride
);
4043 stride
= GFC_TYPE_ARRAY_STRIDE (type
, 0);
4044 gfc_add_modify_expr (&block
, stride
, tmp
);
4046 /* Allow the user to disable array repacking. */
4047 stmt_unpacked
= NULL_TREE
;
4051 gcc_assert (integer_onep (GFC_TYPE_ARRAY_STRIDE (type
, 0)));
4052 /* A library call to repack the array if necessary. */
4053 tmp
= GFC_DECL_SAVED_DESCRIPTOR (tmpdesc
);
4054 tmp
= gfc_chainon_list (NULL_TREE
, tmp
);
4055 stmt_unpacked
= build_function_call_expr (gfor_fndecl_in_pack
, tmp
);
4057 stride
= gfc_index_one_node
;
4060 /* This is for the case where the array data is used directly without
4061 calling the repack function. */
4062 if (no_repack
|| partial
!= NULL_TREE
)
4063 stmt_packed
= gfc_conv_descriptor_data_get (dumdesc
);
4065 stmt_packed
= NULL_TREE
;
4067 /* Assign the data pointer. */
4068 if (stmt_packed
!= NULL_TREE
&& stmt_unpacked
!= NULL_TREE
)
4070 /* Don't repack unknown shape arrays when the first stride is 1. */
4071 tmp
= build3 (COND_EXPR
, TREE_TYPE (stmt_packed
), partial
,
4072 stmt_packed
, stmt_unpacked
);
4075 tmp
= stmt_packed
!= NULL_TREE
? stmt_packed
: stmt_unpacked
;
4076 gfc_add_modify_expr (&block
, tmpdesc
, fold_convert (type
, tmp
));
4078 offset
= gfc_index_zero_node
;
4079 size
= gfc_index_one_node
;
4081 /* Evaluate the bounds of the array. */
4082 for (n
= 0; n
< sym
->as
->rank
; n
++)
4084 if (checkparm
|| !sym
->as
->upper
[n
])
4086 /* Get the bounds of the actual parameter. */
4087 dubound
= gfc_conv_descriptor_ubound (dumdesc
, gfc_rank_cst
[n
]);
4088 dlbound
= gfc_conv_descriptor_lbound (dumdesc
, gfc_rank_cst
[n
]);
4092 dubound
= NULL_TREE
;
4093 dlbound
= NULL_TREE
;
4096 lbound
= GFC_TYPE_ARRAY_LBOUND (type
, n
);
4097 if (!INTEGER_CST_P (lbound
))
4099 gfc_init_se (&se
, NULL
);
4100 gfc_conv_expr_type (&se
, sym
->as
->lower
[n
],
4101 gfc_array_index_type
);
4102 gfc_add_block_to_block (&block
, &se
.pre
);
4103 gfc_add_modify_expr (&block
, lbound
, se
.expr
);
4106 ubound
= GFC_TYPE_ARRAY_UBOUND (type
, n
);
4107 /* Set the desired upper bound. */
4108 if (sym
->as
->upper
[n
])
4110 /* We know what we want the upper bound to be. */
4111 if (!INTEGER_CST_P (ubound
))
4113 gfc_init_se (&se
, NULL
);
4114 gfc_conv_expr_type (&se
, sym
->as
->upper
[n
],
4115 gfc_array_index_type
);
4116 gfc_add_block_to_block (&block
, &se
.pre
);
4117 gfc_add_modify_expr (&block
, ubound
, se
.expr
);
4120 /* Check the sizes match. */
4123 /* Check (ubound(a) - lbound(a) == ubound(b) - lbound(b)). */
4126 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
4128 stride2
= build2 (MINUS_EXPR
, gfc_array_index_type
,
4130 tmp
= fold_build2 (NE_EXPR
, gfc_array_index_type
, tmp
, stride2
);
4131 asprintf (&msg
, "%s for dimension %d of array '%s'",
4132 gfc_msg_bounds
, n
+1, sym
->name
);
4133 gfc_trans_runtime_check (tmp
, msg
, &block
, &loc
);
4139 /* For assumed shape arrays move the upper bound by the same amount
4140 as the lower bound. */
4141 tmp
= build2 (MINUS_EXPR
, gfc_array_index_type
, dubound
, dlbound
);
4142 tmp
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, tmp
, lbound
);
4143 gfc_add_modify_expr (&block
, ubound
, tmp
);
4145 /* The offset of this dimension. offset = offset - lbound * stride. */
4146 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, lbound
, stride
);
4147 offset
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
, offset
, tmp
);
4149 /* The size of this dimension, and the stride of the next. */
4150 if (n
+ 1 < sym
->as
->rank
)
4152 stride
= GFC_TYPE_ARRAY_STRIDE (type
, n
+ 1);
4154 if (no_repack
|| partial
!= NULL_TREE
)
4157 gfc_conv_descriptor_stride (dumdesc
, gfc_rank_cst
[n
+1]);
4160 /* Figure out the stride if not a known constant. */
4161 if (!INTEGER_CST_P (stride
))
4164 stmt_packed
= NULL_TREE
;
4167 /* Calculate stride = size * (ubound + 1 - lbound). */
4168 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
4169 gfc_index_one_node
, lbound
);
4170 tmp
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
4172 size
= fold_build2 (MULT_EXPR
, gfc_array_index_type
,
4177 /* Assign the stride. */
4178 if (stmt_packed
!= NULL_TREE
&& stmt_unpacked
!= NULL_TREE
)
4179 tmp
= build3 (COND_EXPR
, gfc_array_index_type
, partial
,
4180 stmt_unpacked
, stmt_packed
);
4182 tmp
= (stmt_packed
!= NULL_TREE
) ? stmt_packed
: stmt_unpacked
;
4183 gfc_add_modify_expr (&block
, stride
, tmp
);
4188 stride
= GFC_TYPE_ARRAY_SIZE (type
);
4190 if (stride
&& !INTEGER_CST_P (stride
))
4192 /* Calculate size = stride * (ubound + 1 - lbound). */
4193 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
4194 gfc_index_one_node
, lbound
);
4195 tmp
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
,
4197 tmp
= fold_build2 (MULT_EXPR
, gfc_array_index_type
,
4198 GFC_TYPE_ARRAY_STRIDE (type
, n
), tmp
);
4199 gfc_add_modify_expr (&block
, stride
, tmp
);
4204 /* Set the offset. */
4205 if (TREE_CODE (GFC_TYPE_ARRAY_OFFSET (type
)) == VAR_DECL
)
4206 gfc_add_modify_expr (&block
, GFC_TYPE_ARRAY_OFFSET (type
), offset
);
4208 gfc_trans_vla_type_sizes (sym
, &block
);
4210 stmt
= gfc_finish_block (&block
);
4212 gfc_start_block (&block
);
4214 /* Only do the entry/initialization code if the arg is present. */
4215 dumdesc
= GFC_DECL_SAVED_DESCRIPTOR (tmpdesc
);
4216 optional_arg
= (sym
->attr
.optional
4217 || (sym
->ns
->proc_name
->attr
.entry_master
4218 && sym
->attr
.dummy
));
4221 tmp
= gfc_conv_expr_present (sym
);
4222 stmt
= build3_v (COND_EXPR
, tmp
, stmt
, build_empty_stmt ());
4224 gfc_add_expr_to_block (&block
, stmt
);
4226 /* Add the main function body. */
4227 gfc_add_expr_to_block (&block
, body
);
4232 gfc_start_block (&cleanup
);
4234 if (sym
->attr
.intent
!= INTENT_IN
)
4236 /* Copy the data back. */
4237 tmp
= gfc_chainon_list (NULL_TREE
, dumdesc
);
4238 tmp
= gfc_chainon_list (tmp
, tmpdesc
);
4239 tmp
= build_function_call_expr (gfor_fndecl_in_unpack
, tmp
);
4240 gfc_add_expr_to_block (&cleanup
, tmp
);
4243 /* Free the temporary. */
4244 tmp
= gfc_chainon_list (NULL_TREE
, tmpdesc
);
4245 tmp
= build_function_call_expr (gfor_fndecl_internal_free
, tmp
);
4246 gfc_add_expr_to_block (&cleanup
, tmp
);
4248 stmt
= gfc_finish_block (&cleanup
);
4250 /* Only do the cleanup if the array was repacked. */
4251 tmp
= build_fold_indirect_ref (dumdesc
);
4252 tmp
= gfc_conv_descriptor_data_get (tmp
);
4253 tmp
= build2 (NE_EXPR
, boolean_type_node
, tmp
, tmpdesc
);
4254 stmt
= build3_v (COND_EXPR
, tmp
, stmt
, build_empty_stmt ());
4258 tmp
= gfc_conv_expr_present (sym
);
4259 stmt
= build3_v (COND_EXPR
, tmp
, stmt
, build_empty_stmt ());
4261 gfc_add_expr_to_block (&block
, stmt
);
4263 /* We don't need to free any memory allocated by internal_pack as it will
4264 be freed at the end of the function by pop_context. */
4265 return gfc_finish_block (&block
);
4269 /* Convert an array for passing as an actual argument. Expressions and
4270 vector subscripts are evaluated and stored in a temporary, which is then
4271 passed. For whole arrays the descriptor is passed. For array sections
4272 a modified copy of the descriptor is passed, but using the original data.
4274 This function is also used for array pointer assignments, and there
4277 - want_pointer && !se->direct_byref
4278 EXPR is an actual argument. On exit, se->expr contains a
4279 pointer to the array descriptor.
4281 - !want_pointer && !se->direct_byref
4282 EXPR is an actual argument to an intrinsic function or the
4283 left-hand side of a pointer assignment. On exit, se->expr
4284 contains the descriptor for EXPR.
4286 - !want_pointer && se->direct_byref
4287 EXPR is the right-hand side of a pointer assignment and
4288 se->expr is the descriptor for the previously-evaluated
4289 left-hand side. The function creates an assignment from
4290 EXPR to se->expr. */
4293 gfc_conv_expr_descriptor (gfc_se
* se
, gfc_expr
* expr
, gfc_ss
* ss
)
4307 gcc_assert (ss
!= gfc_ss_terminator
);
4309 /* TODO: Pass constant array constructors without a temporary. */
4310 /* Special case things we know we can pass easily. */
4311 switch (expr
->expr_type
)
4314 /* If we have a linear array section, we can pass it directly.
4315 Otherwise we need to copy it into a temporary. */
4317 /* Find the SS for the array section. */
4319 while (secss
!= gfc_ss_terminator
&& secss
->type
!= GFC_SS_SECTION
)
4320 secss
= secss
->next
;
4322 gcc_assert (secss
!= gfc_ss_terminator
);
4323 info
= &secss
->data
.info
;
4325 /* Get the descriptor for the array. */
4326 gfc_conv_ss_descriptor (&se
->pre
, secss
, 0);
4327 desc
= info
->descriptor
;
4329 need_tmp
= gfc_ref_needs_temporary_p (expr
->ref
);
4332 else if (GFC_ARRAY_TYPE_P (TREE_TYPE (desc
)))
4334 /* Create a new descriptor if the array doesn't have one. */
4337 else if (info
->ref
->u
.ar
.type
== AR_FULL
)
4339 else if (se
->direct_byref
)
4342 full
= gfc_full_array_ref_p (info
->ref
);
4346 if (se
->direct_byref
)
4348 /* Copy the descriptor for pointer assignments. */
4349 gfc_add_modify_expr (&se
->pre
, se
->expr
, desc
);
4351 else if (se
->want_pointer
)
4353 /* We pass full arrays directly. This means that pointers and
4354 allocatable arrays should also work. */
4355 se
->expr
= build_fold_addr_expr (desc
);
4362 if (expr
->ts
.type
== BT_CHARACTER
)
4363 se
->string_length
= gfc_get_expr_charlen (expr
);
4370 /* A transformational function return value will be a temporary
4371 array descriptor. We still need to go through the scalarizer
4372 to create the descriptor. Elemental functions ar handled as
4373 arbitrary expressions, i.e. copy to a temporary. */
4375 /* Look for the SS for this function. */
4376 while (secss
!= gfc_ss_terminator
4377 && (secss
->type
!= GFC_SS_FUNCTION
|| secss
->expr
!= expr
))
4378 secss
= secss
->next
;
4380 if (se
->direct_byref
)
4382 gcc_assert (secss
!= gfc_ss_terminator
);
4384 /* For pointer assignments pass the descriptor directly. */
4386 se
->expr
= build_fold_addr_expr (se
->expr
);
4387 gfc_conv_expr (se
, expr
);
4391 if (secss
== gfc_ss_terminator
)
4393 /* Elemental function. */
4399 /* Transformational function. */
4400 info
= &secss
->data
.info
;
4406 /* Something complicated. Copy it into a temporary. */
4414 gfc_init_loopinfo (&loop
);
4416 /* Associate the SS with the loop. */
4417 gfc_add_ss_to_loop (&loop
, ss
);
4419 /* Tell the scalarizer not to bother creating loop variables, etc. */
4421 loop
.array_parameter
= 1;
4423 /* The right-hand side of a pointer assignment mustn't use a temporary. */
4424 gcc_assert (!se
->direct_byref
);
4426 /* Setup the scalarizing loops and bounds. */
4427 gfc_conv_ss_startstride (&loop
);
4431 /* Tell the scalarizer to make a temporary. */
4432 loop
.temp_ss
= gfc_get_ss ();
4433 loop
.temp_ss
->type
= GFC_SS_TEMP
;
4434 loop
.temp_ss
->next
= gfc_ss_terminator
;
4435 if (expr
->ts
.type
== BT_CHARACTER
)
4437 if (expr
->ts
.cl
== NULL
)
4439 /* This had better be a substring reference! */
4440 gfc_ref
*char_ref
= expr
->ref
;
4441 for (; char_ref
; char_ref
= char_ref
->next
)
4442 if (char_ref
->type
== REF_SUBSTRING
)
4445 expr
->ts
.cl
= gfc_get_charlen ();
4446 expr
->ts
.cl
->next
= char_ref
->u
.ss
.length
->next
;
4447 char_ref
->u
.ss
.length
->next
= expr
->ts
.cl
;
4449 mpz_init_set_ui (char_len
, 1);
4450 mpz_add (char_len
, char_len
,
4451 char_ref
->u
.ss
.end
->value
.integer
);
4452 mpz_sub (char_len
, char_len
,
4453 char_ref
->u
.ss
.start
->value
.integer
);
4454 expr
->ts
.cl
->backend_decl
4455 = gfc_conv_mpz_to_tree (char_len
,
4456 gfc_default_character_kind
);
4457 /* Cast is necessary for *-charlen refs. */
4458 expr
->ts
.cl
->backend_decl
4459 = convert (gfc_charlen_type_node
,
4460 expr
->ts
.cl
->backend_decl
);
4461 mpz_clear (char_len
);
4464 gcc_assert (char_ref
!= NULL
);
4465 loop
.temp_ss
->data
.temp
.type
4466 = gfc_typenode_for_spec (&expr
->ts
);
4467 loop
.temp_ss
->string_length
= expr
->ts
.cl
->backend_decl
;
4469 else if (expr
->ts
.cl
->length
4470 && expr
->ts
.cl
->length
->expr_type
== EXPR_CONSTANT
)
4472 expr
->ts
.cl
->backend_decl
4473 = gfc_conv_mpz_to_tree (expr
->ts
.cl
->length
->value
.integer
,
4474 expr
->ts
.cl
->length
->ts
.kind
);
4475 loop
.temp_ss
->data
.temp
.type
4476 = gfc_typenode_for_spec (&expr
->ts
);
4477 loop
.temp_ss
->string_length
4478 = TYPE_SIZE_UNIT (loop
.temp_ss
->data
.temp
.type
);
4482 loop
.temp_ss
->data
.temp
.type
4483 = gfc_typenode_for_spec (&expr
->ts
);
4484 loop
.temp_ss
->string_length
= expr
->ts
.cl
->backend_decl
;
4486 se
->string_length
= loop
.temp_ss
->string_length
;
4490 loop
.temp_ss
->data
.temp
.type
4491 = gfc_typenode_for_spec (&expr
->ts
);
4492 loop
.temp_ss
->string_length
= NULL
;
4494 loop
.temp_ss
->data
.temp
.dimen
= loop
.dimen
;
4495 gfc_add_ss_to_loop (&loop
, loop
.temp_ss
);
4498 gfc_conv_loop_setup (&loop
);
4502 /* Copy into a temporary and pass that. We don't need to copy the data
4503 back because expressions and vector subscripts must be INTENT_IN. */
4504 /* TODO: Optimize passing function return values. */
4508 /* Start the copying loops. */
4509 gfc_mark_ss_chain_used (loop
.temp_ss
, 1);
4510 gfc_mark_ss_chain_used (ss
, 1);
4511 gfc_start_scalarized_body (&loop
, &block
);
4513 /* Copy each data element. */
4514 gfc_init_se (&lse
, NULL
);
4515 gfc_copy_loopinfo_to_se (&lse
, &loop
);
4516 gfc_init_se (&rse
, NULL
);
4517 gfc_copy_loopinfo_to_se (&rse
, &loop
);
4519 lse
.ss
= loop
.temp_ss
;
4522 gfc_conv_scalarized_array_ref (&lse
, NULL
);
4523 if (expr
->ts
.type
== BT_CHARACTER
)
4525 gfc_conv_expr (&rse
, expr
);
4526 if (POINTER_TYPE_P (TREE_TYPE (rse
.expr
)))
4527 rse
.expr
= build_fold_indirect_ref (rse
.expr
);
4530 gfc_conv_expr_val (&rse
, expr
);
4532 gfc_add_block_to_block (&block
, &rse
.pre
);
4533 gfc_add_block_to_block (&block
, &lse
.pre
);
4535 gfc_add_modify_expr (&block
, lse
.expr
, rse
.expr
);
4537 /* Finish the copying loops. */
4538 gfc_trans_scalarizing_loops (&loop
, &block
);
4540 desc
= loop
.temp_ss
->data
.info
.descriptor
;
4542 gcc_assert (is_gimple_lvalue (desc
));
4544 else if (expr
->expr_type
== EXPR_FUNCTION
)
4546 desc
= info
->descriptor
;
4547 se
->string_length
= ss
->string_length
;
4551 /* We pass sections without copying to a temporary. Make a new
4552 descriptor and point it at the section we want. The loop variable
4553 limits will be the limits of the section.
4554 A function may decide to repack the array to speed up access, but
4555 we're not bothered about that here. */
4564 /* Set the string_length for a character array. */
4565 if (expr
->ts
.type
== BT_CHARACTER
)
4566 se
->string_length
= gfc_get_expr_charlen (expr
);
4568 desc
= info
->descriptor
;
4569 gcc_assert (secss
&& secss
!= gfc_ss_terminator
);
4570 if (se
->direct_byref
)
4572 /* For pointer assignments we fill in the destination. */
4574 parmtype
= TREE_TYPE (parm
);
4578 /* Otherwise make a new one. */
4579 parmtype
= gfc_get_element_type (TREE_TYPE (desc
));
4580 parmtype
= gfc_get_array_type_bounds (parmtype
, loop
.dimen
,
4581 loop
.from
, loop
.to
, 0);
4582 parm
= gfc_create_var (parmtype
, "parm");
4585 offset
= gfc_index_zero_node
;
4588 /* The following can be somewhat confusing. We have two
4589 descriptors, a new one and the original array.
4590 {parm, parmtype, dim} refer to the new one.
4591 {desc, type, n, secss, loop} refer to the original, which maybe
4592 a descriptorless array.
4593 The bounds of the scalarization are the bounds of the section.
4594 We don't have to worry about numeric overflows when calculating
4595 the offsets because all elements are within the array data. */
4597 /* Set the dtype. */
4598 tmp
= gfc_conv_descriptor_dtype (parm
);
4599 gfc_add_modify_expr (&loop
.pre
, tmp
, gfc_get_dtype (parmtype
));
4601 if (se
->direct_byref
)
4602 base
= gfc_index_zero_node
;
4606 for (n
= 0; n
< info
->ref
->u
.ar
.dimen
; n
++)
4608 stride
= gfc_conv_array_stride (desc
, n
);
4610 /* Work out the offset. */
4611 if (info
->ref
->u
.ar
.dimen_type
[n
] == DIMEN_ELEMENT
)
4613 gcc_assert (info
->subscript
[n
]
4614 && info
->subscript
[n
]->type
== GFC_SS_SCALAR
);
4615 start
= info
->subscript
[n
]->data
.scalar
.expr
;
4619 /* Check we haven't somehow got out of sync. */
4620 gcc_assert (info
->dim
[dim
] == n
);
4622 /* Evaluate and remember the start of the section. */
4623 start
= info
->start
[dim
];
4624 stride
= gfc_evaluate_now (stride
, &loop
.pre
);
4627 tmp
= gfc_conv_array_lbound (desc
, n
);
4628 tmp
= fold_build2 (MINUS_EXPR
, TREE_TYPE (tmp
), start
, tmp
);
4630 tmp
= fold_build2 (MULT_EXPR
, TREE_TYPE (tmp
), tmp
, stride
);
4631 offset
= fold_build2 (PLUS_EXPR
, TREE_TYPE (tmp
), offset
, tmp
);
4633 if (info
->ref
->u
.ar
.dimen_type
[n
] == DIMEN_ELEMENT
)
4635 /* For elemental dimensions, we only need the offset. */
4639 /* Vector subscripts need copying and are handled elsewhere. */
4640 gcc_assert (info
->ref
->u
.ar
.dimen_type
[n
] == DIMEN_RANGE
);
4642 /* Set the new lower bound. */
4643 from
= loop
.from
[dim
];
4646 /* If we have an array section or are assigning to a pointer,
4647 make sure that the lower bound is 1. References to the full
4648 array should otherwise keep the original bounds. */
4649 if ((info
->ref
->u
.ar
.type
!= AR_FULL
|| se
->direct_byref
)
4650 && !integer_onep (from
))
4652 tmp
= fold_build2 (MINUS_EXPR
, gfc_array_index_type
,
4653 gfc_index_one_node
, from
);
4654 to
= fold_build2 (PLUS_EXPR
, gfc_array_index_type
, to
, tmp
);
4655 from
= gfc_index_one_node
;
4657 tmp
= gfc_conv_descriptor_lbound (parm
, gfc_rank_cst
[dim
]);
4658 gfc_add_modify_expr (&loop
.pre
, tmp
, from
);
4660 /* Set the new upper bound. */
4661 tmp
= gfc_conv_descriptor_ubound (parm
, gfc_rank_cst
[dim
]);
4662 gfc_add_modify_expr (&loop
.pre
, tmp
, to
);
4664 /* Multiply the stride by the section stride to get the
4666 stride
= fold_build2 (MULT_EXPR
, gfc_array_index_type
,
4667 stride
, info
->stride
[dim
]);
4669 if (se
->direct_byref
)
4670 base
= fold_build2 (MINUS_EXPR
, TREE_TYPE (base
),
4673 /* Store the new stride. */
4674 tmp
= gfc_conv_descriptor_stride (parm
, gfc_rank_cst
[dim
]);
4675 gfc_add_modify_expr (&loop
.pre
, tmp
, stride
);
4680 if (se
->data_not_needed
)
4681 gfc_conv_descriptor_data_set (&loop
.pre
, parm
, gfc_index_zero_node
);
4684 /* Point the data pointer at the first element in the section. */
4685 tmp
= gfc_conv_array_data (desc
);
4686 tmp
= build_fold_indirect_ref (tmp
);
4687 tmp
= gfc_build_array_ref (tmp
, offset
);
4688 offset
= gfc_build_addr_expr (gfc_array_dataptr_type (desc
), tmp
);
4689 gfc_conv_descriptor_data_set (&loop
.pre
, parm
, offset
);
4692 if (se
->direct_byref
&& !se
->data_not_needed
)
4694 /* Set the offset. */
4695 tmp
= gfc_conv_descriptor_offset (parm
);
4696 gfc_add_modify_expr (&loop
.pre
, tmp
, base
);
4700 /* Only the callee knows what the correct offset it, so just set
4702 tmp
= gfc_conv_descriptor_offset (parm
);
4703 gfc_add_modify_expr (&loop
.pre
, tmp
, gfc_index_zero_node
);
4708 if (!se
->direct_byref
)
4710 /* Get a pointer to the new descriptor. */
4711 if (se
->want_pointer
)
4712 se
->expr
= build_fold_addr_expr (desc
);
4717 gfc_add_block_to_block (&se
->pre
, &loop
.pre
);
4718 gfc_add_block_to_block (&se
->post
, &loop
.post
);
4720 /* Cleanup the scalarizer. */
4721 gfc_cleanup_loop (&loop
);
4725 /* Convert an array for passing as an actual parameter. */
4726 /* TODO: Optimize passing g77 arrays. */
4729 gfc_conv_array_parameter (gfc_se
* se
, gfc_expr
* expr
, gfc_ss
* ss
, int g77
)
4738 /* Passing address of the array if it is not pointer or assumed-shape. */
4739 if (expr
->expr_type
== EXPR_VARIABLE
4740 && expr
->ref
->u
.ar
.type
== AR_FULL
&& g77
)
4742 sym
= expr
->symtree
->n
.sym
;
4743 tmp
= gfc_get_symbol_decl (sym
);
4745 if (sym
->ts
.type
== BT_CHARACTER
)
4746 se
->string_length
= sym
->ts
.cl
->backend_decl
;
4747 if (!sym
->attr
.pointer
&& sym
->as
->type
!= AS_ASSUMED_SHAPE
4748 && !sym
->attr
.allocatable
)
4750 /* Some variables are declared directly, others are declared as
4751 pointers and allocated on the heap. */
4752 if (sym
->attr
.dummy
|| POINTER_TYPE_P (TREE_TYPE (tmp
)))
4755 se
->expr
= build_fold_addr_expr (tmp
);
4758 if (sym
->attr
.allocatable
)
4760 if (sym
->attr
.dummy
)
4762 gfc_conv_expr_descriptor (se
, expr
, ss
);
4763 se
->expr
= gfc_conv_array_data (se
->expr
);
4766 se
->expr
= gfc_conv_array_data (tmp
);
4771 se
->want_pointer
= 1;
4772 gfc_conv_expr_descriptor (se
, expr
, ss
);
4774 /* Deallocate the allocatable components of structures that are
4776 if (expr
->ts
.type
== BT_DERIVED
4777 && expr
->ts
.derived
->attr
.alloc_comp
4778 && expr
->expr_type
!= EXPR_VARIABLE
)
4780 tmp
= build_fold_indirect_ref (se
->expr
);
4781 tmp
= gfc_deallocate_alloc_comp (expr
->ts
.derived
, tmp
, expr
->rank
);
4782 gfc_add_expr_to_block (&se
->post
, tmp
);
4788 /* Repack the array. */
4789 tmp
= gfc_chainon_list (NULL_TREE
, desc
);
4790 ptr
= build_function_call_expr (gfor_fndecl_in_pack
, tmp
);
4791 ptr
= gfc_evaluate_now (ptr
, &se
->pre
);
4794 gfc_start_block (&block
);
4796 /* Copy the data back. */
4797 tmp
= gfc_chainon_list (NULL_TREE
, desc
);
4798 tmp
= gfc_chainon_list (tmp
, ptr
);
4799 tmp
= build_function_call_expr (gfor_fndecl_in_unpack
, tmp
);
4800 gfc_add_expr_to_block (&block
, tmp
);
4802 /* Free the temporary. */
4803 tmp
= convert (pvoid_type_node
, ptr
);
4804 tmp
= gfc_chainon_list (NULL_TREE
, tmp
);
4805 tmp
= build_function_call_expr (gfor_fndecl_internal_free
, tmp
);
4806 gfc_add_expr_to_block (&block
, tmp
);
4808 stmt
= gfc_finish_block (&block
);
4810 gfc_init_block (&block
);
4811 /* Only if it was repacked. This code needs to be executed before the
4812 loop cleanup code. */
4813 tmp
= build_fold_indirect_ref (desc
);
4814 tmp
= gfc_conv_array_data (tmp
);
4815 tmp
= build2 (NE_EXPR
, boolean_type_node
, ptr
, tmp
);
4816 tmp
= build3_v (COND_EXPR
, tmp
, stmt
, build_empty_stmt ());
4818 gfc_add_expr_to_block (&block
, tmp
);
4819 gfc_add_block_to_block (&block
, &se
->post
);
4821 gfc_init_block (&se
->post
);
4822 gfc_add_block_to_block (&se
->post
, &block
);
4827 /* Generate code to deallocate an array, if it is allocated. */
4830 gfc_trans_dealloc_allocated (tree descriptor
)
4837 gfc_start_block (&block
);
4839 var
= gfc_conv_descriptor_data_get (descriptor
);
4841 tmp
= gfc_create_var (gfc_array_index_type
, NULL
);
4842 ptr
= build_fold_addr_expr (tmp
);
4844 /* Call array_deallocate with an int* present in the second argument.
4845 Although it is ignored here, it's presence ensures that arrays that
4846 are already deallocated are ignored. */
4847 tmp
= gfc_chainon_list (NULL_TREE
, var
);
4848 tmp
= gfc_chainon_list (tmp
, ptr
);
4849 tmp
= build_function_call_expr (gfor_fndecl_deallocate
, tmp
);
4850 gfc_add_expr_to_block (&block
, tmp
);
4852 /* Zero the data pointer. */
4853 tmp
= build2 (MODIFY_EXPR
, void_type_node
,
4854 var
, build_int_cst (TREE_TYPE (var
), 0));
4855 gfc_add_expr_to_block (&block
, tmp
);
4857 return gfc_finish_block (&block
);
4861 /* This helper function calculates the size in words of a full array. */
4864 get_full_array_size (stmtblock_t
*block
, tree decl
, int rank
)
4869 idx
= gfc_rank_cst
[rank
- 1];
4870 nelems
= gfc_conv_descriptor_ubound (decl
, idx
);
4871 tmp
= gfc_conv_descriptor_lbound (decl
, idx
);
4872 tmp
= build2 (MINUS_EXPR
, gfc_array_index_type
, nelems
, tmp
);
4873 tmp
= build2 (PLUS_EXPR
, gfc_array_index_type
,
4874 tmp
, gfc_index_one_node
);
4875 tmp
= gfc_evaluate_now (tmp
, block
);
4877 nelems
= gfc_conv_descriptor_stride (decl
, idx
);
4878 tmp
= build2 (MULT_EXPR
, gfc_array_index_type
, nelems
, tmp
);
4879 return gfc_evaluate_now (tmp
, block
);
4883 /* Allocate dest to the same size as src, and copy src -> dest. */
4886 gfc_duplicate_allocatable(tree dest
, tree src
, tree type
, int rank
)
4896 /* If the source is null, set the destination to null. */
4897 gfc_init_block (&block
);
4898 gfc_conv_descriptor_data_set (&block
, dest
, null_pointer_node
);
4899 null_data
= gfc_finish_block (&block
);
4901 gfc_init_block (&block
);
4903 nelems
= get_full_array_size (&block
, src
, rank
);
4904 size
= fold_build2 (MULT_EXPR
, gfc_array_index_type
, nelems
,
4905 TYPE_SIZE_UNIT (gfc_get_element_type (type
)));
4907 /* Allocate memory to the destination. */
4908 tmp
= gfc_chainon_list (NULL_TREE
, size
);
4909 if (gfc_index_integer_kind
== 4)
4910 tmp
= build_function_call_expr (gfor_fndecl_internal_malloc
, tmp
);
4911 else if (gfc_index_integer_kind
== 8)
4912 tmp
= build_function_call_expr (gfor_fndecl_internal_malloc64
, tmp
);
4915 tmp
= fold (convert (TREE_TYPE (gfc_conv_descriptor_data_get (src
)),
4917 gfc_conv_descriptor_data_set (&block
, dest
, tmp
);
4919 /* We know the temporary and the value will be the same length,
4920 so can use memcpy. */
4921 tmp
= gfc_conv_descriptor_data_get (dest
);
4922 args
= gfc_chainon_list (NULL_TREE
, tmp
);
4923 tmp
= gfc_conv_descriptor_data_get (src
);
4924 args
= gfc_chainon_list (args
, tmp
);
4925 args
= gfc_chainon_list (args
, size
);
4926 tmp
= built_in_decls
[BUILT_IN_MEMCPY
];
4927 tmp
= build_function_call_expr (tmp
, args
);
4928 gfc_add_expr_to_block (&block
, tmp
);
4929 tmp
= gfc_finish_block (&block
);
4931 /* Null the destination if the source is null; otherwise do
4932 the allocate and copy. */
4933 null_cond
= gfc_conv_descriptor_data_get (src
);
4934 null_cond
= convert (pvoid_type_node
, null_cond
);
4935 null_cond
= build2 (NE_EXPR
, boolean_type_node
, null_cond
,
4937 return build3_v (COND_EXPR
, null_cond
, tmp
, null_data
);
4941 /* Recursively traverse an object of derived type, generating code to
4942 deallocate, nullify or copy allocatable components. This is the work horse
4943 function for the functions named in this enum. */
4945 enum {DEALLOCATE_ALLOC_COMP
= 1, NULLIFY_ALLOC_COMP
, COPY_ALLOC_COMP
};
4948 structure_alloc_comps (gfc_symbol
* der_type
, tree decl
,
4949 tree dest
, int rank
, int purpose
)
4953 stmtblock_t fnblock
;
4954 stmtblock_t loopbody
;
4964 tree null_cond
= NULL_TREE
;
4966 gfc_init_block (&fnblock
);
4968 if (POINTER_TYPE_P (TREE_TYPE (decl
)))
4969 decl
= build_fold_indirect_ref (decl
);
4971 /* If this an array of derived types with allocatable components
4972 build a loop and recursively call this function. */
4973 if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
4974 || GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (decl
)))
4976 tmp
= gfc_conv_array_data (decl
);
4977 var
= build_fold_indirect_ref (tmp
);
4979 /* Get the number of elements - 1 and set the counter. */
4980 if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (decl
)))
4982 /* Use the descriptor for an allocatable array. Since this
4983 is a full array reference, we only need the descriptor
4984 information from dimension = rank. */
4985 tmp
= get_full_array_size (&fnblock
, decl
, rank
);
4986 tmp
= build2 (MINUS_EXPR
, gfc_array_index_type
,
4987 tmp
, gfc_index_one_node
);
4989 null_cond
= gfc_conv_descriptor_data_get (decl
);
4990 null_cond
= build2 (NE_EXPR
, boolean_type_node
, null_cond
,
4991 build_int_cst (TREE_TYPE (tmp
), 0));
4995 /* Otherwise use the TYPE_DOMAIN information. */
4996 tmp
= array_type_nelts (TREE_TYPE (decl
));
4997 tmp
= fold_convert (gfc_array_index_type
, tmp
);
5000 /* Remember that this is, in fact, the no. of elements - 1. */
5001 nelems
= gfc_evaluate_now (tmp
, &fnblock
);
5002 index
= gfc_create_var (gfc_array_index_type
, "S");
5004 /* Build the body of the loop. */
5005 gfc_init_block (&loopbody
);
5007 vref
= gfc_build_array_ref (var
, index
);
5009 if (purpose
== COPY_ALLOC_COMP
)
5011 tmp
= gfc_duplicate_allocatable (dest
, decl
, TREE_TYPE(decl
), rank
);
5012 gfc_add_expr_to_block (&fnblock
, tmp
);
5014 tmp
= build_fold_indirect_ref (gfc_conv_descriptor_data_get (dest
));
5015 dref
= gfc_build_array_ref (tmp
, index
);
5016 tmp
= structure_alloc_comps (der_type
, vref
, dref
, rank
, purpose
);
5019 tmp
= structure_alloc_comps (der_type
, vref
, NULL_TREE
, rank
, purpose
);
5021 gfc_add_expr_to_block (&loopbody
, tmp
);
5023 /* Build the loop and return. */
5024 gfc_init_loopinfo (&loop
);
5026 loop
.from
[0] = gfc_index_zero_node
;
5027 loop
.loopvar
[0] = index
;
5028 loop
.to
[0] = nelems
;
5029 gfc_trans_scalarizing_loops (&loop
, &loopbody
);
5030 gfc_add_block_to_block (&fnblock
, &loop
.pre
);
5032 tmp
= gfc_finish_block (&fnblock
);
5033 if (null_cond
!= NULL_TREE
)
5034 tmp
= build3_v (COND_EXPR
, null_cond
, tmp
, build_empty_stmt ());
5039 /* Otherwise, act on the components or recursively call self to
5040 act on a chain of components. */
5041 for (c
= der_type
->components
; c
; c
= c
->next
)
5043 bool cmp_has_alloc_comps
= (c
->ts
.type
== BT_DERIVED
)
5044 && c
->ts
.derived
->attr
.alloc_comp
;
5045 cdecl = c
->backend_decl
;
5046 ctype
= TREE_TYPE (cdecl);
5050 case DEALLOCATE_ALLOC_COMP
:
5051 /* Do not deallocate the components of ultimate pointer
5053 if (cmp_has_alloc_comps
&& !c
->pointer
)
5055 comp
= build3 (COMPONENT_REF
, ctype
, decl
, cdecl, NULL_TREE
);
5056 rank
= c
->as
? c
->as
->rank
: 0;
5057 tmp
= structure_alloc_comps (c
->ts
.derived
, comp
, NULL_TREE
,
5059 gfc_add_expr_to_block (&fnblock
, tmp
);
5064 comp
= build3 (COMPONENT_REF
, ctype
, decl
, cdecl, NULL_TREE
);
5065 tmp
= gfc_trans_dealloc_allocated (comp
);
5066 gfc_add_expr_to_block (&fnblock
, tmp
);
5070 case NULLIFY_ALLOC_COMP
:
5073 else if (c
->allocatable
)
5075 comp
= build3 (COMPONENT_REF
, ctype
, decl
, cdecl, NULL_TREE
);
5076 gfc_conv_descriptor_data_set (&fnblock
, comp
, null_pointer_node
);
5078 else if (cmp_has_alloc_comps
)
5080 comp
= build3 (COMPONENT_REF
, ctype
, decl
, cdecl, NULL_TREE
);
5081 rank
= c
->as
? c
->as
->rank
: 0;
5082 tmp
= structure_alloc_comps (c
->ts
.derived
, comp
, NULL_TREE
,
5084 gfc_add_expr_to_block (&fnblock
, tmp
);
5088 case COPY_ALLOC_COMP
:
5092 /* We need source and destination components. */
5093 comp
= build3 (COMPONENT_REF
, ctype
, decl
, cdecl, NULL_TREE
);
5094 dcmp
= build3 (COMPONENT_REF
, ctype
, dest
, cdecl, NULL_TREE
);
5095 dcmp
= fold_convert (TREE_TYPE (comp
), dcmp
);
5097 if (c
->allocatable
&& !cmp_has_alloc_comps
)
5099 tmp
= gfc_duplicate_allocatable(dcmp
, comp
, ctype
, c
->as
->rank
);
5100 gfc_add_expr_to_block (&fnblock
, tmp
);
5103 if (cmp_has_alloc_comps
)
5105 rank
= c
->as
? c
->as
->rank
: 0;
5106 tmp
= fold_convert (TREE_TYPE (dcmp
), comp
);
5107 gfc_add_modify_expr (&fnblock
, dcmp
, tmp
);
5108 tmp
= structure_alloc_comps (c
->ts
.derived
, comp
, dcmp
,
5110 gfc_add_expr_to_block (&fnblock
, tmp
);
5120 return gfc_finish_block (&fnblock
);
5123 /* Recursively traverse an object of derived type, generating code to
5124 nullify allocatable components. */
5127 gfc_nullify_alloc_comp (gfc_symbol
* der_type
, tree decl
, int rank
)
5129 return structure_alloc_comps (der_type
, decl
, NULL_TREE
, rank
,
5130 NULLIFY_ALLOC_COMP
);
5134 /* Recursively traverse an object of derived type, generating code to
5135 deallocate allocatable components. */
5138 gfc_deallocate_alloc_comp (gfc_symbol
* der_type
, tree decl
, int rank
)
5140 return structure_alloc_comps (der_type
, decl
, NULL_TREE
, rank
,
5141 DEALLOCATE_ALLOC_COMP
);
5145 /* Recursively traverse an object of derived type, generating code to
5146 copy its allocatable components. */
5149 gfc_copy_alloc_comp (gfc_symbol
* der_type
, tree decl
, tree dest
, int rank
)
5151 return structure_alloc_comps (der_type
, decl
, dest
, rank
, COPY_ALLOC_COMP
);
5155 /* NULLIFY an allocatable/pointer array on function entry, free it on exit.
5156 Do likewise, recursively if necessary, with the allocatable components of
5160 gfc_trans_deferred_array (gfc_symbol
* sym
, tree body
)
5165 stmtblock_t fnblock
;
5168 bool sym_has_alloc_comp
;
5170 sym_has_alloc_comp
= (sym
->ts
.type
== BT_DERIVED
)
5171 && sym
->ts
.derived
->attr
.alloc_comp
;
5173 /* Make sure the frontend gets these right. */
5174 if (!(sym
->attr
.pointer
|| sym
->attr
.allocatable
|| sym_has_alloc_comp
))
5175 fatal_error ("Possible frontend bug: Deferred array size without pointer, "
5176 "allocatable attribute or derived type without allocatable "
5179 gfc_init_block (&fnblock
);
5181 gcc_assert (TREE_CODE (sym
->backend_decl
) == VAR_DECL
5182 || TREE_CODE (sym
->backend_decl
) == PARM_DECL
);
5184 if (sym
->ts
.type
== BT_CHARACTER
5185 && !INTEGER_CST_P (sym
->ts
.cl
->backend_decl
))
5187 gfc_trans_init_string_length (sym
->ts
.cl
, &fnblock
);
5188 gfc_trans_vla_type_sizes (sym
, &fnblock
);
5191 /* Dummy and use associated variables don't need anything special. */
5192 if (sym
->attr
.dummy
|| sym
->attr
.use_assoc
)
5194 gfc_add_expr_to_block (&fnblock
, body
);
5196 return gfc_finish_block (&fnblock
);
5199 gfc_get_backend_locus (&loc
);
5200 gfc_set_backend_locus (&sym
->declared_at
);
5201 descriptor
= sym
->backend_decl
;
5203 /* Although static, derived types with default initializers and
5204 allocatable components must not be nulled wholesale; instead they
5205 are treated component by component. */
5206 if (TREE_STATIC (descriptor
) && !sym_has_alloc_comp
)
5208 /* SAVEd variables are not freed on exit. */
5209 gfc_trans_static_array_pointer (sym
);
5213 /* Get the descriptor type. */
5214 type
= TREE_TYPE (sym
->backend_decl
);
5216 if (sym_has_alloc_comp
&& !(sym
->attr
.pointer
|| sym
->attr
.allocatable
))
5218 rank
= sym
->as
? sym
->as
->rank
: 0;
5219 tmp
= gfc_nullify_alloc_comp (sym
->ts
.derived
, descriptor
, rank
);
5220 gfc_add_expr_to_block (&fnblock
, tmp
);
5222 else if (!GFC_DESCRIPTOR_TYPE_P (type
))
5224 /* If the backend_decl is not a descriptor, we must have a pointer
5226 descriptor
= build_fold_indirect_ref (sym
->backend_decl
);
5227 type
= TREE_TYPE (descriptor
);
5230 /* NULLIFY the data pointer. */
5231 if (GFC_DESCRIPTOR_TYPE_P (type
))
5232 gfc_conv_descriptor_data_set (&fnblock
, descriptor
, null_pointer_node
);
5234 gfc_add_expr_to_block (&fnblock
, body
);
5236 gfc_set_backend_locus (&loc
);
5238 /* Allocatable arrays need to be freed when they go out of scope.
5239 The allocatable components of pointers must not be touched. */
5240 if (sym_has_alloc_comp
&& !(sym
->attr
.function
|| sym
->attr
.result
)
5241 && !sym
->attr
.pointer
)
5244 rank
= sym
->as
? sym
->as
->rank
: 0;
5245 tmp
= gfc_deallocate_alloc_comp (sym
->ts
.derived
, descriptor
, rank
);
5246 gfc_add_expr_to_block (&fnblock
, tmp
);
5249 if (sym
->attr
.allocatable
)
5251 tmp
= gfc_trans_dealloc_allocated (sym
->backend_decl
);
5252 gfc_add_expr_to_block (&fnblock
, tmp
);
5255 return gfc_finish_block (&fnblock
);
5258 /************ Expression Walking Functions ******************/
5260 /* Walk a variable reference.
5262 Possible extension - multiple component subscripts.
5263 x(:,:) = foo%a(:)%b(:)
5265 forall (i=..., j=...)
5266 x(i,j) = foo%a(j)%b(i)
5268 This adds a fair amout of complexity because you need to deal with more
5269 than one ref. Maybe handle in a similar manner to vector subscripts.
5270 Maybe not worth the effort. */
5274 gfc_walk_variable_expr (gfc_ss
* ss
, gfc_expr
* expr
)
5282 for (ref
= expr
->ref
; ref
; ref
= ref
->next
)
5283 if (ref
->type
== REF_ARRAY
&& ref
->u
.ar
.type
!= AR_ELEMENT
)
5286 for (; ref
; ref
= ref
->next
)
5288 if (ref
->type
== REF_SUBSTRING
)
5290 newss
= gfc_get_ss ();
5291 newss
->type
= GFC_SS_SCALAR
;
5292 newss
->expr
= ref
->u
.ss
.start
;
5296 newss
= gfc_get_ss ();
5297 newss
->type
= GFC_SS_SCALAR
;
5298 newss
->expr
= ref
->u
.ss
.end
;
5303 /* We're only interested in array sections from now on. */
5304 if (ref
->type
!= REF_ARRAY
)
5311 for (n
= 0; n
< ar
->dimen
; n
++)
5313 newss
= gfc_get_ss ();
5314 newss
->type
= GFC_SS_SCALAR
;
5315 newss
->expr
= ar
->start
[n
];
5322 newss
= gfc_get_ss ();
5323 newss
->type
= GFC_SS_SECTION
;
5326 newss
->data
.info
.dimen
= ar
->as
->rank
;
5327 newss
->data
.info
.ref
= ref
;
5329 /* Make sure array is the same as array(:,:), this way
5330 we don't need to special case all the time. */
5331 ar
->dimen
= ar
->as
->rank
;
5332 for (n
= 0; n
< ar
->dimen
; n
++)
5334 newss
->data
.info
.dim
[n
] = n
;
5335 ar
->dimen_type
[n
] = DIMEN_RANGE
;
5337 gcc_assert (ar
->start
[n
] == NULL
);
5338 gcc_assert (ar
->end
[n
] == NULL
);
5339 gcc_assert (ar
->stride
[n
] == NULL
);
5345 newss
= gfc_get_ss ();
5346 newss
->type
= GFC_SS_SECTION
;
5349 newss
->data
.info
.dimen
= 0;
5350 newss
->data
.info
.ref
= ref
;
5354 /* We add SS chains for all the subscripts in the section. */
5355 for (n
= 0; n
< ar
->dimen
; n
++)
5359 switch (ar
->dimen_type
[n
])
5362 /* Add SS for elemental (scalar) subscripts. */
5363 gcc_assert (ar
->start
[n
]);
5364 indexss
= gfc_get_ss ();
5365 indexss
->type
= GFC_SS_SCALAR
;
5366 indexss
->expr
= ar
->start
[n
];
5367 indexss
->next
= gfc_ss_terminator
;
5368 indexss
->loop_chain
= gfc_ss_terminator
;
5369 newss
->data
.info
.subscript
[n
] = indexss
;
5373 /* We don't add anything for sections, just remember this
5374 dimension for later. */
5375 newss
->data
.info
.dim
[newss
->data
.info
.dimen
] = n
;
5376 newss
->data
.info
.dimen
++;
5380 /* Create a GFC_SS_VECTOR index in which we can store
5381 the vector's descriptor. */
5382 indexss
= gfc_get_ss ();
5383 indexss
->type
= GFC_SS_VECTOR
;
5384 indexss
->expr
= ar
->start
[n
];
5385 indexss
->next
= gfc_ss_terminator
;
5386 indexss
->loop_chain
= gfc_ss_terminator
;
5387 newss
->data
.info
.subscript
[n
] = indexss
;
5388 newss
->data
.info
.dim
[newss
->data
.info
.dimen
] = n
;
5389 newss
->data
.info
.dimen
++;
5393 /* We should know what sort of section it is by now. */
5397 /* We should have at least one non-elemental dimension. */
5398 gcc_assert (newss
->data
.info
.dimen
> 0);
5403 /* We should know what sort of section it is by now. */
5412 /* Walk an expression operator. If only one operand of a binary expression is
5413 scalar, we must also add the scalar term to the SS chain. */
5416 gfc_walk_op_expr (gfc_ss
* ss
, gfc_expr
* expr
)
5422 head
= gfc_walk_subexpr (ss
, expr
->value
.op
.op1
);
5423 if (expr
->value
.op
.op2
== NULL
)
5426 head2
= gfc_walk_subexpr (head
, expr
->value
.op
.op2
);
5428 /* All operands are scalar. Pass back and let the caller deal with it. */
5432 /* All operands require scalarization. */
5433 if (head
!= ss
&& (expr
->value
.op
.op2
== NULL
|| head2
!= head
))
5436 /* One of the operands needs scalarization, the other is scalar.
5437 Create a gfc_ss for the scalar expression. */
5438 newss
= gfc_get_ss ();
5439 newss
->type
= GFC_SS_SCALAR
;
5442 /* First operand is scalar. We build the chain in reverse order, so
5443 add the scarar SS after the second operand. */
5445 while (head
&& head
->next
!= ss
)
5447 /* Check we haven't somehow broken the chain. */
5451 newss
->expr
= expr
->value
.op
.op1
;
5453 else /* head2 == head */
5455 gcc_assert (head2
== head
);
5456 /* Second operand is scalar. */
5457 newss
->next
= head2
;
5459 newss
->expr
= expr
->value
.op
.op2
;
5466 /* Reverse a SS chain. */
5469 gfc_reverse_ss (gfc_ss
* ss
)
5474 gcc_assert (ss
!= NULL
);
5476 head
= gfc_ss_terminator
;
5477 while (ss
!= gfc_ss_terminator
)
5480 /* Check we didn't somehow break the chain. */
5481 gcc_assert (next
!= NULL
);
5491 /* Walk the arguments of an elemental function. */
5494 gfc_walk_elemental_function_args (gfc_ss
* ss
, gfc_actual_arglist
*arg
,
5502 head
= gfc_ss_terminator
;
5505 for (; arg
; arg
= arg
->next
)
5510 newss
= gfc_walk_subexpr (head
, arg
->expr
);
5513 /* Scalar argument. */
5514 newss
= gfc_get_ss ();
5516 newss
->expr
= arg
->expr
;
5526 while (tail
->next
!= gfc_ss_terminator
)
5533 /* If all the arguments are scalar we don't need the argument SS. */
5534 gfc_free_ss_chain (head
);
5539 /* Add it onto the existing chain. */
5545 /* Walk a function call. Scalar functions are passed back, and taken out of
5546 scalarization loops. For elemental functions we walk their arguments.
5547 The result of functions returning arrays is stored in a temporary outside
5548 the loop, so that the function is only called once. Hence we do not need
5549 to walk their arguments. */
5552 gfc_walk_function_expr (gfc_ss
* ss
, gfc_expr
* expr
)
5555 gfc_intrinsic_sym
*isym
;
5558 isym
= expr
->value
.function
.isym
;
5560 /* Handle intrinsic functions separately. */
5562 return gfc_walk_intrinsic_function (ss
, expr
, isym
);
5564 sym
= expr
->value
.function
.esym
;
5566 sym
= expr
->symtree
->n
.sym
;
5568 /* A function that returns arrays. */
5569 if (gfc_return_by_reference (sym
) && sym
->result
->attr
.dimension
)
5571 newss
= gfc_get_ss ();
5572 newss
->type
= GFC_SS_FUNCTION
;
5575 newss
->data
.info
.dimen
= expr
->rank
;
5579 /* Walk the parameters of an elemental function. For now we always pass
5581 if (sym
->attr
.elemental
)
5582 return gfc_walk_elemental_function_args (ss
, expr
->value
.function
.actual
,
5585 /* Scalar functions are OK as these are evaluated outside the scalarization
5586 loop. Pass back and let the caller deal with it. */
5591 /* An array temporary is constructed for array constructors. */
5594 gfc_walk_array_constructor (gfc_ss
* ss
, gfc_expr
* expr
)
5599 newss
= gfc_get_ss ();
5600 newss
->type
= GFC_SS_CONSTRUCTOR
;
5603 newss
->data
.info
.dimen
= expr
->rank
;
5604 for (n
= 0; n
< expr
->rank
; n
++)
5605 newss
->data
.info
.dim
[n
] = n
;
5611 /* Walk an expression. Add walked expressions to the head of the SS chain.
5612 A wholly scalar expression will not be added. */
5615 gfc_walk_subexpr (gfc_ss
* ss
, gfc_expr
* expr
)
5619 switch (expr
->expr_type
)
5622 head
= gfc_walk_variable_expr (ss
, expr
);
5626 head
= gfc_walk_op_expr (ss
, expr
);
5630 head
= gfc_walk_function_expr (ss
, expr
);
5635 case EXPR_STRUCTURE
:
5636 /* Pass back and let the caller deal with it. */
5640 head
= gfc_walk_array_constructor (ss
, expr
);
5643 case EXPR_SUBSTRING
:
5644 /* Pass back and let the caller deal with it. */
5648 internal_error ("bad expression type during walk (%d)",
5655 /* Entry point for expression walking.
5656 A return value equal to the passed chain means this is
5657 a scalar expression. It is up to the caller to take whatever action is
5658 necessary to translate these. */
5661 gfc_walk_expr (gfc_expr
* expr
)
5665 res
= gfc_walk_subexpr (gfc_ss_terminator
, expr
);
5666 return gfc_reverse_ss (res
);