]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/fortran/trans-expr.c
* gcc.dg/framework-2.c: Adjust testcase to pass.
[thirdparty/gcc.git] / gcc / fortran / trans-expr.c
CommitLineData
4ee9c684 1/* Expression translation
cfaf579d 2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
ea94d76d 3 Free Software Foundation, Inc.
4ee9c684 4 Contributed by Paul Brook <paul@nowt.org>
5 and Steven Bosscher <s.bosscher@student.tudelft.nl>
6
c84b470d 7This file is part of GCC.
4ee9c684 8
c84b470d 9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
bdabe786 11Software Foundation; either version 3, or (at your option) any later
c84b470d 12version.
4ee9c684 13
c84b470d 14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
4ee9c684 18
19You should have received a copy of the GNU General Public License
bdabe786 20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
4ee9c684 22
23/* trans-expr.c-- generate GENERIC trees for gfc_expr. */
24
25#include "config.h"
26#include "system.h"
27#include "coretypes.h"
28#include "tree.h"
29#include "convert.h"
4ee9c684 30#include "ggc.h"
31#include "toplev.h"
32#include "real.h"
75a70cf9 33#include "gimple.h"
59b9dcbd 34#include "langhooks.h"
4ee9c684 35#include "flags.h"
4ee9c684 36#include "gfortran.h"
fd149f95 37#include "arith.h"
4ee9c684 38#include "trans.h"
39#include "trans-const.h"
40#include "trans-types.h"
41#include "trans-array.h"
42/* Only for gfc_trans_assign and gfc_trans_pointer_assign. */
43#include "trans-stmt.h"
c99d633f 44#include "dependency.h"
4ee9c684 45
9a0aec1d 46static tree gfc_trans_structure_assign (tree dest, gfc_expr * expr);
fd149f95 47static void gfc_apply_interface_mapping_to_expr (gfc_interface_mapping *,
f45a476e 48 gfc_expr *);
4ee9c684 49
50/* Copy the scalarization loop variables. */
51
52static void
53gfc_copy_se_loopvars (gfc_se * dest, gfc_se * src)
54{
55 dest->ss = src->ss;
56 dest->loop = src->loop;
57}
58
59
f888a3fb 60/* Initialize a simple expression holder.
4ee9c684 61
62 Care must be taken when multiple se are created with the same parent.
63 The child se must be kept in sync. The easiest way is to delay creation
64 of a child se until after after the previous se has been translated. */
65
66void
67gfc_init_se (gfc_se * se, gfc_se * parent)
68{
69 memset (se, 0, sizeof (gfc_se));
70 gfc_init_block (&se->pre);
71 gfc_init_block (&se->post);
72
73 se->parent = parent;
74
75 if (parent)
76 gfc_copy_se_loopvars (se, parent);
77}
78
79
80/* Advances to the next SS in the chain. Use this rather than setting
f888a3fb 81 se->ss = se->ss->next because all the parents needs to be kept in sync.
4ee9c684 82 See gfc_init_se. */
83
84void
85gfc_advance_se_ss_chain (gfc_se * se)
86{
87 gfc_se *p;
88
22d678e8 89 gcc_assert (se != NULL && se->ss != NULL && se->ss != gfc_ss_terminator);
4ee9c684 90
91 p = se;
92 /* Walk down the parent chain. */
93 while (p != NULL)
94 {
f888a3fb 95 /* Simple consistency check. */
22d678e8 96 gcc_assert (p->parent == NULL || p->parent->ss == p->ss);
4ee9c684 97
98 p->ss = p->ss->next;
99
100 p = p->parent;
101 }
102}
103
104
105/* Ensures the result of the expression as either a temporary variable
106 or a constant so that it can be used repeatedly. */
107
108void
109gfc_make_safe_expr (gfc_se * se)
110{
111 tree var;
112
ce45a448 113 if (CONSTANT_CLASS_P (se->expr))
4ee9c684 114 return;
115
f888a3fb 116 /* We need a temporary for this result. */
4ee9c684 117 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
75a70cf9 118 gfc_add_modify (&se->pre, var, se->expr);
4ee9c684 119 se->expr = var;
120}
121
122
5cb9d0d8 123/* Return an expression which determines if a dummy parameter is present.
124 Also used for arguments to procedures with multiple entry points. */
4ee9c684 125
126tree
127gfc_conv_expr_present (gfc_symbol * sym)
128{
129 tree decl;
130
5cb9d0d8 131 gcc_assert (sym->attr.dummy);
4ee9c684 132
133 decl = gfc_get_symbol_decl (sym);
134 if (TREE_CODE (decl) != PARM_DECL)
135 {
136 /* Array parameters use a temporary descriptor, we want the real
137 parameter. */
22d678e8 138 gcc_assert (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (decl))
4ee9c684 139 || GFC_ARRAY_TYPE_P (TREE_TYPE (decl)));
140 decl = GFC_DECL_SAVED_DESCRIPTOR (decl);
141 }
f75d6b8a 142 return fold_build2 (NE_EXPR, boolean_type_node, decl,
143 fold_convert (TREE_TYPE (decl), null_pointer_node));
4ee9c684 144}
145
146
bd24f178 147/* Converts a missing, dummy argument into a null or zero. */
148
149void
2abe085f 150gfc_conv_missing_dummy (gfc_se * se, gfc_expr * arg, gfc_typespec ts, int kind)
bd24f178 151{
152 tree present;
153 tree tmp;
154
155 present = gfc_conv_expr_present (arg->symtree->n.sym);
24146844 156
2abe085f 157 if (kind > 0)
158 {
52c2abc3 159 /* Create a temporary and convert it to the correct type. */
2abe085f 160 tmp = gfc_get_int_type (kind);
52c2abc3 161 tmp = fold_convert (tmp, build_fold_indirect_ref (se->expr));
162
163 /* Test for a NULL value. */
55f62e9d 164 tmp = build3 (COND_EXPR, TREE_TYPE (tmp), present, tmp,
165 fold_convert (TREE_TYPE (tmp), integer_one_node));
52c2abc3 166 tmp = gfc_evaluate_now (tmp, &se->pre);
86f2ad37 167 se->expr = gfc_build_addr_expr (NULL_TREE, tmp);
52c2abc3 168 }
169 else
170 {
171 tmp = build3 (COND_EXPR, TREE_TYPE (se->expr), present, se->expr,
172 fold_convert (TREE_TYPE (se->expr), integer_zero_node));
173 tmp = gfc_evaluate_now (tmp, &se->pre);
174 se->expr = tmp;
2abe085f 175 }
24146844 176
bd24f178 177 if (ts.type == BT_CHARACTER)
178 {
7d3075f6 179 tmp = build_int_cst (gfc_charlen_type_node, 0);
f75d6b8a 180 tmp = fold_build3 (COND_EXPR, gfc_charlen_type_node,
181 present, se->string_length, tmp);
bd24f178 182 tmp = gfc_evaluate_now (tmp, &se->pre);
183 se->string_length = tmp;
184 }
185 return;
186}
187
188
6bf678b8 189/* Get the character length of an expression, looking through gfc_refs
190 if necessary. */
191
192tree
193gfc_get_expr_charlen (gfc_expr *e)
194{
195 gfc_ref *r;
196 tree length;
197
198 gcc_assert (e->expr_type == EXPR_VARIABLE
199 && e->ts.type == BT_CHARACTER);
200
201 length = NULL; /* To silence compiler warning. */
202
1033248c 203 if (is_subref_array (e) && e->ts.cl->length)
204 {
205 gfc_se tmpse;
206 gfc_init_se (&tmpse, NULL);
207 gfc_conv_expr_type (&tmpse, e->ts.cl->length, gfc_charlen_type_node);
208 e->ts.cl->backend_decl = tmpse.expr;
209 return tmpse.expr;
210 }
211
6bf678b8 212 /* First candidate: if the variable is of type CHARACTER, the
213 expression's length could be the length of the character
b14e2757 214 variable. */
6bf678b8 215 if (e->symtree->n.sym->ts.type == BT_CHARACTER)
216 length = e->symtree->n.sym->ts.cl->backend_decl;
217
218 /* Look through the reference chain for component references. */
219 for (r = e->ref; r; r = r->next)
220 {
221 switch (r->type)
222 {
223 case REF_COMPONENT:
224 if (r->u.c.component->ts.type == BT_CHARACTER)
225 length = r->u.c.component->ts.cl->backend_decl;
226 break;
227
228 case REF_ARRAY:
229 /* Do nothing. */
230 break;
231
232 default:
233 /* We should never got substring references here. These will be
234 broken down by the scalarizer. */
235 gcc_unreachable ();
1033248c 236 break;
6bf678b8 237 }
238 }
239
240 gcc_assert (length != NULL);
241 return length;
242}
243
d778204a 244
245/* For each character array constructor subexpression without a ts.cl->length,
246 replace it by its first element (if there aren't any elements, the length
247 should already be set to zero). */
248
249static void
250flatten_array_ctors_without_strlen (gfc_expr* e)
251{
252 gfc_actual_arglist* arg;
253 gfc_constructor* c;
254
255 if (!e)
256 return;
257
258 switch (e->expr_type)
259 {
260
261 case EXPR_OP:
262 flatten_array_ctors_without_strlen (e->value.op.op1);
263 flatten_array_ctors_without_strlen (e->value.op.op2);
264 break;
265
266 case EXPR_COMPCALL:
267 /* TODO: Implement as with EXPR_FUNCTION when needed. */
268 gcc_unreachable ();
269
270 case EXPR_FUNCTION:
271 for (arg = e->value.function.actual; arg; arg = arg->next)
272 flatten_array_ctors_without_strlen (arg->expr);
273 break;
274
275 case EXPR_ARRAY:
276
277 /* We've found what we're looking for. */
278 if (e->ts.type == BT_CHARACTER && !e->ts.cl->length)
279 {
280 gfc_expr* new_expr;
281 gcc_assert (e->value.constructor);
282
283 new_expr = e->value.constructor->expr;
284 e->value.constructor->expr = NULL;
285
286 flatten_array_ctors_without_strlen (new_expr);
287 gfc_replace_expr (e, new_expr);
288 break;
289 }
290
291 /* Otherwise, fall through to handle constructor elements. */
292 case EXPR_STRUCTURE:
293 for (c = e->value.constructor; c; c = c->next)
294 flatten_array_ctors_without_strlen (c->expr);
295 break;
296
297 default:
298 break;
299
300 }
301}
302
6bf678b8 303
4ee9c684 304/* Generate code to initialize a string length variable. Returns the
d778204a 305 value. For array constructors, cl->length might be NULL and in this case,
306 the first element of the constructor is needed. expr is the original
307 expression so we can access it but can be NULL if this is not needed. */
4ee9c684 308
309void
d778204a 310gfc_conv_string_length (gfc_charlen * cl, gfc_expr * expr, stmtblock_t * pblock)
4ee9c684 311{
312 gfc_se se;
4ee9c684 313
314 gfc_init_se (&se, NULL);
d778204a 315
316 /* If cl->length is NULL, use gfc_conv_expr to obtain the string length but
317 "flatten" array constructors by taking their first element; all elements
318 should be the same length or a cl->length should be present. */
319 if (!cl->length)
320 {
321 gfc_expr* expr_flat;
322 gcc_assert (expr);
323
324 expr_flat = gfc_copy_expr (expr);
325 flatten_array_ctors_without_strlen (expr_flat);
326 gfc_resolve_expr (expr_flat);
327
328 gfc_conv_expr (&se, expr_flat);
329 gfc_add_block_to_block (pblock, &se.pre);
330 cl->backend_decl = convert (gfc_charlen_type_node, se.string_length);
331
332 gfc_free_expr (expr_flat);
333 return;
334 }
335
336 /* Convert cl->length. */
337
338 gcc_assert (cl->length);
339
9ad09405 340 gfc_conv_expr_type (&se, cl->length, gfc_charlen_type_node);
a0ab480a 341 se.expr = fold_build2 (MAX_EXPR, gfc_charlen_type_node, se.expr,
342 build_int_cst (gfc_charlen_type_node, 0));
4ee9c684 343 gfc_add_block_to_block (pblock, &se.pre);
344
0ff77f4e 345 if (cl->backend_decl)
75a70cf9 346 gfc_add_modify (pblock, cl->backend_decl, se.expr);
0ff77f4e 347 else
348 cl->backend_decl = gfc_evaluate_now (se.expr, pblock);
4ee9c684 349}
350
f888a3fb 351
4ee9c684 352static void
ee3729de 353gfc_conv_substring (gfc_se * se, gfc_ref * ref, int kind,
354 const char *name, locus *where)
4ee9c684 355{
356 tree tmp;
357 tree type;
358 tree var;
ee3729de 359 tree fault;
4ee9c684 360 gfc_se start;
361 gfc_se end;
ee3729de 362 char *msg;
4ee9c684 363
364 type = gfc_get_character_type (kind, ref->u.ss.length);
365 type = build_pointer_type (type);
366
367 var = NULL_TREE;
368 gfc_init_se (&start, se);
9ad09405 369 gfc_conv_expr_type (&start, ref->u.ss.start, gfc_charlen_type_node);
4ee9c684 370 gfc_add_block_to_block (&se->pre, &start.pre);
371
372 if (integer_onep (start.expr))
260abd71 373 gfc_conv_string_parameter (se);
4ee9c684 374 else
375 {
1bfb5669 376 /* Avoid multiple evaluation of substring start. */
377 if (!CONSTANT_CLASS_P (start.expr) && !DECL_P (start.expr))
378 start.expr = gfc_evaluate_now (start.expr, &se->pre);
379
4ee9c684 380 /* Change the start of the string. */
381 if (TYPE_STRING_FLAG (TREE_TYPE (se->expr)))
382 tmp = se->expr;
383 else
4fa2c167 384 tmp = build_fold_indirect_ref (se->expr);
1033248c 385 tmp = gfc_build_array_ref (tmp, start.expr, NULL);
4ee9c684 386 se->expr = gfc_build_addr_expr (type, tmp);
387 }
388
389 /* Length = end + 1 - start. */
390 gfc_init_se (&end, se);
391 if (ref->u.ss.end == NULL)
392 end.expr = se->string_length;
393 else
394 {
9ad09405 395 gfc_conv_expr_type (&end, ref->u.ss.end, gfc_charlen_type_node);
4ee9c684 396 gfc_add_block_to_block (&se->pre, &end.pre);
397 }
1bfb5669 398 if (!CONSTANT_CLASS_P (end.expr) && !DECL_P (end.expr))
399 end.expr = gfc_evaluate_now (end.expr, &se->pre);
400
ad8ed98e 401 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
ee3729de 402 {
53e60566 403 tree nonempty = fold_build2 (LE_EXPR, boolean_type_node,
404 start.expr, end.expr);
405
ee3729de 406 /* Check lower bound. */
407 fault = fold_build2 (LT_EXPR, boolean_type_node, start.expr,
408 build_int_cst (gfc_charlen_type_node, 1));
53e60566 409 fault = fold_build2 (TRUTH_ANDIF_EXPR, boolean_type_node,
410 nonempty, fault);
ee3729de 411 if (name)
399aecc1 412 asprintf (&msg, "Substring out of bounds: lower bound (%%ld) of '%s' "
ee3729de 413 "is less than one", name);
414 else
399aecc1 415 asprintf (&msg, "Substring out of bounds: lower bound (%%ld)"
ee3729de 416 "is less than one");
da6ffc6d 417 gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
399aecc1 418 fold_convert (long_integer_type_node,
419 start.expr));
ee3729de 420 gfc_free (msg);
421
422 /* Check upper bound. */
423 fault = fold_build2 (GT_EXPR, boolean_type_node, end.expr,
424 se->string_length);
53e60566 425 fault = fold_build2 (TRUTH_ANDIF_EXPR, boolean_type_node,
426 nonempty, fault);
ee3729de 427 if (name)
399aecc1 428 asprintf (&msg, "Substring out of bounds: upper bound (%%ld) of '%s' "
429 "exceeds string length (%%ld)", name);
ee3729de 430 else
399aecc1 431 asprintf (&msg, "Substring out of bounds: upper bound (%%ld) "
432 "exceeds string length (%%ld)");
da6ffc6d 433 gfc_trans_runtime_check (true, false, fault, &se->pre, where, msg,
399aecc1 434 fold_convert (long_integer_type_node, end.expr),
435 fold_convert (long_integer_type_node,
436 se->string_length));
ee3729de 437 gfc_free (msg);
438 }
439
ce825331 440 tmp = fold_build2 (MINUS_EXPR, gfc_charlen_type_node,
441 build_int_cst (gfc_charlen_type_node, 1),
442 start.expr);
443 tmp = fold_build2 (PLUS_EXPR, gfc_charlen_type_node, end.expr, tmp);
2810b378 444 tmp = fold_build2 (MAX_EXPR, gfc_charlen_type_node, tmp,
445 build_int_cst (gfc_charlen_type_node, 0));
ce825331 446 se->string_length = tmp;
4ee9c684 447}
448
449
450/* Convert a derived type component reference. */
451
452static void
453gfc_conv_component_ref (gfc_se * se, gfc_ref * ref)
454{
455 gfc_component *c;
456 tree tmp;
457 tree decl;
458 tree field;
459
460 c = ref->u.c.component;
461
22d678e8 462 gcc_assert (c->backend_decl);
4ee9c684 463
464 field = c->backend_decl;
22d678e8 465 gcc_assert (TREE_CODE (field) == FIELD_DECL);
4ee9c684 466 decl = se->expr;
f75d6b8a 467 tmp = fold_build3 (COMPONENT_REF, TREE_TYPE (field), decl, field, NULL_TREE);
4ee9c684 468
469 se->expr = tmp;
470
471 if (c->ts.type == BT_CHARACTER)
472 {
473 tmp = c->ts.cl->backend_decl;
7949cb07 474 /* Components must always be constant length. */
22d678e8 475 gcc_assert (tmp && INTEGER_CST_P (tmp));
4ee9c684 476 se->string_length = tmp;
477 }
478
85d1c108 479 if ((c->attr.pointer && c->attr.dimension == 0 && c->ts.type != BT_CHARACTER)
480 || c->attr.proc_pointer)
4fa2c167 481 se->expr = build_fold_indirect_ref (se->expr);
4ee9c684 482}
483
484
ea94d76d 485/* This function deals with component references to components of the
486 parent type for derived type extensons. */
487static void
488conv_parent_component_references (gfc_se * se, gfc_ref * ref)
489{
490 gfc_component *c;
491 gfc_component *cmp;
492 gfc_symbol *dt;
493 gfc_ref parent;
494
495 dt = ref->u.c.sym;
496 c = ref->u.c.component;
497
498 /* Build a gfc_ref to recursively call gfc_conv_component_ref. */
499 parent.type = REF_COMPONENT;
500 parent.next = NULL;
501 parent.u.c.sym = dt;
502 parent.u.c.component = dt->components;
503
504 if (dt->attr.extension && dt->components)
505 {
506 /* Return if the component is not in the parent type. */
507 for (cmp = dt->components->next; cmp; cmp = cmp->next)
508 if (strcmp (c->name, cmp->name) == 0)
509 return;
510
511 /* Otherwise build the reference and call self. */
512 gfc_conv_component_ref (se, &parent);
513 parent.u.c.sym = dt->components->ts.derived;
514 parent.u.c.component = c;
515 conv_parent_component_references (se, &parent);
516 }
517}
518
4ee9c684 519/* Return the contents of a variable. Also handles reference/pointer
520 variables (all Fortran pointer references are implicit). */
521
522static void
523gfc_conv_variable (gfc_se * se, gfc_expr * expr)
524{
525 gfc_ref *ref;
526 gfc_symbol *sym;
c750cc52 527 tree parent_decl;
528 int parent_flag;
529 bool return_value;
530 bool alternate_entry;
531 bool entry_master;
4ee9c684 532
533 sym = expr->symtree->n.sym;
534 if (se->ss != NULL)
535 {
536 /* Check that something hasn't gone horribly wrong. */
22d678e8 537 gcc_assert (se->ss != gfc_ss_terminator);
538 gcc_assert (se->ss->expr == expr);
4ee9c684 539
540 /* A scalarized term. We already know the descriptor. */
541 se->expr = se->ss->data.info.descriptor;
7949cb07 542 se->string_length = se->ss->string_length;
598d8efb 543 for (ref = se->ss->data.info.ref; ref; ref = ref->next)
544 if (ref->type == REF_ARRAY && ref->u.ar.type != AR_ELEMENT)
545 break;
4ee9c684 546 }
547 else
548 {
c6871095 549 tree se_expr = NULL_TREE;
550
b7bf3f81 551 se->expr = gfc_get_symbol_decl (sym);
4ee9c684 552
c750cc52 553 /* Deal with references to a parent results or entries by storing
554 the current_function_decl and moving to the parent_decl. */
c750cc52 555 return_value = sym->attr.function && sym->result == sym;
556 alternate_entry = sym->attr.function && sym->attr.entry
b01f72f3 557 && sym->result == sym;
c750cc52 558 entry_master = sym->attr.result
b01f72f3 559 && sym->ns->proc_name->attr.entry_master
560 && !gfc_return_by_reference (sym->ns->proc_name);
c750cc52 561 parent_decl = DECL_CONTEXT (current_function_decl);
562
563 if ((se->expr == parent_decl && return_value)
b01f72f3 564 || (sym->ns && sym->ns->proc_name
d77f260f 565 && parent_decl
b01f72f3 566 && sym->ns->proc_name->backend_decl == parent_decl
567 && (alternate_entry || entry_master)))
c750cc52 568 parent_flag = 1;
569 else
570 parent_flag = 0;
571
c6871095 572 /* Special case for assigning the return value of a function.
573 Self recursive functions must have an explicit return value. */
b01f72f3 574 if (return_value && (se->expr == current_function_decl || parent_flag))
c750cc52 575 se_expr = gfc_get_fake_result_decl (sym, parent_flag);
c6871095 576
577 /* Similarly for alternate entry points. */
c750cc52 578 else if (alternate_entry
b01f72f3 579 && (sym->ns->proc_name->backend_decl == current_function_decl
580 || parent_flag))
c6871095 581 {
582 gfc_entry_list *el = NULL;
583
584 for (el = sym->ns->entries; el; el = el->next)
585 if (sym == el->sym)
586 {
c750cc52 587 se_expr = gfc_get_fake_result_decl (sym, parent_flag);
c6871095 588 break;
589 }
590 }
591
c750cc52 592 else if (entry_master
b01f72f3 593 && (sym->ns->proc_name->backend_decl == current_function_decl
594 || parent_flag))
c750cc52 595 se_expr = gfc_get_fake_result_decl (sym, parent_flag);
c6871095 596
597 if (se_expr)
598 se->expr = se_expr;
599
4ee9c684 600 /* Procedure actual arguments. */
c6871095 601 else if (sym->attr.flavor == FL_PROCEDURE
602 && se->expr != current_function_decl)
4ee9c684 603 {
cad0ddcf 604 if (!sym->attr.dummy && !sym->attr.proc_pointer)
4ee9c684 605 {
22d678e8 606 gcc_assert (TREE_CODE (se->expr) == FUNCTION_DECL);
86f2ad37 607 se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
4ee9c684 608 }
609 return;
544c333b 610 }
611
612
613 /* Dereference the expression, where needed. Since characters
614 are entirely different from other types, they are treated
615 separately. */
616 if (sym->ts.type == BT_CHARACTER)
617 {
8f6339b6 618 /* Dereference character pointer dummy arguments
bf7e666b 619 or results. */
544c333b 620 if ((sym->attr.pointer || sym->attr.allocatable)
4442ee19 621 && (sym->attr.dummy
622 || sym->attr.function
623 || sym->attr.result))
4fa2c167 624 se->expr = build_fold_indirect_ref (se->expr);
8f6339b6 625
544c333b 626 }
8f6339b6 627 else if (!sym->attr.value)
544c333b 628 {
747a9f62 629 /* Dereference non-character scalar dummy arguments. */
4442ee19 630 if (sym->attr.dummy && !sym->attr.dimension)
4fa2c167 631 se->expr = build_fold_indirect_ref (se->expr);
544c333b 632
bf7e666b 633 /* Dereference scalar hidden result. */
4442ee19 634 if (gfc_option.flag_f2c && sym->ts.type == BT_COMPLEX
544c333b 635 && (sym->attr.function || sym->attr.result)
36efa756 636 && !sym->attr.dimension && !sym->attr.pointer
637 && !sym->attr.always_explicit)
4fa2c167 638 se->expr = build_fold_indirect_ref (se->expr);
544c333b 639
640 /* Dereference non-character pointer variables.
747a9f62 641 These must be dummies, results, or scalars. */
544c333b 642 if ((sym->attr.pointer || sym->attr.allocatable)
4442ee19 643 && (sym->attr.dummy
644 || sym->attr.function
645 || sym->attr.result
646 || !sym->attr.dimension))
4fa2c167 647 se->expr = build_fold_indirect_ref (se->expr);
544c333b 648 }
649
4ee9c684 650 ref = expr->ref;
651 }
652
653 /* For character variables, also get the length. */
654 if (sym->ts.type == BT_CHARACTER)
655 {
7af6a4af 656 /* If the character length of an entry isn't set, get the length from
657 the master function instead. */
658 if (sym->attr.entry && !sym->ts.cl->backend_decl)
659 se->string_length = sym->ns->proc_name->ts.cl->backend_decl;
660 else
661 se->string_length = sym->ts.cl->backend_decl;
22d678e8 662 gcc_assert (se->string_length);
4ee9c684 663 }
664
665 while (ref)
666 {
667 switch (ref->type)
668 {
669 case REF_ARRAY:
670 /* Return the descriptor if that's what we want and this is an array
671 section reference. */
672 if (se->descriptor_only && ref->u.ar.type != AR_ELEMENT)
673 return;
674/* TODO: Pointers to single elements of array sections, eg elemental subs. */
675 /* Return the descriptor for array pointers and allocations. */
676 if (se->want_pointer
677 && ref->next == NULL && (se->descriptor_only))
678 return;
679
97c2a00c 680 gfc_conv_array_ref (se, &ref->u.ar, sym, &expr->where);
4ee9c684 681 /* Return a pointer to an element. */
682 break;
683
684 case REF_COMPONENT:
ea94d76d 685 if (ref->u.c.sym->attr.extension)
686 conv_parent_component_references (se, ref);
687
4ee9c684 688 gfc_conv_component_ref (se, ref);
689 break;
690
691 case REF_SUBSTRING:
ee3729de 692 gfc_conv_substring (se, ref, expr->ts.kind,
693 expr->symtree->name, &expr->where);
4ee9c684 694 break;
695
696 default:
22d678e8 697 gcc_unreachable ();
4ee9c684 698 break;
699 }
700 ref = ref->next;
701 }
702 /* Pointer assignment, allocation or pass by reference. Arrays are handled
f888a3fb 703 separately. */
4ee9c684 704 if (se->want_pointer)
705 {
706 if (expr->ts.type == BT_CHARACTER)
707 gfc_conv_string_parameter (se);
708 else
86f2ad37 709 se->expr = gfc_build_addr_expr (NULL_TREE, se->expr);
4ee9c684 710 }
4ee9c684 711}
712
713
714/* Unary ops are easy... Or they would be if ! was a valid op. */
715
716static void
717gfc_conv_unary_op (enum tree_code code, gfc_se * se, gfc_expr * expr)
718{
719 gfc_se operand;
720 tree type;
721
22d678e8 722 gcc_assert (expr->ts.type != BT_CHARACTER);
4ee9c684 723 /* Initialize the operand. */
724 gfc_init_se (&operand, se);
9b773341 725 gfc_conv_expr_val (&operand, expr->value.op.op1);
4ee9c684 726 gfc_add_block_to_block (&se->pre, &operand.pre);
727
728 type = gfc_typenode_for_spec (&expr->ts);
729
730 /* TRUTH_NOT_EXPR is not a "true" unary operator in GCC.
731 We must convert it to a compare to 0 (e.g. EQ_EXPR (op1, 0)).
f888a3fb 732 All other unary operators have an equivalent GIMPLE unary operator. */
4ee9c684 733 if (code == TRUTH_NOT_EXPR)
751ff693 734 se->expr = fold_build2 (EQ_EXPR, type, operand.expr,
735 build_int_cst (type, 0));
4ee9c684 736 else
751ff693 737 se->expr = fold_build1 (code, type, operand.expr);
4ee9c684 738
739}
740
76834664 741/* Expand power operator to optimal multiplications when a value is raised
f888a3fb 742 to a constant integer n. See section 4.6.3, "Evaluation of Powers" of
76834664 743 Donald E. Knuth, "Seminumerical Algorithms", Vol. 2, "The Art of Computer
744 Programming", 3rd Edition, 1998. */
745
746/* This code is mostly duplicated from expand_powi in the backend.
747 We establish the "optimal power tree" lookup table with the defined size.
748 The items in the table are the exponents used to calculate the index
749 exponents. Any integer n less than the value can get an "addition chain",
750 with the first node being one. */
751#define POWI_TABLE_SIZE 256
752
f888a3fb 753/* The table is from builtins.c. */
76834664 754static const unsigned char powi_table[POWI_TABLE_SIZE] =
755 {
756 0, 1, 1, 2, 2, 3, 3, 4, /* 0 - 7 */
757 4, 6, 5, 6, 6, 10, 7, 9, /* 8 - 15 */
758 8, 16, 9, 16, 10, 12, 11, 13, /* 16 - 23 */
759 12, 17, 13, 18, 14, 24, 15, 26, /* 24 - 31 */
760 16, 17, 17, 19, 18, 33, 19, 26, /* 32 - 39 */
761 20, 25, 21, 40, 22, 27, 23, 44, /* 40 - 47 */
762 24, 32, 25, 34, 26, 29, 27, 44, /* 48 - 55 */
763 28, 31, 29, 34, 30, 60, 31, 36, /* 56 - 63 */
764 32, 64, 33, 34, 34, 46, 35, 37, /* 64 - 71 */
765 36, 65, 37, 50, 38, 48, 39, 69, /* 72 - 79 */
766 40, 49, 41, 43, 42, 51, 43, 58, /* 80 - 87 */
767 44, 64, 45, 47, 46, 59, 47, 76, /* 88 - 95 */
768 48, 65, 49, 66, 50, 67, 51, 66, /* 96 - 103 */
769 52, 70, 53, 74, 54, 104, 55, 74, /* 104 - 111 */
770 56, 64, 57, 69, 58, 78, 59, 68, /* 112 - 119 */
771 60, 61, 61, 80, 62, 75, 63, 68, /* 120 - 127 */
772 64, 65, 65, 128, 66, 129, 67, 90, /* 128 - 135 */
773 68, 73, 69, 131, 70, 94, 71, 88, /* 136 - 143 */
774 72, 128, 73, 98, 74, 132, 75, 121, /* 144 - 151 */
775 76, 102, 77, 124, 78, 132, 79, 106, /* 152 - 159 */
776 80, 97, 81, 160, 82, 99, 83, 134, /* 160 - 167 */
777 84, 86, 85, 95, 86, 160, 87, 100, /* 168 - 175 */
778 88, 113, 89, 98, 90, 107, 91, 122, /* 176 - 183 */
779 92, 111, 93, 102, 94, 126, 95, 150, /* 184 - 191 */
780 96, 128, 97, 130, 98, 133, 99, 195, /* 192 - 199 */
781 100, 128, 101, 123, 102, 164, 103, 138, /* 200 - 207 */
782 104, 145, 105, 146, 106, 109, 107, 149, /* 208 - 215 */
783 108, 200, 109, 146, 110, 170, 111, 157, /* 216 - 223 */
784 112, 128, 113, 130, 114, 182, 115, 132, /* 224 - 231 */
785 116, 200, 117, 132, 118, 158, 119, 206, /* 232 - 239 */
786 120, 240, 121, 162, 122, 147, 123, 152, /* 240 - 247 */
787 124, 166, 125, 214, 126, 138, 127, 153, /* 248 - 255 */
788 };
789
f888a3fb 790/* If n is larger than lookup table's max index, we use the "window
791 method". */
76834664 792#define POWI_WINDOW_SIZE 3
793
f888a3fb 794/* Recursive function to expand the power operator. The temporary
795 values are put in tmpvar. The function returns tmpvar[1] ** n. */
76834664 796static tree
6929935b 797gfc_conv_powi (gfc_se * se, unsigned HOST_WIDE_INT n, tree * tmpvar)
4ee9c684 798{
76834664 799 tree op0;
800 tree op1;
4ee9c684 801 tree tmp;
76834664 802 int digit;
4ee9c684 803
76834664 804 if (n < POWI_TABLE_SIZE)
4ee9c684 805 {
76834664 806 if (tmpvar[n])
807 return tmpvar[n];
4ee9c684 808
76834664 809 op0 = gfc_conv_powi (se, n - powi_table[n], tmpvar);
810 op1 = gfc_conv_powi (se, powi_table[n], tmpvar);
811 }
812 else if (n & 1)
813 {
814 digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
815 op0 = gfc_conv_powi (se, n - digit, tmpvar);
816 op1 = gfc_conv_powi (se, digit, tmpvar);
4ee9c684 817 }
818 else
819 {
76834664 820 op0 = gfc_conv_powi (se, n >> 1, tmpvar);
821 op1 = op0;
4ee9c684 822 }
823
318c9b27 824 tmp = fold_build2 (MULT_EXPR, TREE_TYPE (op0), op0, op1);
76834664 825 tmp = gfc_evaluate_now (tmp, &se->pre);
4ee9c684 826
76834664 827 if (n < POWI_TABLE_SIZE)
828 tmpvar[n] = tmp;
4ee9c684 829
76834664 830 return tmp;
831}
4ee9c684 832
f888a3fb 833
834/* Expand lhs ** rhs. rhs is a constant integer. If it expands successfully,
835 return 1. Else return 0 and a call to runtime library functions
836 will have to be built. */
76834664 837static int
838gfc_conv_cst_int_power (gfc_se * se, tree lhs, tree rhs)
839{
840 tree cond;
841 tree tmp;
842 tree type;
843 tree vartmp[POWI_TABLE_SIZE];
6929935b 844 HOST_WIDE_INT m;
845 unsigned HOST_WIDE_INT n;
76834664 846 int sgn;
4ee9c684 847
6929935b 848 /* If exponent is too large, we won't expand it anyway, so don't bother
849 with large integer values. */
850 if (!double_int_fits_in_shwi_p (TREE_INT_CST (rhs)))
851 return 0;
852
853 m = double_int_to_shwi (TREE_INT_CST (rhs));
854 /* There's no ABS for HOST_WIDE_INT, so here we go. It also takes care
855 of the asymmetric range of the integer type. */
856 n = (unsigned HOST_WIDE_INT) (m < 0 ? -m : m);
857
76834664 858 type = TREE_TYPE (lhs);
76834664 859 sgn = tree_int_cst_sgn (rhs);
4ee9c684 860
6929935b 861 if (((FLOAT_TYPE_P (type) && !flag_unsafe_math_optimizations)
862 || optimize_size) && (m > 2 || m < -1))
76834664 863 return 0;
4ee9c684 864
76834664 865 /* rhs == 0 */
866 if (sgn == 0)
867 {
868 se->expr = gfc_build_const (type, integer_one_node);
869 return 1;
870 }
6929935b 871
76834664 872 /* If rhs < 0 and lhs is an integer, the result is -1, 0 or 1. */
873 if ((sgn == -1) && (TREE_CODE (type) == INTEGER_TYPE))
874 {
f75d6b8a 875 tmp = fold_build2 (EQ_EXPR, boolean_type_node,
876 lhs, build_int_cst (TREE_TYPE (lhs), -1));
877 cond = fold_build2 (EQ_EXPR, boolean_type_node,
878 lhs, build_int_cst (TREE_TYPE (lhs), 1));
76834664 879
f888a3fb 880 /* If rhs is even,
260abd71 881 result = (lhs == 1 || lhs == -1) ? 1 : 0. */
76834664 882 if ((n & 1) == 0)
883 {
f75d6b8a 884 tmp = fold_build2 (TRUTH_OR_EXPR, boolean_type_node, tmp, cond);
885 se->expr = fold_build3 (COND_EXPR, type,
886 tmp, build_int_cst (type, 1),
887 build_int_cst (type, 0));
76834664 888 return 1;
889 }
f888a3fb 890 /* If rhs is odd,
76834664 891 result = (lhs == 1) ? 1 : (lhs == -1) ? -1 : 0. */
f75d6b8a 892 tmp = fold_build3 (COND_EXPR, type, tmp, build_int_cst (type, -1),
893 build_int_cst (type, 0));
894 se->expr = fold_build3 (COND_EXPR, type,
895 cond, build_int_cst (type, 1), tmp);
76834664 896 return 1;
897 }
4ee9c684 898
76834664 899 memset (vartmp, 0, sizeof (vartmp));
900 vartmp[1] = lhs;
76834664 901 if (sgn == -1)
902 {
903 tmp = gfc_build_const (type, integer_one_node);
f75d6b8a 904 vartmp[1] = fold_build2 (RDIV_EXPR, type, tmp, vartmp[1]);
76834664 905 }
f5efe504 906
907 se->expr = gfc_conv_powi (se, n, vartmp);
908
76834664 909 return 1;
4ee9c684 910}
911
912
76834664 913/* Power op (**). Constant integer exponent has special handling. */
4ee9c684 914
915static void
916gfc_conv_power_op (gfc_se * se, gfc_expr * expr)
917{
90ba9145 918 tree gfc_int4_type_node;
4ee9c684 919 int kind;
76834664 920 int ikind;
4ee9c684 921 gfc_se lse;
922 gfc_se rse;
923 tree fndecl;
4ee9c684 924
925 gfc_init_se (&lse, se);
9b773341 926 gfc_conv_expr_val (&lse, expr->value.op.op1);
7f0345dc 927 lse.expr = gfc_evaluate_now (lse.expr, &lse.pre);
4ee9c684 928 gfc_add_block_to_block (&se->pre, &lse.pre);
929
930 gfc_init_se (&rse, se);
9b773341 931 gfc_conv_expr_val (&rse, expr->value.op.op2);
4ee9c684 932 gfc_add_block_to_block (&se->pre, &rse.pre);
933
9b773341 934 if (expr->value.op.op2->ts.type == BT_INTEGER
150c0c39 935 && expr->value.op.op2->expr_type == EXPR_CONSTANT)
76834664 936 if (gfc_conv_cst_int_power (se, lse.expr, rse.expr))
150c0c39 937 return;
4ee9c684 938
90ba9145 939 gfc_int4_type_node = gfc_get_int_type (4);
940
9b773341 941 kind = expr->value.op.op1->ts.kind;
942 switch (expr->value.op.op2->ts.type)
4ee9c684 943 {
944 case BT_INTEGER:
9b773341 945 ikind = expr->value.op.op2->ts.kind;
76834664 946 switch (ikind)
947 {
948 case 1:
949 case 2:
950 rse.expr = convert (gfc_int4_type_node, rse.expr);
951 /* Fall through. */
952
953 case 4:
954 ikind = 0;
955 break;
956
957 case 8:
958 ikind = 1;
959 break;
960
920e54ef 961 case 16:
962 ikind = 2;
963 break;
964
76834664 965 default:
22d678e8 966 gcc_unreachable ();
76834664 967 }
968 switch (kind)
969 {
970 case 1:
971 case 2:
9b773341 972 if (expr->value.op.op1->ts.type == BT_INTEGER)
76834664 973 lse.expr = convert (gfc_int4_type_node, lse.expr);
974 else
22d678e8 975 gcc_unreachable ();
76834664 976 /* Fall through. */
977
978 case 4:
979 kind = 0;
980 break;
981
982 case 8:
983 kind = 1;
984 break;
985
920e54ef 986 case 10:
987 kind = 2;
988 break;
989
990 case 16:
991 kind = 3;
992 break;
993
76834664 994 default:
22d678e8 995 gcc_unreachable ();
76834664 996 }
997
9b773341 998 switch (expr->value.op.op1->ts.type)
76834664 999 {
1000 case BT_INTEGER:
920e54ef 1001 if (kind == 3) /* Case 16 was not handled properly above. */
1002 kind = 2;
76834664 1003 fndecl = gfor_fndecl_math_powi[kind][ikind].integer;
1004 break;
1005
1006 case BT_REAL:
150c0c39 1007 /* Use builtins for real ** int4. */
1008 if (ikind == 0)
1009 {
1010 switch (kind)
1011 {
1012 case 0:
1013 fndecl = built_in_decls[BUILT_IN_POWIF];
1014 break;
1015
1016 case 1:
1017 fndecl = built_in_decls[BUILT_IN_POWI];
1018 break;
1019
1020 case 2:
1021 case 3:
1022 fndecl = built_in_decls[BUILT_IN_POWIL];
1023 break;
1024
1025 default:
1026 gcc_unreachable ();
1027 }
1028 }
1029 else
1030 fndecl = gfor_fndecl_math_powi[kind][ikind].real;
76834664 1031 break;
1032
1033 case BT_COMPLEX:
1034 fndecl = gfor_fndecl_math_powi[kind][ikind].cmplx;
1035 break;
1036
1037 default:
22d678e8 1038 gcc_unreachable ();
76834664 1039 }
1040 break;
4ee9c684 1041
1042 case BT_REAL:
1043 switch (kind)
1044 {
1045 case 4:
76834664 1046 fndecl = built_in_decls[BUILT_IN_POWF];
4ee9c684 1047 break;
1048 case 8:
76834664 1049 fndecl = built_in_decls[BUILT_IN_POW];
4ee9c684 1050 break;
920e54ef 1051 case 10:
1052 case 16:
1053 fndecl = built_in_decls[BUILT_IN_POWL];
1054 break;
4ee9c684 1055 default:
22d678e8 1056 gcc_unreachable ();
4ee9c684 1057 }
1058 break;
1059
1060 case BT_COMPLEX:
1061 switch (kind)
1062 {
1063 case 4:
6aee6ac8 1064 fndecl = built_in_decls[BUILT_IN_CPOWF];
4ee9c684 1065 break;
1066 case 8:
6aee6ac8 1067 fndecl = built_in_decls[BUILT_IN_CPOW];
4ee9c684 1068 break;
920e54ef 1069 case 10:
920e54ef 1070 case 16:
6aee6ac8 1071 fndecl = built_in_decls[BUILT_IN_CPOWL];
920e54ef 1072 break;
4ee9c684 1073 default:
22d678e8 1074 gcc_unreachable ();
4ee9c684 1075 }
1076 break;
1077
1078 default:
22d678e8 1079 gcc_unreachable ();
4ee9c684 1080 break;
1081 }
1082
c2f47e15 1083 se->expr = build_call_expr (fndecl, 2, lse.expr, rse.expr);
4ee9c684 1084}
1085
1086
1087/* Generate code to allocate a string temporary. */
1088
1089tree
1090gfc_conv_string_tmp (gfc_se * se, tree type, tree len)
1091{
1092 tree var;
1093 tree tmp;
4ee9c684 1094
22d678e8 1095 gcc_assert (TREE_TYPE (len) == gfc_charlen_type_node);
260abd71 1096
4ee9c684 1097 if (gfc_can_put_var_on_stack (len))
1098 {
1099 /* Create a temporary variable to hold the result. */
318c9b27 1100 tmp = fold_build2 (MINUS_EXPR, gfc_charlen_type_node, len,
7d3075f6 1101 build_int_cst (gfc_charlen_type_node, 1));
260abd71 1102 tmp = build_range_type (gfc_array_index_type, gfc_index_zero_node, tmp);
51bd6479 1103
1104 if (TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE)
1105 tmp = build_array_type (TREE_TYPE (TREE_TYPE (type)), tmp);
1106 else
1107 tmp = build_array_type (TREE_TYPE (type), tmp);
1108
4ee9c684 1109 var = gfc_create_var (tmp, "str");
1110 var = gfc_build_addr_expr (type, var);
1111 }
1112 else
1113 {
1114 /* Allocate a temporary to hold the result. */
1115 var = gfc_create_var (type, "pstr");
b44437b9 1116 tmp = gfc_call_malloc (&se->pre, type,
1117 fold_build2 (MULT_EXPR, TREE_TYPE (len), len,
1118 fold_convert (TREE_TYPE (len),
1119 TYPE_SIZE (type))));
75a70cf9 1120 gfc_add_modify (&se->pre, var, tmp);
4ee9c684 1121
1122 /* Free the temporary afterwards. */
6a2a96d6 1123 tmp = gfc_call_free (convert (pvoid_type_node, var));
4ee9c684 1124 gfc_add_expr_to_block (&se->post, tmp);
1125 }
1126
1127 return var;
1128}
1129
1130
1131/* Handle a string concatenation operation. A temporary will be allocated to
1132 hold the result. */
1133
1134static void
1135gfc_conv_concat_op (gfc_se * se, gfc_expr * expr)
1136{
40b806de 1137 gfc_se lse, rse;
1138 tree len, type, var, tmp, fndecl;
4ee9c684 1139
9b773341 1140 gcc_assert (expr->value.op.op1->ts.type == BT_CHARACTER
40b806de 1141 && expr->value.op.op2->ts.type == BT_CHARACTER);
b44437b9 1142 gcc_assert (expr->value.op.op1->ts.kind == expr->value.op.op2->ts.kind);
4ee9c684 1143
1144 gfc_init_se (&lse, se);
9b773341 1145 gfc_conv_expr (&lse, expr->value.op.op1);
4ee9c684 1146 gfc_conv_string_parameter (&lse);
1147 gfc_init_se (&rse, se);
9b773341 1148 gfc_conv_expr (&rse, expr->value.op.op2);
4ee9c684 1149 gfc_conv_string_parameter (&rse);
1150
1151 gfc_add_block_to_block (&se->pre, &lse.pre);
1152 gfc_add_block_to_block (&se->pre, &rse.pre);
1153
1154 type = gfc_get_character_type (expr->ts.kind, expr->ts.cl);
1155 len = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
1156 if (len == NULL_TREE)
1157 {
318c9b27 1158 len = fold_build2 (PLUS_EXPR, TREE_TYPE (lse.string_length),
1159 lse.string_length, rse.string_length);
4ee9c684 1160 }
1161
1162 type = build_pointer_type (type);
1163
1164 var = gfc_conv_string_tmp (se, type, len);
1165
1166 /* Do the actual concatenation. */
40b806de 1167 if (expr->ts.kind == 1)
1168 fndecl = gfor_fndecl_concat_string;
1169 else if (expr->ts.kind == 4)
1170 fndecl = gfor_fndecl_concat_string_char4;
1171 else
1172 gcc_unreachable ();
1173
1174 tmp = build_call_expr (fndecl, 6, len, var, lse.string_length, lse.expr,
c2f47e15 1175 rse.string_length, rse.expr);
4ee9c684 1176 gfc_add_expr_to_block (&se->pre, tmp);
1177
1178 /* Add the cleanup for the operands. */
1179 gfc_add_block_to_block (&se->pre, &rse.post);
1180 gfc_add_block_to_block (&se->pre, &lse.post);
1181
1182 se->expr = var;
1183 se->string_length = len;
1184}
1185
4ee9c684 1186/* Translates an op expression. Common (binary) cases are handled by this
1187 function, others are passed on. Recursion is used in either case.
1188 We use the fact that (op1.ts == op2.ts) (except for the power
f888a3fb 1189 operator **).
4ee9c684 1190 Operators need no special handling for scalarized expressions as long as
f888a3fb 1191 they call gfc_conv_simple_val to get their operands.
4ee9c684 1192 Character strings get special handling. */
1193
1194static void
1195gfc_conv_expr_op (gfc_se * se, gfc_expr * expr)
1196{
1197 enum tree_code code;
1198 gfc_se lse;
1199 gfc_se rse;
f20cadb1 1200 tree tmp, type;
4ee9c684 1201 int lop;
1202 int checkstring;
1203
1204 checkstring = 0;
1205 lop = 0;
dcb1b019 1206 switch (expr->value.op.op)
4ee9c684 1207 {
42b215cc 1208 case INTRINSIC_PARENTHESES:
751ff693 1209 if (expr->ts.type == BT_REAL
1210 || expr->ts.type == BT_COMPLEX)
1211 {
1212 gfc_conv_unary_op (PAREN_EXPR, se, expr);
1213 gcc_assert (FLOAT_TYPE_P (TREE_TYPE (se->expr)));
1214 return;
1215 }
1216
1217 /* Fallthrough. */
1218 case INTRINSIC_UPLUS:
9b773341 1219 gfc_conv_expr (se, expr->value.op.op1);
4ee9c684 1220 return;
1221
1222 case INTRINSIC_UMINUS:
1223 gfc_conv_unary_op (NEGATE_EXPR, se, expr);
1224 return;
1225
1226 case INTRINSIC_NOT:
1227 gfc_conv_unary_op (TRUTH_NOT_EXPR, se, expr);
1228 return;
1229
1230 case INTRINSIC_PLUS:
1231 code = PLUS_EXPR;
1232 break;
1233
1234 case INTRINSIC_MINUS:
1235 code = MINUS_EXPR;
1236 break;
1237
1238 case INTRINSIC_TIMES:
1239 code = MULT_EXPR;
1240 break;
1241
1242 case INTRINSIC_DIVIDE:
1243 /* If expr is a real or complex expr, use an RDIV_EXPR. If op1 is
1244 an integer, we must round towards zero, so we use a
1245 TRUNC_DIV_EXPR. */
1246 if (expr->ts.type == BT_INTEGER)
1247 code = TRUNC_DIV_EXPR;
1248 else
1249 code = RDIV_EXPR;
1250 break;
1251
1252 case INTRINSIC_POWER:
1253 gfc_conv_power_op (se, expr);
1254 return;
1255
1256 case INTRINSIC_CONCAT:
1257 gfc_conv_concat_op (se, expr);
1258 return;
1259
1260 case INTRINSIC_AND:
1261 code = TRUTH_ANDIF_EXPR;
1262 lop = 1;
1263 break;
1264
1265 case INTRINSIC_OR:
1266 code = TRUTH_ORIF_EXPR;
1267 lop = 1;
1268 break;
1269
1270 /* EQV and NEQV only work on logicals, but since we represent them
88bce636 1271 as integers, we can use EQ_EXPR and NE_EXPR for them in GIMPLE. */
4ee9c684 1272 case INTRINSIC_EQ:
f47957c7 1273 case INTRINSIC_EQ_OS:
4ee9c684 1274 case INTRINSIC_EQV:
1275 code = EQ_EXPR;
1276 checkstring = 1;
1277 lop = 1;
1278 break;
1279
1280 case INTRINSIC_NE:
f47957c7 1281 case INTRINSIC_NE_OS:
4ee9c684 1282 case INTRINSIC_NEQV:
1283 code = NE_EXPR;
1284 checkstring = 1;
1285 lop = 1;
1286 break;
1287
1288 case INTRINSIC_GT:
f47957c7 1289 case INTRINSIC_GT_OS:
4ee9c684 1290 code = GT_EXPR;
1291 checkstring = 1;
1292 lop = 1;
1293 break;
1294
1295 case INTRINSIC_GE:
f47957c7 1296 case INTRINSIC_GE_OS:
4ee9c684 1297 code = GE_EXPR;
1298 checkstring = 1;
1299 lop = 1;
1300 break;
1301
1302 case INTRINSIC_LT:
f47957c7 1303 case INTRINSIC_LT_OS:
4ee9c684 1304 code = LT_EXPR;
1305 checkstring = 1;
1306 lop = 1;
1307 break;
1308
1309 case INTRINSIC_LE:
f47957c7 1310 case INTRINSIC_LE_OS:
4ee9c684 1311 code = LE_EXPR;
1312 checkstring = 1;
1313 lop = 1;
1314 break;
1315
1316 case INTRINSIC_USER:
1317 case INTRINSIC_ASSIGN:
1318 /* These should be converted into function calls by the frontend. */
22d678e8 1319 gcc_unreachable ();
4ee9c684 1320
1321 default:
1322 fatal_error ("Unknown intrinsic op");
1323 return;
1324 }
1325
f888a3fb 1326 /* The only exception to this is **, which is handled separately anyway. */
9b773341 1327 gcc_assert (expr->value.op.op1->ts.type == expr->value.op.op2->ts.type);
4ee9c684 1328
9b773341 1329 if (checkstring && expr->value.op.op1->ts.type != BT_CHARACTER)
4ee9c684 1330 checkstring = 0;
1331
1332 /* lhs */
1333 gfc_init_se (&lse, se);
9b773341 1334 gfc_conv_expr (&lse, expr->value.op.op1);
4ee9c684 1335 gfc_add_block_to_block (&se->pre, &lse.pre);
1336
1337 /* rhs */
1338 gfc_init_se (&rse, se);
9b773341 1339 gfc_conv_expr (&rse, expr->value.op.op2);
4ee9c684 1340 gfc_add_block_to_block (&se->pre, &rse.pre);
1341
4ee9c684 1342 if (checkstring)
1343 {
1344 gfc_conv_string_parameter (&lse);
1345 gfc_conv_string_parameter (&rse);
4ee9c684 1346
77100724 1347 lse.expr = gfc_build_compare_string (lse.string_length, lse.expr,
40b806de 1348 rse.string_length, rse.expr,
1349 expr->value.op.op1->ts.kind);
57e3c827 1350 rse.expr = build_int_cst (TREE_TYPE (lse.expr), 0);
77100724 1351 gfc_add_block_to_block (&lse.post, &rse.post);
4ee9c684 1352 }
1353
1354 type = gfc_typenode_for_spec (&expr->ts);
1355
1356 if (lop)
1357 {
1358 /* The result of logical ops is always boolean_type_node. */
f20cadb1 1359 tmp = fold_build2 (code, boolean_type_node, lse.expr, rse.expr);
4ee9c684 1360 se->expr = convert (type, tmp);
1361 }
1362 else
318c9b27 1363 se->expr = fold_build2 (code, type, lse.expr, rse.expr);
4ee9c684 1364
4ee9c684 1365 /* Add the post blocks. */
1366 gfc_add_block_to_block (&se->post, &rse.post);
1367 gfc_add_block_to_block (&se->post, &lse.post);
1368}
1369
77100724 1370/* If a string's length is one, we convert it to a single character. */
1371
1372static tree
b44437b9 1373string_to_single_character (tree len, tree str, int kind)
77100724 1374{
1375 gcc_assert (POINTER_TYPE_P (TREE_TYPE (str)));
1376
1377 if (INTEGER_CST_P (len) && TREE_INT_CST_LOW (len) == 1
b44437b9 1378 && TREE_INT_CST_HIGH (len) == 0)
77100724 1379 {
b44437b9 1380 str = fold_convert (gfc_get_pchar_type (kind), str);
77100724 1381 return build_fold_indirect_ref (str);
1382 }
1383
1384 return NULL_TREE;
1385}
1386
4c47c8b7 1387
1388void
1389gfc_conv_scalar_char_value (gfc_symbol *sym, gfc_se *se, gfc_expr **expr)
1390{
1391
1392 if (sym->backend_decl)
1393 {
1394 /* This becomes the nominal_type in
1395 function.c:assign_parm_find_data_types. */
1396 TREE_TYPE (sym->backend_decl) = unsigned_char_type_node;
1397 /* This becomes the passed_type in
1398 function.c:assign_parm_find_data_types. C promotes char to
1399 integer for argument passing. */
1400 DECL_ARG_TYPE (sym->backend_decl) = unsigned_type_node;
1401
1402 DECL_BY_REFERENCE (sym->backend_decl) = 0;
1403 }
1404
1405 if (expr != NULL)
1406 {
1407 /* If we have a constant character expression, make it into an
1408 integer. */
1409 if ((*expr)->expr_type == EXPR_CONSTANT)
1410 {
1411 gfc_typespec ts;
52179f31 1412 gfc_clear_ts (&ts);
4c47c8b7 1413
1414 *expr = gfc_int_expr ((int)(*expr)->value.character.string[0]);
1415 if ((*expr)->ts.kind != gfc_c_int_kind)
1416 {
1417 /* The expr needs to be compatible with a C int. If the
1418 conversion fails, then the 2 causes an ICE. */
1419 ts.type = BT_INTEGER;
1420 ts.kind = gfc_c_int_kind;
1421 gfc_convert_type (*expr, &ts, 2);
1422 }
1423 }
1424 else if (se != NULL && (*expr)->expr_type == EXPR_VARIABLE)
1425 {
1426 if ((*expr)->ref == NULL)
1427 {
b44437b9 1428 se->expr = string_to_single_character
4c47c8b7 1429 (build_int_cst (integer_type_node, 1),
b44437b9 1430 gfc_build_addr_expr (gfc_get_pchar_type ((*expr)->ts.kind),
4c47c8b7 1431 gfc_get_symbol_decl
b44437b9 1432 ((*expr)->symtree->n.sym)),
1433 (*expr)->ts.kind);
4c47c8b7 1434 }
1435 else
1436 {
1437 gfc_conv_variable (se, *expr);
b44437b9 1438 se->expr = string_to_single_character
4c47c8b7 1439 (build_int_cst (integer_type_node, 1),
b44437b9 1440 gfc_build_addr_expr (gfc_get_pchar_type ((*expr)->ts.kind),
1441 se->expr),
1442 (*expr)->ts.kind);
4c47c8b7 1443 }
1444 }
1445 }
1446}
1447
1448
77100724 1449/* Compare two strings. If they are all single characters, the result is the
1450 subtraction of them. Otherwise, we build a library call. */
1451
1452tree
40b806de 1453gfc_build_compare_string (tree len1, tree str1, tree len2, tree str2, int kind)
77100724 1454{
1455 tree sc1;
1456 tree sc2;
77100724 1457 tree tmp;
1458
1459 gcc_assert (POINTER_TYPE_P (TREE_TYPE (str1)));
1460 gcc_assert (POINTER_TYPE_P (TREE_TYPE (str2)));
1461
b44437b9 1462 sc1 = string_to_single_character (len1, str1, kind);
1463 sc2 = string_to_single_character (len2, str2, kind);
77100724 1464
77100724 1465 if (sc1 != NULL_TREE && sc2 != NULL_TREE)
1466 {
40b806de 1467 /* Deal with single character specially. */
f20cadb1 1468 sc1 = fold_convert (integer_type_node, sc1);
1469 sc2 = fold_convert (integer_type_node, sc2);
1470 tmp = fold_build2 (MINUS_EXPR, integer_type_node, sc1, sc2);
77100724 1471 }
40b806de 1472 else
1473 {
1474 /* Build a call for the comparison. */
1475 tree fndecl;
1476
1477 if (kind == 1)
1478 fndecl = gfor_fndecl_compare_string;
1479 else if (kind == 4)
1480 fndecl = gfor_fndecl_compare_string_char4;
1481 else
1482 gcc_unreachable ();
1483
1484 tmp = build_call_expr (fndecl, 4, len1, str1, len2, str2);
1485 }
1486
77100724 1487 return tmp;
1488}
f888a3fb 1489
4ee9c684 1490static void
64e93293 1491conv_function_val (gfc_se * se, gfc_symbol * sym, gfc_expr * expr)
4ee9c684 1492{
1493 tree tmp;
1494
64e93293 1495 if (is_proc_ptr_comp (expr, NULL))
1496 tmp = gfc_get_proc_ptr_comp (se, expr);
1497 else if (sym->attr.dummy)
4ee9c684 1498 {
1499 tmp = gfc_get_symbol_decl (sym);
cad0ddcf 1500 if (sym->attr.proc_pointer)
1501 tmp = build_fold_indirect_ref (tmp);
22d678e8 1502 gcc_assert (TREE_CODE (TREE_TYPE (tmp)) == POINTER_TYPE
4ee9c684 1503 && TREE_CODE (TREE_TYPE (TREE_TYPE (tmp))) == FUNCTION_TYPE);
4ee9c684 1504 }
1505 else
1506 {
1507 if (!sym->backend_decl)
1508 sym->backend_decl = gfc_get_extern_function_decl (sym);
1509
1510 tmp = sym->backend_decl;
623416e8 1511
a7c1e504 1512 if (sym->attr.cray_pointee)
623416e8 1513 {
1514 /* TODO - make the cray pointee a pointer to a procedure,
1515 assign the pointer to it and use it for the call. This
1516 will do for now! */
1517 tmp = convert (build_pointer_type (TREE_TYPE (tmp)),
1518 gfc_get_symbol_decl (sym->cp_pointer));
1519 tmp = gfc_evaluate_now (tmp, &se->pre);
1520 }
1521
08569428 1522 if (!POINTER_TYPE_P (TREE_TYPE (tmp)))
1523 {
1524 gcc_assert (TREE_CODE (tmp) == FUNCTION_DECL);
86f2ad37 1525 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
08569428 1526 }
1527 }
1528 se->expr = tmp;
1529}
1530
1531
08569428 1532/* Initialize MAPPING. */
1533
f45a476e 1534void
08569428 1535gfc_init_interface_mapping (gfc_interface_mapping * mapping)
1536{
1537 mapping->syms = NULL;
1538 mapping->charlens = NULL;
1539}
1540
1541
1542/* Free all memory held by MAPPING (but not MAPPING itself). */
1543
f45a476e 1544void
08569428 1545gfc_free_interface_mapping (gfc_interface_mapping * mapping)
1546{
1547 gfc_interface_sym_mapping *sym;
1548 gfc_interface_sym_mapping *nextsym;
1549 gfc_charlen *cl;
1550 gfc_charlen *nextcl;
1551
1552 for (sym = mapping->syms; sym; sym = nextsym)
1553 {
1554 nextsym = sym->next;
c71c6bca 1555 sym->new_sym->n.sym->formal = NULL;
c1977dbe 1556 gfc_free_symbol (sym->new_sym->n.sym);
fd149f95 1557 gfc_free_expr (sym->expr);
c1977dbe 1558 gfc_free (sym->new_sym);
08569428 1559 gfc_free (sym);
1560 }
1561 for (cl = mapping->charlens; cl; cl = nextcl)
1562 {
1563 nextcl = cl->next;
1564 gfc_free_expr (cl->length);
1565 gfc_free (cl);
4ee9c684 1566 }
1567}
1568
1569
08569428 1570/* Return a copy of gfc_charlen CL. Add the returned structure to
1571 MAPPING so that it will be freed by gfc_free_interface_mapping. */
1572
1573static gfc_charlen *
1574gfc_get_interface_mapping_charlen (gfc_interface_mapping * mapping,
1575 gfc_charlen * cl)
1576{
c1977dbe 1577 gfc_charlen *new_charlen;
08569428 1578
c1977dbe 1579 new_charlen = gfc_get_charlen ();
1580 new_charlen->next = mapping->charlens;
1581 new_charlen->length = gfc_copy_expr (cl->length);
08569428 1582
c1977dbe 1583 mapping->charlens = new_charlen;
1584 return new_charlen;
08569428 1585}
1586
1587
1588/* A subroutine of gfc_add_interface_mapping. Return a descriptorless
1589 array variable that can be used as the actual argument for dummy
1590 argument SYM. Add any initialization code to BLOCK. PACKED is as
1591 for gfc_get_nodesc_array_type and DATA points to the first element
1592 in the passed array. */
1593
1594static tree
1595gfc_get_interface_mapping_array (stmtblock_t * block, gfc_symbol * sym,
3d8dea5a 1596 gfc_packed packed, tree data)
08569428 1597{
1598 tree type;
1599 tree var;
1600
1601 type = gfc_typenode_for_spec (&sym->ts);
1602 type = gfc_get_nodesc_array_type (type, sym->as, packed);
1603
5e8cd291 1604 var = gfc_create_var (type, "ifm");
75a70cf9 1605 gfc_add_modify (block, var, fold_convert (type, data));
08569428 1606
1607 return var;
1608}
1609
1610
1611/* A subroutine of gfc_add_interface_mapping. Set the stride, upper bounds
1612 and offset of descriptorless array type TYPE given that it has the same
1613 size as DESC. Add any set-up code to BLOCK. */
1614
1615static void
1616gfc_set_interface_mapping_bounds (stmtblock_t * block, tree type, tree desc)
1617{
1618 int n;
1619 tree dim;
1620 tree offset;
1621 tree tmp;
1622
1623 offset = gfc_index_zero_node;
1624 for (n = 0; n < GFC_TYPE_ARRAY_RANK (type); n++)
1625 {
926b9532 1626 dim = gfc_rank_cst[n];
08569428 1627 GFC_TYPE_ARRAY_STRIDE (type, n) = gfc_conv_array_stride (desc, n);
926b9532 1628 if (GFC_TYPE_ARRAY_LBOUND (type, n) == NULL_TREE)
1629 {
1630 GFC_TYPE_ARRAY_LBOUND (type, n)
6b1a9af3 1631 = gfc_conv_descriptor_lbound_get (desc, dim);
926b9532 1632 GFC_TYPE_ARRAY_UBOUND (type, n)
6b1a9af3 1633 = gfc_conv_descriptor_ubound_get (desc, dim);
926b9532 1634 }
1635 else if (GFC_TYPE_ARRAY_UBOUND (type, n) == NULL_TREE)
08569428 1636 {
08569428 1637 tmp = fold_build2 (MINUS_EXPR, gfc_array_index_type,
6b1a9af3 1638 gfc_conv_descriptor_ubound_get (desc, dim),
1639 gfc_conv_descriptor_lbound_get (desc, dim));
08569428 1640 tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
1641 GFC_TYPE_ARRAY_LBOUND (type, n),
1642 tmp);
1643 tmp = gfc_evaluate_now (tmp, block);
1644 GFC_TYPE_ARRAY_UBOUND (type, n) = tmp;
1645 }
1646 tmp = fold_build2 (MULT_EXPR, gfc_array_index_type,
1647 GFC_TYPE_ARRAY_LBOUND (type, n),
1648 GFC_TYPE_ARRAY_STRIDE (type, n));
1649 offset = fold_build2 (MINUS_EXPR, gfc_array_index_type, offset, tmp);
1650 }
1651 offset = gfc_evaluate_now (offset, block);
1652 GFC_TYPE_ARRAY_OFFSET (type) = offset;
1653}
1654
1655
1656/* Extend MAPPING so that it maps dummy argument SYM to the value stored
1657 in SE. The caller may still use se->expr and se->string_length after
1658 calling this function. */
1659
f45a476e 1660void
08569428 1661gfc_add_interface_mapping (gfc_interface_mapping * mapping,
fd149f95 1662 gfc_symbol * sym, gfc_se * se,
1663 gfc_expr *expr)
08569428 1664{
1665 gfc_interface_sym_mapping *sm;
1666 tree desc;
1667 tree tmp;
1668 tree value;
1669 gfc_symbol *new_sym;
1670 gfc_symtree *root;
1671 gfc_symtree *new_symtree;
1672
1673 /* Create a new symbol to represent the actual argument. */
1674 new_sym = gfc_new_symbol (sym->name, NULL);
1675 new_sym->ts = sym->ts;
079aab8b 1676 new_sym->as = gfc_copy_array_spec (sym->as);
08569428 1677 new_sym->attr.referenced = 1;
1678 new_sym->attr.dimension = sym->attr.dimension;
1679 new_sym->attr.pointer = sym->attr.pointer;
76845580 1680 new_sym->attr.allocatable = sym->attr.allocatable;
08569428 1681 new_sym->attr.flavor = sym->attr.flavor;
fd149f95 1682 new_sym->attr.function = sym->attr.function;
08569428 1683
dc1a7e64 1684 /* Ensure that the interface is available and that
1685 descriptors are passed for array actual arguments. */
1686 if (sym->attr.flavor == FL_PROCEDURE)
1687 {
c71c6bca 1688 new_sym->formal = expr->symtree->n.sym->formal;
dc1a7e64 1689 new_sym->attr.always_explicit
1690 = expr->symtree->n.sym->attr.always_explicit;
1691 }
1692
08569428 1693 /* Create a fake symtree for it. */
1694 root = NULL;
1695 new_symtree = gfc_new_symtree (&root, sym->name);
1696 new_symtree->n.sym = new_sym;
1697 gcc_assert (new_symtree == root);
1698
1699 /* Create a dummy->actual mapping. */
48d8ad5a 1700 sm = XCNEW (gfc_interface_sym_mapping);
08569428 1701 sm->next = mapping->syms;
1702 sm->old = sym;
c1977dbe 1703 sm->new_sym = new_symtree;
fd149f95 1704 sm->expr = gfc_copy_expr (expr);
08569428 1705 mapping->syms = sm;
1706
1707 /* Stabilize the argument's value. */
fd149f95 1708 if (!sym->attr.function && se)
1709 se->expr = gfc_evaluate_now (se->expr, &se->pre);
08569428 1710
1711 if (sym->ts.type == BT_CHARACTER)
1712 {
1713 /* Create a copy of the dummy argument's length. */
1714 new_sym->ts.cl = gfc_get_interface_mapping_charlen (mapping, sym->ts.cl);
fd149f95 1715 sm->expr->ts.cl = new_sym->ts.cl;
08569428 1716
1717 /* If the length is specified as "*", record the length that
1718 the caller is passing. We should use the callee's length
1719 in all other cases. */
fd149f95 1720 if (!new_sym->ts.cl->length && se)
08569428 1721 {
1722 se->string_length = gfc_evaluate_now (se->string_length, &se->pre);
1723 new_sym->ts.cl->backend_decl = se->string_length;
1724 }
1725 }
1726
fd149f95 1727 if (!se)
1728 return;
1729
08569428 1730 /* Use the passed value as-is if the argument is a function. */
1731 if (sym->attr.flavor == FL_PROCEDURE)
1732 value = se->expr;
1733
1734 /* If the argument is either a string or a pointer to a string,
1735 convert it to a boundless character type. */
1736 else if (!sym->attr.dimension && sym->ts.type == BT_CHARACTER)
1737 {
1738 tmp = gfc_get_character_type_len (sym->ts.kind, NULL);
1739 tmp = build_pointer_type (tmp);
1740 if (sym->attr.pointer)
e042ae37 1741 value = build_fold_indirect_ref (se->expr);
1742 else
1743 value = se->expr;
1744 value = fold_convert (tmp, value);
08569428 1745 }
1746
76845580 1747 /* If the argument is a scalar, a pointer to an array or an allocatable,
1748 dereference it. */
1749 else if (!sym->attr.dimension || sym->attr.pointer || sym->attr.allocatable)
4fa2c167 1750 value = build_fold_indirect_ref (se->expr);
e3071e62 1751
1752 /* For character(*), use the actual argument's descriptor. */
1753 else if (sym->ts.type == BT_CHARACTER && !new_sym->ts.cl->length)
1754 value = build_fold_indirect_ref (se->expr);
08569428 1755
1756 /* If the argument is an array descriptor, use it to determine
1757 information about the actual argument's shape. */
1758 else if (POINTER_TYPE_P (TREE_TYPE (se->expr))
1759 && GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (TREE_TYPE (se->expr))))
1760 {
1761 /* Get the actual argument's descriptor. */
4fa2c167 1762 desc = build_fold_indirect_ref (se->expr);
08569428 1763
1764 /* Create the replacement variable. */
1765 tmp = gfc_conv_descriptor_data_get (desc);
3d8dea5a 1766 value = gfc_get_interface_mapping_array (&se->pre, sym,
1767 PACKED_NO, tmp);
08569428 1768
1769 /* Use DESC to work out the upper bounds, strides and offset. */
1770 gfc_set_interface_mapping_bounds (&se->pre, TREE_TYPE (value), desc);
1771 }
1772 else
1773 /* Otherwise we have a packed array. */
3d8dea5a 1774 value = gfc_get_interface_mapping_array (&se->pre, sym,
1775 PACKED_FULL, se->expr);
08569428 1776
1777 new_sym->backend_decl = value;
1778}
1779
1780
1781/* Called once all dummy argument mappings have been added to MAPPING,
1782 but before the mapping is used to evaluate expressions. Pre-evaluate
1783 the length of each argument, adding any initialization code to PRE and
1784 any finalization code to POST. */
1785
f45a476e 1786void
08569428 1787gfc_finish_interface_mapping (gfc_interface_mapping * mapping,
1788 stmtblock_t * pre, stmtblock_t * post)
1789{
1790 gfc_interface_sym_mapping *sym;
1791 gfc_expr *expr;
1792 gfc_se se;
1793
1794 for (sym = mapping->syms; sym; sym = sym->next)
c1977dbe 1795 if (sym->new_sym->n.sym->ts.type == BT_CHARACTER
1796 && !sym->new_sym->n.sym->ts.cl->backend_decl)
08569428 1797 {
c1977dbe 1798 expr = sym->new_sym->n.sym->ts.cl->length;
08569428 1799 gfc_apply_interface_mapping_to_expr (mapping, expr);
1800 gfc_init_se (&se, NULL);
1801 gfc_conv_expr (&se, expr);
12f4af3f 1802 se.expr = fold_convert (gfc_charlen_type_node, se.expr);
08569428 1803 se.expr = gfc_evaluate_now (se.expr, &se.pre);
1804 gfc_add_block_to_block (pre, &se.pre);
1805 gfc_add_block_to_block (post, &se.post);
1806
c1977dbe 1807 sym->new_sym->n.sym->ts.cl->backend_decl = se.expr;
08569428 1808 }
1809}
1810
1811
1812/* Like gfc_apply_interface_mapping_to_expr, but applied to
1813 constructor C. */
1814
1815static void
1816gfc_apply_interface_mapping_to_cons (gfc_interface_mapping * mapping,
1817 gfc_constructor * c)
1818{
1819 for (; c; c = c->next)
1820 {
1821 gfc_apply_interface_mapping_to_expr (mapping, c->expr);
1822 if (c->iterator)
1823 {
1824 gfc_apply_interface_mapping_to_expr (mapping, c->iterator->start);
1825 gfc_apply_interface_mapping_to_expr (mapping, c->iterator->end);
1826 gfc_apply_interface_mapping_to_expr (mapping, c->iterator->step);
1827 }
1828 }
1829}
1830
1831
1832/* Like gfc_apply_interface_mapping_to_expr, but applied to
1833 reference REF. */
1834
1835static void
1836gfc_apply_interface_mapping_to_ref (gfc_interface_mapping * mapping,
1837 gfc_ref * ref)
1838{
1839 int n;
1840
1841 for (; ref; ref = ref->next)
1842 switch (ref->type)
1843 {
1844 case REF_ARRAY:
1845 for (n = 0; n < ref->u.ar.dimen; n++)
1846 {
1847 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.start[n]);
1848 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.end[n]);
1849 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.stride[n]);
1850 }
1851 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ar.offset);
1852 break;
1853
1854 case REF_COMPONENT:
1855 break;
1856
1857 case REF_SUBSTRING:
1858 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ss.start);
1859 gfc_apply_interface_mapping_to_expr (mapping, ref->u.ss.end);
1860 break;
1861 }
1862}
1863
1864
fd149f95 1865/* Convert intrinsic function calls into result expressions. */
079aab8b 1866
fd149f95 1867static bool
079aab8b 1868gfc_map_intrinsic_function (gfc_expr *expr, gfc_interface_mapping *mapping)
fd149f95 1869{
1870 gfc_symbol *sym;
1871 gfc_expr *new_expr;
1872 gfc_expr *arg1;
1873 gfc_expr *arg2;
1874 int d, dup;
1875
1876 arg1 = expr->value.function.actual->expr;
1877 if (expr->value.function.actual->next)
1878 arg2 = expr->value.function.actual->next->expr;
1879 else
1880 arg2 = NULL;
1881
079aab8b 1882 sym = arg1->symtree->n.sym;
fd149f95 1883
1884 if (sym->attr.dummy)
1885 return false;
1886
1887 new_expr = NULL;
1888
1889 switch (expr->value.function.isym->id)
1890 {
1891 case GFC_ISYM_LEN:
1892 /* TODO figure out why this condition is necessary. */
1893 if (sym->attr.function
9a7675b4 1894 && (arg1->ts.cl->length == NULL
1895 || (arg1->ts.cl->length->expr_type != EXPR_CONSTANT
1896 && arg1->ts.cl->length->expr_type != EXPR_VARIABLE)))
fd149f95 1897 return false;
1898
1899 new_expr = gfc_copy_expr (arg1->ts.cl->length);
1900 break;
1901
1902 case GFC_ISYM_SIZE:
1903 if (!sym->as)
1904 return false;
1905
1906 if (arg2 && arg2->expr_type == EXPR_CONSTANT)
1907 {
1908 dup = mpz_get_si (arg2->value.integer);
1909 d = dup - 1;
1910 }
1911 else
1912 {
1913 dup = sym->as->rank;
1914 d = 0;
1915 }
1916
1917 for (; d < dup; d++)
1918 {
1919 gfc_expr *tmp;
079aab8b 1920
1921 if (!sym->as->upper[d] || !sym->as->lower[d])
1922 {
1923 gfc_free_expr (new_expr);
1924 return false;
1925 }
1926
fd149f95 1927 tmp = gfc_add (gfc_copy_expr (sym->as->upper[d]), gfc_int_expr (1));
1928 tmp = gfc_subtract (tmp, gfc_copy_expr (sym->as->lower[d]));
1929 if (new_expr)
1930 new_expr = gfc_multiply (new_expr, tmp);
1931 else
1932 new_expr = tmp;
1933 }
1934 break;
1935
1936 case GFC_ISYM_LBOUND:
1937 case GFC_ISYM_UBOUND:
1938 /* TODO These implementations of lbound and ubound do not limit if
1939 the size < 0, according to F95's 13.14.53 and 13.14.113. */
1940
1941 if (!sym->as)
1942 return false;
1943
1944 if (arg2 && arg2->expr_type == EXPR_CONSTANT)
1945 d = mpz_get_si (arg2->value.integer) - 1;
1946 else
1947 /* TODO: If the need arises, this could produce an array of
1948 ubound/lbounds. */
1949 gcc_unreachable ();
1950
1951 if (expr->value.function.isym->id == GFC_ISYM_LBOUND)
079aab8b 1952 {
1953 if (sym->as->lower[d])
1954 new_expr = gfc_copy_expr (sym->as->lower[d]);
1955 }
fd149f95 1956 else
079aab8b 1957 {
1958 if (sym->as->upper[d])
1959 new_expr = gfc_copy_expr (sym->as->upper[d]);
1960 }
fd149f95 1961 break;
1962
1963 default:
1964 break;
1965 }
1966
1967 gfc_apply_interface_mapping_to_expr (mapping, new_expr);
1968 if (!new_expr)
1969 return false;
1970
1971 gfc_replace_expr (expr, new_expr);
1972 return true;
1973}
1974
1975
1976static void
1977gfc_map_fcn_formal_to_actual (gfc_expr *expr, gfc_expr *map_expr,
1978 gfc_interface_mapping * mapping)
1979{
1980 gfc_formal_arglist *f;
1981 gfc_actual_arglist *actual;
1982
1983 actual = expr->value.function.actual;
1984 f = map_expr->symtree->n.sym->formal;
1985
1986 for (; f && actual; f = f->next, actual = actual->next)
1987 {
1988 if (!actual->expr)
1989 continue;
1990
1991 gfc_add_interface_mapping (mapping, f->sym, NULL, actual->expr);
1992 }
1993
1994 if (map_expr->symtree->n.sym->attr.dimension)
1995 {
1996 int d;
1997 gfc_array_spec *as;
1998
1999 as = gfc_copy_array_spec (map_expr->symtree->n.sym->as);
2000
2001 for (d = 0; d < as->rank; d++)
2002 {
2003 gfc_apply_interface_mapping_to_expr (mapping, as->lower[d]);
2004 gfc_apply_interface_mapping_to_expr (mapping, as->upper[d]);
2005 }
2006
2007 expr->value.function.esym->as = as;
2008 }
2009
2010 if (map_expr->symtree->n.sym->ts.type == BT_CHARACTER)
2011 {
2012 expr->value.function.esym->ts.cl->length
2013 = gfc_copy_expr (map_expr->symtree->n.sym->ts.cl->length);
2014
2015 gfc_apply_interface_mapping_to_expr (mapping,
2016 expr->value.function.esym->ts.cl->length);
2017 }
2018}
2019
2020
08569428 2021/* EXPR is a copy of an expression that appeared in the interface
2022 associated with MAPPING. Walk it recursively looking for references to
2023 dummy arguments that MAPPING maps to actual arguments. Replace each such
2024 reference with a reference to the associated actual argument. */
2025
fd149f95 2026static void
08569428 2027gfc_apply_interface_mapping_to_expr (gfc_interface_mapping * mapping,
2028 gfc_expr * expr)
2029{
2030 gfc_interface_sym_mapping *sym;
2031 gfc_actual_arglist *actual;
2032
2033 if (!expr)
fd149f95 2034 return;
08569428 2035
2036 /* Copying an expression does not copy its length, so do that here. */
2037 if (expr->ts.type == BT_CHARACTER && expr->ts.cl)
2038 {
2039 expr->ts.cl = gfc_get_interface_mapping_charlen (mapping, expr->ts.cl);
2040 gfc_apply_interface_mapping_to_expr (mapping, expr->ts.cl->length);
2041 }
2042
2043 /* Apply the mapping to any references. */
2044 gfc_apply_interface_mapping_to_ref (mapping, expr->ref);
2045
2046 /* ...and to the expression's symbol, if it has one. */
fd149f95 2047 /* TODO Find out why the condition on expr->symtree had to be moved into
69b1505f 2048 the loop rather than being outside it, as originally. */
fd149f95 2049 for (sym = mapping->syms; sym; sym = sym->next)
2050 if (expr->symtree && sym->old == expr->symtree->n.sym)
2051 {
c1977dbe 2052 if (sym->new_sym->n.sym->backend_decl)
2053 expr->symtree = sym->new_sym;
fd149f95 2054 else if (sym->expr)
2055 gfc_replace_expr (expr, gfc_copy_expr (sym->expr));
2056 }
08569428 2057
fd149f95 2058 /* ...and to subexpressions in expr->value. */
08569428 2059 switch (expr->expr_type)
2060 {
2061 case EXPR_VARIABLE:
2062 case EXPR_CONSTANT:
2063 case EXPR_NULL:
2064 case EXPR_SUBSTRING:
2065 break;
2066
2067 case EXPR_OP:
2068 gfc_apply_interface_mapping_to_expr (mapping, expr->value.op.op1);
2069 gfc_apply_interface_mapping_to_expr (mapping, expr->value.op.op2);
2070 break;
2071
2072 case EXPR_FUNCTION:
fd149f95 2073 for (actual = expr->value.function.actual; actual; actual = actual->next)
2074 gfc_apply_interface_mapping_to_expr (mapping, actual->expr);
2075
7f8c8ede 2076 if (expr->value.function.esym == NULL
7f7ca309 2077 && expr->value.function.isym != NULL
fd149f95 2078 && expr->value.function.actual->expr->symtree
2079 && gfc_map_intrinsic_function (expr, mapping))
2080 break;
7f7ca309 2081
08569428 2082 for (sym = mapping->syms; sym; sym = sym->next)
2083 if (sym->old == expr->value.function.esym)
fd149f95 2084 {
c1977dbe 2085 expr->value.function.esym = sym->new_sym->n.sym;
fd149f95 2086 gfc_map_fcn_formal_to_actual (expr, sym->expr, mapping);
c1977dbe 2087 expr->value.function.esym->result = sym->new_sym->n.sym;
fd149f95 2088 }
08569428 2089 break;
2090
2091 case EXPR_ARRAY:
2092 case EXPR_STRUCTURE:
2093 gfc_apply_interface_mapping_to_cons (mapping, expr->value.constructor);
2094 break;
930fe1de 2095
2096 case EXPR_COMPCALL:
64e93293 2097 case EXPR_PPC:
930fe1de 2098 gcc_unreachable ();
2099 break;
08569428 2100 }
fd149f95 2101
2102 return;
08569428 2103}
2104
2105
2106/* Evaluate interface expression EXPR using MAPPING. Store the result
2107 in SE. */
2108
f45a476e 2109void
08569428 2110gfc_apply_interface_mapping (gfc_interface_mapping * mapping,
2111 gfc_se * se, gfc_expr * expr)
2112{
2113 expr = gfc_copy_expr (expr);
2114 gfc_apply_interface_mapping_to_expr (mapping, expr);
2115 gfc_conv_expr (se, expr);
2116 se->expr = gfc_evaluate_now (se->expr, &se->pre);
2117 gfc_free_expr (expr);
2118}
2119
1033248c 2120
858f9894 2121/* Returns a reference to a temporary array into which a component of
2122 an actual argument derived type array is copied and then returned
1033248c 2123 after the function call. */
2ecf364f 2124void
1033248c 2125gfc_conv_subref_array_arg (gfc_se * parmse, gfc_expr * expr,
2126 int g77, sym_intent intent)
858f9894 2127{
2128 gfc_se lse;
2129 gfc_se rse;
2130 gfc_ss *lss;
2131 gfc_ss *rss;
2132 gfc_loopinfo loop;
2133 gfc_loopinfo loop2;
2134 gfc_ss_info *info;
2135 tree offset;
2136 tree tmp_index;
2137 tree tmp;
2138 tree base_type;
2139 stmtblock_t body;
2140 int n;
2141
2142 gcc_assert (expr->expr_type == EXPR_VARIABLE);
2143
2144 gfc_init_se (&lse, NULL);
2145 gfc_init_se (&rse, NULL);
2146
2147 /* Walk the argument expression. */
2148 rss = gfc_walk_expr (expr);
2149
2150 gcc_assert (rss != gfc_ss_terminator);
2151
2152 /* Initialize the scalarizer. */
2153 gfc_init_loopinfo (&loop);
2154 gfc_add_ss_to_loop (&loop, rss);
2155
2156 /* Calculate the bounds of the scalarization. */
2157 gfc_conv_ss_startstride (&loop);
2158
2159 /* Build an ss for the temporary. */
0ff77f4e 2160 if (expr->ts.type == BT_CHARACTER && !expr->ts.cl->backend_decl)
d778204a 2161 gfc_conv_string_length (expr->ts.cl, expr, &parmse->pre);
0ff77f4e 2162
858f9894 2163 base_type = gfc_typenode_for_spec (&expr->ts);
2164 if (GFC_ARRAY_TYPE_P (base_type)
2165 || GFC_DESCRIPTOR_TYPE_P (base_type))
2166 base_type = gfc_get_element_type (base_type);
2167
2168 loop.temp_ss = gfc_get_ss ();;
2169 loop.temp_ss->type = GFC_SS_TEMP;
2170 loop.temp_ss->data.temp.type = base_type;
2171
2172 if (expr->ts.type == BT_CHARACTER)
0ff77f4e 2173 loop.temp_ss->string_length = expr->ts.cl->backend_decl;
2174 else
2175 loop.temp_ss->string_length = NULL;
858f9894 2176
0ff77f4e 2177 parmse->string_length = loop.temp_ss->string_length;
858f9894 2178 loop.temp_ss->data.temp.dimen = loop.dimen;
2179 loop.temp_ss->next = gfc_ss_terminator;
2180
2181 /* Associate the SS with the loop. */
2182 gfc_add_ss_to_loop (&loop, loop.temp_ss);
2183
2184 /* Setup the scalarizing loops. */
92f4d1c4 2185 gfc_conv_loop_setup (&loop, &expr->where);
858f9894 2186
2187 /* Pass the temporary descriptor back to the caller. */
2188 info = &loop.temp_ss->data.info;
2189 parmse->expr = info->descriptor;
2190
2191 /* Setup the gfc_se structures. */
2192 gfc_copy_loopinfo_to_se (&lse, &loop);
2193 gfc_copy_loopinfo_to_se (&rse, &loop);
2194
2195 rse.ss = rss;
2196 lse.ss = loop.temp_ss;
2197 gfc_mark_ss_chain_used (rss, 1);
2198 gfc_mark_ss_chain_used (loop.temp_ss, 1);
2199
2200 /* Start the scalarized loop body. */
2201 gfc_start_scalarized_body (&loop, &body);
2202
2203 /* Translate the expression. */
2204 gfc_conv_expr (&rse, expr);
2205
2206 gfc_conv_tmp_array_ref (&lse);
2207 gfc_advance_se_ss_chain (&lse);
2208
35d9c496 2209 if (intent != INTENT_OUT)
2210 {
2294b616 2211 tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts, true, false);
35d9c496 2212 gfc_add_expr_to_block (&body, tmp);
2213 gcc_assert (rse.ss == gfc_ss_terminator);
2214 gfc_trans_scalarizing_loops (&loop, &body);
2215 }
e8325fb3 2216 else
2217 {
54ad1b4d 2218 /* Make sure that the temporary declaration survives by merging
2219 all the loop declarations into the current context. */
2220 for (n = 0; n < loop.dimen; n++)
2221 {
2222 gfc_merge_block_scope (&body);
2223 body = loop.code[loop.order[n]];
2224 }
2225 gfc_merge_block_scope (&body);
e8325fb3 2226 }
858f9894 2227
2228 /* Add the post block after the second loop, so that any
2229 freeing of allocated memory is done at the right time. */
2230 gfc_add_block_to_block (&parmse->pre, &loop.pre);
2231
2232 /**********Copy the temporary back again.*********/
2233
2234 gfc_init_se (&lse, NULL);
2235 gfc_init_se (&rse, NULL);
2236
2237 /* Walk the argument expression. */
2238 lss = gfc_walk_expr (expr);
2239 rse.ss = loop.temp_ss;
2240 lse.ss = lss;
2241
2242 /* Initialize the scalarizer. */
2243 gfc_init_loopinfo (&loop2);
2244 gfc_add_ss_to_loop (&loop2, lss);
2245
2246 /* Calculate the bounds of the scalarization. */
2247 gfc_conv_ss_startstride (&loop2);
2248
2249 /* Setup the scalarizing loops. */
92f4d1c4 2250 gfc_conv_loop_setup (&loop2, &expr->where);
858f9894 2251
2252 gfc_copy_loopinfo_to_se (&lse, &loop2);
2253 gfc_copy_loopinfo_to_se (&rse, &loop2);
2254
2255 gfc_mark_ss_chain_used (lss, 1);
2256 gfc_mark_ss_chain_used (loop.temp_ss, 1);
2257
2258 /* Declare the variable to hold the temporary offset and start the
2259 scalarized loop body. */
2260 offset = gfc_create_var (gfc_array_index_type, NULL);
2261 gfc_start_scalarized_body (&loop2, &body);
2262
2263 /* Build the offsets for the temporary from the loop variables. The
2264 temporary array has lbounds of zero and strides of one in all
2265 dimensions, so this is very simple. The offset is only computed
2266 outside the innermost loop, so the overall transfer could be
179eba08 2267 optimized further. */
858f9894 2268 info = &rse.ss->data.info;
2269
2270 tmp_index = gfc_index_zero_node;
2271 for (n = info->dimen - 1; n > 0; n--)
2272 {
2273 tree tmp_str;
2274 tmp = rse.loop->loopvar[n];
2275 tmp = fold_build2 (MINUS_EXPR, gfc_array_index_type,
2276 tmp, rse.loop->from[n]);
2277 tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
2278 tmp, tmp_index);
2279
2280 tmp_str = fold_build2 (MINUS_EXPR, gfc_array_index_type,
2281 rse.loop->to[n-1], rse.loop->from[n-1]);
2282 tmp_str = fold_build2 (PLUS_EXPR, gfc_array_index_type,
2283 tmp_str, gfc_index_one_node);
2284
2285 tmp_index = fold_build2 (MULT_EXPR, gfc_array_index_type,
2286 tmp, tmp_str);
2287 }
2288
2289 tmp_index = fold_build2 (MINUS_EXPR, gfc_array_index_type,
2290 tmp_index, rse.loop->from[0]);
75a70cf9 2291 gfc_add_modify (&rse.loop->code[0], offset, tmp_index);
858f9894 2292
2293 tmp_index = fold_build2 (PLUS_EXPR, gfc_array_index_type,
2294 rse.loop->loopvar[0], offset);
2295
2296 /* Now use the offset for the reference. */
2297 tmp = build_fold_indirect_ref (info->data);
1033248c 2298 rse.expr = gfc_build_array_ref (tmp, tmp_index, NULL);
858f9894 2299
2300 if (expr->ts.type == BT_CHARACTER)
2301 rse.string_length = expr->ts.cl->backend_decl;
2302
2303 gfc_conv_expr (&lse, expr);
2304
2305 gcc_assert (lse.ss == gfc_ss_terminator);
2306
2294b616 2307 tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts, false, false);
858f9894 2308 gfc_add_expr_to_block (&body, tmp);
2309
2310 /* Generate the copying loops. */
2311 gfc_trans_scalarizing_loops (&loop2, &body);
2312
2313 /* Wrap the whole thing up by adding the second loop to the post-block
35d9c496 2314 and following it by the post-block of the first loop. In this way,
858f9894 2315 if the temporary needs freeing, it is done after use! */
35d9c496 2316 if (intent != INTENT_IN)
2317 {
2318 gfc_add_block_to_block (&parmse->post, &loop2.pre);
2319 gfc_add_block_to_block (&parmse->post, &loop2.post);
2320 }
858f9894 2321
2322 gfc_add_block_to_block (&parmse->post, &loop.post);
2323
2324 gfc_cleanup_loop (&loop);
2325 gfc_cleanup_loop (&loop2);
2326
2327 /* Pass the string length to the argument expression. */
2328 if (expr->ts.type == BT_CHARACTER)
2329 parmse->string_length = expr->ts.cl->backend_decl;
2330
2331 /* We want either the address for the data or the address of the descriptor,
2332 depending on the mode of passing array arguments. */
2333 if (g77)
2334 parmse->expr = gfc_conv_descriptor_data_get (parmse->expr);
2335 else
86f2ad37 2336 parmse->expr = gfc_build_addr_expr (NULL_TREE, parmse->expr);
858f9894 2337
2338 return;
2339}
2340
08569428 2341
8d7cdc4d 2342/* Generate the code for argument list functions. */
2343
2344static void
2345conv_arglist_function (gfc_se *se, gfc_expr *expr, const char *name)
2346{
8d7cdc4d 2347 /* Pass by value for g77 %VAL(arg), pass the address
2348 indirectly for %LOC, else by reference. Thus %REF
2349 is a "do-nothing" and %LOC is the same as an F95
2350 pointer. */
2351 if (strncmp (name, "%VAL", 4) == 0)
b8128c7b 2352 gfc_conv_expr (se, expr);
8d7cdc4d 2353 else if (strncmp (name, "%LOC", 4) == 0)
2354 {
2355 gfc_conv_expr_reference (se, expr);
2356 se->expr = gfc_build_addr_expr (NULL, se->expr);
2357 }
2358 else if (strncmp (name, "%REF", 4) == 0)
2359 gfc_conv_expr_reference (se, expr);
2360 else
2361 gfc_error ("Unknown argument list function at %L", &expr->where);
2362}
2363
2364
4ee9c684 2365/* Generate code for a procedure call. Note can return se->post != NULL.
079d21d5 2366 If se->direct_byref is set then se->expr contains the return parameter.
64e93293 2367 Return nonzero, if the call has alternate specifiers.
2368 'expr' is only needed for procedure pointer components. */
4ee9c684 2369
079d21d5 2370int
64e93293 2371gfc_conv_procedure_call (gfc_se * se, gfc_symbol * sym,
2372 gfc_actual_arglist * arg, gfc_expr * expr,
2373 tree append_args)
4ee9c684 2374{
08569428 2375 gfc_interface_mapping mapping;
4ee9c684 2376 tree arglist;
08569428 2377 tree retargs;
4ee9c684 2378 tree tmp;
2379 tree fntype;
2380 gfc_se parmse;
2381 gfc_ss *argss;
2382 gfc_ss_info *info;
2383 int byref;
2294b616 2384 int parm_kind;
4ee9c684 2385 tree type;
2386 tree var;
2387 tree len;
2388 tree stringargs;
2389 gfc_formal_arglist *formal;
079d21d5 2390 int has_alternate_specifier = 0;
08569428 2391 bool need_interface_mapping;
d4ef6f9d 2392 bool callee_alloc;
08569428 2393 gfc_typespec ts;
2394 gfc_charlen cl;
bd24f178 2395 gfc_expr *e;
2396 gfc_symbol *fsym;
10b07432 2397 stmtblock_t post;
2294b616 2398 enum {MISSING = 0, ELEMENTAL, SCALAR, SCALAR_POINTER, ARRAY};
85d1c108 2399 gfc_component *comp = NULL;
4ee9c684 2400
2401 arglist = NULL_TREE;
08569428 2402 retargs = NULL_TREE;
4ee9c684 2403 stringargs = NULL_TREE;
2404 var = NULL_TREE;
2405 len = NULL_TREE;
52179f31 2406 gfc_clear_ts (&ts);
4ee9c684 2407
513a2ff6 2408 if (sym->from_intmod == INTMOD_ISO_C_BINDING)
43c61a0d 2409 {
513a2ff6 2410 if (sym->intmod_sym_id == ISOCBINDING_LOC)
43c61a0d 2411 {
513a2ff6 2412 if (arg->expr->rank == 0)
2413 gfc_conv_expr_reference (se, arg->expr);
2414 else
2415 {
2416 int f;
2417 /* This is really the actual arg because no formal arglist is
2418 created for C_LOC. */
2419 fsym = arg->expr->symtree->n.sym;
2420
2421 /* We should want it to do g77 calling convention. */
2422 f = (fsym != NULL)
2423 && !(fsym->attr.pointer || fsym->attr.allocatable)
2424 && fsym->as->type != AS_ASSUMED_SHAPE;
2425 f = f || !sym->attr.always_explicit;
2426
2427 argss = gfc_walk_expr (arg->expr);
bc56d052 2428 gfc_conv_array_parameter (se, arg->expr, argss, f,
2429 NULL, NULL, NULL);
513a2ff6 2430 }
2431
6b956f99 2432 /* TODO -- the following two lines shouldn't be necessary, but
2433 they're removed a bug is exposed later in the codepath.
2434 This is workaround was thus introduced, but will have to be
2435 removed; please see PR 35150 for details about the issue. */
2436 se->expr = convert (pvoid_type_node, se->expr);
2437 se->expr = gfc_evaluate_now (se->expr, &se->pre);
2438
513a2ff6 2439 return 0;
43c61a0d 2440 }
513a2ff6 2441 else if (sym->intmod_sym_id == ISOCBINDING_FUNLOC)
43c61a0d 2442 {
513a2ff6 2443 arg->expr->ts.type = sym->ts.derived->ts.type;
2444 arg->expr->ts.f90_type = sym->ts.derived->ts.f90_type;
2445 arg->expr->ts.kind = sym->ts.derived->ts.kind;
2446 gfc_conv_expr_reference (se, arg->expr);
2447
2cbaf336 2448 return 0;
2449 }
2450 else if ((sym->intmod_sym_id == ISOCBINDING_F_POINTER
2451 && arg->next->expr->rank == 0)
2452 || sym->intmod_sym_id == ISOCBINDING_F_PROCPOINTER)
2453 {
2454 /* Convert c_f_pointer if fptr is a scalar
2455 and convert c_f_procpointer. */
2456 gfc_se cptrse;
2457 gfc_se fptrse;
2458
2459 gfc_init_se (&cptrse, NULL);
2460 gfc_conv_expr (&cptrse, arg->expr);
2461 gfc_add_block_to_block (&se->pre, &cptrse.pre);
2462 gfc_add_block_to_block (&se->post, &cptrse.post);
2463
2464 gfc_init_se (&fptrse, NULL);
64e93293 2465 if (sym->intmod_sym_id == ISOCBINDING_F_POINTER
2466 || is_proc_ptr_comp (arg->next->expr, NULL))
2467 fptrse.want_pointer = 1;
2cbaf336 2468
2469 gfc_conv_expr (&fptrse, arg->next->expr);
2470 gfc_add_block_to_block (&se->pre, &fptrse.pre);
2471 gfc_add_block_to_block (&se->post, &fptrse.post);
2472
64e93293 2473 if (is_proc_ptr_comp (arg->next->expr, NULL))
2474 tmp = gfc_get_ppc_type (arg->next->expr->ref->u.c.component);
2475 else
2476 tmp = TREE_TYPE (arg->next->expr->symtree->n.sym->backend_decl);
2477 se->expr = fold_build2 (MODIFY_EXPR, tmp, fptrse.expr,
2478 fold_convert (tmp, cptrse.expr));
2cbaf336 2479
32e8ed46 2480 return 0;
2481 }
2482 else if (sym->intmod_sym_id == ISOCBINDING_ASSOCIATED)
2483 {
2484 gfc_se arg1se;
2485 gfc_se arg2se;
2486
2487 /* Build the addr_expr for the first argument. The argument is
2488 already an *address* so we don't need to set want_pointer in
2489 the gfc_se. */
2490 gfc_init_se (&arg1se, NULL);
2491 gfc_conv_expr (&arg1se, arg->expr);
2492 gfc_add_block_to_block (&se->pre, &arg1se.pre);
2493 gfc_add_block_to_block (&se->post, &arg1se.post);
2494
2495 /* See if we were given two arguments. */
2496 if (arg->next == NULL)
2497 /* Only given one arg so generate a null and do a
2498 not-equal comparison against the first arg. */
f75d6b8a 2499 se->expr = fold_build2 (NE_EXPR, boolean_type_node, arg1se.expr,
2500 fold_convert (TREE_TYPE (arg1se.expr),
2501 null_pointer_node));
32e8ed46 2502 else
2503 {
2504 tree eq_expr;
2505 tree not_null_expr;
2506
2507 /* Given two arguments so build the arg2se from second arg. */
2508 gfc_init_se (&arg2se, NULL);
2509 gfc_conv_expr (&arg2se, arg->next->expr);
2510 gfc_add_block_to_block (&se->pre, &arg2se.pre);
2511 gfc_add_block_to_block (&se->post, &arg2se.post);
2512
2513 /* Generate test to compare that the two args are equal. */
f75d6b8a 2514 eq_expr = fold_build2 (EQ_EXPR, boolean_type_node,
2515 arg1se.expr, arg2se.expr);
32e8ed46 2516 /* Generate test to ensure that the first arg is not null. */
f75d6b8a 2517 not_null_expr = fold_build2 (NE_EXPR, boolean_type_node,
2518 arg1se.expr, null_pointer_node);
32e8ed46 2519
2520 /* Finally, the generated test must check that both arg1 is not
2521 NULL and that it is equal to the second arg. */
f75d6b8a 2522 se->expr = fold_build2 (TRUTH_AND_EXPR, boolean_type_node,
2523 not_null_expr, eq_expr);
32e8ed46 2524 }
2525
513a2ff6 2526 return 0;
43c61a0d 2527 }
43c61a0d 2528 }
2529
4ee9c684 2530 if (se->ss != NULL)
2531 {
2532 if (!sym->attr.elemental)
2533 {
22d678e8 2534 gcc_assert (se->ss->type == GFC_SS_FUNCTION);
4ee9c684 2535 if (se->ss->useflags)
2536 {
22d678e8 2537 gcc_assert (gfc_return_by_reference (sym)
4ee9c684 2538 && sym->result->attr.dimension);
22d678e8 2539 gcc_assert (se->loop != NULL);
4ee9c684 2540
2541 /* Access the previously obtained result. */
2542 gfc_conv_tmp_array_ref (se);
2543 gfc_advance_se_ss_chain (se);
079d21d5 2544 return 0;
4ee9c684 2545 }
2546 }
2547 info = &se->ss->data.info;
2548 }
2549 else
2550 info = NULL;
2551
10b07432 2552 gfc_init_block (&post);
08569428 2553 gfc_init_interface_mapping (&mapping);
85d1c108 2554 is_proc_ptr_comp (expr, &comp);
f45a476e 2555 need_interface_mapping = ((sym->ts.type == BT_CHARACTER
5e8cd291 2556 && sym->ts.cl->length
2557 && sym->ts.cl->length->expr_type
2558 != EXPR_CONSTANT)
85d1c108 2559 || (comp && comp->attr.dimension)
2560 || (!comp && sym->attr.dimension));
4ee9c684 2561 formal = sym->formal;
2562 /* Evaluate the arguments. */
2563 for (; arg != NULL; arg = arg->next, formal = formal ? formal->next : NULL)
2564 {
bd24f178 2565 e = arg->expr;
2566 fsym = formal ? formal->sym : NULL;
2294b616 2567 parm_kind = MISSING;
bd24f178 2568 if (e == NULL)
4ee9c684 2569 {
2570
2571 if (se->ignore_optional)
2572 {
2573 /* Some intrinsics have already been resolved to the correct
2574 parameters. */
2575 continue;
2576 }
2577 else if (arg->label)
2578 {
2579 has_alternate_specifier = 1;
2580 continue;
2581 }
2582 else
2583 {
2584 /* Pass a NULL pointer for an absent arg. */
2585 gfc_init_se (&parmse, NULL);
2586 parmse.expr = null_pointer_node;
0fe9e56f 2587 if (arg->missing_arg_type == BT_CHARACTER)
7d3075f6 2588 parmse.string_length = build_int_cst (gfc_charlen_type_node, 0);
4ee9c684 2589 }
2590 }
2591 else if (se->ss && se->ss->useflags)
2592 {
2593 /* An elemental function inside a scalarized loop. */
2594 gfc_init_se (&parmse, se);
bd24f178 2595 gfc_conv_expr_reference (&parmse, e);
2294b616 2596 parm_kind = ELEMENTAL;
4ee9c684 2597 }
2598 else
2599 {
2600 /* A scalar or transformational function. */
2601 gfc_init_se (&parmse, NULL);
bd24f178 2602 argss = gfc_walk_expr (e);
4ee9c684 2603
2604 if (argss == gfc_ss_terminator)
c5d33754 2605 {
623416e8 2606 if (e->expr_type == EXPR_VARIABLE
2607 && e->symtree->n.sym->attr.cray_pointee
2608 && fsym && fsym->attr.flavor == FL_PROCEDURE)
2609 {
2610 /* The Cray pointer needs to be converted to a pointer to
2611 a type given by the expression. */
2612 gfc_conv_expr (&parmse, e);
2613 type = build_pointer_type (TREE_TYPE (parmse.expr));
2614 tmp = gfc_get_symbol_decl (e->symtree->n.sym->cp_pointer);
2615 parmse.expr = convert (type, tmp);
2616 }
2617 else if (fsym && fsym->attr.value)
8f6339b6 2618 {
4c47c8b7 2619 if (fsym->ts.type == BT_CHARACTER
2620 && fsym->ts.is_c_interop
2621 && fsym->ns->proc_name != NULL
2622 && fsym->ns->proc_name->attr.is_bind_c)
2623 {
2624 parmse.expr = NULL;
2625 gfc_conv_scalar_char_value (fsym, &parmse, &e);
2626 if (parmse.expr == NULL)
2627 gfc_conv_expr (&parmse, e);
2628 }
2629 else
2630 gfc_conv_expr (&parmse, e);
8f6339b6 2631 }
8d7cdc4d 2632 else if (arg->name && arg->name[0] == '%')
2633 /* Argument list functions %VAL, %LOC and %REF are signalled
2634 through arg->name. */
2635 conv_arglist_function (&parmse, arg->expr, arg->name);
7f7ca309 2636 else if ((e->expr_type == EXPR_FUNCTION)
2637 && e->symtree->n.sym->attr.pointer
2638 && fsym && fsym->attr.target)
2639 {
2640 gfc_conv_expr (&parmse, e);
86f2ad37 2641 parmse.expr = gfc_build_addr_expr (NULL_TREE, parmse.expr);
7f7ca309 2642 }
8f6339b6 2643 else
2644 {
2645 gfc_conv_expr_reference (&parmse, e);
cad0ddcf 2646 if (fsym && e->expr_type != EXPR_NULL
2647 && ((fsym->attr.pointer
2648 && fsym->attr.flavor != FL_PROCEDURE)
4651cfdd 2649 || (fsym->attr.proc_pointer
2650 && !(e->expr_type == EXPR_VARIABLE
2651 && e->symtree->n.sym->attr.dummy))))
8f6339b6 2652 {
2653 /* Scalar pointer dummy args require an extra level of
2654 indirection. The null pointer already contains
2655 this level of indirection. */
2656 parm_kind = SCALAR_POINTER;
86f2ad37 2657 parmse.expr = gfc_build_addr_expr (NULL_TREE, parmse.expr);
8f6339b6 2658 }
2659 }
2660 }
4ee9c684 2661 else
2662 {
7d19e94d 2663 /* If the procedure requires an explicit interface, the actual
2664 argument is passed according to the corresponding formal
2665 argument. If the corresponding formal argument is a POINTER,
2666 ALLOCATABLE or assumed shape, we do not use g77's calling
2667 convention, and pass the address of the array descriptor
2668 instead. Otherwise we use g77's calling convention. */
4ee9c684 2669 int f;
bd24f178 2670 f = (fsym != NULL)
2671 && !(fsym->attr.pointer || fsym->attr.allocatable)
2672 && fsym->as->type != AS_ASSUMED_SHAPE;
4ee9c684 2673 f = f || !sym->attr.always_explicit;
35d9c496 2674
bd24f178 2675 if (e->expr_type == EXPR_VARIABLE
1033248c 2676 && is_subref_array (e))
858f9894 2677 /* The actual argument is a component reference to an
2678 array of derived types. In this case, the argument
2679 is converted to a temporary, which is passed and then
2680 written back after the procedure call. */
1033248c 2681 gfc_conv_subref_array_arg (&parmse, e, f,
b8a51d79 2682 fsym ? fsym->attr.intent : INTENT_INOUT);
858f9894 2683 else
da6ffc6d 2684 gfc_conv_array_parameter (&parmse, e, argss, f, fsym,
bc56d052 2685 sym->name, NULL);
ab19f982 2686
2687 /* If an ALLOCATABLE dummy argument has INTENT(OUT) and is
2688 allocated on entry, it must be deallocated. */
bd24f178 2689 if (fsym && fsym->attr.allocatable
2690 && fsym->attr.intent == INTENT_OUT)
ab19f982 2691 {
76b504f5 2692 tmp = build_fold_indirect_ref (parmse.expr);
f135d1ce 2693 tmp = gfc_trans_dealloc_allocated (tmp);
ab19f982 2694 gfc_add_expr_to_block (&se->pre, tmp);
2695 }
2696
4ee9c684 2697 }
2698 }
2699
3d3b790d 2700 /* The case with fsym->attr.optional is that of a user subroutine
2701 with an interface indicating an optional argument. When we call
2702 an intrinsic subroutine, however, fsym is NULL, but we might still
2703 have an optional argument, so we proceed to the substitution
2704 just in case. */
2705 if (e && (fsym == NULL || fsym->attr.optional))
d45fced7 2706 {
3d3b790d 2707 /* If an optional argument is itself an optional dummy argument,
2708 check its presence and substitute a null if absent. */
2709 if (e->expr_type == EXPR_VARIABLE
2710 && e->symtree->n.sym->attr.optional)
2abe085f 2711 gfc_conv_missing_dummy (&parmse, e, fsym ? fsym->ts : e->ts,
2712 e->representation.length);
3d3b790d 2713 }
2714
2715 if (fsym && e)
2716 {
2717 /* Obtain the character length of an assumed character length
2718 length procedure from the typespec. */
2719 if (fsym->ts.type == BT_CHARACTER
2720 && parmse.string_length == NULL_TREE
2721 && e->ts.type == BT_PROCEDURE
2722 && e->symtree->n.sym->ts.type == BT_CHARACTER
ecb6b17c 2723 && e->symtree->n.sym->ts.cl->length != NULL
2724 && e->symtree->n.sym->ts.cl->length->expr_type == EXPR_CONSTANT)
d45fced7 2725 {
3d3b790d 2726 gfc_conv_const_charlen (e->symtree->n.sym->ts.cl);
2727 parmse.string_length = e->symtree->n.sym->ts.cl->backend_decl;
d45fced7 2728 }
d45fced7 2729 }
08569428 2730
079d3acc 2731 if (fsym && need_interface_mapping && e)
fd149f95 2732 gfc_add_interface_mapping (&mapping, fsym, &parmse, e);
3d3b790d 2733
4ee9c684 2734 gfc_add_block_to_block (&se->pre, &parmse.pre);
10b07432 2735 gfc_add_block_to_block (&post, &parmse.post);
4ee9c684 2736
2294b616 2737 /* Allocated allocatable components of derived types must be
8714fc76 2738 deallocated for non-variable scalars. Non-variable arrays are
2739 dealt with in trans-array.c(gfc_conv_array_parameter). */
2294b616 2740 if (e && e->ts.type == BT_DERIVED
2741 && e->ts.derived->attr.alloc_comp
cc2f46ba 2742 && !(e->symtree && e->symtree->n.sym->attr.pointer)
8714fc76 2743 && (e->expr_type != EXPR_VARIABLE && !e->rank))
2294b616 2744 {
2745 int parm_rank;
2746 tmp = build_fold_indirect_ref (parmse.expr);
2747 parm_rank = e->rank;
2748 switch (parm_kind)
2749 {
2750 case (ELEMENTAL):
2751 case (SCALAR):
2752 parm_rank = 0;
2753 break;
2754
2755 case (SCALAR_POINTER):
2756 tmp = build_fold_indirect_ref (tmp);
2757 break;
2294b616 2758 }
2759
e5387fb9 2760 if (e->expr_type == EXPR_OP
2761 && e->value.op.op == INTRINSIC_PARENTHESES
2762 && e->value.op.op1->expr_type == EXPR_VARIABLE)
2763 {
2764 tree local_tmp;
2765 local_tmp = gfc_evaluate_now (tmp, &se->pre);
2766 local_tmp = gfc_copy_alloc_comp (e->ts.derived, local_tmp, tmp, parm_rank);
2767 gfc_add_expr_to_block (&se->post, local_tmp);
2768 }
2769
8714fc76 2770 tmp = gfc_deallocate_alloc_comp (e->ts.derived, tmp, parm_rank);
e5387fb9 2771
8714fc76 2772 gfc_add_expr_to_block (&se->post, tmp);
2294b616 2773 }
2774
91cf6ba3 2775 /* Add argument checking of passing an unallocated/NULL actual to
2776 a nonallocatable/nonpointer dummy. */
2777
2778 if (gfc_option.rtcheck & GFC_RTCHECK_POINTER)
2779 {
2780 gfc_symbol *sym;
2781 char *msg;
2782 tree cond;
2783
2784 if (e->expr_type == EXPR_VARIABLE)
2785 sym = e->symtree->n.sym;
2786 else if (e->expr_type == EXPR_FUNCTION)
2787 sym = e->symtree->n.sym->result;
2788 else
2789 goto end_pointer_check;
2790
2791 if (sym->attr.allocatable
2792 && (fsym == NULL || !fsym->attr.allocatable))
2793 asprintf (&msg, "Allocatable actual argument '%s' is not "
2794 "allocated", sym->name);
2795 else if (sym->attr.pointer
2796 && (fsym == NULL || !fsym->attr.pointer))
2797 asprintf (&msg, "Pointer actual argument '%s' is not "
2798 "associated", sym->name);
2799 else if (sym->attr.proc_pointer
2800 && (fsym == NULL || !fsym->attr.proc_pointer))
2801 asprintf (&msg, "Proc-pointer actual argument '%s' is not "
2802 "associated", sym->name);
2803 else
2804 goto end_pointer_check;
2805
2806 cond = fold_build2 (EQ_EXPR, boolean_type_node, parmse.expr,
2807 fold_convert (TREE_TYPE (parmse.expr),
2808 null_pointer_node));
2809
2810 gfc_trans_runtime_check (true, false, cond, &se->pre, &e->where,
2811 msg);
2812 gfc_free (msg);
2813 }
2814 end_pointer_check:
2815
2816
7b3423b9 2817 /* Character strings are passed as two parameters, a length and a
465e4a95 2818 pointer - except for Bind(c) which only passes the pointer. */
2819 if (parmse.string_length != NULL_TREE && !sym->attr.is_bind_c)
4ee9c684 2820 stringargs = gfc_chainon_list (stringargs, parmse.string_length);
2821
2822 arglist = gfc_chainon_list (arglist, parmse.expr);
2823 }
08569428 2824 gfc_finish_interface_mapping (&mapping, &se->pre, &se->post);
2825
2826 ts = sym->ts;
ff2093c8 2827 if (ts.type == BT_CHARACTER && sym->attr.is_bind_c)
2828 se->string_length = build_int_cst (gfc_charlen_type_node, 1);
2829 else if (ts.type == BT_CHARACTER)
08569428 2830 {
5e8cd291 2831 if (sym->ts.cl->length == NULL)
2832 {
2833 /* Assumed character length results are not allowed by 5.1.1.5 of the
2834 standard and are trapped in resolve.c; except in the case of SPREAD
cce7ac71 2835 (and other intrinsics?) and dummy functions. In the case of SPREAD,
2836 we take the character length of the first argument for the result.
2837 For dummies, we have to look through the formal argument list for
2838 this function and use the character length found there.*/
2839 if (!sym->attr.dummy)
2840 cl.backend_decl = TREE_VALUE (stringargs);
2841 else
2842 {
2843 formal = sym->ns->proc_name->formal;
2844 for (; formal; formal = formal->next)
2845 if (strcmp (formal->sym->name, sym->name) == 0)
2846 cl.backend_decl = formal->sym->ts.cl->backend_decl;
2847 }
2848 }
2849 else
2850 {
a0ab480a 2851 tree tmp;
2852
5e8cd291 2853 /* Calculate the length of the returned string. */
2854 gfc_init_se (&parmse, NULL);
2855 if (need_interface_mapping)
2856 gfc_apply_interface_mapping (&mapping, &parmse, sym->ts.cl->length);
2857 else
2858 gfc_conv_expr (&parmse, sym->ts.cl->length);
2859 gfc_add_block_to_block (&se->pre, &parmse.pre);
2860 gfc_add_block_to_block (&se->post, &parmse.post);
a0ab480a 2861
2862 tmp = fold_convert (gfc_charlen_type_node, parmse.expr);
2863 tmp = fold_build2 (MAX_EXPR, gfc_charlen_type_node, tmp,
2864 build_int_cst (gfc_charlen_type_node, 0));
2865 cl.backend_decl = tmp;
5e8cd291 2866 }
08569428 2867
2868 /* Set up a charlen structure for it. */
2869 cl.next = NULL;
2870 cl.length = NULL;
08569428 2871 ts.cl = &cl;
2872
2873 len = cl.backend_decl;
2874 }
08569428 2875
85d1c108 2876 byref = (comp && comp->attr.dimension)
2877 || (!comp && gfc_return_by_reference (sym));
08569428 2878 if (byref)
2879 {
2880 if (se->direct_byref)
67135eee 2881 {
69b1505f 2882 /* Sometimes, too much indirection can be applied; e.g. for
67135eee 2883 function_result = array_valued_recursive_function. */
2884 if (TREE_TYPE (TREE_TYPE (se->expr))
2885 && TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr)))
2886 && GFC_DESCRIPTOR_TYPE_P
2887 (TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr)))))
2888 se->expr = build_fold_indirect_ref (se->expr);
2889
2890 retargs = gfc_chainon_list (retargs, se->expr);
2891 }
08569428 2892 else if (sym->result->attr.dimension)
2893 {
2894 gcc_assert (se->loop && info);
2895
2896 /* Set the type of the array. */
2897 tmp = gfc_typenode_for_spec (&ts);
2898 info->dimen = se->loop->dimen;
2899
f45a476e 2900 /* Evaluate the bounds of the result, if known. */
2901 gfc_set_loop_bounds_from_array_spec (&mapping, se, sym->result->as);
2902
d4ef6f9d 2903 /* Create a temporary to store the result. In case the function
2904 returns a pointer, the temporary will be a shallow copy and
2905 mustn't be deallocated. */
2906 callee_alloc = sym->attr.allocatable || sym->attr.pointer;
2907 gfc_trans_create_temp_array (&se->pre, &se->post, se->loop, info, tmp,
7a2a9daf 2908 NULL_TREE, false, !sym->attr.pointer,
2909 callee_alloc, &se->ss->expr->where);
08569428 2910
08569428 2911 /* Pass the temporary as the first argument. */
2912 tmp = info->descriptor;
86f2ad37 2913 tmp = gfc_build_addr_expr (NULL_TREE, tmp);
08569428 2914 retargs = gfc_chainon_list (retargs, tmp);
2915 }
2916 else if (ts.type == BT_CHARACTER)
2917 {
2918 /* Pass the string length. */
2919 type = gfc_get_character_type (ts.kind, ts.cl);
2920 type = build_pointer_type (type);
2921
2922 /* Return an address to a char[0:len-1]* temporary for
2923 character pointers. */
2924 if (sym->attr.pointer || sym->attr.allocatable)
2925 {
eeaa887f 2926 var = gfc_create_var (type, "pstr");
08569428 2927
2928 /* Provide an address expression for the function arguments. */
86f2ad37 2929 var = gfc_build_addr_expr (NULL_TREE, var);
08569428 2930 }
2931 else
2932 var = gfc_conv_string_tmp (se, type, len);
2933
2934 retargs = gfc_chainon_list (retargs, var);
2935 }
2936 else
2937 {
2938 gcc_assert (gfc_option.flag_f2c && ts.type == BT_COMPLEX);
2939
2940 type = gfc_get_complex_type (ts.kind);
86f2ad37 2941 var = gfc_build_addr_expr (NULL_TREE, gfc_create_var (type, "cmplx"));
08569428 2942 retargs = gfc_chainon_list (retargs, var);
2943 }
2944
2945 /* Add the string length to the argument list. */
2946 if (ts.type == BT_CHARACTER)
2947 retargs = gfc_chainon_list (retargs, len);
2948 }
f45a476e 2949 gfc_free_interface_mapping (&mapping);
08569428 2950
2951 /* Add the return arguments. */
2952 arglist = chainon (retargs, arglist);
4ee9c684 2953
2954 /* Add the hidden string length parameters to the arguments. */
2955 arglist = chainon (arglist, stringargs);
2956
4e8e57b0 2957 /* We may want to append extra arguments here. This is used e.g. for
2958 calls to libgfortran_matmul_??, which need extra information. */
2959 if (append_args != NULL_TREE)
2960 arglist = chainon (arglist, append_args);
2961
4ee9c684 2962 /* Generate the actual call. */
64e93293 2963 conv_function_val (se, sym, expr);
57dd95f2 2964
4ee9c684 2965 /* If there are alternate return labels, function type should be
079d21d5 2966 integer. Can't modify the type in place though, since it can be shared
57dd95f2 2967 with other functions. For dummy arguments, the typing is done to
2968 to this result, even if it has to be repeated for each call. */
079d21d5 2969 if (has_alternate_specifier
2970 && TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr))) != integer_type_node)
2971 {
57dd95f2 2972 if (!sym->attr.dummy)
2973 {
2974 TREE_TYPE (sym->backend_decl)
2975 = build_function_type (integer_type_node,
2976 TYPE_ARG_TYPES (TREE_TYPE (sym->backend_decl)));
86f2ad37 2977 se->expr = gfc_build_addr_expr (NULL_TREE, sym->backend_decl);
57dd95f2 2978 }
2979 else
2980 TREE_TYPE (TREE_TYPE (TREE_TYPE (se->expr))) = integer_type_node;
079d21d5 2981 }
4ee9c684 2982
2983 fntype = TREE_TYPE (TREE_TYPE (se->expr));
c2f47e15 2984 se->expr = build_call_list (TREE_TYPE (fntype), se->expr, arglist);
4ee9c684 2985
fa069004 2986 /* If we have a pointer function, but we don't want a pointer, e.g.
2987 something like
2988 x = f()
2989 where f is pointer valued, we have to dereference the result. */
64e93293 2990 if (!se->want_pointer && !byref && sym->attr.pointer
2991 && !is_proc_ptr_comp (expr, NULL))
4fa2c167 2992 se->expr = build_fold_indirect_ref (se->expr);
fa069004 2993
bdaed7d2 2994 /* f2c calling conventions require a scalar default real function to
2995 return a double precision result. Convert this back to default
2996 real. We only care about the cases that can happen in Fortran 77.
2997 */
2998 if (gfc_option.flag_f2c && sym->ts.type == BT_REAL
2999 && sym->ts.kind == gfc_default_real_kind
3000 && !sym->attr.always_explicit)
3001 se->expr = fold_convert (gfc_get_real_type (sym->ts.kind), se->expr);
3002
f888a3fb 3003 /* A pure function may still have side-effects - it may modify its
3004 parameters. */
4ee9c684 3005 TREE_SIDE_EFFECTS (se->expr) = 1;
3006#if 0
3007 if (!sym->attr.pure)
3008 TREE_SIDE_EFFECTS (se->expr) = 1;
3009#endif
3010
4396343e 3011 if (byref)
4ee9c684 3012 {
4396343e 3013 /* Add the function call to the pre chain. There is no expression. */
4ee9c684 3014 gfc_add_expr_to_block (&se->pre, se->expr);
4396343e 3015 se->expr = NULL_TREE;
4ee9c684 3016
4396343e 3017 if (!se->direct_byref)
4ee9c684 3018 {
65cf6ae7 3019 if (sym->attr.dimension)
4ee9c684 3020 {
ad8ed98e 3021 if (gfc_option.rtcheck & GFC_RTCHECK_BOUNDS)
4396343e 3022 {
3023 /* Check the data pointer hasn't been modified. This would
3024 happen in a function returning a pointer. */
94be45c9 3025 tmp = gfc_conv_descriptor_data_get (info->descriptor);
0eed5ee7 3026 tmp = fold_build2 (NE_EXPR, boolean_type_node,
3027 tmp, info->data);
da6ffc6d 3028 gfc_trans_runtime_check (true, false, tmp, &se->pre, NULL,
3029 gfc_msg_fault);
4396343e 3030 }
3031 se->expr = info->descriptor;
bf7e666b 3032 /* Bundle in the string length. */
3033 se->string_length = len;
4ee9c684 3034 }
4396343e 3035 else if (sym->ts.type == BT_CHARACTER)
544c333b 3036 {
bf7e666b 3037 /* Dereference for character pointer results. */
3038 if (sym->attr.pointer || sym->attr.allocatable)
4fa2c167 3039 se->expr = build_fold_indirect_ref (var);
544c333b 3040 else
bf7e666b 3041 se->expr = var;
3042
4396343e 3043 se->string_length = len;
3044 }
3045 else
bdaed7d2 3046 {
3047 gcc_assert (sym->ts.type == BT_COMPLEX && gfc_option.flag_f2c);
4fa2c167 3048 se->expr = build_fold_indirect_ref (var);
bdaed7d2 3049 }
4ee9c684 3050 }
4ee9c684 3051 }
079d21d5 3052
10b07432 3053 /* Follow the function call with the argument post block. */
3054 if (byref)
3055 gfc_add_block_to_block (&se->pre, &post);
3056 else
3057 gfc_add_block_to_block (&se->post, &post);
3058
079d21d5 3059 return has_alternate_specifier;
4ee9c684 3060}
3061
3062
b44437b9 3063/* Fill a character string with spaces. */
3064
3065static tree
3066fill_with_spaces (tree start, tree type, tree size)
3067{
3068 stmtblock_t block, loop;
3069 tree i, el, exit_label, cond, tmp;
3070
3071 /* For a simple char type, we can call memset(). */
3072 if (compare_tree_int (TYPE_SIZE_UNIT (type), 1) == 0)
3073 return build_call_expr (built_in_decls[BUILT_IN_MEMSET], 3, start,
3074 build_int_cst (gfc_get_int_type (gfc_c_int_kind),
3075 lang_hooks.to_target_charset (' ')),
3076 size);
3077
3078 /* Otherwise, we use a loop:
3079 for (el = start, i = size; i > 0; el--, i+= TYPE_SIZE_UNIT (type))
3080 *el = (type) ' ';
3081 */
3082
3083 /* Initialize variables. */
3084 gfc_init_block (&block);
3085 i = gfc_create_var (sizetype, "i");
75a70cf9 3086 gfc_add_modify (&block, i, fold_convert (sizetype, size));
b44437b9 3087 el = gfc_create_var (build_pointer_type (type), "el");
75a70cf9 3088 gfc_add_modify (&block, el, fold_convert (TREE_TYPE (el), start));
b44437b9 3089 exit_label = gfc_build_label_decl (NULL_TREE);
3090 TREE_USED (exit_label) = 1;
3091
3092
3093 /* Loop body. */
3094 gfc_init_block (&loop);
3095
3096 /* Exit condition. */
3097 cond = fold_build2 (LE_EXPR, boolean_type_node, i,
3098 fold_convert (sizetype, integer_zero_node));
3099 tmp = build1_v (GOTO_EXPR, exit_label);
e60a6f7b 3100 tmp = fold_build3 (COND_EXPR, void_type_node, cond, tmp,
3101 build_empty_stmt (input_location));
b44437b9 3102 gfc_add_expr_to_block (&loop, tmp);
3103
3104 /* Assignment. */
75a70cf9 3105 gfc_add_modify (&loop, fold_build1 (INDIRECT_REF, type, el),
b44437b9 3106 build_int_cst (type,
3107 lang_hooks.to_target_charset (' ')));
3108
3109 /* Increment loop variables. */
75a70cf9 3110 gfc_add_modify (&loop, i, fold_build2 (MINUS_EXPR, sizetype, i,
b44437b9 3111 TYPE_SIZE_UNIT (type)));
75a70cf9 3112 gfc_add_modify (&loop, el, fold_build2 (POINTER_PLUS_EXPR,
b44437b9 3113 TREE_TYPE (el), el,
3114 TYPE_SIZE_UNIT (type)));
3115
3116 /* Making the loop... actually loop! */
3117 tmp = gfc_finish_block (&loop);
3118 tmp = build1_v (LOOP_EXPR, tmp);
3119 gfc_add_expr_to_block (&block, tmp);
3120
3121 /* The exit label. */
3122 tmp = build1_v (LABEL_EXPR, exit_label);
3123 gfc_add_expr_to_block (&block, tmp);
3124
3125
3126 return gfc_finish_block (&block);
3127}
3128
3129
dbe60343 3130/* Generate code to copy a string. */
3131
88137677 3132void
72038310 3133gfc_trans_string_copy (stmtblock_t * block, tree dlength, tree dest,
b44437b9 3134 int dkind, tree slength, tree src, int skind)
dbe60343 3135{
72038310 3136 tree tmp, dlen, slen;
77100724 3137 tree dsc;
3138 tree ssc;
2810b378 3139 tree cond;
59b9dcbd 3140 tree cond2;
3141 tree tmp2;
3142 tree tmp3;
3143 tree tmp4;
b44437b9 3144 tree chartype;
59b9dcbd 3145 stmtblock_t tempblock;
77100724 3146
b44437b9 3147 gcc_assert (dkind == skind);
3148
891beb95 3149 if (slength != NULL_TREE)
3150 {
3151 slen = fold_convert (size_type_node, gfc_evaluate_now (slength, block));
b44437b9 3152 ssc = string_to_single_character (slen, src, skind);
891beb95 3153 }
3154 else
3155 {
3156 slen = build_int_cst (size_type_node, 1);
3157 ssc = src;
3158 }
3159
3160 if (dlength != NULL_TREE)
3161 {
3162 dlen = fold_convert (size_type_node, gfc_evaluate_now (dlength, block));
b44437b9 3163 dsc = string_to_single_character (slen, dest, dkind);
891beb95 3164 }
3165 else
3166 {
3167 dlen = build_int_cst (size_type_node, 1);
3168 dsc = dest;
3169 }
3170
3171 if (slength != NULL_TREE && POINTER_TYPE_P (TREE_TYPE (src)))
b44437b9 3172 ssc = string_to_single_character (slen, src, skind);
891beb95 3173 if (dlength != NULL_TREE && POINTER_TYPE_P (TREE_TYPE (dest)))
b44437b9 3174 dsc = string_to_single_character (dlen, dest, dkind);
891beb95 3175
72038310 3176
680e3123 3177 /* Assign directly if the types are compatible. */
3178 if (dsc != NULL_TREE && ssc != NULL_TREE
b44437b9 3179 && TREE_TYPE (dsc) == TREE_TYPE (ssc))
77100724 3180 {
75a70cf9 3181 gfc_add_modify (block, dsc, ssc);
77100724 3182 return;
3183 }
dbe60343 3184
59b9dcbd 3185 /* Do nothing if the destination length is zero. */
2810b378 3186 cond = fold_build2 (GT_EXPR, boolean_type_node, dlen,
57e3c827 3187 build_int_cst (size_type_node, 0));
2810b378 3188
59b9dcbd 3189 /* The following code was previously in _gfortran_copy_string:
3190
3191 // The two strings may overlap so we use memmove.
3192 void
3193 copy_string (GFC_INTEGER_4 destlen, char * dest,
3194 GFC_INTEGER_4 srclen, const char * src)
3195 {
3196 if (srclen >= destlen)
3197 {
3198 // This will truncate if too long.
3199 memmove (dest, src, destlen);
3200 }
3201 else
3202 {
3203 memmove (dest, src, srclen);
3204 // Pad with spaces.
3205 memset (&dest[srclen], ' ', destlen - srclen);
3206 }
3207 }
3208
3209 We're now doing it here for better optimization, but the logic
3210 is the same. */
ceeda734 3211
b44437b9 3212 /* For non-default character kinds, we have to multiply the string
3213 length by the base type size. */
3214 chartype = gfc_get_char_type (dkind);
abb1d33a 3215 slen = fold_build2 (MULT_EXPR, size_type_node,
3216 fold_convert (size_type_node, slen),
3217 fold_convert (size_type_node, TYPE_SIZE_UNIT (chartype)));
3218 dlen = fold_build2 (MULT_EXPR, size_type_node,
3219 fold_convert (size_type_node, dlen),
3220 fold_convert (size_type_node, TYPE_SIZE_UNIT (chartype)));
b44437b9 3221
891beb95 3222 if (dlength)
3223 dest = fold_convert (pvoid_type_node, dest);
3224 else
3225 dest = gfc_build_addr_expr (pvoid_type_node, dest);
3226
3227 if (slength)
3228 src = fold_convert (pvoid_type_node, src);
3229 else
3230 src = gfc_build_addr_expr (pvoid_type_node, src);
ceeda734 3231
59b9dcbd 3232 /* Truncate string if source is too long. */
3233 cond2 = fold_build2 (GE_EXPR, boolean_type_node, slen, dlen);
c2f47e15 3234 tmp2 = build_call_expr (built_in_decls[BUILT_IN_MEMMOVE],
3235 3, dest, src, dlen);
59b9dcbd 3236
3237 /* Else copy and pad with spaces. */
c2f47e15 3238 tmp3 = build_call_expr (built_in_decls[BUILT_IN_MEMMOVE],
3239 3, dest, src, slen);
59b9dcbd 3240
f6313358 3241 tmp4 = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (dest), dest,
0de36bdb 3242 fold_convert (sizetype, slen));
b44437b9 3243 tmp4 = fill_with_spaces (tmp4, chartype,
3244 fold_build2 (MINUS_EXPR, TREE_TYPE(dlen),
3245 dlen, slen));
59b9dcbd 3246
3247 gfc_init_block (&tempblock);
3248 gfc_add_expr_to_block (&tempblock, tmp3);
3249 gfc_add_expr_to_block (&tempblock, tmp4);
3250 tmp3 = gfc_finish_block (&tempblock);
3251
3252 /* The whole copy_string function is there. */
3253 tmp = fold_build3 (COND_EXPR, void_type_node, cond2, tmp2, tmp3);
e60a6f7b 3254 tmp = fold_build3 (COND_EXPR, void_type_node, cond, tmp,
3255 build_empty_stmt (input_location));
dbe60343 3256 gfc_add_expr_to_block (block, tmp);
3257}
3258
3259
4ee9c684 3260/* Translate a statement function.
3261 The value of a statement function reference is obtained by evaluating the
3262 expression using the values of the actual arguments for the values of the
3263 corresponding dummy arguments. */
3264
3265static void
3266gfc_conv_statement_function (gfc_se * se, gfc_expr * expr)
3267{
3268 gfc_symbol *sym;
3269 gfc_symbol *fsym;
3270 gfc_formal_arglist *fargs;
3271 gfc_actual_arglist *args;
3272 gfc_se lse;
3273 gfc_se rse;
dbe60343 3274 gfc_saved_var *saved_vars;
3275 tree *temp_vars;
3276 tree type;
3277 tree tmp;
3278 int n;
4ee9c684 3279
3280 sym = expr->symtree->n.sym;
3281 args = expr->value.function.actual;
3282 gfc_init_se (&lse, NULL);
3283 gfc_init_se (&rse, NULL);
3284
dbe60343 3285 n = 0;
4ee9c684 3286 for (fargs = sym->formal; fargs; fargs = fargs->next)
dbe60343 3287 n++;
3288 saved_vars = (gfc_saved_var *)gfc_getmem (n * sizeof (gfc_saved_var));
3289 temp_vars = (tree *)gfc_getmem (n * sizeof (tree));
3290
3291 for (fargs = sym->formal, n = 0; fargs; fargs = fargs->next, n++)
4ee9c684 3292 {
3293 /* Each dummy shall be specified, explicitly or implicitly, to be
3294 scalar. */
22d678e8 3295 gcc_assert (fargs->sym->attr.dimension == 0);
4ee9c684 3296 fsym = fargs->sym;
4ee9c684 3297
dbe60343 3298 /* Create a temporary to hold the value. */
3299 type = gfc_typenode_for_spec (&fsym->ts);
3300 temp_vars[n] = gfc_create_var (type, fsym->name);
3301
3302 if (fsym->ts.type == BT_CHARACTER)
4ee9c684 3303 {
dbe60343 3304 /* Copy string arguments. */
3305 tree arglen;
4ee9c684 3306
22d678e8 3307 gcc_assert (fsym->ts.cl && fsym->ts.cl->length
b44437b9 3308 && fsym->ts.cl->length->expr_type == EXPR_CONSTANT);
4ee9c684 3309
dbe60343 3310 arglen = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
3311 tmp = gfc_build_addr_expr (build_pointer_type (type),
3312 temp_vars[n]);
4ee9c684 3313
3314 gfc_conv_expr (&rse, args->expr);
3315 gfc_conv_string_parameter (&rse);
4ee9c684 3316 gfc_add_block_to_block (&se->pre, &lse.pre);
3317 gfc_add_block_to_block (&se->pre, &rse.pre);
3318
b44437b9 3319 gfc_trans_string_copy (&se->pre, arglen, tmp, fsym->ts.kind,
3320 rse.string_length, rse.expr, fsym->ts.kind);
4ee9c684 3321 gfc_add_block_to_block (&se->pre, &lse.post);
3322 gfc_add_block_to_block (&se->pre, &rse.post);
3323 }
3324 else
3325 {
3326 /* For everything else, just evaluate the expression. */
4ee9c684 3327 gfc_conv_expr (&lse, args->expr);
3328
3329 gfc_add_block_to_block (&se->pre, &lse.pre);
75a70cf9 3330 gfc_add_modify (&se->pre, temp_vars[n], lse.expr);
4ee9c684 3331 gfc_add_block_to_block (&se->pre, &lse.post);
3332 }
dbe60343 3333
4ee9c684 3334 args = args->next;
3335 }
dbe60343 3336
3337 /* Use the temporary variables in place of the real ones. */
3338 for (fargs = sym->formal, n = 0; fargs; fargs = fargs->next, n++)
3339 gfc_shadow_sym (fargs->sym, temp_vars[n], &saved_vars[n]);
3340
4ee9c684 3341 gfc_conv_expr (se, sym->value);
dbe60343 3342
3343 if (sym->ts.type == BT_CHARACTER)
3344 {
3345 gfc_conv_const_charlen (sym->ts.cl);
3346
3347 /* Force the expression to the correct length. */
3348 if (!INTEGER_CST_P (se->string_length)
3349 || tree_int_cst_lt (se->string_length,
3350 sym->ts.cl->backend_decl))
3351 {
3352 type = gfc_get_character_type (sym->ts.kind, sym->ts.cl);
3353 tmp = gfc_create_var (type, sym->name);
3354 tmp = gfc_build_addr_expr (build_pointer_type (type), tmp);
3355 gfc_trans_string_copy (&se->pre, sym->ts.cl->backend_decl, tmp,
b44437b9 3356 sym->ts.kind, se->string_length, se->expr,
3357 sym->ts.kind);
dbe60343 3358 se->expr = tmp;
3359 }
3360 se->string_length = sym->ts.cl->backend_decl;
3361 }
3362
f888a3fb 3363 /* Restore the original variables. */
dbe60343 3364 for (fargs = sym->formal, n = 0; fargs; fargs = fargs->next, n++)
3365 gfc_restore_sym (fargs->sym, &saved_vars[n]);
3366 gfc_free (saved_vars);
4ee9c684 3367}
3368
3369
64e93293 3370/* Return the backend_decl for a procedure pointer component. */
3371
3372tree
3373gfc_get_proc_ptr_comp (gfc_se *se, gfc_expr *e)
3374{
3375 gfc_se comp_se;
3376 gfc_init_se (&comp_se, NULL);
3377 e->expr_type = EXPR_VARIABLE;
3378 gfc_conv_expr (&comp_se, e);
3379 comp_se.expr = build_fold_addr_expr (comp_se.expr);
3380 return gfc_evaluate_now (comp_se.expr, &se->pre);
3381}
3382
3383
4ee9c684 3384/* Translate a function expression. */
3385
3386static void
3387gfc_conv_function_expr (gfc_se * se, gfc_expr * expr)
3388{
3389 gfc_symbol *sym;
3390
3391 if (expr->value.function.isym)
3392 {
3393 gfc_conv_intrinsic_function (se, expr);
3394 return;
3395 }
3396
f888a3fb 3397 /* We distinguish statement functions from general functions to improve
4ee9c684 3398 runtime performance. */
3399 if (expr->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
3400 {
3401 gfc_conv_statement_function (se, expr);
3402 return;
3403 }
3404
3405 /* expr.value.function.esym is the resolved (specific) function symbol for
3406 most functions. However this isn't set for dummy procedures. */
3407 sym = expr->value.function.esym;
3408 if (!sym)
3409 sym = expr->symtree->n.sym;
64e93293 3410
3411 gfc_conv_procedure_call (se, sym, expr->value.function.actual, expr,
3412 NULL_TREE);
4ee9c684 3413}
3414
f888a3fb 3415
4ee9c684 3416static void
3417gfc_conv_array_constructor_expr (gfc_se * se, gfc_expr * expr)
3418{
22d678e8 3419 gcc_assert (se->ss != NULL && se->ss != gfc_ss_terminator);
3420 gcc_assert (se->ss->expr == expr && se->ss->type == GFC_SS_CONSTRUCTOR);
4ee9c684 3421
3422 gfc_conv_tmp_array_ref (se);
3423 gfc_advance_se_ss_chain (se);
3424}
3425
3426
bda1f152 3427/* Build a static initializer. EXPR is the expression for the initial value.
f888a3fb 3428 The other parameters describe the variable of the component being
3429 initialized. EXPR may be null. */
4ee9c684 3430
bda1f152 3431tree
3432gfc_conv_initializer (gfc_expr * expr, gfc_typespec * ts, tree type,
3433 bool array, bool pointer)
3434{
3435 gfc_se se;
3436
3437 if (!(expr || pointer))
3438 return NULL_TREE;
3439
cf65c534 3440 /* Check if we have ISOCBINDING_NULL_PTR or ISOCBINDING_NULL_FUNPTR
3441 (these are the only two iso_c_binding derived types that can be
3442 used as initialization expressions). If so, we need to modify
3443 the 'expr' to be that for a (void *). */
3e77b51f 3444 if (expr != NULL && expr->ts.type == BT_DERIVED
3445 && expr->ts.is_iso_c && expr->ts.derived)
cf65c534 3446 {
3447 gfc_symbol *derived = expr->ts.derived;
3448
c5d33754 3449 expr = gfc_int_expr (0);
cf65c534 3450
3451 /* The derived symbol has already been converted to a (void *). Use
3452 its kind. */
3453 expr->ts.f90_type = derived->ts.f90_type;
3454 expr->ts.kind = derived->ts.kind;
3455 }
c5d33754 3456
bda1f152 3457 if (array)
3458 {
3459 /* Arrays need special handling. */
3460 if (pointer)
3461 return gfc_build_null_descriptor (type);
3462 else
3463 return gfc_conv_array_initializer (type, expr);
3464 }
3465 else if (pointer)
3466 return fold_convert (type, null_pointer_node);
3467 else
3468 {
3469 switch (ts->type)
3470 {
3471 case BT_DERIVED:
3472 gfc_init_se (&se, NULL);
3473 gfc_conv_structure (&se, expr, 1);
3474 return se.expr;
3475
3476 case BT_CHARACTER:
3477 return gfc_conv_string_init (ts->cl->backend_decl,expr);
3478
3479 default:
3480 gfc_init_se (&se, NULL);
3481 gfc_conv_constant (&se, expr);
3482 return se.expr;
3483 }
3484 }
3485}
3486
9a0aec1d 3487static tree
3488gfc_trans_subarray_assign (tree dest, gfc_component * cm, gfc_expr * expr)
3489{
3490 gfc_se rse;
3491 gfc_se lse;
3492 gfc_ss *rss;
3493 gfc_ss *lss;
3494 stmtblock_t body;
3495 stmtblock_t block;
3496 gfc_loopinfo loop;
3497 int n;
3498 tree tmp;
3499
3500 gfc_start_block (&block);
3501
3502 /* Initialize the scalarizer. */
3503 gfc_init_loopinfo (&loop);
3504
3505 gfc_init_se (&lse, NULL);
3506 gfc_init_se (&rse, NULL);
3507
3508 /* Walk the rhs. */
3509 rss = gfc_walk_expr (expr);
3510 if (rss == gfc_ss_terminator)
3511 {
3512 /* The rhs is scalar. Add a ss for the expression. */
3513 rss = gfc_get_ss ();
3514 rss->next = gfc_ss_terminator;
3515 rss->type = GFC_SS_SCALAR;
3516 rss->expr = expr;
3517 }
3518
3519 /* Create a SS for the destination. */
3520 lss = gfc_get_ss ();
3521 lss->type = GFC_SS_COMPONENT;
3522 lss->expr = NULL;
3523 lss->shape = gfc_get_shape (cm->as->rank);
3524 lss->next = gfc_ss_terminator;
3525 lss->data.info.dimen = cm->as->rank;
3526 lss->data.info.descriptor = dest;
3527 lss->data.info.data = gfc_conv_array_data (dest);
3528 lss->data.info.offset = gfc_conv_array_offset (dest);
3529 for (n = 0; n < cm->as->rank; n++)
3530 {
3531 lss->data.info.dim[n] = n;
3532 lss->data.info.start[n] = gfc_conv_array_lbound (dest, n);
3533 lss->data.info.stride[n] = gfc_index_one_node;
3534
3535 mpz_init (lss->shape[n]);
3536 mpz_sub (lss->shape[n], cm->as->upper[n]->value.integer,
3537 cm->as->lower[n]->value.integer);
3538 mpz_add_ui (lss->shape[n], lss->shape[n], 1);
3539 }
3540
3541 /* Associate the SS with the loop. */
3542 gfc_add_ss_to_loop (&loop, lss);
3543 gfc_add_ss_to_loop (&loop, rss);
3544
3545 /* Calculate the bounds of the scalarization. */
3546 gfc_conv_ss_startstride (&loop);
3547
3548 /* Setup the scalarizing loops. */
92f4d1c4 3549 gfc_conv_loop_setup (&loop, &expr->where);
9a0aec1d 3550
3551 /* Setup the gfc_se structures. */
3552 gfc_copy_loopinfo_to_se (&lse, &loop);
3553 gfc_copy_loopinfo_to_se (&rse, &loop);
3554
3555 rse.ss = rss;
3556 gfc_mark_ss_chain_used (rss, 1);
3557 lse.ss = lss;
3558 gfc_mark_ss_chain_used (lss, 1);
3559
3560 /* Start the scalarized loop body. */
3561 gfc_start_scalarized_body (&loop, &body);
3562
3563 gfc_conv_tmp_array_ref (&lse);
dc5fe211 3564 if (cm->ts.type == BT_CHARACTER)
3565 lse.string_length = cm->ts.cl->backend_decl;
3566
9a0aec1d 3567 gfc_conv_expr (&rse, expr);
3568
2294b616 3569 tmp = gfc_trans_scalar_assign (&lse, &rse, cm->ts, true, false);
9a0aec1d 3570 gfc_add_expr_to_block (&body, tmp);
3571
22d678e8 3572 gcc_assert (rse.ss == gfc_ss_terminator);
9a0aec1d 3573
3574 /* Generate the copying loops. */
3575 gfc_trans_scalarizing_loops (&loop, &body);
3576
3577 /* Wrap the whole thing up. */
3578 gfc_add_block_to_block (&block, &loop.pre);
3579 gfc_add_block_to_block (&block, &loop.post);
3580
9a0aec1d 3581 for (n = 0; n < cm->as->rank; n++)
3582 mpz_clear (lss->shape[n]);
3583 gfc_free (lss->shape);
3584
6cf06ccd 3585 gfc_cleanup_loop (&loop);
3586
9a0aec1d 3587 return gfc_finish_block (&block);
3588}
3589
2294b616 3590
9a0aec1d 3591/* Assign a single component of a derived type constructor. */
3592
3593static tree
3594gfc_trans_subcomponent_assign (tree dest, gfc_component * cm, gfc_expr * expr)
3595{
3596 gfc_se se;
2294b616 3597 gfc_se lse;
9a0aec1d 3598 gfc_ss *rss;
3599 stmtblock_t block;
3600 tree tmp;
2294b616 3601 tree offset;
3602 int n;
9a0aec1d 3603
3604 gfc_start_block (&block);
2294b616 3605
3be2b8d5 3606 if (cm->attr.pointer)
9a0aec1d 3607 {
3608 gfc_init_se (&se, NULL);
3609 /* Pointer component. */
3be2b8d5 3610 if (cm->attr.dimension)
9a0aec1d 3611 {
3612 /* Array pointer. */
3613 if (expr->expr_type == EXPR_NULL)
94be45c9 3614 gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
9a0aec1d 3615 else
3616 {
3617 rss = gfc_walk_expr (expr);
3618 se.direct_byref = 1;
3619 se.expr = dest;
3620 gfc_conv_expr_descriptor (&se, expr, rss);
3621 gfc_add_block_to_block (&block, &se.pre);
3622 gfc_add_block_to_block (&block, &se.post);
3623 }
3624 }
3625 else
3626 {
3627 /* Scalar pointers. */
3628 se.want_pointer = 1;
3629 gfc_conv_expr (&se, expr);
3630 gfc_add_block_to_block (&block, &se.pre);
75a70cf9 3631 gfc_add_modify (&block, dest,
9a0aec1d 3632 fold_convert (TREE_TYPE (dest), se.expr));
3633 gfc_add_block_to_block (&block, &se.post);
3634 }
3635 }
3be2b8d5 3636 else if (cm->attr.dimension)
9a0aec1d 3637 {
3be2b8d5 3638 if (cm->attr.allocatable && expr->expr_type == EXPR_NULL)
2294b616 3639 gfc_conv_descriptor_data_set (&block, dest, null_pointer_node);
3be2b8d5 3640 else if (cm->attr.allocatable)
6826be54 3641 {
3642 tree tmp2;
2294b616 3643
3644 gfc_init_se (&se, NULL);
3645
3646 rss = gfc_walk_expr (expr);
6826be54 3647 se.want_pointer = 0;
3648 gfc_conv_expr_descriptor (&se, expr, rss);
2294b616 3649 gfc_add_block_to_block (&block, &se.pre);
3650
3651 tmp = fold_convert (TREE_TYPE (dest), se.expr);
75a70cf9 3652 gfc_add_modify (&block, dest, tmp);
2294b616 3653
6826be54 3654 if (cm->ts.type == BT_DERIVED && cm->ts.derived->attr.alloc_comp)
2294b616 3655 tmp = gfc_copy_alloc_comp (cm->ts.derived, se.expr, dest,
3656 cm->as->rank);
3657 else
6826be54 3658 tmp = gfc_duplicate_allocatable (dest, se.expr,
2294b616 3659 TREE_TYPE(cm->backend_decl),
3660 cm->as->rank);
3661
6826be54 3662 gfc_add_expr_to_block (&block, tmp);
6826be54 3663 gfc_add_block_to_block (&block, &se.post);
8714fc76 3664
3665 if (expr->expr_type != EXPR_VARIABLE)
3666 gfc_conv_descriptor_data_set (&block, se.expr, null_pointer_node);
6826be54 3667
3668 /* Shift the lbound and ubound of temporaries to being unity, rather
3669 than zero, based. Calculate the offset for all cases. */
6b1a9af3 3670 offset = gfc_conv_descriptor_offset_get (dest);
75a70cf9 3671 gfc_add_modify (&block, offset, gfc_index_zero_node);
6826be54 3672 tmp2 =gfc_create_var (gfc_array_index_type, NULL);
3673 for (n = 0; n < expr->rank; n++)
3674 {
3675 if (expr->expr_type != EXPR_VARIABLE
3676 && expr->expr_type != EXPR_CONSTANT)
3677 {
3678 tree span;
6b1a9af3 3679 tmp = gfc_conv_descriptor_ubound_get (dest, gfc_rank_cst[n]);
6826be54 3680 span = fold_build2 (MINUS_EXPR, gfc_array_index_type, tmp,
6b1a9af3 3681 gfc_conv_descriptor_lbound_get (dest, gfc_rank_cst[n]));
3682 tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
3683 span, gfc_index_one_node);
3684 gfc_conv_descriptor_ubound_set (&block, dest, gfc_rank_cst[n],
3685 tmp);
3686 gfc_conv_descriptor_lbound_set (&block, dest, gfc_rank_cst[n],
3687 gfc_index_one_node);
6826be54 3688 }
3689 tmp = fold_build2 (MULT_EXPR, gfc_array_index_type,
6b1a9af3 3690 gfc_conv_descriptor_lbound_get (dest,
2294b616 3691 gfc_rank_cst[n]),
6b1a9af3 3692 gfc_conv_descriptor_stride_get (dest,
2294b616 3693 gfc_rank_cst[n]));
75a70cf9 3694 gfc_add_modify (&block, tmp2, tmp);
6826be54 3695 tmp = fold_build2 (MINUS_EXPR, gfc_array_index_type, offset, tmp2);
6b1a9af3 3696 gfc_conv_descriptor_offset_set (&block, dest, tmp);
6826be54 3697 }
8714fc76 3698
3699 if (expr->expr_type == EXPR_FUNCTION
3700 && expr->value.function.isym
3701 && expr->value.function.isym->conversion
3702 && expr->value.function.actual->expr
3703 && expr->value.function.actual->expr->expr_type
3704 == EXPR_VARIABLE)
3705 {
3706 /* If a conversion expression has a null data pointer
3707 argument, nullify the allocatable component. */
3708 gfc_symbol *s;
3709 tree non_null_expr;
3710 tree null_expr;
3711 s = expr->value.function.actual->expr->symtree->n.sym;
3712 if (s->attr.allocatable || s->attr.pointer)
3713 {
3714 non_null_expr = gfc_finish_block (&block);
3715 gfc_start_block (&block);
3716 gfc_conv_descriptor_data_set (&block, dest,
3717 null_pointer_node);
3718 null_expr = gfc_finish_block (&block);
3719 tmp = gfc_conv_descriptor_data_get (s->backend_decl);
3720 tmp = build2 (EQ_EXPR, boolean_type_node, tmp,
3721 fold_convert (TREE_TYPE (tmp),
3722 null_pointer_node));
3723 return build3_v (COND_EXPR, tmp, null_expr,
3724 non_null_expr);
3725 }
3726 }
6826be54 3727 }
2294b616 3728 else
6826be54 3729 {
2294b616 3730 tmp = gfc_trans_subarray_assign (dest, cm, expr);
3731 gfc_add_expr_to_block (&block, tmp);
6826be54 3732 }
9a0aec1d 3733 }
3734 else if (expr->ts.type == BT_DERIVED)
3735 {
d95efb59 3736 if (expr->expr_type != EXPR_STRUCTURE)
3737 {
3738 gfc_init_se (&se, NULL);
3739 gfc_conv_expr (&se, expr);
0029c45c 3740 gfc_add_block_to_block (&block, &se.pre);
75a70cf9 3741 gfc_add_modify (&block, dest,
d95efb59 3742 fold_convert (TREE_TYPE (dest), se.expr));
0029c45c 3743 gfc_add_block_to_block (&block, &se.post);
d95efb59 3744 }
3745 else
3746 {
3747 /* Nested constructors. */
3748 tmp = gfc_trans_structure_assign (dest, expr);
3749 gfc_add_expr_to_block (&block, tmp);
3750 }
9a0aec1d 3751 }
3752 else
3753 {
3754 /* Scalar component. */
9a0aec1d 3755 gfc_init_se (&se, NULL);
3756 gfc_init_se (&lse, NULL);
3757
3758 gfc_conv_expr (&se, expr);
3759 if (cm->ts.type == BT_CHARACTER)
3760 lse.string_length = cm->ts.cl->backend_decl;
3761 lse.expr = dest;
2294b616 3762 tmp = gfc_trans_scalar_assign (&lse, &se, cm->ts, true, false);
9a0aec1d 3763 gfc_add_expr_to_block (&block, tmp);
3764 }
3765 return gfc_finish_block (&block);
3766}
3767
39fca56b 3768/* Assign a derived type constructor to a variable. */
9a0aec1d 3769
3770static tree
3771gfc_trans_structure_assign (tree dest, gfc_expr * expr)
3772{
3773 gfc_constructor *c;
3774 gfc_component *cm;
3775 stmtblock_t block;
3776 tree field;
3777 tree tmp;
3778
3779 gfc_start_block (&block);
3780 cm = expr->ts.derived->components;
3781 for (c = expr->value.constructor; c; c = c->next, cm = cm->next)
3782 {
3783 /* Skip absent members in default initializers. */
3784 if (!c->expr)
0029c45c 3785 continue;
3786
9a0aec1d 3787 field = cm->backend_decl;
f75d6b8a 3788 tmp = fold_build3 (COMPONENT_REF, TREE_TYPE (field),
3789 dest, field, NULL_TREE);
9a0aec1d 3790 tmp = gfc_trans_subcomponent_assign (tmp, cm, c->expr);
3791 gfc_add_expr_to_block (&block, tmp);
3792 }
3793 return gfc_finish_block (&block);
3794}
3795
4ee9c684 3796/* Build an expression for a constructor. If init is nonzero then
3797 this is part of a static variable initializer. */
3798
3799void
3800gfc_conv_structure (gfc_se * se, gfc_expr * expr, int init)
3801{
3802 gfc_constructor *c;
3803 gfc_component *cm;
4ee9c684 3804 tree val;
4ee9c684 3805 tree type;
9a0aec1d 3806 tree tmp;
c75b4594 3807 VEC(constructor_elt,gc) *v = NULL;
4ee9c684 3808
22d678e8 3809 gcc_assert (se->ss == NULL);
3810 gcc_assert (expr->expr_type == EXPR_STRUCTURE);
4ee9c684 3811 type = gfc_typenode_for_spec (&expr->ts);
9a0aec1d 3812
3813 if (!init)
3814 {
3815 /* Create a temporary variable and fill it in. */
3816 se->expr = gfc_create_var (type, expr->ts.derived->name);
3817 tmp = gfc_trans_structure_assign (se->expr, expr);
3818 gfc_add_expr_to_block (&se->pre, tmp);
3819 return;
3820 }
3821
4ee9c684 3822 cm = expr->ts.derived->components;
2294b616 3823
4ee9c684 3824 for (c = expr->value.constructor; c; c = c->next, cm = cm->next)
3825 {
2294b616 3826 /* Skip absent members in default initializers and allocatable
3827 components. Although the latter have a default initializer
3828 of EXPR_NULL,... by default, the static nullify is not needed
3829 since this is done every time we come into scope. */
3be2b8d5 3830 if (!c->expr || cm->attr.allocatable)
4ee9c684 3831 continue;
3832
9a0aec1d 3833 val = gfc_conv_initializer (c->expr, &cm->ts,
64e93293 3834 TREE_TYPE (cm->backend_decl), cm->attr.dimension,
3835 cm->attr.pointer || cm->attr.proc_pointer);
4ee9c684 3836
c75b4594 3837 /* Append it to the constructor list. */
3838 CONSTRUCTOR_APPEND_ELT (v, cm->backend_decl, val);
4ee9c684 3839 }
c75b4594 3840 se->expr = build_constructor (type, v);
8b8484b4 3841 if (init)
c7d4e749 3842 TREE_CONSTANT (se->expr) = 1;
4ee9c684 3843}
3844
3845
f888a3fb 3846/* Translate a substring expression. */
4ee9c684 3847
3848static void
3849gfc_conv_substring_expr (gfc_se * se, gfc_expr * expr)
3850{
3851 gfc_ref *ref;
3852
3853 ref = expr->ref;
3854
24756408 3855 gcc_assert (ref == NULL || ref->type == REF_SUBSTRING);
4ee9c684 3856
b44437b9 3857 se->expr = gfc_build_wide_string_const (expr->ts.kind,
3858 expr->value.character.length,
3859 expr->value.character.string);
c32f863c 3860
4ee9c684 3861 se->string_length = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (se->expr)));
24756408 3862 TYPE_STRING_FLAG (TREE_TYPE (se->expr)) = 1;
4ee9c684 3863
24756408 3864 if (ref)
3865 gfc_conv_substring (se, ref, expr->ts.kind, NULL, &expr->where);
4ee9c684 3866}
3867
3868
7b7afa03 3869/* Entry point for expression translation. Evaluates a scalar quantity.
3870 EXPR is the expression to be translated, and SE is the state structure if
3871 called from within the scalarized. */
4ee9c684 3872
3873void
3874gfc_conv_expr (gfc_se * se, gfc_expr * expr)
3875{
3876 if (se->ss && se->ss->expr == expr
3877 && (se->ss->type == GFC_SS_SCALAR || se->ss->type == GFC_SS_REFERENCE))
3878 {
9a0aec1d 3879 /* Substitute a scalar expression evaluated outside the scalarization
4ee9c684 3880 loop. */
3881 se->expr = se->ss->data.scalar.expr;
7949cb07 3882 se->string_length = se->ss->string_length;
4ee9c684 3883 gfc_advance_se_ss_chain (se);
3884 return;
3885 }
3886
c5d33754 3887 /* We need to convert the expressions for the iso_c_binding derived types.
3888 C_NULL_PTR and C_NULL_FUNPTR will be made EXPR_NULL, which evaluates to
3889 null_pointer_node. C_PTR and C_FUNPTR are converted to match the
3890 typespec for the C_PTR and C_FUNPTR symbols, which has already been
3891 updated to be an integer with a kind equal to the size of a (void *). */
3892 if (expr->ts.type == BT_DERIVED && expr->ts.derived
3893 && expr->ts.derived->attr.is_iso_c)
3894 {
3895 if (expr->symtree->n.sym->intmod_sym_id == ISOCBINDING_NULL_PTR
3896 || expr->symtree->n.sym->intmod_sym_id == ISOCBINDING_NULL_FUNPTR)
3897 {
3898 /* Set expr_type to EXPR_NULL, which will result in
3899 null_pointer_node being used below. */
3900 expr->expr_type = EXPR_NULL;
3901 }
3902 else
3903 {
3904 /* Update the type/kind of the expression to be what the new
3905 type/kind are for the updated symbols of C_PTR/C_FUNPTR. */
3906 expr->ts.type = expr->ts.derived->ts.type;
3907 expr->ts.f90_type = expr->ts.derived->ts.f90_type;
3908 expr->ts.kind = expr->ts.derived->ts.kind;
3909 }
3910 }
3911
4ee9c684 3912 switch (expr->expr_type)
3913 {
3914 case EXPR_OP:
3915 gfc_conv_expr_op (se, expr);
3916 break;
3917
3918 case EXPR_FUNCTION:
3919 gfc_conv_function_expr (se, expr);
3920 break;
3921
3922 case EXPR_CONSTANT:
3923 gfc_conv_constant (se, expr);
3924 break;
3925
3926 case EXPR_VARIABLE:
3927 gfc_conv_variable (se, expr);
3928 break;
3929
3930 case EXPR_NULL:
3931 se->expr = null_pointer_node;
3932 break;
3933
3934 case EXPR_SUBSTRING:
3935 gfc_conv_substring_expr (se, expr);
3936 break;
3937
3938 case EXPR_STRUCTURE:
3939 gfc_conv_structure (se, expr, 0);
3940 break;
3941
3942 case EXPR_ARRAY:
3943 gfc_conv_array_constructor_expr (se, expr);
3944 break;
3945
3946 default:
22d678e8 3947 gcc_unreachable ();
4ee9c684 3948 break;
3949 }
3950}
3951
7b7afa03 3952/* Like gfc_conv_expr_val, but the value is also suitable for use in the lhs
3953 of an assignment. */
4ee9c684 3954void
3955gfc_conv_expr_lhs (gfc_se * se, gfc_expr * expr)
3956{
3957 gfc_conv_expr (se, expr);
7b7afa03 3958 /* All numeric lvalues should have empty post chains. If not we need to
4ee9c684 3959 figure out a way of rewriting an lvalue so that it has no post chain. */
7b7afa03 3960 gcc_assert (expr->ts.type == BT_CHARACTER || !se->post.head);
4ee9c684 3961}
3962
7b7afa03 3963/* Like gfc_conv_expr, but the POST block is guaranteed to be empty for
d4163395 3964 numeric expressions. Used for scalar values where inserting cleanup code
7b7afa03 3965 is inconvenient. */
4ee9c684 3966void
3967gfc_conv_expr_val (gfc_se * se, gfc_expr * expr)
3968{
3969 tree val;
3970
22d678e8 3971 gcc_assert (expr->ts.type != BT_CHARACTER);
4ee9c684 3972 gfc_conv_expr (se, expr);
3973 if (se->post.head)
3974 {
3975 val = gfc_create_var (TREE_TYPE (se->expr), NULL);
75a70cf9 3976 gfc_add_modify (&se->pre, val, se->expr);
7b7afa03 3977 se->expr = val;
3978 gfc_add_block_to_block (&se->pre, &se->post);
4ee9c684 3979 }
3980}
3981
24146844 3982/* Helper to translate an expression and convert it to a particular type. */
4ee9c684 3983void
3984gfc_conv_expr_type (gfc_se * se, gfc_expr * expr, tree type)
3985{
3986 gfc_conv_expr_val (se, expr);
3987 se->expr = convert (type, se->expr);
3988}
3989
3990
f888a3fb 3991/* Converts an expression so that it can be passed by reference. Scalar
4ee9c684 3992 values only. */
3993
3994void
3995gfc_conv_expr_reference (gfc_se * se, gfc_expr * expr)
3996{
3997 tree var;
3998
3999 if (se->ss && se->ss->expr == expr
4000 && se->ss->type == GFC_SS_REFERENCE)
4001 {
4002 se->expr = se->ss->data.scalar.expr;
7949cb07 4003 se->string_length = se->ss->string_length;
4ee9c684 4004 gfc_advance_se_ss_chain (se);
4005 return;
4006 }
4007
4008 if (expr->ts.type == BT_CHARACTER)
4009 {
4010 gfc_conv_expr (se, expr);
4011 gfc_conv_string_parameter (se);
4012 return;
4013 }
4014
4015 if (expr->expr_type == EXPR_VARIABLE)
4016 {
4017 se->want_pointer = 1;
4018 gfc_conv_expr (se, expr);
4019 if (se->post.head)
4020 {
4021 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
75a70cf9 4022 gfc_add_modify (&se->pre, var, se->expr);
4ee9c684 4023 gfc_add_block_to_block (&se->pre, &se->post);
4024 se->expr = var;
4025 }
4026 return;
4027 }
4028
4047f0ad 4029 if (expr->expr_type == EXPR_FUNCTION
4030 && expr->symtree->n.sym->attr.pointer
4031 && !expr->symtree->n.sym->attr.dimension)
4032 {
4033 se->want_pointer = 1;
4034 gfc_conv_expr (se, expr);
4035 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
75a70cf9 4036 gfc_add_modify (&se->pre, var, se->expr);
4047f0ad 4037 se->expr = var;
4038 return;
4039 }
4040
4041
4ee9c684 4042 gfc_conv_expr (se, expr);
4043
4044 /* Create a temporary var to hold the value. */
e67e5e1f 4045 if (TREE_CONSTANT (se->expr))
4046 {
0f9dc66f 4047 tree tmp = se->expr;
4048 STRIP_TYPE_NOPS (tmp);
e60a6f7b 4049 var = build_decl (input_location,
4050 CONST_DECL, NULL, TREE_TYPE (tmp));
0f9dc66f 4051 DECL_INITIAL (var) = tmp;
f79c8ea7 4052 TREE_STATIC (var) = 1;
e67e5e1f 4053 pushdecl (var);
4054 }
4055 else
4056 {
4057 var = gfc_create_var (TREE_TYPE (se->expr), NULL);
75a70cf9 4058 gfc_add_modify (&se->pre, var, se->expr);
e67e5e1f 4059 }
4ee9c684 4060 gfc_add_block_to_block (&se->pre, &se->post);
4061
4062 /* Take the address of that value. */
86f2ad37 4063 se->expr = gfc_build_addr_expr (NULL_TREE, var);
4ee9c684 4064}
4065
4066
4067tree
4068gfc_trans_pointer_assign (gfc_code * code)
4069{
578d3f19 4070 return gfc_trans_pointer_assignment (code->expr1, code->expr2);
4ee9c684 4071}
4072
4073
4396343e 4074/* Generate code for a pointer assignment. */
4075
4ee9c684 4076tree
4077gfc_trans_pointer_assignment (gfc_expr * expr1, gfc_expr * expr2)
4078{
4079 gfc_se lse;
4080 gfc_se rse;
4081 gfc_ss *lss;
4082 gfc_ss *rss;
4083 stmtblock_t block;
7853829d 4084 tree desc;
4085 tree tmp;
1033248c 4086 tree decl;
4087
4ee9c684 4088 gfc_start_block (&block);
4089
4090 gfc_init_se (&lse, NULL);
4091
4092 lss = gfc_walk_expr (expr1);
4093 rss = gfc_walk_expr (expr2);
4094 if (lss == gfc_ss_terminator)
4095 {
4396343e 4096 /* Scalar pointers. */
4ee9c684 4097 lse.want_pointer = 1;
4098 gfc_conv_expr (&lse, expr1);
22d678e8 4099 gcc_assert (rss == gfc_ss_terminator);
4ee9c684 4100 gfc_init_se (&rse, NULL);
4101 rse.want_pointer = 1;
4102 gfc_conv_expr (&rse, expr2);
cad0ddcf 4103
4104 if (expr1->symtree->n.sym->attr.proc_pointer
4105 && expr1->symtree->n.sym->attr.dummy)
4106 lse.expr = build_fold_indirect_ref (lse.expr);
4107
85d1c108 4108 if (expr2->symtree && expr2->symtree->n.sym->attr.proc_pointer
4109 && expr2->symtree->n.sym->attr.dummy)
4110 rse.expr = build_fold_indirect_ref (rse.expr);
4111
4ee9c684 4112 gfc_add_block_to_block (&block, &lse.pre);
4113 gfc_add_block_to_block (&block, &rse.pre);
9c5786bd 4114
4115 /* Check character lengths if character expression. The test is only
4116 really added if -fbounds-check is enabled. */
4117 if (expr1->ts.type == BT_CHARACTER && expr2->expr_type != EXPR_NULL)
4118 {
4119 gcc_assert (expr2->ts.type == BT_CHARACTER);
4120 gcc_assert (lse.string_length && rse.string_length);
4121 gfc_trans_same_strlen_check ("pointer assignment", &expr1->where,
4122 lse.string_length, rse.string_length,
4123 &block);
4124 }
4125
75a70cf9 4126 gfc_add_modify (&block, lse.expr,
260abd71 4127 fold_convert (TREE_TYPE (lse.expr), rse.expr));
9c5786bd 4128
4ee9c684 4129 gfc_add_block_to_block (&block, &rse.post);
4130 gfc_add_block_to_block (&block, &lse.post);
4131 }
4132 else
4133 {
9c5786bd 4134 tree strlen_lhs;
4135 tree strlen_rhs = NULL_TREE;
4136
4396343e 4137 /* Array pointer. */
4ee9c684 4138 gfc_conv_expr_descriptor (&lse, expr1, lss);
9c5786bd 4139 strlen_lhs = lse.string_length;
7853829d 4140 switch (expr2->expr_type)
4141 {
4142 case EXPR_NULL:
4143 /* Just set the data pointer to null. */
ca122904 4144 gfc_conv_descriptor_data_set (&lse.pre, lse.expr, null_pointer_node);
7853829d 4145 break;
4146
4147 case EXPR_VARIABLE:
4148 /* Assign directly to the pointer's descriptor. */
9c5786bd 4149 lse.direct_byref = 1;
7853829d 4150 gfc_conv_expr_descriptor (&lse, expr2, rss);
9c5786bd 4151 strlen_rhs = lse.string_length;
1033248c 4152
4153 /* If this is a subreference array pointer assignment, use the rhs
8192caf4 4154 descriptor element size for the lhs span. */
1033248c 4155 if (expr1->symtree->n.sym->attr.subref_array_pointer)
4156 {
4157 decl = expr1->symtree->n.sym->backend_decl;
8192caf4 4158 gfc_init_se (&rse, NULL);
4159 rse.descriptor_only = 1;
4160 gfc_conv_expr (&rse, expr2);
4161 tmp = gfc_get_element_type (TREE_TYPE (rse.expr));
4162 tmp = fold_convert (gfc_array_index_type, size_in_bytes (tmp));
4163 if (!INTEGER_CST_P (tmp))
9c5786bd 4164 gfc_add_block_to_block (&lse.post, &rse.pre);
75a70cf9 4165 gfc_add_modify (&lse.post, GFC_DECL_SPAN(decl), tmp);
1033248c 4166 }
4167
7853829d 4168 break;
4169
4170 default:
4171 /* Assign to a temporary descriptor and then copy that
4172 temporary to the pointer. */
4173 desc = lse.expr;
4174 tmp = gfc_create_var (TREE_TYPE (desc), "ptrtemp");
4175
4176 lse.expr = tmp;
4177 lse.direct_byref = 1;
4178 gfc_conv_expr_descriptor (&lse, expr2, rss);
9c5786bd 4179 strlen_rhs = lse.string_length;
75a70cf9 4180 gfc_add_modify (&lse.pre, desc, tmp);
7853829d 4181 break;
9c5786bd 4182 }
4183
4ee9c684 4184 gfc_add_block_to_block (&block, &lse.pre);
9c5786bd 4185
4186 /* Check string lengths if applicable. The check is only really added
4187 to the output code if -fbounds-check is enabled. */
4188 if (expr1->ts.type == BT_CHARACTER && expr2->expr_type != EXPR_NULL)
4189 {
4190 gcc_assert (expr2->ts.type == BT_CHARACTER);
4191 gcc_assert (strlen_lhs && strlen_rhs);
4192 gfc_trans_same_strlen_check ("pointer assignment", &expr1->where,
4193 strlen_lhs, strlen_rhs, &block);
4194 }
4195
4ee9c684 4196 gfc_add_block_to_block (&block, &lse.post);
4197 }
4198 return gfc_finish_block (&block);
4199}
4200
4201
4202/* Makes sure se is suitable for passing as a function string parameter. */
69b1505f 4203/* TODO: Need to check all callers of this function. It may be abused. */
4ee9c684 4204
4205void
4206gfc_conv_string_parameter (gfc_se * se)
4207{
4208 tree type;
4209
4210 if (TREE_CODE (se->expr) == STRING_CST)
4211 {
b44437b9 4212 type = TREE_TYPE (TREE_TYPE (se->expr));
4213 se->expr = gfc_build_addr_expr (build_pointer_type (type), se->expr);
4ee9c684 4214 return;
4215 }
4216
b44437b9 4217 if (TYPE_STRING_FLAG (TREE_TYPE (se->expr)))
4ee9c684 4218 {
230c8f37 4219 if (TREE_CODE (se->expr) != INDIRECT_REF)
b44437b9 4220 {
4221 type = TREE_TYPE (se->expr);
4222 se->expr = gfc_build_addr_expr (build_pointer_type (type), se->expr);
4223 }
230c8f37 4224 else
4225 {
4226 type = gfc_get_character_type_len (gfc_default_character_kind,
4227 se->string_length);
4228 type = build_pointer_type (type);
4229 se->expr = gfc_build_addr_expr (type, se->expr);
4230 }
4ee9c684 4231 }
4232
22d678e8 4233 gcc_assert (POINTER_TYPE_P (TREE_TYPE (se->expr)));
4234 gcc_assert (se->string_length
4ee9c684 4235 && TREE_CODE (TREE_TYPE (se->string_length)) == INTEGER_TYPE);
4236}
4237
4238
4239/* Generate code for assignment of scalar variables. Includes character
2294b616 4240 strings and derived types with allocatable components. */
4ee9c684 4241
4242tree
2294b616 4243gfc_trans_scalar_assign (gfc_se * lse, gfc_se * rse, gfc_typespec ts,
4244 bool l_is_temp, bool r_is_var)
4ee9c684 4245{
4ee9c684 4246 stmtblock_t block;
2294b616 4247 tree tmp;
4248 tree cond;
4ee9c684 4249
4250 gfc_init_block (&block);
4251
2294b616 4252 if (ts.type == BT_CHARACTER)
4ee9c684 4253 {
891beb95 4254 tree rlen = NULL;
4255 tree llen = NULL;
4ee9c684 4256
891beb95 4257 if (lse->string_length != NULL_TREE)
4258 {
4259 gfc_conv_string_parameter (lse);
4260 gfc_add_block_to_block (&block, &lse->pre);
4261 llen = lse->string_length;
4262 }
4ee9c684 4263
891beb95 4264 if (rse->string_length != NULL_TREE)
4265 {
4266 gcc_assert (rse->string_length != NULL_TREE);
4267 gfc_conv_string_parameter (rse);
4268 gfc_add_block_to_block (&block, &rse->pre);
4269 rlen = rse->string_length;
4270 }
4ee9c684 4271
b44437b9 4272 gfc_trans_string_copy (&block, llen, lse->expr, ts.kind, rlen,
4273 rse->expr, ts.kind);
4ee9c684 4274 }
2294b616 4275 else if (ts.type == BT_DERIVED && ts.derived->attr.alloc_comp)
4276 {
4277 cond = NULL_TREE;
4278
4279 /* Are the rhs and the lhs the same? */
4280 if (r_is_var)
4281 {
4282 cond = fold_build2 (EQ_EXPR, boolean_type_node,
86f2ad37 4283 gfc_build_addr_expr (NULL_TREE, lse->expr),
4284 gfc_build_addr_expr (NULL_TREE, rse->expr));
2294b616 4285 cond = gfc_evaluate_now (cond, &lse->pre);
4286 }
4287
4288 /* Deallocate the lhs allocated components as long as it is not
89032e9a 4289 the same as the rhs. This must be done following the assignment
4290 to prevent deallocating data that could be used in the rhs
4291 expression. */
2294b616 4292 if (!l_is_temp)
4293 {
89032e9a 4294 tmp = gfc_evaluate_now (lse->expr, &lse->pre);
4295 tmp = gfc_deallocate_alloc_comp (ts.derived, tmp, 0);
2294b616 4296 if (r_is_var)
e60a6f7b 4297 tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
4298 tmp);
89032e9a 4299 gfc_add_expr_to_block (&lse->post, tmp);
2294b616 4300 }
6826be54 4301
89032e9a 4302 gfc_add_block_to_block (&block, &rse->pre);
4303 gfc_add_block_to_block (&block, &lse->pre);
2294b616 4304
75a70cf9 4305 gfc_add_modify (&block, lse->expr,
2294b616 4306 fold_convert (TREE_TYPE (lse->expr), rse->expr));
4307
4308 /* Do a deep copy if the rhs is a variable, if it is not the
540338c6 4309 same as the lhs. */
2294b616 4310 if (r_is_var)
4311 {
4312 tmp = gfc_copy_alloc_comp (ts.derived, rse->expr, lse->expr, 0);
e60a6f7b 4313 tmp = build3_v (COND_EXPR, cond, build_empty_stmt (input_location),
4314 tmp);
2294b616 4315 gfc_add_expr_to_block (&block, tmp);
4316 }
2294b616 4317 }
4ee9c684 4318 else
4319 {
4320 gfc_add_block_to_block (&block, &lse->pre);
4321 gfc_add_block_to_block (&block, &rse->pre);
4322
75a70cf9 4323 gfc_add_modify (&block, lse->expr,
260abd71 4324 fold_convert (TREE_TYPE (lse->expr), rse->expr));
4ee9c684 4325 }
4326
4327 gfc_add_block_to_block (&block, &lse->post);
4328 gfc_add_block_to_block (&block, &rse->post);
4329
4330 return gfc_finish_block (&block);
4331}
4332
4333
4334/* Try to translate array(:) = func (...), where func is a transformational
4335 array function, without using a temporary. Returns NULL is this isn't the
4336 case. */
4337
4338static tree
4339gfc_trans_arrayfunc_assign (gfc_expr * expr1, gfc_expr * expr2)
4340{
4341 gfc_se se;
4342 gfc_ss *ss;
70464f87 4343 gfc_ref * ref;
4344 bool seen_array_ref;
8d60cc46 4345 bool c = false;
85d1c108 4346 gfc_component *comp = NULL;
4ee9c684 4347
4348 /* The caller has already checked rank>0 and expr_type == EXPR_FUNCTION. */
4349 if (expr2->value.function.isym && !gfc_is_intrinsic_libcall (expr2))
4350 return NULL;
4351
4352 /* Elemental functions don't need a temporary anyway. */
08349c53 4353 if (expr2->value.function.esym != NULL
4354 && expr2->value.function.esym->attr.elemental)
4ee9c684 4355 return NULL;
4356
8d60cc46 4357 /* Fail if rhs is not FULL or a contiguous section. */
4358 if (expr1->ref && !(gfc_full_array_ref_p (expr1->ref, &c) || c))
4359 return NULL;
4360
c99d633f 4361 /* Fail if EXPR1 can't be expressed as a descriptor. */
4362 if (gfc_ref_needs_temporary_p (expr1->ref))
4363 return NULL;
4364
34da51b6 4365 /* Functions returning pointers need temporaries. */
d4ef6f9d 4366 if (expr2->symtree->n.sym->attr.pointer
4367 || expr2->symtree->n.sym->attr.allocatable)
34da51b6 4368 return NULL;
4369
5065911e 4370 /* Character array functions need temporaries unless the
4371 character lengths are the same. */
4372 if (expr2->ts.type == BT_CHARACTER && expr2->rank > 0)
4373 {
4374 if (expr1->ts.cl->length == NULL
4375 || expr1->ts.cl->length->expr_type != EXPR_CONSTANT)
4376 return NULL;
4377
4378 if (expr2->ts.cl->length == NULL
4379 || expr2->ts.cl->length->expr_type != EXPR_CONSTANT)
4380 return NULL;
4381
4382 if (mpz_cmp (expr1->ts.cl->length->value.integer,
4383 expr2->ts.cl->length->value.integer) != 0)
4384 return NULL;
4385 }
4386
70464f87 4387 /* Check that no LHS component references appear during an array
4388 reference. This is needed because we do not have the means to
4389 span any arbitrary stride with an array descriptor. This check
4390 is not needed for the rhs because the function result has to be
4391 a complete type. */
4392 seen_array_ref = false;
4393 for (ref = expr1->ref; ref; ref = ref->next)
4394 {
4395 if (ref->type == REF_ARRAY)
4396 seen_array_ref= true;
4397 else if (ref->type == REF_COMPONENT && seen_array_ref)
4398 return NULL;
4399 }
4400
4ee9c684 4401 /* Check for a dependency. */
018ef8b8 4402 if (gfc_check_fncall_dependency (expr1, INTENT_OUT,
4403 expr2->value.function.esym,
74e83bb9 4404 expr2->value.function.actual,
4405 NOT_ELEMENTAL))
4ee9c684 4406 return NULL;
4407
4408 /* The frontend doesn't seem to bother filling in expr->symtree for intrinsic
4409 functions. */
85d1c108 4410 is_proc_ptr_comp(expr2, &comp);
22d678e8 4411 gcc_assert (expr2->value.function.isym
85d1c108 4412 || (comp && comp->attr.dimension)
4413 || (!comp && gfc_return_by_reference (expr2->value.function.esym)
e2293887 4414 && expr2->value.function.esym->result->attr.dimension));
4ee9c684 4415
4416 ss = gfc_walk_expr (expr1);
22d678e8 4417 gcc_assert (ss != gfc_ss_terminator);
4ee9c684 4418 gfc_init_se (&se, NULL);
4419 gfc_start_block (&se.pre);
4420 se.want_pointer = 1;
4421
bc56d052 4422 gfc_conv_array_parameter (&se, expr1, ss, 0, NULL, NULL, NULL);
4ee9c684 4423
4424 se.direct_byref = 1;
4425 se.ss = gfc_walk_expr (expr2);
22d678e8 4426 gcc_assert (se.ss != gfc_ss_terminator);
4ee9c684 4427 gfc_conv_function_expr (&se, expr2);
4ee9c684 4428 gfc_add_block_to_block (&se.pre, &se.post);
4429
4430 return gfc_finish_block (&se.pre);
4431}
4432
67313c34 4433/* Determine whether the given EXPR_CONSTANT is a zero initializer. */
4434
4435static bool
4436is_zero_initializer_p (gfc_expr * expr)
4437{
4438 if (expr->expr_type != EXPR_CONSTANT)
4439 return false;
667787ce 4440
4441 /* We ignore constants with prescribed memory representations for now. */
4442 if (expr->representation.string)
67313c34 4443 return false;
4444
4445 switch (expr->ts.type)
4446 {
4447 case BT_INTEGER:
4448 return mpz_cmp_si (expr->value.integer, 0) == 0;
4449
4450 case BT_REAL:
4451 return mpfr_zero_p (expr->value.real)
4452 && MPFR_SIGN (expr->value.real) >= 0;
4453
4454 case BT_LOGICAL:
4455 return expr->value.logical == 0;
4456
4457 case BT_COMPLEX:
f8e9f06c 4458 return mpfr_zero_p (mpc_realref (expr->value.complex))
4459 && MPFR_SIGN (mpc_realref (expr->value.complex)) >= 0
4460 && mpfr_zero_p (mpc_imagref (expr->value.complex))
4461 && MPFR_SIGN (mpc_imagref (expr->value.complex)) >= 0;
67313c34 4462
4463 default:
4464 break;
4465 }
4466 return false;
4467}
4468
4469/* Try to efficiently translate array(:) = 0. Return NULL if this
4470 can't be done. */
4471
4472static tree
4473gfc_trans_zero_assign (gfc_expr * expr)
4474{
4475 tree dest, len, type;
c2f47e15 4476 tree tmp;
67313c34 4477 gfc_symbol *sym;
4478
4479 sym = expr->symtree->n.sym;
4480 dest = gfc_get_symbol_decl (sym);
4481
4482 type = TREE_TYPE (dest);
4483 if (POINTER_TYPE_P (type))
4484 type = TREE_TYPE (type);
4485 if (!GFC_ARRAY_TYPE_P (type))
4486 return NULL_TREE;
4487
4488 /* Determine the length of the array. */
4489 len = GFC_TYPE_ARRAY_SIZE (type);
4490 if (!len || TREE_CODE (len) != INTEGER_CST)
4491 return NULL_TREE;
4492
db867224 4493 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (type));
67313c34 4494 len = fold_build2 (MULT_EXPR, gfc_array_index_type, len,
db867224 4495 fold_convert (gfc_array_index_type, tmp));
67313c34 4496
1d9f9adc 4497 /* If we are zeroing a local array avoid taking its address by emitting
4498 a = {} instead. */
67313c34 4499 if (!POINTER_TYPE_P (TREE_TYPE (dest)))
1d9f9adc 4500 return build2 (MODIFY_EXPR, void_type_node,
4501 dest, build_constructor (TREE_TYPE (dest), NULL));
4502
4503 /* Convert arguments to the correct types. */
4504 dest = fold_convert (pvoid_type_node, dest);
67313c34 4505 len = fold_convert (size_type_node, len);
4506
4507 /* Construct call to __builtin_memset. */
c2f47e15 4508 tmp = build_call_expr (built_in_decls[BUILT_IN_MEMSET],
4509 3, dest, integer_zero_node, len);
67313c34 4510 return fold_convert (void_type_node, tmp);
4511}
4ee9c684 4512
538374c5 4513
4514/* Helper for gfc_trans_array_copy and gfc_trans_array_constructor_copy
4515 that constructs the call to __builtin_memcpy. */
4516
7a2a9daf 4517tree
538374c5 4518gfc_build_memcpy_call (tree dst, tree src, tree len)
4519{
c2f47e15 4520 tree tmp;
538374c5 4521
4522 /* Convert arguments to the correct types. */
4523 if (!POINTER_TYPE_P (TREE_TYPE (dst)))
4524 dst = gfc_build_addr_expr (pvoid_type_node, dst);
4525 else
4526 dst = fold_convert (pvoid_type_node, dst);
4527
4528 if (!POINTER_TYPE_P (TREE_TYPE (src)))
4529 src = gfc_build_addr_expr (pvoid_type_node, src);
4530 else
4531 src = fold_convert (pvoid_type_node, src);
4532
4533 len = fold_convert (size_type_node, len);
4534
4535 /* Construct call to __builtin_memcpy. */
c2f47e15 4536 tmp = build_call_expr (built_in_decls[BUILT_IN_MEMCPY], 3, dst, src, len);
538374c5 4537 return fold_convert (void_type_node, tmp);
4538}
4539
4540
1372ec9a 4541/* Try to efficiently translate dst(:) = src(:). Return NULL if this
4542 can't be done. EXPR1 is the destination/lhs and EXPR2 is the
4543 source/rhs, both are gfc_full_array_ref_p which have been checked for
4544 dependencies. */
4ee9c684 4545
1372ec9a 4546static tree
4547gfc_trans_array_copy (gfc_expr * expr1, gfc_expr * expr2)
4548{
4549 tree dst, dlen, dtype;
4550 tree src, slen, stype;
db867224 4551 tree tmp;
1372ec9a 4552
4553 dst = gfc_get_symbol_decl (expr1->symtree->n.sym);
4554 src = gfc_get_symbol_decl (expr2->symtree->n.sym);
4555
4556 dtype = TREE_TYPE (dst);
4557 if (POINTER_TYPE_P (dtype))
4558 dtype = TREE_TYPE (dtype);
4559 stype = TREE_TYPE (src);
4560 if (POINTER_TYPE_P (stype))
4561 stype = TREE_TYPE (stype);
4562
4563 if (!GFC_ARRAY_TYPE_P (dtype) || !GFC_ARRAY_TYPE_P (stype))
4564 return NULL_TREE;
4565
4566 /* Determine the lengths of the arrays. */
4567 dlen = GFC_TYPE_ARRAY_SIZE (dtype);
4568 if (!dlen || TREE_CODE (dlen) != INTEGER_CST)
4569 return NULL_TREE;
db867224 4570 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (dtype));
1372ec9a 4571 dlen = fold_build2 (MULT_EXPR, gfc_array_index_type, dlen,
db867224 4572 fold_convert (gfc_array_index_type, tmp));
1372ec9a 4573
4574 slen = GFC_TYPE_ARRAY_SIZE (stype);
4575 if (!slen || TREE_CODE (slen) != INTEGER_CST)
4576 return NULL_TREE;
db867224 4577 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (stype));
1372ec9a 4578 slen = fold_build2 (MULT_EXPR, gfc_array_index_type, slen,
db867224 4579 fold_convert (gfc_array_index_type, tmp));
1372ec9a 4580
4581 /* Sanity check that they are the same. This should always be
4582 the case, as we should already have checked for conformance. */
4583 if (!tree_int_cst_equal (slen, dlen))
4584 return NULL_TREE;
4585
538374c5 4586 return gfc_build_memcpy_call (dst, src, dlen);
4587}
1372ec9a 4588
1372ec9a 4589
538374c5 4590/* Try to efficiently translate array(:) = (/ ... /). Return NULL if
4591 this can't be done. EXPR1 is the destination/lhs for which
4592 gfc_full_array_ref_p is true, and EXPR2 is the source/rhs. */
1372ec9a 4593
538374c5 4594static tree
4595gfc_trans_array_constructor_copy (gfc_expr * expr1, gfc_expr * expr2)
4596{
4597 unsigned HOST_WIDE_INT nelem;
4598 tree dst, dtype;
4599 tree src, stype;
4600 tree len;
db867224 4601 tree tmp;
538374c5 4602
4603 nelem = gfc_constant_array_constructor_p (expr2->value.constructor);
4604 if (nelem == 0)
4605 return NULL_TREE;
4606
4607 dst = gfc_get_symbol_decl (expr1->symtree->n.sym);
4608 dtype = TREE_TYPE (dst);
4609 if (POINTER_TYPE_P (dtype))
4610 dtype = TREE_TYPE (dtype);
4611 if (!GFC_ARRAY_TYPE_P (dtype))
4612 return NULL_TREE;
4613
4614 /* Determine the lengths of the array. */
4615 len = GFC_TYPE_ARRAY_SIZE (dtype);
4616 if (!len || TREE_CODE (len) != INTEGER_CST)
4617 return NULL_TREE;
4618
4619 /* Confirm that the constructor is the same size. */
4620 if (compare_tree_int (len, nelem) != 0)
4621 return NULL_TREE;
4622
db867224 4623 tmp = TYPE_SIZE_UNIT (gfc_get_element_type (dtype));
538374c5 4624 len = fold_build2 (MULT_EXPR, gfc_array_index_type, len,
db867224 4625 fold_convert (gfc_array_index_type, tmp));
538374c5 4626
4627 stype = gfc_typenode_for_spec (&expr2->ts);
4628 src = gfc_build_constant_array_constructor (expr2, stype);
4629
4630 stype = TREE_TYPE (src);
4631 if (POINTER_TYPE_P (stype))
4632 stype = TREE_TYPE (stype);
4633
4634 return gfc_build_memcpy_call (dst, src, len);
1372ec9a 4635}
4636
4637
4638/* Subroutine of gfc_trans_assignment that actually scalarizes the
4639 assignment. EXPR1 is the destination/RHS and EXPR2 is the source/LHS. */
4640
4641static tree
4642gfc_trans_assignment_1 (gfc_expr * expr1, gfc_expr * expr2, bool init_flag)
4ee9c684 4643{
4644 gfc_se lse;
4645 gfc_se rse;
4646 gfc_ss *lss;
4647 gfc_ss *lss_section;
4648 gfc_ss *rss;
4649 gfc_loopinfo loop;
4650 tree tmp;
4651 stmtblock_t block;
4652 stmtblock_t body;
2294b616 4653 bool l_is_temp;
8714fc76 4654 bool scalar_to_array;
bd619047 4655 tree string_length;
4ee9c684 4656
4ee9c684 4657 /* Assignment of the form lhs = rhs. */
4658 gfc_start_block (&block);
4659
4660 gfc_init_se (&lse, NULL);
4661 gfc_init_se (&rse, NULL);
4662
4663 /* Walk the lhs. */
4664 lss = gfc_walk_expr (expr1);
4665 rss = NULL;
4666 if (lss != gfc_ss_terminator)
4667 {
e2720a06 4668 /* Allow the scalarizer to workshare array assignments. */
4669 if (ompws_flags & OMPWS_WORKSHARE_FLAG)
4670 ompws_flags |= OMPWS_SCALARIZER_WS;
4671
4ee9c684 4672 /* The assignment needs scalarization. */
4673 lss_section = lss;
4674
4675 /* Find a non-scalar SS from the lhs. */
4676 while (lss_section != gfc_ss_terminator
4677 && lss_section->type != GFC_SS_SECTION)
4678 lss_section = lss_section->next;
4679
22d678e8 4680 gcc_assert (lss_section != gfc_ss_terminator);
4ee9c684 4681
4682 /* Initialize the scalarizer. */
4683 gfc_init_loopinfo (&loop);
4684
4685 /* Walk the rhs. */
4686 rss = gfc_walk_expr (expr2);
4687 if (rss == gfc_ss_terminator)
4688 {
4689 /* The rhs is scalar. Add a ss for the expression. */
4690 rss = gfc_get_ss ();
4691 rss->next = gfc_ss_terminator;
4692 rss->type = GFC_SS_SCALAR;
4693 rss->expr = expr2;
4694 }
4695 /* Associate the SS with the loop. */
4696 gfc_add_ss_to_loop (&loop, lss);
4697 gfc_add_ss_to_loop (&loop, rss);
4698
4699 /* Calculate the bounds of the scalarization. */
4700 gfc_conv_ss_startstride (&loop);
4701 /* Resolve any data dependencies in the statement. */
376a3611 4702 gfc_conv_resolve_dependencies (&loop, lss, rss);
4ee9c684 4703 /* Setup the scalarizing loops. */
92f4d1c4 4704 gfc_conv_loop_setup (&loop, &expr2->where);
4ee9c684 4705
4706 /* Setup the gfc_se structures. */
4707 gfc_copy_loopinfo_to_se (&lse, &loop);
4708 gfc_copy_loopinfo_to_se (&rse, &loop);
4709
4710 rse.ss = rss;
4711 gfc_mark_ss_chain_used (rss, 1);
4712 if (loop.temp_ss == NULL)
4713 {
4714 lse.ss = lss;
4715 gfc_mark_ss_chain_used (lss, 1);
4716 }
4717 else
4718 {
4719 lse.ss = loop.temp_ss;
4720 gfc_mark_ss_chain_used (lss, 3);
4721 gfc_mark_ss_chain_used (loop.temp_ss, 3);
4722 }
4723
4724 /* Start the scalarized loop body. */
4725 gfc_start_scalarized_body (&loop, &body);
4726 }
4727 else
4728 gfc_init_block (&body);
4729
2294b616 4730 l_is_temp = (lss != gfc_ss_terminator && loop.temp_ss != NULL);
4731
4ee9c684 4732 /* Translate the expression. */
4733 gfc_conv_expr (&rse, expr2);
4734
bd619047 4735 /* Stabilize a string length for temporaries. */
4736 if (expr2->ts.type == BT_CHARACTER)
4737 string_length = gfc_evaluate_now (rse.string_length, &rse.pre);
4738 else
4739 string_length = NULL_TREE;
4740
2294b616 4741 if (l_is_temp)
4ee9c684 4742 {
4743 gfc_conv_tmp_array_ref (&lse);
4744 gfc_advance_se_ss_chain (&lse);
bd619047 4745 if (expr2->ts.type == BT_CHARACTER)
4746 lse.string_length = string_length;
4ee9c684 4747 }
4748 else
4749 gfc_conv_expr (&lse, expr1);
544c333b 4750
8714fc76 4751 /* Assignments of scalar derived types with allocatable components
4752 to arrays must be done with a deep copy and the rhs temporary
4753 must have its components deallocated afterwards. */
4754 scalar_to_array = (expr2->ts.type == BT_DERIVED
4755 && expr2->ts.derived->attr.alloc_comp
4756 && expr2->expr_type != EXPR_VARIABLE
4757 && !gfc_is_constant_expr (expr2)
4758 && expr1->rank && !expr2->rank);
4759 if (scalar_to_array)
4760 {
4761 tmp = gfc_deallocate_alloc_comp (expr2->ts.derived, rse.expr, 0);
4762 gfc_add_expr_to_block (&loop.post, tmp);
4763 }
4764
b9cd8c56 4765 tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts,
4766 l_is_temp || init_flag,
8714fc76 4767 (expr2->expr_type == EXPR_VARIABLE)
4768 || scalar_to_array);
4ee9c684 4769 gfc_add_expr_to_block (&body, tmp);
4770
4771 if (lss == gfc_ss_terminator)
4772 {
4773 /* Use the scalar assignment as is. */
4774 gfc_add_block_to_block (&block, &body);
4775 }
4776 else
4777 {
22d678e8 4778 gcc_assert (lse.ss == gfc_ss_terminator
4779 && rse.ss == gfc_ss_terminator);
4ee9c684 4780
2294b616 4781 if (l_is_temp)
4ee9c684 4782 {
4783 gfc_trans_scalarized_loop_boundary (&loop, &body);
4784
4785 /* We need to copy the temporary to the actual lhs. */
4786 gfc_init_se (&lse, NULL);
4787 gfc_init_se (&rse, NULL);
4788 gfc_copy_loopinfo_to_se (&lse, &loop);
4789 gfc_copy_loopinfo_to_se (&rse, &loop);
4790
4791 rse.ss = loop.temp_ss;
4792 lse.ss = lss;
4793
4794 gfc_conv_tmp_array_ref (&rse);
4795 gfc_advance_se_ss_chain (&rse);
4796 gfc_conv_expr (&lse, expr1);
4797
22d678e8 4798 gcc_assert (lse.ss == gfc_ss_terminator
4799 && rse.ss == gfc_ss_terminator);
4ee9c684 4800
bd619047 4801 if (expr2->ts.type == BT_CHARACTER)
4802 rse.string_length = string_length;
4803
b9cd8c56 4804 tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts,
4805 false, false);
4ee9c684 4806 gfc_add_expr_to_block (&body, tmp);
4807 }
2294b616 4808
4ee9c684 4809 /* Generate the copying loops. */
4810 gfc_trans_scalarizing_loops (&loop, &body);
4811
4812 /* Wrap the whole thing up. */
4813 gfc_add_block_to_block (&block, &loop.pre);
4814 gfc_add_block_to_block (&block, &loop.post);
4815
4816 gfc_cleanup_loop (&loop);
4817 }
4818
4819 return gfc_finish_block (&block);
4820}
4821
1372ec9a 4822
62e711cd 4823/* Check whether EXPR is a copyable array. */
1372ec9a 4824
4825static bool
4826copyable_array_p (gfc_expr * expr)
4827{
62e711cd 4828 if (expr->expr_type != EXPR_VARIABLE)
4829 return false;
4830
1372ec9a 4831 /* First check it's an array. */
62e711cd 4832 if (expr->rank < 1 || !expr->ref || expr->ref->next)
4833 return false;
4834
8d60cc46 4835 if (!gfc_full_array_ref_p (expr->ref, NULL))
1372ec9a 4836 return false;
4837
4838 /* Next check that it's of a simple enough type. */
4839 switch (expr->ts.type)
4840 {
4841 case BT_INTEGER:
4842 case BT_REAL:
4843 case BT_COMPLEX:
4844 case BT_LOGICAL:
4845 return true;
4846
6fc8b651 4847 case BT_CHARACTER:
4848 return false;
4849
4850 case BT_DERIVED:
4851 return !expr->ts.derived->attr.alloc_comp;
4852
1372ec9a 4853 default:
4854 break;
4855 }
4856
4857 return false;
4858}
4859
4860/* Translate an assignment. */
4861
4862tree
4863gfc_trans_assignment (gfc_expr * expr1, gfc_expr * expr2, bool init_flag)
4864{
4865 tree tmp;
4866
4867 /* Special case a single function returning an array. */
4868 if (expr2->expr_type == EXPR_FUNCTION && expr2->rank > 0)
4869 {
4870 tmp = gfc_trans_arrayfunc_assign (expr1, expr2);
4871 if (tmp)
4872 return tmp;
4873 }
4874
4875 /* Special case assigning an array to zero. */
62e711cd 4876 if (copyable_array_p (expr1)
1372ec9a 4877 && is_zero_initializer_p (expr2))
4878 {
4879 tmp = gfc_trans_zero_assign (expr1);
4880 if (tmp)
4881 return tmp;
4882 }
4883
4884 /* Special case copying one array to another. */
62e711cd 4885 if (copyable_array_p (expr1)
1372ec9a 4886 && copyable_array_p (expr2)
1372ec9a 4887 && gfc_compare_types (&expr1->ts, &expr2->ts)
4888 && !gfc_check_dependency (expr1, expr2, 0))
4889 {
4890 tmp = gfc_trans_array_copy (expr1, expr2);
4891 if (tmp)
4892 return tmp;
4893 }
4894
538374c5 4895 /* Special case initializing an array from a constant array constructor. */
62e711cd 4896 if (copyable_array_p (expr1)
538374c5 4897 && expr2->expr_type == EXPR_ARRAY
4898 && gfc_compare_types (&expr1->ts, &expr2->ts))
4899 {
4900 tmp = gfc_trans_array_constructor_copy (expr1, expr2);
4901 if (tmp)
4902 return tmp;
4903 }
4904
1372ec9a 4905 /* Fallback to the scalarizer to generate explicit loops. */
4906 return gfc_trans_assignment_1 (expr1, expr2, init_flag);
4907}
4908
b9cd8c56 4909tree
4910gfc_trans_init_assign (gfc_code * code)
4911{
578d3f19 4912 return gfc_trans_assignment (code->expr1, code->expr2, true);
b9cd8c56 4913}
4914
4ee9c684 4915tree
4916gfc_trans_assign (gfc_code * code)
4917{
578d3f19 4918 return gfc_trans_assignment (code->expr1, code->expr2, false);
4ee9c684 4919}