trans-decl.c 161 KB
Newer Older
1
/* Backend function setup
2 3
   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
   2011
4
   Free Software Foundation, Inc.
5 6
   Contributed by Paul Brook

7
This file is part of GCC.
8

9 10
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
11
Software Foundation; either version 3, or (at your option) any later
12
version.
13

14 15 16 17
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
18 19

You should have received a copy of the GNU General Public License
20 21
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
22 23 24 25 26 27

/* trans-decl.c -- Handling of backend function and variable decls, etc */

#include "config.h"
#include "system.h"
#include "coretypes.h"
28
#include "tm.h"
29 30
#include "tree.h"
#include "tree-dump.h"
31
#include "gimple.h"	/* For create_tmp_var_raw.  */
32
#include "ggc.h"
33 34
#include "diagnostic-core.h"	/* For internal_error.  */
#include "toplev.h"	/* For announce_function.  */
35
#include "output.h"	/* For decl_default_tls_model.  */
36 37 38 39
#include "target.h"
#include "function.h"
#include "flags.h"
#include "cgraph.h"
40
#include "debug.h"
41
#include "gfortran.h"
42
#include "pointer-set.h"
Jerry DeLisle committed
43
#include "constructor.h"
44 45 46 47 48 49 50 51 52 53 54 55 56
#include "trans.h"
#include "trans-types.h"
#include "trans-array.h"
#include "trans-const.h"
/* Only for gfc_trans_code.  Shouldn't need to include this.  */
#include "trans-stmt.h"

#define MAX_LABEL_VALUE 99999


/* Holds the result of the function if no result variable specified.  */

static GTY(()) tree current_fake_result_decl;
57
static GTY(()) tree parent_fake_result_decl;
58 59 60 61


/* Holds the variable DECLs for the current function.  */

62 63
static GTY(()) tree saved_function_decls;
static GTY(()) tree saved_parent_function_decls;
64

65 66
static struct pointer_set_t *nonlocal_dummy_decl_pset;
static GTY(()) tree nonlocal_dummy_decls;
67

68 69 70 71
/* Holds the variable DECLs that are locals.  */

static GTY(()) tree saved_local_decls;

72 73 74 75 76
/* The namespace of the module we're currently generating.  Only used while
   outputting decls for module variables.  Do not rely on this being set.  */

static gfc_namespace *module_namespace;

77 78 79
/* The currently processed procedure symbol.  */
static gfc_symbol* current_procedure_symbol = NULL;

80

81 82 83 84 85 86
/* With -fcoarray=lib: For generating the registering call
   of static coarrays.  */
static bool has_coarray_vars;
static stmtblock_t caf_init_block;


87 88 89 90 91 92 93 94 95 96
/* List of static constructor functions.  */

tree gfc_static_ctors;


/* Function declarations for builtin library functions.  */

tree gfor_fndecl_pause_numeric;
tree gfor_fndecl_pause_string;
tree gfor_fndecl_stop_numeric;
97
tree gfor_fndecl_stop_numeric_f08;
98
tree gfor_fndecl_stop_string;
99
tree gfor_fndecl_error_stop_numeric;
100
tree gfor_fndecl_error_stop_string;
101
tree gfor_fndecl_runtime_error;
102
tree gfor_fndecl_runtime_error_at;
103
tree gfor_fndecl_runtime_warning_at;
104
tree gfor_fndecl_os_error;
105
tree gfor_fndecl_generate_error;
106
tree gfor_fndecl_set_args;
107
tree gfor_fndecl_set_fpe;
108
tree gfor_fndecl_set_options;
109
tree gfor_fndecl_set_convert;
Thomas Koenig committed
110
tree gfor_fndecl_set_record_marker;
111
tree gfor_fndecl_set_max_subrecord_length;
112 113
tree gfor_fndecl_ctime;
tree gfor_fndecl_fdate;
114
tree gfor_fndecl_ttynam;
115 116 117 118 119
tree gfor_fndecl_in_pack;
tree gfor_fndecl_in_unpack;
tree gfor_fndecl_associated;


120 121 122
/* Coarray run-time library function decls.  */
tree gfor_fndecl_caf_init;
tree gfor_fndecl_caf_finalize;
123
tree gfor_fndecl_caf_register;
124 125 126 127 128 129 130 131 132 133 134 135 136
tree gfor_fndecl_caf_critical;
tree gfor_fndecl_caf_end_critical;
tree gfor_fndecl_caf_sync_all;
tree gfor_fndecl_caf_sync_images;
tree gfor_fndecl_caf_error_stop;
tree gfor_fndecl_caf_error_stop_str;

/* Coarray global variables for num_images/this_image.  */

tree gfort_gvar_caf_num_images;
tree gfort_gvar_caf_this_image;


137 138 139
/* Math functions.  Many other math functions are handled in
   trans-intrinsic.c.  */

140
gfc_powdecl_list gfor_fndecl_math_powi[4][3];
141 142
tree gfor_fndecl_math_ishftc4;
tree gfor_fndecl_math_ishftc8;
143
tree gfor_fndecl_math_ishftc16;
144 145 146 147 148 149 150 151 152 153 154


/* String functions.  */

tree gfor_fndecl_compare_string;
tree gfor_fndecl_concat_string;
tree gfor_fndecl_string_len_trim;
tree gfor_fndecl_string_index;
tree gfor_fndecl_string_scan;
tree gfor_fndecl_string_verify;
tree gfor_fndecl_string_trim;
155
tree gfor_fndecl_string_minmax;
156 157
tree gfor_fndecl_adjustl;
tree gfor_fndecl_adjustr;
158
tree gfor_fndecl_select_string;
159 160 161 162 163 164 165 166 167 168
tree gfor_fndecl_compare_string_char4;
tree gfor_fndecl_concat_string_char4;
tree gfor_fndecl_string_len_trim_char4;
tree gfor_fndecl_string_index_char4;
tree gfor_fndecl_string_scan_char4;
tree gfor_fndecl_string_verify_char4;
tree gfor_fndecl_string_trim_char4;
tree gfor_fndecl_string_minmax_char4;
tree gfor_fndecl_adjustl_char4;
tree gfor_fndecl_adjustr_char4;
169 170 171 172 173 174
tree gfor_fndecl_select_string_char4;


/* Conversion between character kinds.  */
tree gfor_fndecl_convert_char1_to_char4;
tree gfor_fndecl_convert_char4_to_char1;
175 176 177 178 179


/* Other misc. runtime library functions.  */
tree gfor_fndecl_size0;
tree gfor_fndecl_size1;
180
tree gfor_fndecl_iargc;
181

182 183
/* Intrinsic functions implemented in Fortran.  */
tree gfor_fndecl_sc_kind;
184 185 186
tree gfor_fndecl_si_kind;
tree gfor_fndecl_sr_kind;

187 188 189 190 191 192
/* BLAS gemm functions.  */
tree gfor_fndecl_sgemm;
tree gfor_fndecl_dgemm;
tree gfor_fndecl_cgemm;
tree gfor_fndecl_zgemm;

193 194 195 196

static void
gfc_add_decl_to_parent_function (tree decl)
{
197
  gcc_assert (decl);
198 199
  DECL_CONTEXT (decl) = DECL_CONTEXT (current_function_decl);
  DECL_NONLOCAL (decl) = 1;
200
  DECL_CHAIN (decl) = saved_parent_function_decls;
201 202 203 204 205 206
  saved_parent_function_decls = decl;
}

void
gfc_add_decl_to_function (tree decl)
{
207
  gcc_assert (decl);
208 209
  TREE_USED (decl) = 1;
  DECL_CONTEXT (decl) = current_function_decl;
210
  DECL_CHAIN (decl) = saved_function_decls;
211 212 213
  saved_function_decls = decl;
}

214 215 216 217 218 219
static void
add_decl_as_local (tree decl)
{
  gcc_assert (decl);
  TREE_USED (decl) = 1;
  DECL_CONTEXT (decl) = current_function_decl;
220
  DECL_CHAIN (decl) = saved_local_decls;
221 222 223
  saved_local_decls = decl;
}

224

225 226 227
/* Build a  backend label declaration.  Set TREE_USED for named labels.
   The context of the label is always the current_function_decl.  All
   labels are marked artificial.  */
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246

tree
gfc_build_label_decl (tree label_id)
{
  /* 2^32 temporaries should be enough.  */
  static unsigned int tmp_num = 1;
  tree label_decl;
  char *label_name;

  if (label_id == NULL_TREE)
    {
      /* Build an internal label name.  */
      ASM_FORMAT_PRIVATE_NAME (label_name, "L", tmp_num++);
      label_id = get_identifier (label_name);
    }
  else
    label_name = NULL;

  /* Build the LABEL_DECL node. Labels have no type.  */
247 248
  label_decl = build_decl (input_location,
			   LABEL_DECL, label_id, void_type_node);
249 250 251
  DECL_CONTEXT (label_decl) = current_function_decl;
  DECL_MODE (label_decl) = VOIDmode;

252 253 254 255 256
  /* We always define the label as used, even if the original source
     file never references the label.  We don't want all kinds of
     spurious warnings for old-style Fortran code with too many
     labels.  */
  TREE_USED (label_decl) = 1;
257

258
  DECL_ARTIFICIAL (label_decl) = 1;
259 260 261 262
  return label_decl;
}


263 264 265 266 267 268 269 270 271
/* Set the backend source location of a decl.  */

void
gfc_set_decl_location (tree decl, locus * loc)
{
  DECL_SOURCE_LOCATION (decl) = loc->lb->location;
}


272 273 274 275 276 277 278 279 280 281 282 283 284 285
/* Return the backend label declaration for a given label structure,
   or create it if it doesn't exist yet.  */

tree
gfc_get_label_decl (gfc_st_label * lp)
{
  if (lp->backend_decl)
    return lp->backend_decl;
  else
    {
      char label_name[GFC_MAX_SYMBOL_LEN + 1];
      tree label_decl;

      /* Validate the label declaration from the front end.  */
286
      gcc_assert (lp != NULL && lp->value <= MAX_LABEL_VALUE);
287 288 289 290 291 292 293 294

      /* Build a mangled name for the label.  */
      sprintf (label_name, "__label_%.6d", lp->value);

      /* Build the LABEL_DECL node.  */
      label_decl = gfc_build_label_decl (get_identifier (label_name));

      /* Tell the debugger where the label came from.  */
295
      if (lp->value <= MAX_LABEL_VALUE)	/* An internal label.  */
296
	gfc_set_decl_location (label_decl, &lp->where);
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
      else
	DECL_ARTIFICIAL (label_decl) = 1;

      /* Store the label in the label list and return the LABEL_DECL.  */
      lp->backend_decl = label_decl;
      return label_decl;
    }
}


/* Convert a gfc_symbol to an identifier of the same name.  */

static tree
gfc_sym_identifier (gfc_symbol * sym)
{
312 313 314 315
  if (sym->attr.is_main_program && strcmp (sym->name, "main") == 0)
    return (get_identifier ("MAIN__"));
  else
    return (get_identifier (sym->name));
316 317 318 319 320 321 322 323 324 325
}


/* Construct mangled name from symbol name.  */

static tree
gfc_sym_mangled_identifier (gfc_symbol * sym)
{
  char name[GFC_MAX_MANGLED_SYMBOL_LEN + 1];

326 327 328 329 330 331
  /* Prevent the mangling of identifiers that have an assigned
     binding label (mainly those that are bind(c)).  */
  if (sym->attr.is_bind_c == 1
      && sym->binding_label[0] != '\0')
    return get_identifier(sym->binding_label);
  
332
  if (sym->module == NULL)
333 334 335
    return gfc_sym_identifier (sym);
  else
    {
336
      snprintf (name, sizeof name, "__%s_MOD_%s", sym->module, sym->name);
337 338 339 340 341 342 343 344 345 346 347 348 349
      return get_identifier (name);
    }
}


/* Construct mangled function name from symbol name.  */

static tree
gfc_sym_mangled_function_id (gfc_symbol * sym)
{
  int has_underscore;
  char name[GFC_MAX_MANGLED_SYMBOL_LEN + 1];

350 351 352 353 354 355 356 357
  /* It may be possible to simply use the binding label if it's
     provided, and remove the other checks.  Then we could use it
     for other things if we wished.  */
  if ((sym->attr.is_bind_c == 1 || sym->attr.is_iso_c == 1) &&
      sym->binding_label[0] != '\0')
    /* use the binding label rather than the mangled name */
    return get_identifier (sym->binding_label);

358
  if (sym->module == NULL || sym->attr.proc == PROC_EXTERNAL
359 360
      || (sym->module != NULL && (sym->attr.external
	    || sym->attr.if_source == IFSRC_IFBODY)))
361
    {
362 363 364 365 366 367
      /* Main program is mangled into MAIN__.  */
      if (sym->attr.is_main_program)
	return get_identifier ("MAIN__");

      /* Intrinsic procedures are never mangled.  */
      if (sym->attr.proc == PROC_INTRINSIC)
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
	return get_identifier (sym->name);

      if (gfc_option.flag_underscoring)
	{
	  has_underscore = strchr (sym->name, '_') != 0;
	  if (gfc_option.flag_second_underscore && has_underscore)
	    snprintf (name, sizeof name, "%s__", sym->name);
	  else
	    snprintf (name, sizeof name, "%s_", sym->name);
	  return get_identifier (name);
	}
      else
	return get_identifier (sym->name);
    }
  else
    {
384
      snprintf (name, sizeof name, "__%s_MOD_%s", sym->module, sym->name);
385 386 387 388 389
      return get_identifier (name);
    }
}


390 391 392 393 394 395 396 397
void
gfc_set_decl_assembler_name (tree decl, tree name)
{
  tree target_mangled = targetm.mangle_decl_assembler_name (decl, name);
  SET_DECL_ASSEMBLER_NAME (decl, target_mangled);
}


398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
/* Returns true if a variable of specified size should go on the stack.  */

int
gfc_can_put_var_on_stack (tree size)
{
  unsigned HOST_WIDE_INT low;

  if (!INTEGER_CST_P (size))
    return 0;

  if (gfc_option.flag_max_stack_var_size < 0)
    return 1;

  if (TREE_INT_CST_HIGH (size) != 0)
    return 0;

  low = TREE_INT_CST_LOW (size);
  if (low > (unsigned HOST_WIDE_INT) gfc_option.flag_max_stack_var_size)
    return 0;

/* TODO: Set a per-function stack size limit.  */

  return 1;
}


424 425 426 427 428 429 430 431 432 433 434 435 436 437
/* gfc_finish_cray_pointee sets DECL_VALUE_EXPR for a Cray pointee to
   an expression involving its corresponding pointer.  There are
   2 cases; one for variable size arrays, and one for everything else,
   because variable-sized arrays require one fewer level of
   indirection.  */

static void
gfc_finish_cray_pointee (tree decl, gfc_symbol *sym)
{
  tree ptr_decl = gfc_get_symbol_decl (sym->cp_pointer);
  tree value;

  /* Parameters need to be dereferenced.  */
  if (sym->cp_pointer->attr.dummy) 
438 439
    ptr_decl = build_fold_indirect_ref_loc (input_location,
					ptr_decl);
440 441 442 443 444

  /* Check to see if we're dealing with a variable-sized array.  */
  if (sym->attr.dimension
      && TREE_CODE (TREE_TYPE (decl)) == POINTER_TYPE) 
    {  
445
      /* These decls will be dereferenced later, so we don't dereference
446 447 448 449 450 451 452
	 them here.  */
      value = convert (TREE_TYPE (decl), ptr_decl);
    }
  else
    {
      ptr_decl = convert (build_pointer_type (TREE_TYPE (decl)),
			  ptr_decl);
453 454
      value = build_fold_indirect_ref_loc (input_location,
				       ptr_decl);
455 456 457 458
    }

  SET_DECL_VALUE_EXPR (decl, value);
  DECL_HAS_VALUE_EXPR_P (decl) = 1;
459
  GFC_DECL_CRAY_POINTEE (decl) = 1;
460 461 462 463 464
  /* This is a fake variable just for debugging purposes.  */
  TREE_ASM_WRITTEN (decl) = 1;
}


465
/* Finish processing of a declaration without an initial value.  */
466 467

static void
468
gfc_finish_decl (tree decl)
469
{
470 471
  gcc_assert (TREE_CODE (decl) == PARM_DECL
	      || DECL_INITIAL (decl) == NULL_TREE);
472

473 474
  if (TREE_CODE (decl) != VAR_DECL)
    return;
475

476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
  if (DECL_SIZE (decl) == NULL_TREE
      && TYPE_SIZE (TREE_TYPE (decl)) != NULL_TREE)
    layout_decl (decl, 0);

  /* A few consistency checks.  */
  /* A static variable with an incomplete type is an error if it is
     initialized. Also if it is not file scope. Otherwise, let it
     through, but if it is not `extern' then it may cause an error
     message later.  */
  /* An automatic variable with an incomplete type is an error.  */

  /* We should know the storage size.  */
  gcc_assert (DECL_SIZE (decl) != NULL_TREE
	      || (TREE_STATIC (decl) 
		  ? (!DECL_INITIAL (decl) || !DECL_CONTEXT (decl))
		  : DECL_EXTERNAL (decl)));

  /* The storage size should be constant.  */
  gcc_assert ((!DECL_EXTERNAL (decl) && !TREE_STATIC (decl))
	      || !DECL_SIZE (decl)
	      || TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST);
497 498 499 500 501 502 503 504
}


/* Apply symbol attributes to a variable, and add it to the function scope.  */

static void
gfc_finish_var_decl (tree decl, gfc_symbol * sym)
{
505
  tree new_type;
506
  /* TREE_ADDRESSABLE means the address of this variable is actually needed.
507 508 509
     This is the equivalent of the TARGET variables.
     We also need to set this if the variable is passed by reference in a
     CALL statement.  */
Asher Langton committed
510

511
  /* Set DECL_VALUE_EXPR for Cray Pointees.  */
Asher Langton committed
512
  if (sym->attr.cray_pointee)
513
    gfc_finish_cray_pointee (decl, sym);
Asher Langton committed
514

515 516 517 518 519 520 521 522 523 524
  if (sym->attr.target)
    TREE_ADDRESSABLE (decl) = 1;
  /* If it wasn't used we wouldn't be getting it.  */
  TREE_USED (decl) = 1;

  /* Chain this decl to the pending declarations.  Don't do pushdecl()
     because this would add them to the current scope rather than the
     function scope.  */
  if (current_function_decl != NULL_TREE)
    {
525
      if (sym->ns->proc_name->backend_decl == current_function_decl
526
	  || sym->result == sym)
527
	gfc_add_decl_to_function (decl);
528 529 530
      else if (sym->ns->proc_name->attr.flavor == FL_LABEL)
	/* This is a BLOCK construct.  */
	add_decl_as_local (decl);
531 532 533 534
      else
	gfc_add_decl_to_parent_function (decl);
    }

535 536 537
  if (sym->attr.cray_pointee)
    return;

538 539 540 541 542 543 544
  if(sym->attr.is_bind_c == 1)
    {
      /* We need to put variables that are bind(c) into the common
	 segment of the object file, because this is what C would do.
	 gfortran would typically put them in either the BSS or
	 initialized data segments, and only mark them as common if
	 they were part of common blocks.  However, if they are not put
545
	 into common space, then C cannot initialize global Fortran
546 547 548 549 550 551 552
	 variables that it interoperates with and the draft says that
	 either Fortran or C should be able to initialize it (but not
	 both, of course.) (J3/04-007, section 15.3).  */
      TREE_PUBLIC(decl) = 1;
      DECL_COMMON(decl) = 1;
    }
  
553 554 555 556 557 558
  /* If a variable is USE associated, it's always external.  */
  if (sym->attr.use_assoc)
    {
      DECL_EXTERNAL (decl) = 1;
      TREE_PUBLIC (decl) = 1;
    }
559
  else if (sym->module && !sym->attr.result && !sym->attr.dummy)
560
    {
561
      /* TODO: Don't set sym->module for result or dummy variables.  */
562
      gcc_assert (current_function_decl == NULL_TREE || sym->result == sym);
563 564 565 566 567
      /* This is the declaration of a module variable.  */
      TREE_PUBLIC (decl) = 1;
      TREE_STATIC (decl) = 1;
    }

568 569 570 571
  /* Derived types are a bit peculiar because of the possibility of
     a default initializer; this must be applied each time the variable
     comes into scope it therefore need not be static.  These variables
     are SAVE_NONE but have an initializer.  Otherwise explicitly
572
     initialized variables are SAVE_IMPLICIT and explicitly saved are
573 574 575
     SAVE_EXPLICIT.  */
  if (!sym->attr.use_assoc
	&& (sym->attr.save != SAVE_NONE || sym->attr.data
576 577 578
	    || (sym->value && sym->ns->proc_name->attr.is_main_program)
	    || (gfc_option.coarray == GFC_FCOARRAY_LIB
		&& sym->attr.codimension && !sym->attr.allocatable)))
579
    TREE_STATIC (decl) = 1;
580 581 582 583

  if (sym->attr.volatile_)
    {
      TREE_THIS_VOLATILE (decl) = 1;
584
      TREE_SIDE_EFFECTS (decl) = 1;
585 586
      new_type = build_qualified_type (TREE_TYPE (decl), TYPE_QUAL_VOLATILE);
      TREE_TYPE (decl) = new_type;
587 588
    } 

589 590 591
  /* Keep variables larger than max-stack-var-size off stack.  */
  if (!sym->ns->proc_name->attr.recursive
      && INTEGER_CST_P (DECL_SIZE_UNIT (decl))
592 593 594 595 596 597 598 599
      && !gfc_can_put_var_on_stack (DECL_SIZE_UNIT (decl))
	 /* Put variable length auto array pointers always into stack.  */
      && (TREE_CODE (TREE_TYPE (decl)) != POINTER_TYPE
	  || sym->attr.dimension == 0
	  || sym->as->type != AS_EXPLICIT
	  || sym->attr.pointer
	  || sym->attr.allocatable)
      && !DECL_ARTIFICIAL (decl))
600
    TREE_STATIC (decl) = 1;
601 602

  /* Handle threadprivate variables.  */
603
  if (sym->attr.threadprivate
604 605
      && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
    DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
606 607 608

  if (!sym->attr.target
      && !sym->attr.pointer
609
      && !sym->attr.cray_pointee
610 611
      && !sym->attr.proc_pointer)
    DECL_RESTRICTED_P (decl) = 1;
612 613 614 615 616 617 618 619
}


/* Allocate the lang-specific part of a decl.  */

void
gfc_allocate_lang_decl (tree decl)
{
620 621
  DECL_LANG_SPECIFIC (decl) = ggc_alloc_cleared_lang_decl(sizeof
							  (struct lang_decl));
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
}

/* Remember a symbol to generate initialization/cleanup code at function
   entry/exit.  */

static void
gfc_defer_symbol_init (gfc_symbol * sym)
{
  gfc_symbol *p;
  gfc_symbol *last;
  gfc_symbol *head;

  /* Don't add a symbol twice.  */
  if (sym->tlink)
    return;

  last = head = sym->ns->proc_name;
  p = last->tlink;

  /* Make sure that setup code for dummy variables which are used in the
     setup of other variables is generated first.  */
  if (sym->attr.dummy)
    {
      /* Find the first dummy arg seen after us, or the first non-dummy arg.
         This is a circular list, so don't go past the head.  */
      while (p != head
             && (!p->attr.dummy || p->dummy_order > sym->dummy_order))
        {
          last = p;
          p = p->tlink;
        }
    }
  /* Insert in between last and p.  */
  last->tlink = sym;
  sym->tlink = p;
}


660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
/* Used in gfc_get_symbol_decl and gfc_get_derived_type to obtain the
   backend_decl for a module symbol, if it all ready exists.  If the
   module gsymbol does not exist, it is created.  If the symbol does
   not exist, it is added to the gsymbol namespace.  Returns true if
   an existing backend_decl is found.  */

bool
gfc_get_module_backend_decl (gfc_symbol *sym)
{
  gfc_gsymbol *gsym;
  gfc_symbol *s;
  gfc_symtree *st;

  gsym =  gfc_find_gsymbol (gfc_gsym_root, sym->module);

  if (!gsym || (gsym->ns && gsym->type == GSYM_MODULE))
    {
      st = NULL;
      s = NULL;

      if (gsym)
	gfc_find_symbol (sym->name, gsym->ns, 0, &s);

      if (!s)
	{
	  if (!gsym)
	    {
	      gsym = gfc_get_gsymbol (sym->module);
	      gsym->type = GSYM_MODULE;
	      gsym->ns = gfc_get_namespace (NULL, 0);
	    }

	  st = gfc_new_symtree (&gsym->ns->sym_root, sym->name);
	  st->n.sym = sym;
	  sym->refs++;
	}
      else if (sym->attr.flavor == FL_DERIVED)
	{
	  if (!s->backend_decl)
	    s->backend_decl = gfc_get_derived_type (s);
	  gfc_copy_dt_decls_ifequal (s, sym, true);
	  return true;
	}
      else if (s->backend_decl)
	{
	  if (sym->ts.type == BT_DERIVED)
	    gfc_copy_dt_decls_ifequal (s->ts.u.derived, sym->ts.u.derived,
				       true);
	  else if (sym->ts.type == BT_CHARACTER)
	    sym->ts.u.cl->backend_decl = s->ts.u.cl->backend_decl;
	  sym->backend_decl = s->backend_decl;
	  return true;
	}
    }
  return false;
}


718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
/* Create an array index type variable with function scope.  */

static tree
create_index_var (const char * pfx, int nest)
{
  tree decl;

  decl = gfc_create_var_np (gfc_array_index_type, pfx);
  if (nest)
    gfc_add_decl_to_parent_function (decl);
  else
    gfc_add_decl_to_function (decl);
  return decl;
}


/* Create variables to hold all the non-constant bits of info for a
   descriptorless array.  Remember these in the lang-specific part of the
   type.  */

static void
gfc_build_qualified_array (tree decl, gfc_symbol * sym)
{
  tree type;
  int dim;
  int nest;
744
  gfc_namespace* procns;
745 746 747 748 749 750 751

  type = TREE_TYPE (decl);

  /* We just use the descriptor, if there is one.  */
  if (GFC_DESCRIPTOR_TYPE_P (type))
    return;

752
  gcc_assert (GFC_ARRAY_TYPE_P (type));
753 754
  procns = gfc_find_proc_namespace (sym->ns);
  nest = (procns->proc_name->backend_decl != current_function_decl)
755 756
	 && !sym->attr.contained;

757 758 759 760 761 762 763 764 765 766 767 768
  if (sym->attr.codimension && gfc_option.coarray == GFC_FCOARRAY_LIB
      && GFC_TYPE_ARRAY_CAF_TOKEN (type) == NULL_TREE)
    {
      tree token;

      token = gfc_create_var_np (pvoid_type_node, "caf_token");
      GFC_TYPE_ARRAY_CAF_TOKEN (type) = token;
      DECL_ARTIFICIAL (token) = 1;
      TREE_STATIC (token) = 1;
      gfc_add_decl_to_function (token);
    }

769 770 771
  for (dim = 0; dim < GFC_TYPE_ARRAY_RANK (type); dim++)
    {
      if (GFC_TYPE_ARRAY_LBOUND (type, dim) == NULL_TREE)
772 773 774 775
	{
	  GFC_TYPE_ARRAY_LBOUND (type, dim) = create_index_var ("lbound", nest);
	  TREE_NO_WARNING (GFC_TYPE_ARRAY_LBOUND (type, dim)) = 1;
	}
776
      /* Don't try to use the unknown bound for assumed shape arrays.  */
777 778 779
      if (GFC_TYPE_ARRAY_UBOUND (type, dim) == NULL_TREE
          && (sym->as->type != AS_ASSUMED_SIZE
              || dim < GFC_TYPE_ARRAY_RANK (type) - 1))
780 781 782 783
	{
	  GFC_TYPE_ARRAY_UBOUND (type, dim) = create_index_var ("ubound", nest);
	  TREE_NO_WARNING (GFC_TYPE_ARRAY_UBOUND (type, dim)) = 1;
	}
784 785

      if (GFC_TYPE_ARRAY_STRIDE (type, dim) == NULL_TREE)
786 787 788 789
	{
	  GFC_TYPE_ARRAY_STRIDE (type, dim) = create_index_var ("stride", nest);
	  TREE_NO_WARNING (GFC_TYPE_ARRAY_STRIDE (type, dim)) = 1;
	}
790
    }
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
  for (dim = GFC_TYPE_ARRAY_RANK (type);
       dim < GFC_TYPE_ARRAY_RANK (type) + GFC_TYPE_ARRAY_CORANK (type); dim++)
    {
      if (GFC_TYPE_ARRAY_LBOUND (type, dim) == NULL_TREE)
	{
	  GFC_TYPE_ARRAY_LBOUND (type, dim) = create_index_var ("lbound", nest);
	  TREE_NO_WARNING (GFC_TYPE_ARRAY_LBOUND (type, dim)) = 1;
	}
      /* Don't try to use the unknown ubound for the last coarray dimension.  */
      if (GFC_TYPE_ARRAY_UBOUND (type, dim) == NULL_TREE
          && dim < GFC_TYPE_ARRAY_RANK (type) + GFC_TYPE_ARRAY_CORANK (type) - 1)
	{
	  GFC_TYPE_ARRAY_UBOUND (type, dim) = create_index_var ("ubound", nest);
	  TREE_NO_WARNING (GFC_TYPE_ARRAY_UBOUND (type, dim)) = 1;
	}
    }
807 808 809 810
  if (GFC_TYPE_ARRAY_OFFSET (type) == NULL_TREE)
    {
      GFC_TYPE_ARRAY_OFFSET (type) = gfc_create_var_np (gfc_array_index_type,
							"offset");
811 812
      TREE_NO_WARNING (GFC_TYPE_ARRAY_OFFSET (type)) = 1;

813 814 815 816 817
      if (nest)
	gfc_add_decl_to_parent_function (GFC_TYPE_ARRAY_OFFSET (type));
      else
	gfc_add_decl_to_function (GFC_TYPE_ARRAY_OFFSET (type));
    }
818 819 820

  if (GFC_TYPE_ARRAY_SIZE (type) == NULL_TREE
      && sym->as->type != AS_ASSUMED_SIZE)
821 822 823 824
    {
      GFC_TYPE_ARRAY_SIZE (type) = create_index_var ("size", nest);
      TREE_NO_WARNING (GFC_TYPE_ARRAY_SIZE (type)) = 1;
    }
825 826 827 828 829 830 831 832 833 834 835 836 837

  if (POINTER_TYPE_P (type))
    {
      gcc_assert (GFC_ARRAY_TYPE_P (TREE_TYPE (type)));
      gcc_assert (TYPE_LANG_SPECIFIC (type)
		  == TYPE_LANG_SPECIFIC (TREE_TYPE (type)));
      type = TREE_TYPE (type);
    }

  if (! COMPLETE_TYPE_P (type) && GFC_TYPE_ARRAY_SIZE (type))
    {
      tree size, range;

838 839
      size = fold_build2_loc (input_location, MINUS_EXPR, gfc_array_index_type,
			      GFC_TYPE_ARRAY_SIZE (type), gfc_index_one_node);
840 841 842 843 844
      range = build_range_type (gfc_array_index_type, gfc_index_zero_node,
				size);
      TYPE_DOMAIN (type) = range;
      layout_type (type);
    }
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867

  if (TYPE_NAME (type) != NULL_TREE
      && GFC_TYPE_ARRAY_UBOUND (type, sym->as->rank - 1) != NULL_TREE
      && TREE_CODE (GFC_TYPE_ARRAY_UBOUND (type, sym->as->rank - 1)) == VAR_DECL)
    {
      tree gtype = DECL_ORIGINAL_TYPE (TYPE_NAME (type));

      for (dim = 0; dim < sym->as->rank - 1; dim++)
	{
	  gcc_assert (TREE_CODE (gtype) == ARRAY_TYPE);
	  gtype = TREE_TYPE (gtype);
	}
      gcc_assert (TREE_CODE (gtype) == ARRAY_TYPE);
      if (TYPE_MAX_VALUE (TYPE_DOMAIN (gtype)) == NULL)
	TYPE_NAME (type) = NULL_TREE;
    }

  if (TYPE_NAME (type) == NULL_TREE)
    {
      tree gtype = TREE_TYPE (type), rtype, type_decl;

      for (dim = sym->as->rank - 1; dim >= 0; dim--)
	{
868 869 870 871
	  tree lbound, ubound;
	  lbound = GFC_TYPE_ARRAY_LBOUND (type, dim);
	  ubound = GFC_TYPE_ARRAY_UBOUND (type, dim);
	  rtype = build_range_type (gfc_array_index_type, lbound, ubound);
872
	  gtype = build_array_type (gtype, rtype);
873 874
	  /* Ensure the bound variables aren't optimized out at -O0.
	     For -O1 and above they often will be optimized out, but
875 876 877
	     can be tracked by VTA.  Also set DECL_NAMELESS, so that
	     the artificial lbound.N or ubound.N DECL_NAME doesn't
	     end up in debug info.  */
878 879 880 881 882 883
	  if (lbound && TREE_CODE (lbound) == VAR_DECL
	      && DECL_ARTIFICIAL (lbound) && DECL_IGNORED_P (lbound))
	    {
	      if (DECL_NAME (lbound)
		  && strstr (IDENTIFIER_POINTER (DECL_NAME (lbound)),
			     "lbound") != 0)
884
		DECL_NAMELESS (lbound) = 1;
885 886 887 888 889 890 891 892
	      DECL_IGNORED_P (lbound) = 0;
	    }
	  if (ubound && TREE_CODE (ubound) == VAR_DECL
	      && DECL_ARTIFICIAL (ubound) && DECL_IGNORED_P (ubound))
	    {
	      if (DECL_NAME (ubound)
		  && strstr (IDENTIFIER_POINTER (DECL_NAME (ubound)),
			     "ubound") != 0)
893
		DECL_NAMELESS (ubound) = 1;
894 895
	      DECL_IGNORED_P (ubound) = 0;
	    }
896
	}
897 898
      TYPE_NAME (type) = type_decl = build_decl (input_location,
						 TYPE_DECL, NULL, gtype);
899 900
      DECL_ORIGINAL_TYPE (type_decl) = gtype;
    }
901 902 903 904
}


/* For some dummy arguments we don't use the actual argument directly.
905
   Instead we create a local decl and use that.  This allows us to perform
906 907 908 909 910 911 912 913 914
   initialization, and construct full type information.  */

static tree
gfc_build_dummy_array_decl (gfc_symbol * sym, tree dummy)
{
  tree decl;
  tree type;
  gfc_array_spec *as;
  char *name;
915
  gfc_packed packed;
916 917 918 919 920 921 922 923 924 925 926
  int n;
  bool known_size;

  if (sym->attr.pointer || sym->attr.allocatable)
    return dummy;

  /* Add to list of variables if not a fake result variable.  */
  if (sym->attr.result || sym->attr.dummy)
    gfc_defer_symbol_init (sym);

  type = TREE_TYPE (dummy);
927
  gcc_assert (TREE_CODE (dummy) == PARM_DECL
928 929
	  && POINTER_TYPE_P (type));

930
  /* Do we know the element size?  */
931
  known_size = sym->ts.type != BT_CHARACTER
932
	  || INTEGER_CST_P (sym->ts.u.cl->backend_decl);
933 934 935 936 937
  
  if (known_size && !GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (type)))
    {
      /* For descriptorless arrays with known element size the actual
         argument is sufficient.  */
938
      gcc_assert (GFC_ARRAY_TYPE_P (type));
939 940 941 942 943 944 945
      gfc_build_qualified_array (dummy, sym);
      return dummy;
    }

  type = TREE_TYPE (type);
  if (GFC_DESCRIPTOR_TYPE_P (type))
    {
Tobias Burnus committed
946
      /* Create a descriptorless array pointer.  */
947
      as = sym->as;
948
      packed = PACKED_NO;
949 950 951 952

      /* Even when -frepack-arrays is used, symbols with TARGET attribute
	 are not repacked.  */
      if (!gfc_option.flag_repack_arrays || sym->attr.target)
953 954
	{
	  if (as->type == AS_ASSUMED_SIZE)
955
	    packed = PACKED_FULL;
956 957 958 959 960
	}
      else
	{
	  if (as->type == AS_EXPLICIT)
	    {
961
	      packed = PACKED_FULL;
962 963 964 965 966 967
	      for (n = 0; n < as->rank; n++)
		{
		  if (!(as->upper[n]
			&& as->lower[n]
			&& as->upper[n]->expr_type == EXPR_CONSTANT
			&& as->lower[n]->expr_type == EXPR_CONSTANT))
968
		    packed = PACKED_PARTIAL;
969 970 971
		}
	    }
	  else
972
	    packed = PACKED_PARTIAL;
973 974 975
	}

      type = gfc_typenode_for_spec (&sym->ts);
976 977
      type = gfc_get_nodesc_array_type (type, sym->as, packed,
					!sym->attr.target);
978 979 980 981 982 983
    }
  else
    {
      /* We now have an expression for the element size, so create a fully
	 qualified type.  Reset sym->backend decl or this will just return the
	 old type.  */
984
      DECL_ARTIFICIAL (sym->backend_decl) = 1;
985 986
      sym->backend_decl = NULL_TREE;
      type = gfc_sym_type (sym);
987
      packed = PACKED_FULL;
988 989 990
    }

  ASM_FORMAT_PRIVATE_NAME (name, IDENTIFIER_POINTER (DECL_NAME (dummy)), 0);
991 992
  decl = build_decl (input_location,
		     VAR_DECL, get_identifier (name), type);
993 994

  DECL_ARTIFICIAL (decl) = 1;
995
  DECL_NAMELESS (decl) = 1;
996 997 998 999 1000 1001
  TREE_PUBLIC (decl) = 0;
  TREE_STATIC (decl) = 0;
  DECL_EXTERNAL (decl) = 0;

  /* We should never get deferred shape arrays here.  We used to because of
     frontend bugs.  */
1002
  gcc_assert (sym->as->type != AS_DEFERRED);
1003

1004 1005 1006 1007
  if (packed == PACKED_PARTIAL)
    GFC_DECL_PARTIAL_PACKED_ARRAY (decl) = 1;
  else if (packed == PACKED_FULL)
    GFC_DECL_PACKED_ARRAY (decl) = 1;
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026

  gfc_build_qualified_array (decl, sym);

  if (DECL_LANG_SPECIFIC (dummy))
    DECL_LANG_SPECIFIC (decl) = DECL_LANG_SPECIFIC (dummy);
  else
    gfc_allocate_lang_decl (decl);

  GFC_DECL_SAVED_DESCRIPTOR (decl) = dummy;

  if (sym->ns->proc_name->backend_decl == current_function_decl
      || sym->attr.contained)
    gfc_add_decl_to_function (decl);
  else
    gfc_add_decl_to_parent_function (decl);

  return decl;
}

1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
/* For symbol SYM with GFC_DECL_SAVED_DESCRIPTOR used in contained
   function add a VAR_DECL to the current function with DECL_VALUE_EXPR
   pointing to the artificial variable for debug info purposes.  */

static void
gfc_nonlocal_dummy_array_decl (gfc_symbol *sym)
{
  tree decl, dummy;

  if (! nonlocal_dummy_decl_pset)
    nonlocal_dummy_decl_pset = pointer_set_create ();

  if (pointer_set_insert (nonlocal_dummy_decl_pset, sym->backend_decl))
    return;

  dummy = GFC_DECL_SAVED_DESCRIPTOR (sym->backend_decl);
1043
  decl = build_decl (input_location, VAR_DECL, DECL_NAME (dummy),
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
		     TREE_TYPE (sym->backend_decl));
  DECL_ARTIFICIAL (decl) = 0;
  TREE_USED (decl) = 1;
  TREE_PUBLIC (decl) = 0;
  TREE_STATIC (decl) = 0;
  DECL_EXTERNAL (decl) = 0;
  if (DECL_BY_REFERENCE (dummy))
    DECL_BY_REFERENCE (decl) = 1;
  DECL_LANG_SPECIFIC (decl) = DECL_LANG_SPECIFIC (sym->backend_decl);
  SET_DECL_VALUE_EXPR (decl, sym->backend_decl);
  DECL_HAS_VALUE_EXPR_P (decl) = 1;
  DECL_CONTEXT (decl) = DECL_CONTEXT (sym->backend_decl);
1056
  DECL_CHAIN (decl) = nonlocal_dummy_decls;
1057 1058
  nonlocal_dummy_decls = decl;
}
1059 1060 1061 1062 1063 1064 1065

/* Return a constant or a variable to use as a string length.  Does not
   add the decl to the current scope.  */

static tree
gfc_create_string_length (gfc_symbol * sym)
{
1066 1067
  gcc_assert (sym->ts.u.cl);
  gfc_conv_const_charlen (sym->ts.u.cl);
1068

1069
  if (sym->ts.u.cl->backend_decl == NULL_TREE)
1070
    {
1071
      tree length;
1072 1073 1074 1075 1076
      char name[GFC_MAX_MANGLED_SYMBOL_LEN + 2];

      /* Also prefix the mangled name.  */
      strcpy (&name[1], sym->name);
      name[0] = '.';
1077 1078
      length = build_decl (input_location,
			   VAR_DECL, get_identifier (name),
1079
			   gfc_charlen_type_node);
1080 1081
      DECL_ARTIFICIAL (length) = 1;
      TREE_USED (length) = 1;
1082 1083
      if (sym->ns->proc_name->tlink != NULL)
	gfc_defer_symbol_init (sym);
1084

1085
      sym->ts.u.cl->backend_decl = length;
1086 1087
    }

1088 1089
  gcc_assert (sym->ts.u.cl->backend_decl != NULL_TREE);
  return sym->ts.u.cl->backend_decl;
1090 1091
}

1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
/* If a variable is assigned a label, we add another two auxiliary
   variables.  */

static void
gfc_add_assign_aux_vars (gfc_symbol * sym)
{
  tree addr;
  tree length;
  tree decl;

  gcc_assert (sym->backend_decl);

  decl = sym->backend_decl;
  gfc_allocate_lang_decl (decl);
  GFC_DECL_ASSIGN (decl) = 1;
1107 1108
  length = build_decl (input_location,
		       VAR_DECL, create_tmp_var_name (sym->name),
1109
		       gfc_charlen_type_node);
1110 1111
  addr = build_decl (input_location,
		     VAR_DECL, create_tmp_var_name (sym->name),
1112 1113 1114 1115 1116 1117 1118 1119
		     pvoid_type_node);
  gfc_finish_var_decl (length, sym);
  gfc_finish_var_decl (addr, sym);
  /*  STRING_LENGTH is also used as flag. Less than -1 means that
      ASSIGN_ADDR can not be used. Equal -1 means that ASSIGN_ADDR is the
      target label's address. Otherwise, value is the length of a format string
      and ASSIGN_ADDR is its address.  */
  if (TREE_STATIC (length))
1120
    DECL_INITIAL (length) = build_int_cst (gfc_charlen_type_node, -2);
1121 1122 1123 1124 1125 1126
  else
    gfc_defer_symbol_init (sym);

  GFC_DECL_STRING_LEN (decl) = length;
  GFC_DECL_ASSIGN_ADDR (decl) = addr;
}
1127

1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147

static tree
add_attributes_to_decl (symbol_attribute sym_attr, tree list)
{
  unsigned id;
  tree attr;

  for (id = 0; id < EXT_ATTR_NUM; id++)
    if (sym_attr.ext_attr & (1 << id))
      {
	attr = build_tree_list (
		 get_identifier (ext_attr_list[id].middle_end_name),
				 NULL_TREE);
	list = chainon (list, attr);
      }

  return list;
}


1148 1149 1150
static void build_function_decl (gfc_symbol * sym, bool global);


1151 1152 1153 1154 1155 1156 1157 1158
/* Return the decl for a gfc_symbol, create it if it doesn't already
   exist.  */

tree
gfc_get_symbol_decl (gfc_symbol * sym)
{
  tree decl;
  tree length = NULL_TREE;
1159
  tree attributes;
1160
  int byref;
1161
  bool intrinsic_array_parameter = false;
1162

1163
  gcc_assert (sym->attr.referenced
1164
		|| sym->attr.use_assoc
1165 1166 1167
		|| sym->ns->proc_name->attr.if_source == IFSRC_IFBODY
		|| (sym->module && sym->attr.if_source != IFSRC_DECL
		    && sym->backend_decl));
1168

1169
  if (sym->ns && sym->ns->proc_name && sym->ns->proc_name->attr.function)
1170 1171 1172 1173
    byref = gfc_return_by_reference (sym->ns->proc_name);
  else
    byref = 0;

Paul Thomas committed
1174 1175 1176
  /* Make sure that the vtab for the declared type is completed.  */
  if (sym->ts.type == BT_CLASS)
    {
1177
      gfc_component *c = CLASS_DATA (sym);
Paul Thomas committed
1178
      if (!c->ts.u.derived->backend_decl)
1179
	gfc_find_derived_vtab (c->ts.u.derived);
Paul Thomas committed
1180 1181
    }

1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
  /* All deferred character length procedures need to retain the backend
     decl, which is a pointer to the character length in the caller's
     namespace and to declare a local character length.  */
  if (!byref && sym->attr.function
	&& sym->ts.type == BT_CHARACTER
	&& sym->ts.deferred
	&& sym->ts.u.cl->passed_length == NULL
	&& sym->ts.u.cl->backend_decl
	&& TREE_CODE (sym->ts.u.cl->backend_decl) == PARM_DECL)
    {
      sym->ts.u.cl->passed_length = sym->ts.u.cl->backend_decl;
      sym->ts.u.cl->backend_decl = NULL_TREE;
      length = gfc_create_string_length (sym);
    }

1197 1198 1199 1200 1201 1202 1203 1204
  if ((sym->attr.dummy && ! sym->attr.function) || (sym->attr.result && byref))
    {
      /* Return via extra parameter.  */
      if (sym->attr.result && byref
	  && !sym->backend_decl)
	{
	  sym->backend_decl =
	    DECL_ARGUMENTS (sym->ns->proc_name->backend_decl);
Jakub Jelinek committed
1205 1206 1207
	  /* For entry master function skip over the __entry
	     argument.  */
	  if (sym->ns->proc_name->attr.entry_master)
1208
	    sym->backend_decl = DECL_CHAIN (sym->backend_decl);
1209 1210 1211
	}

      /* Dummy variables should already have been created.  */
1212
      gcc_assert (sym->backend_decl);
1213 1214 1215 1216

      /* Create a character length variable.  */
      if (sym->ts.type == BT_CHARACTER)
	{
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
	  /* For a deferred dummy, make a new string length variable.  */
	  if (sym->ts.deferred
		&&
	     (sym->ts.u.cl->passed_length == sym->ts.u.cl->backend_decl))
	    sym->ts.u.cl->backend_decl = NULL_TREE;

	  if (sym->ts.deferred && sym->attr.result
		&& sym->ts.u.cl->passed_length == NULL
		&& sym->ts.u.cl->backend_decl)
	    {
	      sym->ts.u.cl->passed_length = sym->ts.u.cl->backend_decl;
	      sym->ts.u.cl->backend_decl = NULL_TREE;
	    }

1231
	  if (sym->ts.u.cl->backend_decl == NULL_TREE)
1232 1233
	    length = gfc_create_string_length (sym);
	  else
1234
	    length = sym->ts.u.cl->backend_decl;
1235
	  if (TREE_CODE (length) == VAR_DECL
1236
	      && DECL_FILE_SCOPE_P (length))
1237
	    {
1238 1239 1240 1241 1242 1243 1244 1245 1246
	      /* Add the string length to the same context as the symbol.  */
	      if (DECL_CONTEXT (sym->backend_decl) == current_function_decl)
	        gfc_add_decl_to_function (length);
	      else
		gfc_add_decl_to_parent_function (length);

	      gcc_assert (DECL_CONTEXT (sym->backend_decl) ==
			    DECL_CONTEXT (length));

1247
	      gfc_defer_symbol_init (sym);
1248
	    }
1249 1250 1251
	}

      /* Use a copy of the descriptor for dummy arrays.  */
1252 1253
      if ((sym->attr.dimension || sym->attr.codimension)
         && !TREE_USED (sym->backend_decl))
1254
        {
1255 1256 1257 1258 1259
	  decl = gfc_build_dummy_array_decl (sym, sym->backend_decl);
	  /* Prevent the dummy from being detected as unused if it is copied.  */
	  if (sym->backend_decl != NULL && decl != sym->backend_decl)
	    DECL_ARTIFICIAL (sym->backend_decl) = 1;
	  sym->backend_decl = decl;
1260 1261 1262
	}

      TREE_USED (sym->backend_decl) = 1;
1263 1264 1265 1266
      if (sym->attr.assign && GFC_DECL_ASSIGN (sym->backend_decl) == 0)
	{
	  gfc_add_assign_aux_vars (sym);
	}
1267 1268 1269 1270 1271 1272 1273

      if (sym->attr.dimension
	  && DECL_LANG_SPECIFIC (sym->backend_decl)
	  && GFC_DECL_SAVED_DESCRIPTOR (sym->backend_decl)
	  && DECL_CONTEXT (sym->backend_decl) != current_function_decl)
	gfc_nonlocal_dummy_array_decl (sym);

1274 1275 1276 1277 1278 1279
      return sym->backend_decl;
    }

  if (sym->backend_decl)
    return sym->backend_decl;

1280 1281 1282 1283 1284 1285
  /* Special case for array-valued named constants from intrinsic
     procedures; those are inlined.  */
  if (sym->attr.use_assoc && sym->from_intmod
      && sym->attr.flavor == FL_PARAMETER)
    intrinsic_array_parameter = true;

1286
  /* If use associated and whole file compilation, use the module
1287
     declaration.  */
1288
  if (gfc_option.flag_whole_file
1289 1290
	&& (sym->attr.flavor == FL_VARIABLE
	    || sym->attr.flavor == FL_PARAMETER)
1291 1292 1293 1294 1295
	&& sym->attr.use_assoc
	&& !intrinsic_array_parameter
	&& sym->module
	&& gfc_get_module_backend_decl (sym))
    return sym->backend_decl;
1296

1297 1298
  if (sym->attr.flavor == FL_PROCEDURE)
    {
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
      /* Catch function declarations. Only used for actual parameters,
	 procedure pointers and procptr initialization targets.  */
      if (sym->attr.external || sym->attr.use_assoc || sym->attr.intrinsic)
	{
	  decl = gfc_get_extern_function_decl (sym);
	  gfc_set_decl_location (decl, &sym->declared_at);
	}
      else
	{
	  if (!sym->backend_decl)
	    build_function_decl (sym, false);
	  decl = sym->backend_decl;
	}
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
      return decl;
    }

  if (sym->attr.intrinsic)
    internal_error ("intrinsic variable which isn't a procedure");

  /* Create string length decl first so that they can be used in the
     type declaration.  */
  if (sym->ts.type == BT_CHARACTER)
    length = gfc_create_string_length (sym);

  /* Create the decl for the variable.  */
1324 1325
  decl = build_decl (sym->declared_at.lb->location,
		     VAR_DECL, gfc_sym_identifier (sym), gfc_sym_type (sym));
1326

1327 1328 1329 1330
  /* Add attributes to variables.  Functions are handled elsewhere.  */
  attributes = add_attributes_to_decl (sym->attr, NULL_TREE);
  decl_attributes (&decl, attributes, 0);

1331
  /* Symbols from modules should have their assembler names mangled.
1332 1333
     This is done here rather than in gfc_finish_var_decl because it
     is different for string length variables.  */
1334
  if (sym->module)
1335
    {
1336
      gfc_set_decl_assembler_name (decl, gfc_sym_mangled_identifier (sym));
1337
      if (sym->attr.use_assoc && !intrinsic_array_parameter)
1338 1339
	DECL_IGNORED_P (decl) = 1;
    }
1340

1341
  if (sym->attr.dimension || sym->attr.codimension)
1342 1343 1344 1345
    {
      /* Create variables to hold the non-constant bits of array info.  */
      gfc_build_qualified_array (decl, sym);

1346 1347
      if (sym->attr.contiguous
	  || ((sym->attr.allocatable || !sym->attr.dummy) && !sym->attr.pointer))
1348 1349 1350
	GFC_DECL_PACKED_ARRAY (decl) = 1;
    }

1351
  /* Remember this variable for allocation/cleanup.  */
1352
  if (sym->attr.dimension || sym->attr.allocatable || sym->attr.codimension
1353
      || (sym->ts.type == BT_CLASS &&
1354 1355
	  (CLASS_DATA (sym)->attr.dimension
	   || CLASS_DATA (sym)->attr.allocatable))
1356 1357 1358 1359 1360 1361 1362
      || (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.alloc_comp)
      /* This applies a derived type default initializer.  */
      || (sym->ts.type == BT_DERIVED
	  && sym->attr.save == SAVE_NONE
	  && !sym->attr.data
	  && !sym->attr.allocatable
	  && (sym->value && !sym->ns->proc_name->attr.is_main_program)
1363
	  && !(sym->attr.use_assoc && !intrinsic_array_parameter)))
1364
    gfc_defer_symbol_init (sym);
Paul Thomas committed
1365

1366 1367
  gfc_finish_var_decl (decl, sym);

1368
  if (sym->ts.type == BT_CHARACTER)
1369 1370 1371 1372
    {
      /* Character variables need special handling.  */
      gfc_allocate_lang_decl (decl);

1373
      if (TREE_CODE (length) != INTEGER_CST)
1374 1375 1376
	{
	  char name[GFC_MAX_MANGLED_SYMBOL_LEN + 2];

1377
	  if (sym->module)
1378 1379 1380 1381 1382 1383
	    {
	      /* Also prefix the mangled name for symbols from modules.  */
	      strcpy (&name[1], sym->name);
	      name[0] = '.';
	      strcpy (&name[1],
		      IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (length)));
1384
	      gfc_set_decl_assembler_name (decl, get_identifier (name));
1385 1386
	    }
	  gfc_finish_var_decl (length, sym);
1387
	  gcc_assert (!sym->value);
1388 1389
	}
    }
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
  else if (sym->attr.subref_array_pointer)
    {
      /* We need the span for these beasts.  */
      gfc_allocate_lang_decl (decl);
    }

  if (sym->attr.subref_array_pointer)
    {
      tree span;
      GFC_DECL_SUBREF_ARRAY_P (decl) = 1;
1400 1401
      span = build_decl (input_location,
			 VAR_DECL, create_tmp_var_name ("span"),
1402 1403
			 gfc_array_index_type);
      gfc_finish_var_decl (span, sym);
1404 1405 1406
      TREE_STATIC (span) = TREE_STATIC (decl);
      DECL_ARTIFICIAL (span) = 1;
      DECL_INITIAL (span) = build_int_cst (gfc_array_index_type, 0);
1407 1408

      GFC_DECL_SPAN (decl) = span;
1409
      GFC_TYPE_ARRAY_SPAN (TREE_TYPE (decl)) = span;
1410 1411
    }

1412 1413
  sym->backend_decl = decl;

1414
  if (sym->attr.assign)
1415
    gfc_add_assign_aux_vars (sym);
1416

1417 1418 1419 1420 1421 1422 1423 1424
  if (intrinsic_array_parameter)
    {
      TREE_STATIC (decl) = 1;
      DECL_EXTERNAL (decl) = 0;
    }

  if (TREE_STATIC (decl)
      && !(sym->attr.use_assoc && !intrinsic_array_parameter)
1425 1426
      && (sym->attr.save || sym->ns->proc_name->attr.is_main_program
	  || gfc_option.flag_max_stack_var_size == 0
1427 1428
	  || sym->attr.data || sym->ns->proc_name->attr.flavor == FL_MODULE)
      && (gfc_option.coarray != GFC_FCOARRAY_LIB || !sym->attr.codimension))
1429 1430 1431 1432 1433
    {
      /* Add static initializer. For procedures, it is only needed if
	 SAVE is specified otherwise they need to be reinitialized
	 every time the procedure is entered. The TREE_STATIC is
	 in this case due to -fmax-stack-var-size=.  */
1434
      DECL_INITIAL (decl) = gfc_conv_initializer (sym->value, &sym->ts,
1435 1436 1437 1438 1439
						  TREE_TYPE (decl),
						  sym->attr.dimension,
						  sym->attr.pointer
						  || sym->attr.allocatable,
						  sym->attr.proc_pointer);
1440 1441
    }

1442 1443 1444 1445 1446 1447 1448
  if (!TREE_STATIC (decl)
      && POINTER_TYPE_P (TREE_TYPE (decl))
      && !sym->attr.pointer
      && !sym->attr.allocatable
      && !sym->attr.proc_pointer)
    DECL_BY_REFERENCE (decl) = 1;

1449 1450 1451 1452
  return decl;
}


1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
/* Substitute a temporary variable in place of the real one.  */

void
gfc_shadow_sym (gfc_symbol * sym, tree decl, gfc_saved_var * save)
{
  save->attr = sym->attr;
  save->decl = sym->backend_decl;

  gfc_clear_attr (&sym->attr);
  sym->attr.referenced = 1;
  sym->attr.flavor = FL_VARIABLE;

  sym->backend_decl = decl;
}


/* Restore the original variable.  */

void
gfc_restore_sym (gfc_symbol * sym, gfc_saved_var * save)
{
  sym->attr = save->attr;
  sym->backend_decl = save->decl;
}


1479 1480 1481 1482 1483 1484
/* Declare a procedure pointer.  */

static tree
get_proc_pointer_decl (gfc_symbol *sym)
{
  tree decl;
1485
  tree attributes;
1486 1487 1488 1489 1490

  decl = sym->backend_decl;
  if (decl)
    return decl;

1491 1492
  decl = build_decl (input_location,
		     VAR_DECL, get_identifier (sym->name),
1493 1494
		     build_pointer_type (gfc_get_function_type (sym)));

1495 1496
  if ((sym->ns->proc_name
      && sym->ns->proc_name->backend_decl == current_function_decl)
1497 1498
      || sym->attr.contained)
    gfc_add_decl_to_function (decl);
1499
  else if (sym->ns->proc_name->attr.flavor != FL_MODULE)
1500 1501 1502 1503
    gfc_add_decl_to_parent_function (decl);

  sym->backend_decl = decl;

1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
  /* If a variable is USE associated, it's always external.  */
  if (sym->attr.use_assoc)
    {
      DECL_EXTERNAL (decl) = 1;
      TREE_PUBLIC (decl) = 1;
    }
  else if (sym->module && sym->ns->proc_name->attr.flavor == FL_MODULE)
    {
      /* This is the declaration of a module variable.  */
      TREE_PUBLIC (decl) = 1;
      TREE_STATIC (decl) = 1;
    }

1517 1518 1519 1520 1521 1522 1523 1524 1525
  if (!sym->attr.use_assoc
	&& (sym->attr.save != SAVE_NONE || sym->attr.data
	      || (sym->value && sym->ns->proc_name->attr.is_main_program)))
    TREE_STATIC (decl) = 1;

  if (TREE_STATIC (decl) && sym->value)
    {
      /* Add static initializer.  */
      DECL_INITIAL (decl) = gfc_conv_initializer (sym->value, &sym->ts,
1526 1527 1528
						  TREE_TYPE (decl),
						  sym->attr.dimension,
						  false, true);
1529 1530
    }

1531 1532 1533
  attributes = add_attributes_to_decl (sym->attr, NULL_TREE);
  decl_attributes (&decl, attributes, 0);

1534 1535 1536 1537
  return decl;
}


1538 1539 1540 1541 1542 1543 1544
/* Get a basic decl for an external function.  */

tree
gfc_get_extern_function_decl (gfc_symbol * sym)
{
  tree type;
  tree fndecl;
1545
  tree attributes;
1546 1547 1548
  gfc_expr e;
  gfc_intrinsic_sym *isym;
  gfc_expr argexpr;
1549
  char s[GFC_MAX_SYMBOL_LEN + 23]; /* "_gfortran_f2c_specific" and '\0'.  */
1550 1551
  tree name;
  tree mangled_name;
1552
  gfc_gsymbol *gsym;
1553 1554 1555 1556

  if (sym->backend_decl)
    return sym->backend_decl;

1557 1558 1559
  /* We should never be creating external decls for alternate entry points.
     The procedure may be an alternate entry point, but we don't want/need
     to know that.  */
1560
  gcc_assert (!(sym->attr.entry || sym->attr.entry_master));
1561

1562 1563 1564
  if (sym->attr.proc_pointer)
    return get_proc_pointer_decl (sym);

1565 1566 1567 1568 1569
  /* See if this is an external procedure from the same file.  If so,
     return the backend_decl.  */
  gsym =  gfc_find_gsymbol (gfc_gsym_root, sym->name);

  if (gfc_option.flag_whole_file
1570
	&& (!sym->attr.use_assoc || sym->attr.if_source != IFSRC_DECL)
1571 1572 1573
	&& !sym->backend_decl
	&& gsym && gsym->ns
	&& ((gsym->type == GSYM_SUBROUTINE) || (gsym->type == GSYM_FUNCTION))
1574
	&& (gsym->ns->proc_name->backend_decl || !sym->attr.intrinsic))
1575
    {
1576 1577 1578 1579 1580 1581 1582 1583
      if (!gsym->ns->proc_name->backend_decl)
	{
	  /* By construction, the external function cannot be
	     a contained procedure.  */
	  locus old_loc;
	  tree save_fn_decl = current_function_decl;

	  current_function_decl = NULL_TREE;
1584
	  gfc_save_backend_locus (&old_loc);
1585 1586 1587 1588 1589
	  push_cfun (cfun);

	  gfc_create_function_decl (gsym->ns, true);

	  pop_cfun ();
1590
	  gfc_restore_backend_locus (&old_loc);
1591 1592 1593
	  current_function_decl = save_fn_decl;
	}

1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
      /* If the namespace has entries, the proc_name is the
	 entry master.  Find the entry and use its backend_decl.
	 otherwise, use the proc_name backend_decl.  */
      if (gsym->ns->entries)
	{
	  gfc_entry_list *entry = gsym->ns->entries;

	  for (; entry; entry = entry->next)
	    {
	      if (strcmp (gsym->name, entry->sym->name) == 0)
		{
	          sym->backend_decl = entry->sym->backend_decl;
		  break;
		}
	    }
	}
      else
1611
	sym->backend_decl = gsym->ns->proc_name->backend_decl;
1612 1613

      if (sym->backend_decl)
1614 1615 1616 1617 1618 1619 1620 1621
	{
	  /* Avoid problems of double deallocation of the backend declaration
	     later in gfc_trans_use_stmts; cf. PR 45087.  */
	  if (sym->attr.if_source != IFSRC_DECL && sym->attr.use_assoc)
	    sym->attr.use_assoc = 0;

	  return sym->backend_decl;
	}
1622 1623
    }

1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
  /* See if this is a module procedure from the same file.  If so,
     return the backend_decl.  */
  if (sym->module)
    gsym =  gfc_find_gsymbol (gfc_gsym_root, sym->module);

  if (gfc_option.flag_whole_file
	&& gsym && gsym->ns
	&& gsym->type == GSYM_MODULE)
    {
      gfc_symbol *s;

      s = NULL;
      gfc_find_symbol (sym->name, gsym->ns, 0, &s);
      if (s && s->backend_decl)
	{
	  sym->backend_decl = s->backend_decl;
	  return sym->backend_decl;
	}
    }

1644 1645 1646 1647 1648 1649 1650
  if (sym->attr.intrinsic)
    {
      /* Call the resolution function to get the actual name.  This is
         a nasty hack which relies on the resolution functions only looking
	 at the first argument.  We pass NULL for the second argument
	 otherwise things like AINT get confused.  */
      isym = gfc_find_function (sym->name);
1651
      gcc_assert (isym->resolve.f0 != NULL);
1652 1653 1654 1655 1656

      memset (&e, 0, sizeof (e));
      e.expr_type = EXPR_FUNCTION;

      memset (&argexpr, 0, sizeof (argexpr));
1657
      gcc_assert (isym->formal);
1658 1659 1660 1661 1662 1663
      argexpr.ts = isym->formal->ts;

      if (isym->formal->next == NULL)
	isym->resolve.f1 (&e, &argexpr);
      else
	{
1664 1665 1666 1667
	  if (isym->formal->next->next == NULL)
	    isym->resolve.f2 (&e, &argexpr, NULL);
	  else
	    {
1668 1669 1670 1671 1672 1673 1674 1675
	      if (isym->formal->next->next->next == NULL)
		isym->resolve.f3 (&e, &argexpr, NULL, NULL);
	      else
		{
		  /* All specific intrinsics take less than 5 arguments.  */
		  gcc_assert (isym->formal->next->next->next->next == NULL);
		  isym->resolve.f4 (&e, &argexpr, NULL, NULL, NULL);
		}
1676
	    }
1677
	}
1678 1679 1680 1681 1682 1683 1684

      if (gfc_option.flag_f2c
	  && ((e.ts.type == BT_REAL && e.ts.kind == gfc_default_real_kind)
	      || e.ts.type == BT_COMPLEX))
	{
	  /* Specific which needs a different implementation if f2c
	     calling conventions are used.  */
1685
	  sprintf (s, "_gfortran_f2c_specific%s", e.value.function.name);
1686 1687
	}
      else
1688
	sprintf (s, "_gfortran_specific%s", e.value.function.name);
1689

1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
      name = get_identifier (s);
      mangled_name = name;
    }
  else
    {
      name = gfc_sym_identifier (sym);
      mangled_name = gfc_sym_mangled_function_id (sym);
    }

  type = gfc_get_function_type (sym);
1700 1701
  fndecl = build_decl (input_location,
		       FUNCTION_DECL, name, type);
1702

1703 1704
  /* Initialize DECL_EXTERNAL and TREE_PUBLIC before calling decl_attributes;
     TREE_PUBLIC specifies whether a function is globally addressable (i.e.
Mike Stump committed
1705
     the opposite of declaring a function as static in C).  */
1706 1707 1708
  DECL_EXTERNAL (fndecl) = 1;
  TREE_PUBLIC (fndecl) = 1;

1709 1710 1711 1712
  attributes = add_attributes_to_decl (sym->attr, NULL_TREE);
  decl_attributes (&fndecl, attributes, 0);

  gfc_set_decl_assembler_name (fndecl, mangled_name);
1713 1714 1715 1716 1717 1718 1719 1720 1721

  /* Set the context of this decl.  */
  if (0 && sym->ns && sym->ns->proc_name)
    {
      /* TODO: Add external decls to the appropriate scope.  */
      DECL_CONTEXT (fndecl) = sym->ns->proc_name->backend_decl;
    }
  else
    {
1722
      /* Global declaration, e.g. intrinsic subroutine.  */
1723 1724 1725 1726 1727 1728 1729 1730
      DECL_CONTEXT (fndecl) = NULL_TREE;
    }

  /* Set attributes for PURE functions. A call to PURE function in the
     Fortran 95 sense is both pure and without side effects in the C
     sense.  */
  if (sym->attr.pure || sym->attr.elemental)
    {
1731
      if (sym->attr.function && !gfc_return_by_reference (sym))
Kenneth Zadeck committed
1732
	DECL_PURE_P (fndecl) = 1;
1733 1734 1735
      /* TODO: check if pure SUBROUTINEs don't have INTENT(OUT)
	 parameters and don't use alternate returns (is this
	 allowed?). In that case, calls to them are meaningless, and
1736
	 can be optimized away. See also in build_function_decl().  */
1737
      TREE_SIDE_EFFECTS (fndecl) = 0;
1738 1739
    }

1740 1741 1742 1743
  /* Mark non-returning functions.  */
  if (sym->attr.noreturn)
      TREE_THIS_VOLATILE(fndecl) = 1;

1744 1745 1746 1747 1748 1749 1750 1751 1752 1753
  sym->backend_decl = fndecl;

  if (DECL_CONTEXT (fndecl) == NULL_TREE)
    pushdecl_top_level (fndecl);

  return fndecl;
}


/* Create a declaration for a procedure.  For external functions (in the C
1754 1755
   sense) use gfc_get_extern_function_decl.  HAS_ENTRIES is true if this is
   a master function with alternate entry points.  */
1756

1757
static void
1758
build_function_decl (gfc_symbol * sym, bool global)
1759
{
1760
  tree fndecl, type, attributes;
1761
  symbol_attribute attr;
1762
  tree result_decl;
1763 1764
  gfc_formal_arglist *f;

1765
  gcc_assert (!sym->attr.external);
1766

1767 1768 1769
  if (sym->backend_decl)
    return;

1770 1771 1772 1773
  /* Set the line and filename.  sym->declared_at seems to point to the
     last statement for subroutines, but it'll do for now.  */
  gfc_set_backend_locus (&sym->declared_at);

1774
  /* Allow only one nesting level.  Allow public declarations.  */
1775
  gcc_assert (current_function_decl == NULL_TREE
1776 1777 1778
	      || DECL_FILE_SCOPE_P (current_function_decl)
	      || (TREE_CODE (DECL_CONTEXT (current_function_decl))
		  == NAMESPACE_DECL));
1779 1780

  type = gfc_get_function_type (sym);
1781 1782
  fndecl = build_decl (input_location,
		       FUNCTION_DECL, gfc_sym_identifier (sym), type);
1783

1784 1785
  attr = sym->attr;

1786 1787
  /* Initialize DECL_EXTERNAL and TREE_PUBLIC before calling decl_attributes;
     TREE_PUBLIC specifies whether a function is globally addressable (i.e.
Mike Stump committed
1788
     the opposite of declaring a function as static in C).  */
1789 1790 1791 1792 1793 1794
  DECL_EXTERNAL (fndecl) = 0;

  if (!current_function_decl
      && !sym->attr.entry_master && !sym->attr.is_main_program)
    TREE_PUBLIC (fndecl) = 1;

1795 1796 1797
  attributes = add_attributes_to_decl (attr, NULL_TREE);
  decl_attributes (&fndecl, attributes, 0);

1798
  /* Figure out the return type of the declared function, and build a
1799
     RESULT_DECL for it.  If this is a subroutine with alternate
1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833
     returns, build a RESULT_DECL for it.  */
  result_decl = NULL_TREE;
  /* TODO: Shouldn't this just be TREE_TYPE (TREE_TYPE (fndecl)).  */
  if (attr.function)
    {
      if (gfc_return_by_reference (sym))
	type = void_type_node;
      else
	{
	  if (sym->result != sym)
	    result_decl = gfc_sym_identifier (sym->result);

	  type = TREE_TYPE (TREE_TYPE (fndecl));
	}
    }
  else
    {
      /* Look for alternate return placeholders.  */
      int has_alternate_returns = 0;
      for (f = sym->formal; f; f = f->next)
	{
	  if (f->sym == NULL)
	    {
	      has_alternate_returns = 1;
	      break;
	    }
	}

      if (has_alternate_returns)
	type = integer_type_node;
      else
	type = void_type_node;
    }

1834 1835
  result_decl = build_decl (input_location,
			    RESULT_DECL, result_decl, type);
1836 1837
  DECL_ARTIFICIAL (result_decl) = 1;
  DECL_IGNORED_P (result_decl) = 1;
1838 1839 1840 1841
  DECL_CONTEXT (result_decl) = fndecl;
  DECL_RESULT (fndecl) = result_decl;

  /* Don't call layout_decl for a RESULT_DECL.
1842
     layout_decl (result_decl, 0);  */
1843 1844

  /* TREE_STATIC means the function body is defined here.  */
1845
  TREE_STATIC (fndecl) = 1;
1846

1847
  /* Set attributes for PURE functions. A call to a PURE function in the
1848 1849 1850 1851
     Fortran 95 sense is both pure and without side effects in the C
     sense.  */
  if (attr.pure || attr.elemental)
    {
1852
      /* TODO: check if a pure SUBROUTINE has no INTENT(OUT) arguments
1853
	 including an alternate return. In that case it can also be
1854
	 marked as PURE. See also in gfc_get_extern_function_decl().  */
1855
      if (attr.function && !gfc_return_by_reference (sym))
Kenneth Zadeck committed
1856
	DECL_PURE_P (fndecl) = 1;
1857 1858 1859
      TREE_SIDE_EFFECTS (fndecl) = 0;
    }

1860

1861 1862
  /* Layout the function declaration and put it in the binding level
     of the current function.  */
1863 1864 1865 1866 1867

  if (global)
    pushdecl_top_level (fndecl);
  else
    pushdecl (fndecl);
1868

1869 1870 1871 1872
  /* Perform name mangling if this is a top level or module procedure.  */
  if (current_function_decl == NULL_TREE)
    gfc_set_decl_assembler_name (fndecl, gfc_sym_mangled_function_id (sym));

1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883
  sym->backend_decl = fndecl;
}


/* Create the DECL_ARGUMENTS for a procedure.  */

static void
create_function_arglist (gfc_symbol * sym)
{
  tree fndecl;
  gfc_formal_arglist *f;
1884 1885
  tree typelist, hidden_typelist;
  tree arglist, hidden_arglist;
1886 1887 1888 1889 1890
  tree type;
  tree parm;

  fndecl = sym->backend_decl;

1891 1892 1893
  /* Build formal argument list. Make sure that their TREE_CONTEXT is
     the new FUNCTION_DECL node.  */
  arglist = NULL_TREE;
1894
  hidden_arglist = NULL_TREE;
1895
  typelist = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1896 1897 1898 1899

  if (sym->attr.entry_master)
    {
      type = TREE_VALUE (typelist);
1900 1901
      parm = build_decl (input_location,
			 PARM_DECL, get_identifier ("__entry"), type);
1902 1903 1904 1905
      
      DECL_CONTEXT (parm) = fndecl;
      DECL_ARG_TYPE (parm) = type;
      TREE_READONLY (parm) = 1;
1906
      gfc_finish_decl (parm);
1907
      DECL_ARTIFICIAL (parm) = 1;
1908 1909 1910 1911 1912

      arglist = chainon (arglist, parm);
      typelist = TREE_CHAIN (typelist);
    }

1913
  if (gfc_return_by_reference (sym))
1914
    {
1915
      tree type = TREE_VALUE (typelist), length = NULL;
1916

1917 1918 1919
      if (sym->ts.type == BT_CHARACTER)
	{
	  /* Length of character result.  */
1920
	  tree len_type = TREE_VALUE (TREE_CHAIN (typelist));
1921

1922 1923
	  length = build_decl (input_location,
			       PARM_DECL,
1924
			       get_identifier (".__result"),
1925
			       len_type);
1926
	  if (!sym->ts.u.cl->length)
1927
	    {
1928
	      sym->ts.u.cl->backend_decl = length;
1929
	      TREE_USED (length) = 1;
1930
	    }
1931
	  gcc_assert (TREE_CODE (length) == PARM_DECL);
1932
	  DECL_CONTEXT (length) = fndecl;
1933
	  DECL_ARG_TYPE (length) = len_type;
1934
	  TREE_READONLY (length) = 1;
1935
	  DECL_ARTIFICIAL (length) = 1;
1936
	  gfc_finish_decl (length);
1937 1938
	  if (sym->ts.u.cl->backend_decl == NULL
	      || sym->ts.u.cl->backend_decl == length)
1939 1940 1941
	    {
	      gfc_symbol *arg;
	      tree backend_decl;
1942

1943
	      if (sym->ts.u.cl->backend_decl == NULL)
1944
		{
1945 1946
		  tree len = build_decl (input_location,
					 VAR_DECL,
1947 1948 1949 1950
					 get_identifier ("..__result"),
					 gfc_charlen_type_node);
		  DECL_ARTIFICIAL (len) = 1;
		  TREE_USED (len) = 1;
1951
		  sym->ts.u.cl->backend_decl = len;
1952
		}
1953

1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964
	      /* Make sure PARM_DECL type doesn't point to incomplete type.  */
	      arg = sym->result ? sym->result : sym;
	      backend_decl = arg->backend_decl;
	      /* Temporary clear it, so that gfc_sym_type creates complete
		 type.  */
	      arg->backend_decl = NULL;
	      type = gfc_sym_type (arg);
	      arg->backend_decl = backend_decl;
	      type = build_reference_type (type);
	    }
	}
1965

1966 1967
      parm = build_decl (input_location,
			 PARM_DECL, get_identifier ("__result"), type);
1968

1969 1970 1971 1972
      DECL_CONTEXT (parm) = fndecl;
      DECL_ARG_TYPE (parm) = TREE_VALUE (typelist);
      TREE_READONLY (parm) = 1;
      DECL_ARTIFICIAL (parm) = 1;
1973
      gfc_finish_decl (parm);
1974

1975 1976
      arglist = chainon (arglist, parm);
      typelist = TREE_CHAIN (typelist);
1977

1978 1979 1980 1981
      if (sym->ts.type == BT_CHARACTER)
	{
	  gfc_allocate_lang_decl (parm);
	  arglist = chainon (arglist, length);
1982 1983 1984
	  typelist = TREE_CHAIN (typelist);
	}
    }
1985

1986 1987 1988 1989 1990
  hidden_typelist = typelist;
  for (f = sym->formal; f; f = f->next)
    if (f->sym != NULL)	/* Ignore alternate returns.  */
      hidden_typelist = TREE_CHAIN (hidden_typelist);

1991 1992 1993
  for (f = sym->formal; f; f = f->next)
    {
      char name[GFC_MAX_SYMBOL_LEN + 2];
1994

1995 1996 1997
      /* Ignore alternate returns.  */
      if (f->sym == NULL)
	continue;
1998

1999
      type = TREE_VALUE (typelist);
2000

2001 2002
      if (f->sym->ts.type == BT_CHARACTER
	  && (!sym->attr.is_bind_c || sym->attr.entry_master))
2003 2004 2005
	{
	  tree len_type = TREE_VALUE (hidden_typelist);
	  tree length = NULL_TREE;
2006 2007 2008 2009
	  if (!f->sym->ts.deferred)
	    gcc_assert (len_type == gfc_charlen_type_node);
	  else
	    gcc_assert (POINTER_TYPE_P (len_type));
2010 2011 2012

	  strcpy (&name[1], f->sym->name);
	  name[0] = '_';
2013 2014
	  length = build_decl (input_location,
			       PARM_DECL, get_identifier (name), len_type);
2015

2016 2017 2018 2019 2020
	  hidden_arglist = chainon (hidden_arglist, length);
	  DECL_CONTEXT (length) = fndecl;
	  DECL_ARTIFICIAL (length) = 1;
	  DECL_ARG_TYPE (length) = len_type;
	  TREE_READONLY (length) = 1;
2021
	  gfc_finish_decl (length);
2022

2023
	  /* Remember the passed value.  */
2024
          if (f->sym->ts.u.cl->passed_length != NULL)
2025 2026 2027 2028
            {
	      /* This can happen if the same type is used for multiple
		 arguments. We need to copy cl as otherwise
		 cl->passed_length gets overwritten.  */
2029
	      f->sym->ts.u.cl = gfc_new_charlen (f->sym->ns, f->sym->ts.u.cl);
2030
            }
2031
	  f->sym->ts.u.cl->passed_length = length;
2032

2033
	  /* Use the passed value for assumed length variables.  */
2034
	  if (!f->sym->ts.u.cl->length)
2035
	    {
2036
	      TREE_USED (length) = 1;
2037 2038
	      gcc_assert (!f->sym->ts.u.cl->backend_decl);
	      f->sym->ts.u.cl->backend_decl = length;
2039 2040 2041 2042
	    }

	  hidden_typelist = TREE_CHAIN (hidden_typelist);

2043 2044
	  if (f->sym->ts.u.cl->backend_decl == NULL
	      || f->sym->ts.u.cl->backend_decl == length)
2045
	    {
2046
	      if (f->sym->ts.u.cl->backend_decl == NULL)
2047 2048 2049 2050 2051 2052 2053
		gfc_create_string_length (f->sym);

	      /* Make sure PARM_DECL type doesn't point to incomplete type.  */
	      if (f->sym->attr.flavor == FL_PROCEDURE)
		type = build_pointer_type (gfc_get_function_type (f->sym));
	      else
		type = gfc_sym_type (f->sym);
2054 2055 2056
	    }
	}

2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
      /* For non-constant length array arguments, make sure they use
	 a different type node from TYPE_ARG_TYPES type.  */
      if (f->sym->attr.dimension
	  && type == TREE_VALUE (typelist)
	  && TREE_CODE (type) == POINTER_TYPE
	  && GFC_ARRAY_TYPE_P (type)
	  && f->sym->as->type != AS_ASSUMED_SIZE
	  && ! COMPLETE_TYPE_P (TREE_TYPE (type)))
	{
	  if (f->sym->attr.flavor == FL_PROCEDURE)
	    type = build_pointer_type (gfc_get_function_type (f->sym));
	  else
	    type = gfc_sym_type (f->sym);
	}

2072 2073 2074
      if (f->sym->attr.proc_pointer)
        type = build_pointer_type (type);

2075 2076 2077
      if (f->sym->attr.volatile_)
	type = build_qualified_type (type, TYPE_QUAL_VOLATILE);

2078
      /* Build the argument declaration.  */
2079 2080
      parm = build_decl (input_location,
			 PARM_DECL, gfc_sym_identifier (f->sym), type);
2081

2082 2083 2084 2085 2086 2087
      if (f->sym->attr.volatile_)
	{
	  TREE_THIS_VOLATILE (parm) = 1;
	  TREE_SIDE_EFFECTS (parm) = 1;
	}

2088 2089 2090 2091 2092
      /* Fill in arg stuff.  */
      DECL_CONTEXT (parm) = fndecl;
      DECL_ARG_TYPE (parm) = TREE_VALUE (typelist);
      /* All implementation args are read-only.  */
      TREE_READONLY (parm) = 1;
2093 2094 2095 2096
      if (POINTER_TYPE_P (type)
	  && (!f->sym->attr.proc_pointer
	      && f->sym->attr.flavor != FL_PROCEDURE))
	DECL_BY_REFERENCE (parm) = 1;
2097

2098
      gfc_finish_decl (parm);
2099 2100 2101 2102

      f->sym->backend_decl = parm;

      arglist = chainon (arglist, parm);
2103
      typelist = TREE_CHAIN (typelist);
2104
    }
2105

2106 2107 2108 2109
  /* Add the hidden string length parameters, unless the procedure
     is bind(C).  */
  if (!sym->attr.is_bind_c)
    arglist = chainon (arglist, hidden_arglist);
2110

2111 2112
  gcc_assert (hidden_typelist == NULL_TREE
              || TREE_VALUE (hidden_typelist) == void_type_node);
2113
  DECL_ARGUMENTS (fndecl) = arglist;
2114
}
2115

2116 2117 2118 2119 2120 2121 2122 2123 2124
/* Do the setup necessary before generating the body of a function.  */

static void
trans_function_start (gfc_symbol * sym)
{
  tree fndecl;

  fndecl = sym->backend_decl;

2125
  /* Let GCC know the current scope is this function.  */
2126 2127
  current_function_decl = fndecl;

2128
  /* Let the world know what we're about to do.  */
2129 2130
  announce_function (fndecl);

2131
  if (DECL_FILE_SCOPE_P (fndecl))
2132
    {
2133
      /* Create RTL for function declaration.  */
2134 2135 2136
      rest_of_decl_compilation (fndecl, 1, 0);
    }

2137
  /* Create RTL for function definition.  */
2138 2139 2140 2141
  make_decl_rtl (fndecl);

  init_function_start (fndecl);

2142
  /* function.c requires a push at the start of the function.  */
2143 2144 2145 2146 2147 2148
  pushlevel (0);
}

/* Create thunks for alternate entry points.  */

static void
2149
build_entry_thunks (gfc_namespace * ns, bool global)
2150 2151 2152 2153 2154 2155 2156 2157
{
  gfc_formal_arglist *formal;
  gfc_formal_arglist *thunk_formal;
  gfc_entry_list *el;
  gfc_symbol *thunk_sym;
  stmtblock_t body;
  tree thunk_fndecl;
  tree tmp;
2158
  locus old_loc;
2159 2160

  /* This should always be a toplevel function.  */
2161
  gcc_assert (current_function_decl == NULL_TREE);
2162

2163
  gfc_save_backend_locus (&old_loc);
2164 2165
  for (el = ns->entries; el; el = el->next)
    {
2166 2167 2168
      VEC(tree,gc) *args = NULL;
      VEC(tree,gc) *string_args = NULL;

2169 2170
      thunk_sym = el->sym;
      
2171
      build_function_decl (thunk_sym, global);
2172 2173 2174 2175 2176 2177
      create_function_arglist (thunk_sym);

      trans_function_start (thunk_sym);

      thunk_fndecl = thunk_sym->backend_decl;

2178
      gfc_init_block (&body);
2179

2180
      /* Pass extra parameter identifying this entry point.  */
2181
      tmp = build_int_cst (gfc_array_index_type, el->id);
2182
      VEC_safe_push (tree, gc, args, tmp);
2183

Jakub Jelinek committed
2184 2185 2186 2187 2188
      if (thunk_sym->attr.function)
	{
	  if (gfc_return_by_reference (ns->proc_name))
	    {
	      tree ref = DECL_ARGUMENTS (current_function_decl);
2189
	      VEC_safe_push (tree, gc, args, ref);
Jakub Jelinek committed
2190
	      if (ns->proc_name->ts.type == BT_CHARACTER)
2191
		VEC_safe_push (tree, gc, args, DECL_CHAIN (ref));
Jakub Jelinek committed
2192 2193 2194
	    }
	}

2195 2196
      for (formal = ns->proc_name->formal; formal; formal = formal->next)
	{
Jakub Jelinek committed
2197 2198 2199 2200
	  /* Ignore alternate returns.  */
	  if (formal->sym == NULL)
	    continue;

2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213
	  /* We don't have a clever way of identifying arguments, so resort to
	     a brute-force search.  */
	  for (thunk_formal = thunk_sym->formal;
	       thunk_formal;
	       thunk_formal = thunk_formal->next)
	    {
	      if (thunk_formal->sym == formal->sym)
		break;
	    }

	  if (thunk_formal)
	    {
	      /* Pass the argument.  */
2214
	      DECL_ARTIFICIAL (thunk_formal->sym->backend_decl) = 1;
2215
	      VEC_safe_push (tree, gc, args, thunk_formal->sym->backend_decl);
2216 2217
	      if (formal->sym->ts.type == BT_CHARACTER)
		{
2218
		  tmp = thunk_formal->sym->ts.u.cl->backend_decl;
2219
		  VEC_safe_push (tree, gc, string_args, tmp);
2220 2221 2222 2223 2224
		}
	    }
	  else
	    {
	      /* Pass NULL for a missing argument.  */
2225
	      VEC_safe_push (tree, gc, args, null_pointer_node);
2226 2227
	      if (formal->sym->ts.type == BT_CHARACTER)
		{
2228
		  tmp = build_int_cst (gfc_charlen_type_node, 0);
2229
		  VEC_safe_push (tree, gc, string_args, tmp);
2230 2231 2232 2233 2234
		}
	    }
	}

      /* Call the master function.  */
2235
      VEC_safe_splice (tree, gc, args, string_args);
2236
      tmp = ns->proc_name->backend_decl;
2237
      tmp = build_call_expr_loc_vec (input_location, tmp, args);
Jakub Jelinek committed
2238 2239 2240 2241 2242
      if (ns->proc_name->attr.mixed_entry_master)
	{
	  tree union_decl, field;
	  tree master_type = TREE_TYPE (ns->proc_name->backend_decl);

2243 2244
	  union_decl = build_decl (input_location,
				   VAR_DECL, get_identifier ("__result"),
Jakub Jelinek committed
2245 2246 2247 2248 2249 2250 2251 2252 2253
				   TREE_TYPE (master_type));
	  DECL_ARTIFICIAL (union_decl) = 1;
	  DECL_EXTERNAL (union_decl) = 0;
	  TREE_PUBLIC (union_decl) = 0;
	  TREE_USED (union_decl) = 1;
	  layout_decl (union_decl, 0);
	  pushdecl (union_decl);

	  DECL_CONTEXT (union_decl) = current_function_decl;
2254 2255
	  tmp = fold_build2_loc (input_location, MODIFY_EXPR,
				 TREE_TYPE (union_decl), union_decl, tmp);
Jakub Jelinek committed
2256 2257 2258
	  gfc_add_expr_to_block (&body, tmp);

	  for (field = TYPE_FIELDS (TREE_TYPE (union_decl));
2259
	       field; field = DECL_CHAIN (field))
Jakub Jelinek committed
2260 2261 2262 2263
	    if (strcmp (IDENTIFIER_POINTER (DECL_NAME (field)),
		thunk_sym->result->name) == 0)
	      break;
	  gcc_assert (field != NULL_TREE);
2264 2265 2266 2267
	  tmp = fold_build3_loc (input_location, COMPONENT_REF,
				 TREE_TYPE (field), union_decl, field,
				 NULL_TREE);
	  tmp = fold_build2_loc (input_location, MODIFY_EXPR, 
2268 2269
			     TREE_TYPE (DECL_RESULT (current_function_decl)),
			     DECL_RESULT (current_function_decl), tmp);
Jakub Jelinek committed
2270 2271 2272 2273 2274
	  tmp = build1_v (RETURN_EXPR, tmp);
	}
      else if (TREE_TYPE (DECL_RESULT (current_function_decl))
	       != void_type_node)
	{
2275
	  tmp = fold_build2_loc (input_location, MODIFY_EXPR,
2276 2277
			     TREE_TYPE (DECL_RESULT (current_function_decl)),
			     DECL_RESULT (current_function_decl), tmp);
Jakub Jelinek committed
2278 2279
	  tmp = build1_v (RETURN_EXPR, tmp);
	}
2280 2281 2282 2283
      gfc_add_expr_to_block (&body, tmp);

      /* Finish off this function and send it for code generation.  */
      DECL_SAVED_TREE (thunk_fndecl) = gfc_finish_block (&body);
2284
      tmp = getdecls ();
2285 2286
      poplevel (1, 0, 1);
      BLOCK_SUPERCONTEXT (DECL_INITIAL (thunk_fndecl)) = thunk_fndecl;
2287 2288 2289
      DECL_SAVED_TREE (thunk_fndecl)
	= build3_v (BIND_EXPR, tmp, DECL_SAVED_TREE (thunk_fndecl),
		    DECL_INITIAL (thunk_fndecl));
2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300

      /* Output the GENERIC tree.  */
      dump_function (TDI_original, thunk_fndecl);

      /* Store the end of the function, so that we get good line number
	 info for the epilogue.  */
      cfun->function_end_locus = input_location;

      /* We're leaving the context of this function, so zap cfun.
	 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
	 tree_rest_of_compilation.  */
2301
      set_cfun (NULL);
2302 2303 2304

      current_function_decl = NULL_TREE;

2305
      cgraph_finalize_function (thunk_fndecl, true);
2306 2307 2308 2309 2310

      /* We share the symbols in the formal argument list with other entry
	 points and the master function.  Clear them so that they are
	 recreated for each function.  */
      for (formal = thunk_sym->formal; formal; formal = formal->next)
Jakub Jelinek committed
2311 2312 2313 2314
	if (formal->sym != NULL)  /* Ignore alternate returns.  */
	  {
	    formal->sym->backend_decl = NULL_TREE;
	    if (formal->sym->ts.type == BT_CHARACTER)
2315
	      formal->sym->ts.u.cl->backend_decl = NULL_TREE;
Jakub Jelinek committed
2316 2317 2318
	  }

      if (thunk_sym->attr.function)
2319
	{
Jakub Jelinek committed
2320
	  if (thunk_sym->ts.type == BT_CHARACTER)
2321
	    thunk_sym->ts.u.cl->backend_decl = NULL_TREE;
Jakub Jelinek committed
2322
	  if (thunk_sym->result->ts.type == BT_CHARACTER)
2323
	    thunk_sym->result->ts.u.cl->backend_decl = NULL_TREE;
2324 2325
	}
    }
2326

2327
  gfc_restore_backend_locus (&old_loc);
2328 2329 2330 2331
}


/* Create a decl for a function, and create any thunks for alternate entry
2332 2333
   points. If global is true, generate the function in the global binding
   level, otherwise in the current binding level (which can be global).  */
2334 2335

void
2336
gfc_create_function_decl (gfc_namespace * ns, bool global)
2337 2338
{
  /* Create a declaration for the master function.  */
2339
  build_function_decl (ns->proc_name, global);
2340

2341
  /* Compile the entry thunks.  */
2342
  if (ns->entries)
2343
    build_entry_thunks (ns, global);
2344 2345 2346 2347 2348

  /* Now create the read argument list.  */
  create_function_arglist (ns->proc_name);
}

2349
/* Return the decl used to hold the function return value.  If
2350
   parent_flag is set, the context is the parent_scope.  */
2351 2352

tree
2353
gfc_get_fake_result_decl (gfc_symbol * sym, int parent_flag)
2354
{
2355 2356 2357 2358
  tree decl;
  tree length;
  tree this_fake_result_decl;
  tree this_function_decl;
2359 2360 2361

  char name[GFC_MAX_SYMBOL_LEN + 10];

2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372
  if (parent_flag)
    {
      this_fake_result_decl = parent_fake_result_decl;
      this_function_decl = DECL_CONTEXT (current_function_decl);
    }
  else
    {
      this_fake_result_decl = current_fake_result_decl;
      this_function_decl = current_function_decl;
    }

Jakub Jelinek committed
2373
  if (sym
2374
      && sym->ns->proc_name->backend_decl == this_function_decl
2375
      && sym->ns->proc_name->attr.entry_master
Jakub Jelinek committed
2376 2377
      && sym != sym->ns->proc_name)
    {
2378
      tree t = NULL, var;
2379 2380
      if (this_fake_result_decl != NULL)
	for (t = TREE_CHAIN (this_fake_result_decl); t; t = TREE_CHAIN (t))
2381 2382 2383 2384
	  if (strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t)), sym->name) == 0)
	    break;
      if (t)
	return TREE_VALUE (t);
2385 2386 2387 2388 2389 2390 2391
      decl = gfc_get_fake_result_decl (sym->ns->proc_name, parent_flag);

      if (parent_flag)
	this_fake_result_decl = parent_fake_result_decl;
      else
	this_fake_result_decl = current_fake_result_decl;

2392
      if (decl && sym->ns->proc_name->attr.mixed_entry_master)
Jakub Jelinek committed
2393 2394 2395 2396
	{
	  tree field;

	  for (field = TYPE_FIELDS (TREE_TYPE (decl));
2397
	       field; field = DECL_CHAIN (field))
Jakub Jelinek committed
2398 2399 2400 2401 2402
	    if (strcmp (IDENTIFIER_POINTER (DECL_NAME (field)),
		sym->name) == 0)
	      break;

	  gcc_assert (field != NULL_TREE);
2403 2404
	  decl = fold_build3_loc (input_location, COMPONENT_REF,
				  TREE_TYPE (field), decl, field, NULL_TREE);
Jakub Jelinek committed
2405
	}
2406 2407 2408 2409 2410 2411 2412

      var = create_tmp_var_raw (TREE_TYPE (decl), sym->name);
      if (parent_flag)
	gfc_add_decl_to_parent_function (var);
      else
	gfc_add_decl_to_function (var);

2413 2414
      SET_DECL_VALUE_EXPR (var, decl);
      DECL_HAS_VALUE_EXPR_P (var) = 1;
2415
      GFC_DECL_RESULT (var) = 1;
2416 2417 2418 2419

      TREE_CHAIN (this_fake_result_decl)
	  = tree_cons (get_identifier (sym->name), var,
		       TREE_CHAIN (this_fake_result_decl));
2420
      return var;
Jakub Jelinek committed
2421 2422
    }

2423 2424
  if (this_fake_result_decl != NULL_TREE)
    return TREE_VALUE (this_fake_result_decl);
2425 2426 2427 2428 2429 2430

  /* Only when gfc_get_fake_result_decl is called by gfc_trans_return,
     sym is NULL.  */
  if (!sym)
    return NULL_TREE;

2431
  if (sym->ts.type == BT_CHARACTER)
2432
    {
2433
      if (sym->ts.u.cl->backend_decl == NULL_TREE)
2434 2435
	length = gfc_create_string_length (sym);
      else
2436
	length = sym->ts.u.cl->backend_decl;
2437 2438
      if (TREE_CODE (length) == VAR_DECL
	  && DECL_CONTEXT (length) == NULL_TREE)
2439
	gfc_add_decl_to_function (length);
2440 2441 2442 2443
    }

  if (gfc_return_by_reference (sym))
    {
2444
      decl = DECL_ARGUMENTS (this_function_decl);
Jakub Jelinek committed
2445

2446
      if (sym->ns->proc_name->backend_decl == this_function_decl
Jakub Jelinek committed
2447
	  && sym->ns->proc_name->attr.entry_master)
2448
	decl = DECL_CHAIN (decl);
2449 2450 2451 2452 2453 2454 2455 2456

      TREE_USED (decl) = 1;
      if (sym->as)
	decl = gfc_build_dummy_array_decl (sym, decl);
    }
  else
    {
      sprintf (name, "__result_%.20s",
2457
	       IDENTIFIER_POINTER (DECL_NAME (this_function_decl)));
2458

2459
      if (!sym->attr.mixed_entry_master && sym->attr.function)
2460
	decl = build_decl (DECL_SOURCE_LOCATION (this_function_decl),
2461
			   VAR_DECL, get_identifier (name),
2462 2463
			   gfc_sym_type (sym));
      else
2464
	decl = build_decl (DECL_SOURCE_LOCATION (this_function_decl),
2465
			   VAR_DECL, get_identifier (name),
2466
			   TREE_TYPE (TREE_TYPE (this_function_decl)));
2467 2468 2469 2470
      DECL_ARTIFICIAL (decl) = 1;
      DECL_EXTERNAL (decl) = 0;
      TREE_PUBLIC (decl) = 0;
      TREE_USED (decl) = 1;
2471
      GFC_DECL_RESULT (decl) = 1;
2472
      TREE_ADDRESSABLE (decl) = 1;
2473 2474 2475

      layout_decl (decl, 0);

2476 2477 2478 2479
      if (parent_flag)
	gfc_add_decl_to_parent_function (decl);
      else
	gfc_add_decl_to_function (decl);
2480 2481
    }

2482 2483 2484 2485
  if (parent_flag)
    parent_fake_result_decl = build_tree_list (NULL, decl);
  else
    current_fake_result_decl = build_tree_list (NULL, decl);
2486 2487 2488 2489 2490 2491 2492 2493

  return decl;
}


/* Builds a function decl.  The remaining parameters are the types of the
   function arguments.  Negative nargs indicates a varargs function.  */

2494 2495 2496
static tree
build_library_function_decl_1 (tree name, const char *spec,
			       tree rettype, int nargs, va_list p)
2497
{
2498
  VEC(tree,gc) *arglist;
2499 2500 2501 2502 2503
  tree fntype;
  tree fndecl;
  int n;

  /* Library functions must be declared with global scope.  */
2504
  gcc_assert (current_function_decl == NULL_TREE);
2505 2506

  /* Create a list of the argument types.  */
2507 2508
  arglist = VEC_alloc (tree, gc, abs (nargs));
  for (n = abs (nargs); n > 0; n--)
2509
    {
2510 2511
      tree argtype = va_arg (p, tree);
      VEC_quick_push (tree, arglist, argtype);
2512 2513 2514
    }

  /* Build the function type and decl.  */
2515 2516 2517 2518
  if (nargs >= 0)
    fntype = build_function_type_vec (rettype, arglist);
  else
    fntype = build_varargs_function_type_vec (rettype, arglist);
2519 2520 2521 2522 2523 2524 2525 2526
  if (spec)
    {
      tree attr_args = build_tree_list (NULL_TREE,
					build_string (strlen (spec), spec));
      tree attrs = tree_cons (get_identifier ("fn spec"),
			      attr_args, TYPE_ATTRIBUTES (fntype));
      fntype = build_type_attribute_variant (fntype, attrs);
    }
2527 2528
  fndecl = build_decl (input_location,
		       FUNCTION_DECL, name, fntype);
2529 2530 2531 2532 2533 2534 2535

  /* Mark this decl as external.  */
  DECL_EXTERNAL (fndecl) = 1;
  TREE_PUBLIC (fndecl) = 1;

  pushdecl (fndecl);

2536
  rest_of_decl_compilation (fndecl, 1, 0);
2537 2538 2539 2540

  return fndecl;
}

2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559
/* Builds a function decl.  The remaining parameters are the types of the
   function arguments.  Negative nargs indicates a varargs function.  */

tree
gfc_build_library_function_decl (tree name, tree rettype, int nargs, ...)
{
  tree ret;
  va_list args;
  va_start (args, nargs);
  ret = build_library_function_decl_1 (name, NULL, rettype, nargs, args);
  va_end (args);
  return ret;
}

/* Builds a function decl.  The remaining parameters are the types of the
   function arguments.  Negative nargs indicates a varargs function.
   The SPEC parameter specifies the function argument and return type
   specification according to the fnspec function type attribute.  */

2560
tree
2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571
gfc_build_library_function_decl_with_spec (tree name, const char *spec,
					   tree rettype, int nargs, ...)
{
  tree ret;
  va_list args;
  va_start (args, nargs);
  ret = build_library_function_decl_1 (name, spec, rettype, nargs, args);
  va_end (args);
  return ret;
}

2572 2573 2574
static void
gfc_build_intrinsic_function_decls (void)
{
2575 2576
  tree gfc_int4_type_node = gfc_get_int_type (4);
  tree gfc_int8_type_node = gfc_get_int_type (8);
2577
  tree gfc_int16_type_node = gfc_get_int_type (16);
2578
  tree gfc_logical4_type_node = gfc_get_logical_type (4);
2579 2580
  tree pchar1_type_node = gfc_get_pchar_type (1);
  tree pchar4_type_node = gfc_get_pchar_type (4);
2581

2582
  /* String functions.  */
2583 2584 2585 2586
  gfor_fndecl_compare_string = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("compare_string")), "..R.R",
	integer_type_node, 4, gfc_charlen_type_node, pchar1_type_node,
	gfc_charlen_type_node, pchar1_type_node);
2587
  DECL_PURE_P (gfor_fndecl_compare_string) = 1;
2588
  TREE_NOTHROW (gfor_fndecl_compare_string) = 1;
2589 2590 2591 2592 2593 2594

  gfor_fndecl_concat_string = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("concat_string")), "..W.R.R",
	void_type_node, 6, gfc_charlen_type_node, pchar1_type_node,
	gfc_charlen_type_node, pchar1_type_node,
	gfc_charlen_type_node, pchar1_type_node);
2595
  TREE_NOTHROW (gfor_fndecl_concat_string) = 1;
2596 2597 2598 2599

  gfor_fndecl_string_len_trim = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_len_trim")), "..R",
	gfc_charlen_type_node, 2, gfc_charlen_type_node, pchar1_type_node);
2600
  DECL_PURE_P (gfor_fndecl_string_len_trim) = 1;
2601
  TREE_NOTHROW (gfor_fndecl_string_len_trim) = 1;
2602 2603 2604 2605 2606

  gfor_fndecl_string_index = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_index")), "..R.R.",
	gfc_charlen_type_node, 5, gfc_charlen_type_node, pchar1_type_node,
	gfc_charlen_type_node, pchar1_type_node, gfc_logical4_type_node);
2607
  DECL_PURE_P (gfor_fndecl_string_index) = 1;
2608
  TREE_NOTHROW (gfor_fndecl_string_index) = 1;
2609 2610 2611 2612 2613

  gfor_fndecl_string_scan = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_scan")), "..R.R.",
	gfc_charlen_type_node, 5, gfc_charlen_type_node, pchar1_type_node,
	gfc_charlen_type_node, pchar1_type_node, gfc_logical4_type_node);
2614
  DECL_PURE_P (gfor_fndecl_string_scan) = 1;
2615
  TREE_NOTHROW (gfor_fndecl_string_scan) = 1;
2616 2617 2618 2619 2620

  gfor_fndecl_string_verify = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_verify")), "..R.R.",
	gfc_charlen_type_node, 5, gfc_charlen_type_node, pchar1_type_node,
	gfc_charlen_type_node, pchar1_type_node, gfc_logical4_type_node);
2621
  DECL_PURE_P (gfor_fndecl_string_verify) = 1;
2622
  TREE_NOTHROW (gfor_fndecl_string_verify) = 1;
2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639

  gfor_fndecl_string_trim = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_trim")), ".Ww.R",
	void_type_node, 4, build_pointer_type (gfc_charlen_type_node),
	build_pointer_type (pchar1_type_node), gfc_charlen_type_node,
	pchar1_type_node);

  gfor_fndecl_string_minmax = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_minmax")), ".Ww.R",
	void_type_node, -4, build_pointer_type (gfc_charlen_type_node),
	build_pointer_type (pchar1_type_node), integer_type_node,
	integer_type_node);

  gfor_fndecl_adjustl = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("adjustl")), ".W.R",
	void_type_node, 3, pchar1_type_node, gfc_charlen_type_node,
	pchar1_type_node);
2640
  TREE_NOTHROW (gfor_fndecl_adjustl) = 1;
2641 2642 2643 2644 2645

  gfor_fndecl_adjustr = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("adjustr")), ".W.R",
	void_type_node, 3, pchar1_type_node, gfc_charlen_type_node,
	pchar1_type_node);
2646
  TREE_NOTHROW (gfor_fndecl_adjustr) = 1;
2647 2648 2649 2650 2651

  gfor_fndecl_select_string =  gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("select_string")), ".R.R.",
	integer_type_node, 4, pvoid_type_node, integer_type_node,
	pchar1_type_node, gfc_charlen_type_node);
2652
  DECL_PURE_P (gfor_fndecl_select_string) = 1;
2653
  TREE_NOTHROW (gfor_fndecl_select_string) = 1;
2654 2655 2656 2657 2658

  gfor_fndecl_compare_string_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("compare_string_char4")), "..R.R",
	integer_type_node, 4, gfc_charlen_type_node, pchar4_type_node,
	gfc_charlen_type_node, pchar4_type_node);
2659
  DECL_PURE_P (gfor_fndecl_compare_string_char4) = 1;
2660
  TREE_NOTHROW (gfor_fndecl_compare_string_char4) = 1;
2661 2662 2663 2664 2665 2666

  gfor_fndecl_concat_string_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("concat_string_char4")), "..W.R.R",
	void_type_node, 6, gfc_charlen_type_node, pchar4_type_node,
	gfc_charlen_type_node, pchar4_type_node, gfc_charlen_type_node,
	pchar4_type_node);
2667
  TREE_NOTHROW (gfor_fndecl_concat_string_char4) = 1;
2668 2669 2670 2671

  gfor_fndecl_string_len_trim_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_len_trim_char4")), "..R",
	gfc_charlen_type_node, 2, gfc_charlen_type_node, pchar4_type_node);
2672
  DECL_PURE_P (gfor_fndecl_string_len_trim_char4) = 1;
2673
  TREE_NOTHROW (gfor_fndecl_string_len_trim_char4) = 1;
2674 2675 2676 2677 2678

  gfor_fndecl_string_index_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_index_char4")), "..R.R.",
	gfc_charlen_type_node, 5, gfc_charlen_type_node, pchar4_type_node,
	gfc_charlen_type_node, pchar4_type_node, gfc_logical4_type_node);
2679
  DECL_PURE_P (gfor_fndecl_string_index_char4) = 1;
2680
  TREE_NOTHROW (gfor_fndecl_string_index_char4) = 1;
2681 2682 2683 2684 2685

  gfor_fndecl_string_scan_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_scan_char4")), "..R.R.",
	gfc_charlen_type_node, 5, gfc_charlen_type_node, pchar4_type_node,
	gfc_charlen_type_node, pchar4_type_node, gfc_logical4_type_node);
2686
  DECL_PURE_P (gfor_fndecl_string_scan_char4) = 1;
2687
  TREE_NOTHROW (gfor_fndecl_string_scan_char4) = 1;
2688 2689 2690 2691 2692

  gfor_fndecl_string_verify_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_verify_char4")), "..R.R.",
	gfc_charlen_type_node, 5, gfc_charlen_type_node, pchar4_type_node,
	gfc_charlen_type_node, pchar4_type_node, gfc_logical4_type_node);
2693
  DECL_PURE_P (gfor_fndecl_string_verify_char4) = 1;
2694
  TREE_NOTHROW (gfor_fndecl_string_verify_char4) = 1;
2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711

  gfor_fndecl_string_trim_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_trim_char4")), ".Ww.R",
	void_type_node, 4, build_pointer_type (gfc_charlen_type_node),
	build_pointer_type (pchar4_type_node), gfc_charlen_type_node,
	pchar4_type_node);

  gfor_fndecl_string_minmax_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("string_minmax_char4")), ".Ww.R",
	void_type_node, -4, build_pointer_type (gfc_charlen_type_node),
	build_pointer_type (pchar4_type_node), integer_type_node,
	integer_type_node);

  gfor_fndecl_adjustl_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("adjustl_char4")), ".W.R",
	void_type_node, 3, pchar4_type_node, gfc_charlen_type_node,
	pchar4_type_node);
2712
  TREE_NOTHROW (gfor_fndecl_adjustl_char4) = 1;
2713 2714 2715 2716 2717

  gfor_fndecl_adjustr_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("adjustr_char4")), ".W.R",
	void_type_node, 3, pchar4_type_node, gfc_charlen_type_node,
	pchar4_type_node);
2718
  TREE_NOTHROW (gfor_fndecl_adjustr_char4) = 1;
2719 2720 2721 2722 2723

  gfor_fndecl_select_string_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("select_string_char4")), ".R.R.",
	integer_type_node, 4, pvoid_type_node, integer_type_node,
	pvoid_type_node, gfc_charlen_type_node);
2724
  DECL_PURE_P (gfor_fndecl_select_string_char4) = 1;
2725
  TREE_NOTHROW (gfor_fndecl_select_string_char4) = 1;
2726 2727 2728 2729


  /* Conversion between character kinds.  */

2730 2731 2732 2733
  gfor_fndecl_convert_char1_to_char4 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("convert_char1_to_char4")), ".w.R",
	void_type_node, 3, build_pointer_type (pchar4_type_node),
	gfc_charlen_type_node, pchar1_type_node);
2734

2735 2736 2737 2738
  gfor_fndecl_convert_char4_to_char1 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("convert_char4_to_char1")), ".w.R",
	void_type_node, 3, build_pointer_type (pchar1_type_node),
	gfc_charlen_type_node, pchar4_type_node);
2739

2740
  /* Misc. functions.  */
2741

2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758
  gfor_fndecl_ttynam = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("ttynam")), ".W",
	void_type_node, 3, pchar_type_node, gfc_charlen_type_node,
	integer_type_node);

  gfor_fndecl_fdate = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("fdate")), ".W",
	void_type_node, 2, pchar_type_node, gfc_charlen_type_node);

  gfor_fndecl_ctime = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("ctime")), ".W",
	void_type_node, 3, pchar_type_node, gfc_charlen_type_node,
	gfc_int8_type_node);

  gfor_fndecl_sc_kind = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("selected_char_kind")), "..R",
	gfc_int4_type_node, 2, gfc_charlen_type_node, pchar_type_node);
2759
  DECL_PURE_P (gfor_fndecl_sc_kind) = 1;
2760
  TREE_NOTHROW (gfor_fndecl_sc_kind) = 1;
2761 2762 2763 2764

  gfor_fndecl_si_kind = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("selected_int_kind")), ".R",
	gfc_int4_type_node, 1, pvoid_type_node);
2765
  DECL_PURE_P (gfor_fndecl_si_kind) = 1;
2766
  TREE_NOTHROW (gfor_fndecl_si_kind) = 1;
2767 2768 2769 2770 2771

  gfor_fndecl_sr_kind = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("selected_real_kind2008")), ".RR",
	gfc_int4_type_node, 3, pvoid_type_node, pvoid_type_node,
	pvoid_type_node);
2772
  DECL_PURE_P (gfor_fndecl_sr_kind) = 1;
2773
  TREE_NOTHROW (gfor_fndecl_sr_kind) = 1;
2774 2775

  /* Power functions.  */
2776
  {
2777 2778 2779 2780 2781 2782 2783 2784 2785
    tree ctype, rtype, itype, jtype;
    int rkind, ikind, jkind;
#define NIKINDS 3
#define NRKINDS 4
    static int ikinds[NIKINDS] = {4, 8, 16};
    static int rkinds[NRKINDS] = {4, 8, 10, 16};
    char name[PREFIX_LEN + 12]; /* _gfortran_pow_?n_?n */

    for (ikind=0; ikind < NIKINDS; ikind++)
2786
      {
2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798
	itype = gfc_get_int_type (ikinds[ikind]);

	for (jkind=0; jkind < NIKINDS; jkind++)
	  {
	    jtype = gfc_get_int_type (ikinds[jkind]);
	    if (itype && jtype)
	      {
		sprintf(name, PREFIX("pow_i%d_i%d"), ikinds[ikind],
			ikinds[jkind]);
		gfor_fndecl_math_powi[jkind][ikind].integer =
		  gfc_build_library_function_decl (get_identifier (name),
		    jtype, 2, jtype, itype);
2799
		TREE_READONLY (gfor_fndecl_math_powi[jkind][ikind].integer) = 1;
2800
		TREE_NOTHROW (gfor_fndecl_math_powi[jkind][ikind].integer) = 1;
2801 2802 2803 2804
	      }
	  }

	for (rkind = 0; rkind < NRKINDS; rkind ++)
2805
	  {
2806 2807 2808 2809 2810 2811 2812 2813
	    rtype = gfc_get_real_type (rkinds[rkind]);
	    if (rtype && itype)
	      {
		sprintf(name, PREFIX("pow_r%d_i%d"), rkinds[rkind],
			ikinds[ikind]);
		gfor_fndecl_math_powi[rkind][ikind].real =
		  gfc_build_library_function_decl (get_identifier (name),
		    rtype, 2, rtype, itype);
2814
		TREE_READONLY (gfor_fndecl_math_powi[rkind][ikind].real) = 1;
2815
		TREE_NOTHROW (gfor_fndecl_math_powi[rkind][ikind].real) = 1;
2816 2817 2818 2819 2820 2821 2822 2823 2824 2825
	      }

	    ctype = gfc_get_complex_type (rkinds[rkind]);
	    if (ctype && itype)
	      {
		sprintf(name, PREFIX("pow_c%d_i%d"), rkinds[rkind],
			ikinds[ikind]);
		gfor_fndecl_math_powi[rkind][ikind].cmplx =
		  gfc_build_library_function_decl (get_identifier (name),
		    ctype, 2,ctype, itype);
2826
		TREE_READONLY (gfor_fndecl_math_powi[rkind][ikind].cmplx) = 1;
2827
		TREE_NOTHROW (gfor_fndecl_math_powi[rkind][ikind].cmplx) = 1;
2828
	      }
2829 2830
	  }
      }
2831 2832
#undef NIKINDS
#undef NRKINDS
2833 2834
  }

2835 2836 2837 2838
  gfor_fndecl_math_ishftc4 = gfc_build_library_function_decl (
	get_identifier (PREFIX("ishftc4")),
	gfc_int4_type_node, 3, gfc_int4_type_node, gfc_int4_type_node,
	gfc_int4_type_node);
2839 2840
  TREE_READONLY (gfor_fndecl_math_ishftc4) = 1;
  TREE_NOTHROW (gfor_fndecl_math_ishftc4) = 1;
2841 2842 2843 2844 2845
	
  gfor_fndecl_math_ishftc8 = gfc_build_library_function_decl (
	get_identifier (PREFIX("ishftc8")),
	gfc_int8_type_node, 3, gfc_int8_type_node, gfc_int4_type_node,
	gfc_int4_type_node);
2846 2847
  TREE_READONLY (gfor_fndecl_math_ishftc8) = 1;
  TREE_NOTHROW (gfor_fndecl_math_ishftc8) = 1;
2848

2849
  if (gfc_int16_type_node)
2850 2851
    {
      gfor_fndecl_math_ishftc16 = gfc_build_library_function_decl (
2852 2853 2854
	get_identifier (PREFIX("ishftc16")),
	gfc_int16_type_node, 3, gfc_int16_type_node, gfc_int4_type_node,
	gfc_int4_type_node);
2855 2856 2857
      TREE_READONLY (gfor_fndecl_math_ishftc16) = 1;
      TREE_NOTHROW (gfor_fndecl_math_ishftc16) = 1;
    }
2858

2859 2860
  /* BLAS functions.  */
  {
2861
    tree pint = build_pointer_type (integer_type_node);
2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873
    tree ps = build_pointer_type (gfc_get_real_type (gfc_default_real_kind));
    tree pd = build_pointer_type (gfc_get_real_type (gfc_default_double_kind));
    tree pc = build_pointer_type (gfc_get_complex_type (gfc_default_real_kind));
    tree pz = build_pointer_type
		(gfc_get_complex_type (gfc_default_double_kind));

    gfor_fndecl_sgemm = gfc_build_library_function_decl
			  (get_identifier
			     (gfc_option.flag_underscoring ? "sgemm_"
							   : "sgemm"),
			   void_type_node, 15, pchar_type_node,
			   pchar_type_node, pint, pint, pint, ps, ps, pint,
2874 2875
			   ps, pint, ps, ps, pint, integer_type_node,
			   integer_type_node);
2876 2877 2878 2879 2880 2881
    gfor_fndecl_dgemm = gfc_build_library_function_decl
			  (get_identifier
			     (gfc_option.flag_underscoring ? "dgemm_"
							   : "dgemm"),
			   void_type_node, 15, pchar_type_node,
			   pchar_type_node, pint, pint, pint, pd, pd, pint,
2882 2883
			   pd, pint, pd, pd, pint, integer_type_node,
			   integer_type_node);
2884 2885 2886 2887 2888 2889
    gfor_fndecl_cgemm = gfc_build_library_function_decl
			  (get_identifier
			     (gfc_option.flag_underscoring ? "cgemm_"
							   : "cgemm"),
			   void_type_node, 15, pchar_type_node,
			   pchar_type_node, pint, pint, pint, pc, pc, pint,
2890 2891
			   pc, pint, pc, pc, pint, integer_type_node,
			   integer_type_node);
2892 2893 2894 2895 2896 2897
    gfor_fndecl_zgemm = gfc_build_library_function_decl
			  (get_identifier
			     (gfc_option.flag_underscoring ? "zgemm_"
							   : "zgemm"),
			   void_type_node, 15, pchar_type_node,
			   pchar_type_node, pint, pint, pint, pz, pz, pint,
2898 2899
			   pz, pint, pz, pz, pint, integer_type_node,
			   integer_type_node);
2900 2901
  }

2902
  /* Other functions.  */
2903 2904 2905
  gfor_fndecl_size0 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("size0")), ".R",
	gfc_array_index_type, 1, pvoid_type_node);
2906
  DECL_PURE_P (gfor_fndecl_size0) = 1;
2907
  TREE_NOTHROW (gfor_fndecl_size0) = 1;
2908 2909 2910 2911

  gfor_fndecl_size1 = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("size1")), ".R",
	gfc_array_index_type, 2, pvoid_type_node, gfc_array_index_type);
2912
  DECL_PURE_P (gfor_fndecl_size1) = 1;
2913
  TREE_NOTHROW (gfor_fndecl_size1) = 1;
2914 2915 2916

  gfor_fndecl_iargc = gfc_build_library_function_decl (
	get_identifier (PREFIX ("iargc")), gfc_int4_type_node, 0);
2917
  TREE_NOTHROW (gfor_fndecl_iargc) = 1;
2918 2919 2920 2921 2922 2923 2924 2925
}


/* Make prototypes for runtime library functions.  */

void
gfc_build_builtin_function_decls (void)
{
2926
  tree gfc_int4_type_node = gfc_get_int_type (4);
2927

2928 2929 2930
  gfor_fndecl_stop_numeric = gfc_build_library_function_decl (
	get_identifier (PREFIX("stop_numeric")),
	void_type_node, 1, gfc_int4_type_node);
2931
  /* STOP doesn't return.  */
2932 2933
  TREE_THIS_VOLATILE (gfor_fndecl_stop_numeric) = 1;

2934 2935 2936 2937 2938 2939
  gfor_fndecl_stop_numeric_f08 = gfc_build_library_function_decl (
	get_identifier (PREFIX("stop_numeric_f08")),
	void_type_node, 1, gfc_int4_type_node);
  /* STOP doesn't return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_stop_numeric_f08) = 1;

2940 2941 2942
  gfor_fndecl_stop_string = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("stop_string")), ".R.",
	void_type_node, 2, pchar_type_node, gfc_int4_type_node);
2943
  /* STOP doesn't return.  */
2944
  TREE_THIS_VOLATILE (gfor_fndecl_stop_string) = 1;
2945

2946 2947 2948
  gfor_fndecl_error_stop_numeric = gfc_build_library_function_decl (
        get_identifier (PREFIX("error_stop_numeric")),
        void_type_node, 1, gfc_int4_type_node);
2949 2950 2951
  /* ERROR STOP doesn't return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_error_stop_numeric) = 1;

2952 2953 2954
  gfor_fndecl_error_stop_string = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("error_stop_string")), ".R.",
	void_type_node, 2, pchar_type_node, gfc_int4_type_node);
2955 2956 2957
  /* ERROR STOP doesn't return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_error_stop_string) = 1;

2958 2959 2960
  gfor_fndecl_pause_numeric = gfc_build_library_function_decl (
	get_identifier (PREFIX("pause_numeric")),
	void_type_node, 1, gfc_int4_type_node);
2961

2962 2963 2964
  gfor_fndecl_pause_string = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("pause_string")), ".R.",
	void_type_node, 2, pchar_type_node, gfc_int4_type_node);
2965

2966 2967 2968
  gfor_fndecl_runtime_error = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("runtime_error")), ".R",
	void_type_node, -1, pchar_type_node);
2969 2970
  /* The runtime_error function does not return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_runtime_error) = 1;
2971

2972 2973 2974
  gfor_fndecl_runtime_error_at = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("runtime_error_at")), ".RR",
	void_type_node, -2, pchar_type_node, pchar_type_node);
2975 2976 2977
  /* The runtime_error_at function does not return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_runtime_error_at) = 1;
  
2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989
  gfor_fndecl_runtime_warning_at = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("runtime_warning_at")), ".RR",
	void_type_node, -2, pchar_type_node, pchar_type_node);

  gfor_fndecl_generate_error = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("generate_error")), ".R.R",
	void_type_node, 3, pvoid_type_node, integer_type_node,
	pchar_type_node);

  gfor_fndecl_os_error = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("os_error")), ".R",
	void_type_node, 1, pchar_type_node);
2990 2991 2992
  /* The runtime_error function does not return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_os_error) = 1;

2993 2994 2995 2996
  gfor_fndecl_set_args = gfc_build_library_function_decl (
	get_identifier (PREFIX("set_args")),
	void_type_node, 2, integer_type_node,
	build_pointer_type (pchar_type_node));
2997

2998 2999 3000
  gfor_fndecl_set_fpe = gfc_build_library_function_decl (
	get_identifier (PREFIX("set_fpe")),
	void_type_node, 1, integer_type_node);
3001

3002
  /* Keep the array dimension in sync with the call, later in this file.  */
3003 3004 3005 3006
  gfor_fndecl_set_options = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("set_options")), "..R",
	void_type_node, 2, integer_type_node,
	build_pointer_type (integer_type_node));
3007

3008 3009 3010
  gfor_fndecl_set_convert = gfc_build_library_function_decl (
	get_identifier (PREFIX("set_convert")),
	void_type_node, 1, integer_type_node);
3011

3012 3013 3014
  gfor_fndecl_set_record_marker = gfc_build_library_function_decl (
	get_identifier (PREFIX("set_record_marker")),
	void_type_node, 1, integer_type_node);
Thomas Koenig committed
3015

3016 3017 3018
  gfor_fndecl_set_max_subrecord_length = gfc_build_library_function_decl (
	get_identifier (PREFIX("set_max_subrecord_length")),
	void_type_node, 1, integer_type_node);
3019

3020
  gfor_fndecl_in_pack = gfc_build_library_function_decl_with_spec (
3021 3022
	get_identifier (PREFIX("internal_pack")), ".r",
	pvoid_type_node, 1, pvoid_type_node);
3023

3024
  gfor_fndecl_in_unpack = gfc_build_library_function_decl_with_spec (
3025 3026 3027 3028 3029 3030
	get_identifier (PREFIX("internal_unpack")), ".wR",
	void_type_node, 2, pvoid_type_node, pvoid_type_node);

  gfor_fndecl_associated = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("associated")), ".RR",
	integer_type_node, 2, ppvoid_type_node, ppvoid_type_node);
3031
  DECL_PURE_P (gfor_fndecl_associated) = 1;
3032
  TREE_NOTHROW (gfor_fndecl_associated) = 1;
3033

3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049
  /* Coarray library calls.  */
  if (gfc_option.coarray == GFC_FCOARRAY_LIB)
    {
      tree pint_type, pppchar_type;

      pint_type = build_pointer_type (integer_type_node);
      pppchar_type
	= build_pointer_type (build_pointer_type (pchar_type_node));

      gfor_fndecl_caf_init = gfc_build_library_function_decl (
		   get_identifier (PREFIX("caf_init")),  void_type_node,
		   4, pint_type, pppchar_type, pint_type, pint_type);

      gfor_fndecl_caf_finalize = gfc_build_library_function_decl (
	get_identifier (PREFIX("caf_finalize")), void_type_node, 0);

3050 3051 3052 3053 3054
      gfor_fndecl_caf_register = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("caf_register")), "...WWW", pvoid_type_node, 6,
        size_type_node, integer_type_node, ppvoid_type_node, pint_type,
        build_pointer_type (pchar_type_node), integer_type_node);

3055 3056 3057 3058 3059 3060 3061
      gfor_fndecl_caf_critical = gfc_build_library_function_decl (
	get_identifier (PREFIX("caf_critical")), void_type_node, 0);

      gfor_fndecl_caf_end_critical = gfc_build_library_function_decl (
	get_identifier (PREFIX("caf_end_critical")), void_type_node, 0);

      gfor_fndecl_caf_sync_all = gfc_build_library_function_decl_with_spec (
3062 3063
	get_identifier (PREFIX("caf_sync_all")), ".WW", void_type_node,
	3, pint_type, build_pointer_type (pchar_type_node), integer_type_node);
3064 3065

      gfor_fndecl_caf_sync_images = gfc_build_library_function_decl_with_spec (
3066 3067 3068
	get_identifier (PREFIX("caf_sync_images")), ".RRWW", void_type_node,
	5, integer_type_node, pint_type, pint_type,
	build_pointer_type (pchar_type_node), integer_type_node);
3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082

      gfor_fndecl_caf_error_stop = gfc_build_library_function_decl (
	get_identifier (PREFIX("caf_error_stop")),
	void_type_node, 1, gfc_int4_type_node);
      /* CAF's ERROR STOP doesn't return.  */
      TREE_THIS_VOLATILE (gfor_fndecl_caf_error_stop) = 1;

      gfor_fndecl_caf_error_stop_str = gfc_build_library_function_decl_with_spec (
	get_identifier (PREFIX("caf_error_stop_str")), ".R.",
	void_type_node, 2, pchar_type_node, gfc_int4_type_node);
      /* CAF's ERROR STOP doesn't return.  */
      TREE_THIS_VOLATILE (gfor_fndecl_caf_error_stop_str) = 1;
    }

3083 3084 3085 3086 3087 3088
  gfc_build_intrinsic_function_decls ();
  gfc_build_intrinsic_lib_fndecls ();
  gfc_build_io_library_fndecls ();
}


3089
/* Evaluate the length of dummy character variables.  */
3090

3091 3092 3093
static void
gfc_trans_dummy_character (gfc_symbol *sym, gfc_charlen *cl,
			   gfc_wrapped_block *block)
3094
{
3095
  stmtblock_t init;
3096

3097
  gfc_finish_decl (cl->backend_decl);
3098

3099
  gfc_start_block (&init);
3100 3101

  /* Evaluate the string length expression.  */
3102
  gfc_conv_string_length (cl, NULL, &init);
3103

3104
  gfc_trans_vla_type_sizes (sym, &init);
3105

3106
  gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
3107 3108 3109 3110 3111
}


/* Allocate and cleanup an automatic character variable.  */

3112 3113
static void
gfc_trans_auto_character_variable (gfc_symbol * sym, gfc_wrapped_block * block)
3114
{
3115
  stmtblock_t init;
3116 3117 3118
  tree decl;
  tree tmp;

3119
  gcc_assert (sym->backend_decl);
3120
  gcc_assert (sym->ts.u.cl && sym->ts.u.cl->length);
3121

3122
  gfc_init_block (&init);
3123 3124

  /* Evaluate the string length expression.  */
3125
  gfc_conv_string_length (sym->ts.u.cl, NULL, &init);
3126

3127
  gfc_trans_vla_type_sizes (sym, &init);
3128

3129 3130
  decl = sym->backend_decl;

3131
  /* Emit a DECL_EXPR for this variable, which will cause the
Giovanni Bajo committed
3132
     gimplifier to allocate storage, and all that good stuff.  */
3133
  tmp = fold_build1_loc (input_location, DECL_EXPR, TREE_TYPE (decl), decl);
3134
  gfc_add_expr_to_block (&init, tmp);
3135

3136
  gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
3137 3138
}

3139 3140
/* Set the initial value of ASSIGN statement auxiliary variable explicitly.  */

3141 3142
static void
gfc_trans_assign_aux_var (gfc_symbol * sym, gfc_wrapped_block * block)
3143
{
3144
  stmtblock_t init;
3145 3146

  gcc_assert (sym->backend_decl);
3147
  gfc_start_block (&init);
3148 3149 3150

  /* Set the initial value to length. See the comments in
     function gfc_add_assign_aux_vars in this file.  */
3151
  gfc_add_modify (&init, GFC_DECL_STRING_LEN (sym->backend_decl),
3152
		  build_int_cst (gfc_charlen_type_node, -2));
3153

3154
  gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
3155 3156
}

3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180
static void
gfc_trans_vla_one_sizepos (tree *tp, stmtblock_t *body)
{
  tree t = *tp, var, val;

  if (t == NULL || t == error_mark_node)
    return;
  if (TREE_CONSTANT (t) || DECL_P (t))
    return;

  if (TREE_CODE (t) == SAVE_EXPR)
    {
      if (SAVE_EXPR_RESOLVED_P (t))
	{
	  *tp = TREE_OPERAND (t, 0);
	  return;
	}
      val = TREE_OPERAND (t, 0);
    }
  else
    val = t;

  var = gfc_create_var_np (TREE_TYPE (t), NULL);
  gfc_add_decl_to_function (var);
3181
  gfc_add_modify (body, var, val);
3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262
  if (TREE_CODE (t) == SAVE_EXPR)
    TREE_OPERAND (t, 0) = var;
  *tp = var;
}

static void
gfc_trans_vla_type_sizes_1 (tree type, stmtblock_t *body)
{
  tree t;

  if (type == NULL || type == error_mark_node)
    return;

  type = TYPE_MAIN_VARIANT (type);

  if (TREE_CODE (type) == INTEGER_TYPE)
    {
      gfc_trans_vla_one_sizepos (&TYPE_MIN_VALUE (type), body);
      gfc_trans_vla_one_sizepos (&TYPE_MAX_VALUE (type), body);

      for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
	{
	  TYPE_MIN_VALUE (t) = TYPE_MIN_VALUE (type);
	  TYPE_MAX_VALUE (t) = TYPE_MAX_VALUE (type);
	}
    }
  else if (TREE_CODE (type) == ARRAY_TYPE)
    {
      gfc_trans_vla_type_sizes_1 (TREE_TYPE (type), body);
      gfc_trans_vla_type_sizes_1 (TYPE_DOMAIN (type), body);
      gfc_trans_vla_one_sizepos (&TYPE_SIZE (type), body);
      gfc_trans_vla_one_sizepos (&TYPE_SIZE_UNIT (type), body);

      for (t = TYPE_NEXT_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
	{
	  TYPE_SIZE (t) = TYPE_SIZE (type);
	  TYPE_SIZE_UNIT (t) = TYPE_SIZE_UNIT (type);
	}
    }
}

/* Make sure all type sizes and array domains are either constant,
   or variable or parameter decls.  This is a simplified variant
   of gimplify_type_sizes, but we can't use it here, as none of the
   variables in the expressions have been gimplified yet.
   As type sizes and domains for various variable length arrays
   contain VAR_DECLs that are only initialized at gfc_trans_deferred_vars
   time, without this routine gimplify_type_sizes in the middle-end
   could result in the type sizes being gimplified earlier than where
   those variables are initialized.  */

void
gfc_trans_vla_type_sizes (gfc_symbol *sym, stmtblock_t *body)
{
  tree type = TREE_TYPE (sym->backend_decl);

  if (TREE_CODE (type) == FUNCTION_TYPE
      && (sym->attr.function || sym->attr.result || sym->attr.entry))
    {
      if (! current_fake_result_decl)
	return;

      type = TREE_TYPE (TREE_VALUE (current_fake_result_decl));
    }

  while (POINTER_TYPE_P (type))
    type = TREE_TYPE (type);

  if (GFC_DESCRIPTOR_TYPE_P (type))
    {
      tree etype = GFC_TYPE_ARRAY_DATAPTR_TYPE (type);

      while (POINTER_TYPE_P (etype))
	etype = TREE_TYPE (etype);

      gfc_trans_vla_type_sizes_1 (etype, body);
    }

  gfc_trans_vla_type_sizes_1 (type, body);
}

3263

3264
/* Initialize a derived type by building an lvalue from the symbol
3265 3266
   and using trans_assignment to do the work. Set dealloc to false
   if no deallocation prior the assignment is needed.  */
3267 3268
void
gfc_init_default_dt (gfc_symbol * sym, stmtblock_t * block, bool dealloc)
3269
{
3270
  gfc_expr *e;
3271 3272 3273
  tree tmp;
  tree present;

3274 3275
  gcc_assert (block);

3276 3277 3278
  gcc_assert (!sym->attr.allocatable);
  gfc_set_sym_referenced (sym);
  e = gfc_lval_expr_from_sym (sym);
3279
  tmp = gfc_trans_assignment (e, sym->value, false, dealloc);
3280 3281
  if (sym->attr.dummy && (sym->attr.optional
			  || sym->ns->proc_name->attr.entry_master))
3282
    {
3283
      present = gfc_conv_expr_present (sym);
3284 3285
      tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp), present,
			tmp, build_empty_stmt (input_location));
3286
    }
3287
  gfc_add_expr_to_block (block, tmp);
3288
  gfc_free_expr (e);
3289 3290 3291
}


3292 3293 3294 3295
/* Initialize INTENT(OUT) derived type dummies.  As well as giving
   them their default initializer, if they do not have allocatable
   components, they have their allocatable components deallocated. */

3296 3297
static void
init_intent_out_dt (gfc_symbol * proc_sym, gfc_wrapped_block * block)
3298
{
3299
  stmtblock_t init;
3300
  gfc_formal_arglist *f;
3301
  tree tmp;
3302
  tree present;
3303

3304
  gfc_init_block (&init);
3305 3306
  for (f = proc_sym->formal; f; f = f->next)
    if (f->sym && f->sym->attr.intent == INTENT_OUT
3307 3308
	&& !f->sym->attr.pointer
	&& f->sym->ts.type == BT_DERIVED)
3309
      {
3310
	if (f->sym->ts.u.derived->attr.alloc_comp && !f->sym->value)
3311
	  {
3312
	    tmp = gfc_deallocate_alloc_comp (f->sym->ts.u.derived,
3313 3314
					     f->sym->backend_decl,
					     f->sym->as ? f->sym->as->rank : 0);
3315

3316 3317 3318 3319
	    if (f->sym->attr.optional
		|| f->sym->ns->proc_name->attr.entry_master)
	      {
		present = gfc_conv_expr_present (f->sym);
3320 3321 3322
		tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
				  present, tmp,
				  build_empty_stmt (input_location));
3323
	      }
3324

3325
	    gfc_add_expr_to_block (&init, tmp);
3326
	  }
3327
       else if (f->sym->value)
3328
	  gfc_init_default_dt (f->sym, &init, true);
3329
      }
3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355
    else if (f->sym && f->sym->attr.intent == INTENT_OUT
	     && f->sym->ts.type == BT_CLASS
	     && !CLASS_DATA (f->sym)->attr.class_pointer
	     && CLASS_DATA (f->sym)->ts.u.derived->attr.alloc_comp)
      {
	tree decl = build_fold_indirect_ref_loc (input_location,
						 f->sym->backend_decl);
	tmp = CLASS_DATA (f->sym)->backend_decl;
	tmp = fold_build3_loc (input_location, COMPONENT_REF,
			       TREE_TYPE (tmp), decl, tmp, NULL_TREE);
	tmp = build_fold_indirect_ref_loc (input_location, tmp);
	tmp = gfc_deallocate_alloc_comp (CLASS_DATA (f->sym)->ts.u.derived,
					 tmp,
					 CLASS_DATA (f->sym)->as ?
					 CLASS_DATA (f->sym)->as->rank : 0);

	if (f->sym->attr.optional || f->sym->ns->proc_name->attr.entry_master)
	  {
	    present = gfc_conv_expr_present (f->sym);
	    tmp = build3_loc (input_location, COND_EXPR, TREE_TYPE (tmp),
			      present, tmp,
			      build_empty_stmt (input_location));
	  }

	gfc_add_expr_to_block (&init, tmp);
      }
3356

3357
  gfc_add_init_cleanup (block, gfc_finish_block (&init), NULL_TREE);
3358 3359
}

3360

3361 3362
/* Generate function entry and exit code, and add it to the function body.
   This includes:
3363
    Allocation and initialization of array variables.
3364
    Allocation of character string variables.
3365
    Initialization and possibly repacking of dummy arrays.
3366
    Initialization of ASSIGN statement auxiliary variable.
3367
    Initialization of ASSOCIATE names.
3368
    Automatic deallocation.  */
3369

3370 3371
void
gfc_trans_deferred_vars (gfc_symbol * proc_sym, gfc_wrapped_block * block)
3372 3373 3374
{
  locus loc;
  gfc_symbol *sym;
3375
  gfc_formal_arglist *f;
3376
  stmtblock_t tmpblock;
3377
  bool seen_trans_deferred_array = false;
3378 3379 3380 3381
  tree tmp = NULL;
  gfc_expr *e;
  gfc_se se;
  stmtblock_t init;
3382 3383 3384 3385 3386 3387 3388

  /* Deal with implicit return variables.  Explicit return variables will
     already have been added.  */
  if (gfc_return_by_reference (proc_sym) && proc_sym->result == proc_sym)
    {
      if (!current_fake_result_decl)
	{
Jakub Jelinek committed
3389 3390 3391 3392 3393 3394 3395
	  gfc_entry_list *el = NULL;
	  if (proc_sym->attr.entry_master)
	    {
	      for (el = proc_sym->ns->entries; el; el = el->next)
		if (el->sym != el->sym->result)
		  break;
	    }
3396 3397 3398 3399
	  /* TODO: move to the appropriate place in resolve.c.  */
	  if (warn_return_type && el == NULL)
	    gfc_warning ("Return value of function '%s' at %L not set",
			 proc_sym->name, &proc_sym->declared_at);
3400
	}
Jakub Jelinek committed
3401
      else if (proc_sym->as)
3402
	{
3403
	  tree result = TREE_VALUE (current_fake_result_decl);
3404
	  gfc_trans_dummy_array_bias (proc_sym, result, block);
3405 3406 3407

	  /* An automatic character length, pointer array result.  */
	  if (proc_sym->ts.type == BT_CHARACTER
3408
		&& TREE_CODE (proc_sym->ts.u.cl->backend_decl) == VAR_DECL)
3409
	    gfc_trans_dummy_character (proc_sym, proc_sym->ts.u.cl, block);
3410 3411 3412
	}
      else if (proc_sym->ts.type == BT_CHARACTER)
	{
3413 3414 3415
	  if (proc_sym->ts.deferred)
	    {
	      tmp = NULL;
3416 3417
	      gfc_save_backend_locus (&loc);
	      gfc_set_backend_locus (&proc_sym->declared_at);
3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431
	      gfc_start_block (&init);
	      /* Zero the string length on entry.  */
	      gfc_add_modify (&init, proc_sym->ts.u.cl->backend_decl,
			      build_int_cst (gfc_charlen_type_node, 0));
	      /* Null the pointer.  */
	      e = gfc_lval_expr_from_sym (proc_sym);
	      gfc_init_se (&se, NULL);
	      se.want_pointer = 1;
	      gfc_conv_expr (&se, e);
	      gfc_free_expr (e);
	      tmp = se.expr;
	      gfc_add_modify (&init, tmp,
			      fold_convert (TREE_TYPE (se.expr),
					    null_pointer_node));
3432
	      gfc_restore_backend_locus (&loc);
3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443

	      /* Pass back the string length on exit.  */
	      tmp = proc_sym->ts.u.cl->passed_length;
	      tmp = build_fold_indirect_ref_loc (input_location, tmp);
	      tmp = fold_convert (gfc_charlen_type_node, tmp);
	      tmp = fold_build2_loc (input_location, MODIFY_EXPR,
				     gfc_charlen_type_node, tmp,
				     proc_sym->ts.u.cl->backend_decl);
	      gfc_add_init_cleanup (block, gfc_finish_block (&init), tmp);
	    }
	  else if (TREE_CODE (proc_sym->ts.u.cl->backend_decl) == VAR_DECL)
3444
	    gfc_trans_dummy_character (proc_sym, proc_sym->ts.u.cl, block);
3445 3446
	}
      else
3447 3448
	gcc_assert (gfc_option.flag_f2c
		    && proc_sym->ts.type == BT_COMPLEX);
3449 3450
    }

3451 3452 3453
  /* Initialize the INTENT(OUT) derived type dummy arguments.  This
     should be done here so that the offsets and lbounds of arrays
     are available.  */
3454 3455
  gfc_save_backend_locus (&loc);
  gfc_set_backend_locus (&proc_sym->declared_at);
3456
  init_intent_out_dt (proc_sym, block);
3457
  gfc_restore_backend_locus (&loc);
3458

3459 3460
  for (sym = proc_sym->tlink; sym != proc_sym; sym = sym->tlink)
    {
Paul Thomas committed
3461
      bool sym_has_alloc_comp = (sym->ts.type == BT_DERIVED)
3462
				   && sym->ts.u.derived->attr.alloc_comp;
3463
      if (sym->assoc)
3464 3465
	continue;

3466
      if (sym->attr.dimension || sym->attr.codimension)
3467
	{
3468 3469 3470 3471 3472
          /* Assumed-size Cray pointees need to be treated as AS_EXPLICIT.  */
          array_type tmp = sym->as->type;
          if (tmp == AS_ASSUMED_SIZE && sym->as->cp_was_assumed)
            tmp = AS_EXPLICIT;
          switch (tmp)
3473 3474 3475
	    {
	    case AS_EXPLICIT:
	      if (sym->attr.dummy || sym->attr.result)
3476
		gfc_trans_dummy_array_bias (sym, sym->backend_decl, block);
3477 3478 3479
	      else if (sym->attr.pointer || sym->attr.allocatable)
		{
		  if (TREE_STATIC (sym->backend_decl))
3480 3481 3482 3483 3484 3485
		    {
		      gfc_save_backend_locus (&loc);
		      gfc_set_backend_locus (&sym->declared_at);
		      gfc_trans_static_array_pointer (sym);
		      gfc_restore_backend_locus (&loc);
		    }
3486
		  else
3487 3488
		    {
		      seen_trans_deferred_array = true;
3489
		      gfc_trans_deferred_array (sym, block);
3490
		    }
3491
		}
3492 3493 3494 3495 3496 3497 3498 3499 3500
	      else if (sym->attr.codimension && TREE_STATIC (sym->backend_decl))
		{
		  gfc_init_block (&tmpblock);
		  gfc_trans_array_cobounds (TREE_TYPE (sym->backend_decl),
					    &tmpblock, sym);
		  gfc_add_init_cleanup (block, gfc_finish_block (&tmpblock),
					NULL_TREE);
		  continue;
		}
3501
	      else if (gfc_option.coarray != GFC_FCOARRAY_LIB)
3502
		{
3503 3504 3505
		  gfc_save_backend_locus (&loc);
		  gfc_set_backend_locus (&sym->declared_at);

3506 3507 3508
		  if (sym_has_alloc_comp)
		    {
		      seen_trans_deferred_array = true;
3509
		      gfc_trans_deferred_array (sym, block);
3510
		    }
3511 3512 3513 3514
		  else if (sym->ts.type == BT_DERIVED
			     && sym->value
			     && !sym->attr.data
			     && sym->attr.save == SAVE_NONE)
3515 3516 3517
		    {
		      gfc_start_block (&tmpblock);
		      gfc_init_default_dt (sym, &tmpblock, false);
3518
		      gfc_add_init_cleanup (block,
3519 3520 3521
					    gfc_finish_block (&tmpblock),
					    NULL_TREE);
		    }
3522

3523
		  gfc_trans_auto_array_allocation (sym->backend_decl,
3524
						   sym, block);
3525
		  gfc_restore_backend_locus (&loc);
3526 3527 3528 3529 3530
		}
	      break;

	    case AS_ASSUMED_SIZE:
	      /* Must be a dummy parameter.  */
3531
	      gcc_assert (sym->attr.dummy || sym->as->cp_was_assumed);
3532 3533

	      /* We should always pass assumed size arrays the g77 way.  */
3534
	      if (sym->attr.dummy)
3535
		gfc_trans_g77_array (sym, block);
3536
	      break;
3537 3538 3539

	    case AS_ASSUMED_SHAPE:
	      /* Must be a dummy parameter.  */
3540
	      gcc_assert (sym->attr.dummy);
3541

3542
	      gfc_trans_dummy_array_bias (sym, sym->backend_decl, block);
3543 3544 3545
	      break;

	    case AS_DEFERRED:
3546
	      seen_trans_deferred_array = true;
3547
	      gfc_trans_deferred_array (sym, block);
3548 3549 3550
	      break;

	    default:
3551
	      gcc_unreachable ();
3552
	    }
3553
	  if (sym_has_alloc_comp && !seen_trans_deferred_array)
3554
	    gfc_trans_deferred_array (sym, block);
3555
	}
3556
      else if ((!sym->attr.dummy || sym->ts.deferred)
3557 3558 3559
		&& (sym->attr.allocatable
		    || (sym->ts.type == BT_CLASS
			&& CLASS_DATA (sym)->attr.allocatable)))
3560
	{
3561 3562 3563 3564 3565 3566
	  if (!sym->attr.save)
	    {
	      /* Nullify and automatic deallocation of allocatable
		 scalars.  */
	      e = gfc_lval_expr_from_sym (sym);
	      if (sym->ts.type == BT_CLASS)
3567
		gfc_add_data_component (e);
3568 3569 3570 3571 3572 3573

	      gfc_init_se (&se, NULL);
	      se.want_pointer = 1;
	      gfc_conv_expr (&se, e);
	      gfc_free_expr (e);

3574 3575
	      gfc_save_backend_locus (&loc);
	      gfc_set_backend_locus (&sym->declared_at);
3576
	      gfc_start_block (&init);
3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601

	      if (!sym->attr.dummy || sym->attr.intent == INTENT_OUT)
		{
		  /* Nullify when entering the scope.  */
		  gfc_add_modify (&init, se.expr,
				  fold_convert (TREE_TYPE (se.expr),
					        null_pointer_node));
		}

	      if ((sym->attr.dummy ||sym->attr.result)
		    && sym->ts.type == BT_CHARACTER
		    && sym->ts.deferred)
		{
		  /* Character length passed by reference.  */
		  tmp = sym->ts.u.cl->passed_length;
		  tmp = build_fold_indirect_ref_loc (input_location, tmp);
		  tmp = fold_convert (gfc_charlen_type_node, tmp);

		  if (!sym->attr.dummy || sym->attr.intent == INTENT_OUT)
		    /* Zero the string length when entering the scope.  */
		    gfc_add_modify (&init, sym->ts.u.cl->backend_decl,
				build_int_cst (gfc_charlen_type_node, 0));
		  else
		    gfc_add_modify (&init, sym->ts.u.cl->backend_decl, tmp);

3602 3603
		  gfc_restore_backend_locus (&loc);

3604 3605 3606 3607 3608 3609 3610 3611
		  /* Pass the final character length back.  */
		  if (sym->attr.intent != INTENT_IN)
		    tmp = fold_build2_loc (input_location, MODIFY_EXPR,
					   gfc_charlen_type_node, tmp,
					   sym->ts.u.cl->backend_decl);
		  else
		    tmp = NULL_TREE;
		}
3612 3613
	      else
		gfc_restore_backend_locus (&loc);
3614 3615 3616

	      /* Deallocate when leaving the scope. Nullifying is not
		 needed.  */
3617
	      if (!sym->attr.result && !sym->attr.dummy)
3618 3619
		tmp = gfc_deallocate_scalar_with_status (se.expr, NULL, true,
							 NULL, sym->ts);
3620 3621 3622 3623 3624 3625

	      if (sym->ts.type == BT_CLASS)
		{
		  /* Initialize _vptr to declared type.  */
		  gfc_symbol *vtab = gfc_find_derived_vtab (sym->ts.u.derived);
		  tree rhs;
3626 3627 3628

		  gfc_save_backend_locus (&loc);
		  gfc_set_backend_locus (&sym->declared_at);
3629 3630 3631 3632 3633 3634 3635 3636 3637
		  e = gfc_lval_expr_from_sym (sym);
		  gfc_add_vptr_component (e);
		  gfc_init_se (&se, NULL);
		  se.want_pointer = 1;
		  gfc_conv_expr (&se, e);
		  gfc_free_expr (e);
		  rhs = gfc_build_addr_expr (TREE_TYPE (se.expr),
					     gfc_get_symbol_decl (vtab));
		  gfc_add_modify (&init, se.expr, rhs);
3638
		  gfc_restore_backend_locus (&loc);
3639 3640
		}

3641
	      gfc_add_init_cleanup (block, gfc_finish_block (&init), tmp);
3642
	    }
3643
	}
3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670
      else if (sym->ts.type == BT_CHARACTER && sym->ts.deferred)
	{
	  tree tmp = NULL;
	  stmtblock_t init;

	  /* If we get to here, all that should be left are pointers.  */
	  gcc_assert (sym->attr.pointer);

	  if (sym->attr.dummy)
	    {
	      gfc_start_block (&init);

	      /* Character length passed by reference.  */
	      tmp = sym->ts.u.cl->passed_length;
	      tmp = build_fold_indirect_ref_loc (input_location, tmp);
	      tmp = fold_convert (gfc_charlen_type_node, tmp);
	      gfc_add_modify (&init, sym->ts.u.cl->backend_decl, tmp);
	      /* Pass the final character length back.  */
	      if (sym->attr.intent != INTENT_IN)
		tmp = fold_build2_loc (input_location, MODIFY_EXPR,
				       gfc_charlen_type_node, tmp,
				       sym->ts.u.cl->backend_decl);
	      else
		tmp = NULL_TREE;
	      gfc_add_init_cleanup (block, gfc_finish_block (&init), tmp);
	    }
	}
Steven G. Kargl committed
3671 3672
      else if (sym->ts.deferred)
	gfc_fatal_error ("Deferred type parameter not yet supported");
3673
      else if (sym_has_alloc_comp)
3674
	gfc_trans_deferred_array (sym, block);
3675 3676
      else if (sym->ts.type == BT_CHARACTER)
	{
3677
	  gfc_save_backend_locus (&loc);
3678 3679
	  gfc_set_backend_locus (&sym->declared_at);
	  if (sym->attr.dummy || sym->attr.result)
3680
	    gfc_trans_dummy_character (sym, sym->ts.u.cl, block);
3681
	  else
3682
	    gfc_trans_auto_character_variable (sym, block);
3683
	  gfc_restore_backend_locus (&loc);
3684
	}
3685 3686
      else if (sym->attr.assign)
	{
3687
	  gfc_save_backend_locus (&loc);
3688
	  gfc_set_backend_locus (&sym->declared_at);
3689
	  gfc_trans_assign_aux_var (sym, block);
3690
	  gfc_restore_backend_locus (&loc);
3691
	}
3692 3693 3694 3695
      else if (sym->ts.type == BT_DERIVED
		 && sym->value
		 && !sym->attr.data
		 && sym->attr.save == SAVE_NONE)
3696 3697 3698
	{
	  gfc_start_block (&tmpblock);
	  gfc_init_default_dt (sym, &tmpblock, false);
3699
	  gfc_add_init_cleanup (block, gfc_finish_block (&tmpblock),
3700 3701
				NULL_TREE);
	}
3702
      else
3703
	gcc_unreachable ();
3704 3705
    }

3706
  gfc_init_block (&tmpblock);
3707 3708

  for (f = proc_sym->formal; f; f = f->next)
3709 3710 3711
    {
      if (f->sym && f->sym->tlink == NULL && f->sym->ts.type == BT_CHARACTER)
	{
3712 3713
	  gcc_assert (f->sym->ts.u.cl->backend_decl != NULL);
	  if (TREE_CODE (f->sym->ts.u.cl->backend_decl) == PARM_DECL)
3714
	    gfc_trans_vla_type_sizes (f->sym, &tmpblock);
3715 3716
	}
    }
3717 3718 3719 3720

  if (gfc_return_by_reference (proc_sym) && proc_sym->ts.type == BT_CHARACTER
      && current_fake_result_decl != NULL)
    {
3721 3722
      gcc_assert (proc_sym->ts.u.cl->backend_decl != NULL);
      if (TREE_CODE (proc_sym->ts.u.cl->backend_decl) == PARM_DECL)
3723
	gfc_trans_vla_type_sizes (proc_sym, &tmpblock);
3724 3725
    }

3726
  gfc_add_init_cleanup (block, gfc_finish_block (&tmpblock), NULL_TREE);
3727 3728
}

3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754
static GTY ((param_is (struct module_htab_entry))) htab_t module_htab;

/* Hash and equality functions for module_htab.  */

static hashval_t
module_htab_do_hash (const void *x)
{
  return htab_hash_string (((const struct module_htab_entry *)x)->name);
}

static int
module_htab_eq (const void *x1, const void *x2)
{
  return strcmp ((((const struct module_htab_entry *)x1)->name),
		 (const char *)x2) == 0;
}

/* Hash and equality functions for module_htab's decls.  */

static hashval_t
module_htab_decls_hash (const void *x)
{
  const_tree t = (const_tree) x;
  const_tree n = DECL_NAME (t);
  if (n == NULL_TREE)
    n = TYPE_NAME (TREE_TYPE (t));
3755
  return htab_hash_string (IDENTIFIER_POINTER (n));
3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780
}

static int
module_htab_decls_eq (const void *x1, const void *x2)
{
  const_tree t1 = (const_tree) x1;
  const_tree n1 = DECL_NAME (t1);
  if (n1 == NULL_TREE)
    n1 = TYPE_NAME (TREE_TYPE (t1));
  return strcmp (IDENTIFIER_POINTER (n1), (const char *) x2) == 0;
}

struct module_htab_entry *
gfc_find_module (const char *name)
{
  void **slot;

  if (! module_htab)
    module_htab = htab_create_ggc (10, module_htab_do_hash,
				   module_htab_eq, NULL);

  slot = htab_find_slot_with_hash (module_htab, name,
				   htab_hash_string (name), INSERT);
  if (*slot == NULL)
    {
3781
      struct module_htab_entry *entry = ggc_alloc_cleared_module_htab_entry ();
3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810

      entry->name = gfc_get_string (name);
      entry->decls = htab_create_ggc (10, module_htab_decls_hash,
				      module_htab_decls_eq, NULL);
      *slot = (void *) entry;
    }
  return (struct module_htab_entry *) *slot;
}

void
gfc_module_add_decl (struct module_htab_entry *entry, tree decl)
{
  void **slot;
  const char *name;

  if (DECL_NAME (decl))
    name = IDENTIFIER_POINTER (DECL_NAME (decl));
  else
    {
      gcc_assert (TREE_CODE (decl) == TYPE_DECL);
      name = IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (decl)));
    }
  slot = htab_find_slot_with_hash (entry->decls, name,
				   htab_hash_string (name), INSERT);
  if (*slot == NULL)
    *slot = (void *) decl;
}

static struct module_htab_entry *cur_module;
3811 3812 3813 3814 3815 3816 3817 3818

/* Output an initialized decl for a module variable.  */

static void
gfc_create_module_variable (gfc_symbol * sym)
{
  tree decl;

3819 3820 3821 3822 3823
  /* Module functions with alternate entries are dealt with later and
     would get caught by the next condition.  */
  if (sym->attr.entry)
    return;

3824 3825 3826 3827 3828 3829
  /* Make sure we convert the types of the derived types from iso_c_binding
     into (void *).  */
  if (sym->attr.flavor != FL_PROCEDURE && sym->attr.is_iso_c
      && sym->ts.type == BT_DERIVED)
    sym->backend_decl = gfc_typenode_for_spec (&(sym->ts));

3830 3831 3832 3833 3834 3835
  if (sym->attr.flavor == FL_DERIVED
      && sym->backend_decl
      && TREE_CODE (sym->backend_decl) == RECORD_TYPE)
    {
      decl = sym->backend_decl;
      gcc_assert (sym->ns->proc_name->attr.flavor == FL_MODULE);
3836 3837 3838 3839 3840 3841 3842 3843 3844 3845

      /* -fwhole-file mixes up the contexts so these asserts are unnecessary.  */
      if (!(gfc_option.flag_whole_file && sym->attr.use_assoc))
	{
	  gcc_assert (TYPE_CONTEXT (decl) == NULL_TREE
		      || TYPE_CONTEXT (decl) == sym->ns->proc_name->backend_decl);
	  gcc_assert (DECL_CONTEXT (TYPE_STUB_DECL (decl)) == NULL_TREE
		      || DECL_CONTEXT (TYPE_STUB_DECL (decl))
			   == sym->ns->proc_name->backend_decl);
	}
3846 3847 3848 3849 3850
      TYPE_CONTEXT (decl) = sym->ns->proc_name->backend_decl;
      DECL_CONTEXT (TYPE_STUB_DECL (decl)) = sym->ns->proc_name->backend_decl;
      gfc_module_add_decl (cur_module, TYPE_STUB_DECL (decl));
    }

3851 3852
  /* Only output variables, procedure pointers and array valued,
     or derived type, parameters.  */
3853
  if (sym->attr.flavor != FL_VARIABLE
3854
	&& !(sym->attr.flavor == FL_PARAMETER
3855 3856
	       && (sym->attr.dimension || sym->ts.type == BT_DERIVED))
	&& !(sym->attr.flavor == FL_PROCEDURE && sym->attr.proc_pointer))
3857 3858
    return;

3859 3860 3861
  if ((sym->attr.in_common || sym->attr.in_equivalence) && sym->backend_decl)
    {
      decl = sym->backend_decl;
3862
      gcc_assert (DECL_FILE_SCOPE_P (decl));
3863 3864 3865 3866 3867
      gcc_assert (sym->ns->proc_name->attr.flavor == FL_MODULE);
      DECL_CONTEXT (decl) = sym->ns->proc_name->backend_decl;
      gfc_module_add_decl (cur_module, decl);
    }

3868 3869 3870
  /* Don't generate variables from other modules. Variables from
     COMMONs will already have been generated.  */
  if (sym->attr.use_assoc || sym->attr.in_common)
3871 3872
    return;

3873
  /* Equivalenced variables arrive here after creation.  */
3874
  if (sym->backend_decl
3875 3876
      && (sym->equiv_built || sym->attr.in_equivalence))
    return;
3877

3878
  if (sym->backend_decl && !sym->attr.vtab && !sym->attr.target)
3879 3880 3881 3882 3883 3884 3885 3886 3887 3888
    internal_error ("backend decl for module variable %s already exists",
		    sym->name);

  /* We always want module variables to be created.  */
  sym->attr.referenced = 1;
  /* Create the decl.  */
  decl = gfc_get_symbol_decl (sym);

  /* Create the variable.  */
  pushdecl (decl);
3889 3890
  gcc_assert (sym->ns->proc_name->attr.flavor == FL_MODULE);
  DECL_CONTEXT (decl) = sym->ns->proc_name->backend_decl;
3891
  rest_of_decl_compilation (decl, 1, 0);
3892
  gfc_module_add_decl (cur_module, decl);
3893 3894 3895 3896 3897 3898

  /* Also add length of strings.  */
  if (sym->ts.type == BT_CHARACTER)
    {
      tree length;

3899
      length = sym->ts.u.cl->backend_decl;
3900 3901
      gcc_assert (length || sym->attr.proc_pointer);
      if (length && !INTEGER_CST_P (length))
3902 3903
        {
          pushdecl (length);
3904
          rest_of_decl_compilation (length, 1, 0);
3905 3906
        }
    }
3907 3908 3909 3910

  if (sym->attr.codimension && !sym->attr.dummy && !sym->attr.allocatable
      && sym->attr.referenced && !sym->attr.use_assoc)
    has_coarray_vars = true;
3911 3912
}

3913
/* Emit debug information for USE statements.  */
3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927

static void
gfc_trans_use_stmts (gfc_namespace * ns)
{
  gfc_use_list *use_stmt;
  for (use_stmt = ns->use_stmts; use_stmt; use_stmt = use_stmt->next)
    {
      struct module_htab_entry *entry
	= gfc_find_module (use_stmt->module_name);
      gfc_use_rename *rent;

      if (entry->namespace_decl == NULL)
	{
	  entry->namespace_decl
3928 3929
	    = build_decl (input_location,
			  NAMESPACE_DECL,
3930 3931 3932 3933
			  get_identifier (use_stmt->module_name),
			  void_type_node);
	  DECL_EXTERNAL (entry->namespace_decl) = 1;
	}
3934
      gfc_set_backend_locus (&use_stmt->where);
3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957
      if (!use_stmt->only_flag)
	(*debug_hooks->imported_module_or_decl) (entry->namespace_decl,
						 NULL_TREE,
						 ns->proc_name->backend_decl,
						 false);
      for (rent = use_stmt->rename; rent; rent = rent->next)
	{
	  tree decl, local_name;
	  void **slot;

	  if (rent->op != INTRINSIC_NONE)
	    continue;

	  slot = htab_find_slot_with_hash (entry->decls, rent->use_name,
					   htab_hash_string (rent->use_name),
					   INSERT);
	  if (*slot == NULL)
	    {
	      gfc_symtree *st;

	      st = gfc_find_symtree (ns->sym_root,
				     rent->local_name[0]
				     ? rent->local_name : rent->use_name);
3958 3959 3960 3961 3962 3963 3964
	      gcc_assert (st);

	      /* Sometimes, generic interfaces wind up being over-ruled by a
		 local symbol (see PR41062).  */
	      if (!st->n.sym->attr.use_assoc)
		continue;

3965 3966 3967 3968
	      if (st->n.sym->backend_decl
		  && DECL_P (st->n.sym->backend_decl)
		  && st->n.sym->module
		  && strcmp (st->n.sym->module, use_stmt->module_name) == 0)
3969
		{
3970 3971 3972
		  gcc_assert (DECL_EXTERNAL (entry->namespace_decl)
			      || (TREE_CODE (st->n.sym->backend_decl)
				  != VAR_DECL));
3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991
		  decl = copy_node (st->n.sym->backend_decl);
		  DECL_CONTEXT (decl) = entry->namespace_decl;
		  DECL_EXTERNAL (decl) = 1;
		  DECL_IGNORED_P (decl) = 0;
		  DECL_INITIAL (decl) = NULL_TREE;
		}
	      else
		{
		  *slot = error_mark_node;
		  htab_clear_slot (entry->decls, slot);
		  continue;
		}
	      *slot = decl;
	    }
	  decl = (tree) *slot;
	  if (rent->local_name[0])
	    local_name = get_identifier (rent->local_name);
	  else
	    local_name = NULL_TREE;
3992
	  gfc_set_backend_locus (&rent->where);
3993 3994 3995 3996 3997
	  (*debug_hooks->imported_module_or_decl) (decl, local_name,
						   ns->proc_name->backend_decl,
						   !use_stmt->only_flag);
	}
    }
3998 3999
}

4000

4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020
/* Return true if expr is a constant initializer that gfc_conv_initializer
   will handle.  */

static bool
check_constant_initializer (gfc_expr *expr, gfc_typespec *ts, bool array,
			    bool pointer)
{
  gfc_constructor *c;
  gfc_component *cm;

  if (pointer)
    return true;
  else if (array)
    {
      if (expr->expr_type == EXPR_CONSTANT || expr->expr_type == EXPR_NULL)
	return true;
      else if (expr->expr_type == EXPR_STRUCTURE)
	return check_constant_initializer (expr, ts, false, false);
      else if (expr->expr_type != EXPR_ARRAY)
	return false;
Jerry DeLisle committed
4021 4022
      for (c = gfc_constructor_first (expr->value.constructor);
	   c; c = gfc_constructor_next (c))
4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040
	{
	  if (c->iterator)
	    return false;
	  if (c->expr->expr_type == EXPR_STRUCTURE)
	    {
	      if (!check_constant_initializer (c->expr, ts, false, false))
		return false;
	    }
	  else if (c->expr->expr_type != EXPR_CONSTANT)
	    return false;
	}
      return true;
    }
  else switch (ts->type)
    {
    case BT_DERIVED:
      if (expr->expr_type != EXPR_STRUCTURE)
	return false;
4041
      cm = expr->ts.u.derived->components;
Jerry DeLisle committed
4042 4043
      for (c = gfc_constructor_first (expr->value.constructor);
	   c; c = gfc_constructor_next (c), cm = cm->next)
4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087
	{
	  if (!c->expr || cm->attr.allocatable)
	    continue;
	  if (!check_constant_initializer (c->expr, &cm->ts,
					   cm->attr.dimension,
					   cm->attr.pointer))
	    return false;
	}
      return true;
    default:
      return expr->expr_type == EXPR_CONSTANT;
    }
}

/* Emit debug info for parameters and unreferenced variables with
   initializers.  */

static void
gfc_emit_parameter_debug_info (gfc_symbol *sym)
{
  tree decl;

  if (sym->attr.flavor != FL_PARAMETER
      && (sym->attr.flavor != FL_VARIABLE || sym->attr.referenced))
    return;

  if (sym->backend_decl != NULL
      || sym->value == NULL
      || sym->attr.use_assoc
      || sym->attr.dummy
      || sym->attr.result
      || sym->attr.function
      || sym->attr.intrinsic
      || sym->attr.pointer
      || sym->attr.allocatable
      || sym->attr.cray_pointee
      || sym->attr.threadprivate
      || sym->attr.is_bind_c
      || sym->attr.subref_array_pointer
      || sym->attr.assign)
    return;

  if (sym->ts.type == BT_CHARACTER)
    {
4088 4089 4090
      gfc_conv_const_charlen (sym->ts.u.cl);
      if (sym->ts.u.cl->backend_decl == NULL
	  || TREE_CODE (sym->ts.u.cl->backend_decl) != INTEGER_CST)
4091 4092
	return;
    }
4093
  else if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.alloc_comp)
4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112
    return;

  if (sym->as)
    {
      int n;

      if (sym->as->type != AS_EXPLICIT)
	return;
      for (n = 0; n < sym->as->rank; n++)
	if (sym->as->lower[n]->expr_type != EXPR_CONSTANT
	    || sym->as->upper[n] == NULL
	    || sym->as->upper[n]->expr_type != EXPR_CONSTANT)
	  return;
    }

  if (!check_constant_initializer (sym->value, &sym->ts,
				   sym->attr.dimension, false))
    return;

4113 4114 4115
  if (gfc_option.coarray == GFC_FCOARRAY_LIB && sym->attr.codimension)
    return;

4116
  /* Create the decl for the variable or constant.  */
4117 4118
  decl = build_decl (input_location,
		     sym->attr.flavor == FL_PARAMETER ? CONST_DECL : VAR_DECL,
4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129
		     gfc_sym_identifier (sym), gfc_sym_type (sym));
  if (sym->attr.flavor == FL_PARAMETER)
    TREE_READONLY (decl) = 1;
  gfc_set_decl_location (decl, &sym->declared_at);
  if (sym->attr.dimension)
    GFC_DECL_PACKED_ARRAY (decl) = 1;
  DECL_CONTEXT (decl) = sym->ns->proc_name->backend_decl;
  TREE_STATIC (decl) = 1;
  TREE_USED (decl) = 1;
  if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
    TREE_PUBLIC (decl) = 1;
4130 4131 4132 4133
  DECL_INITIAL (decl) = gfc_conv_initializer (sym->value, &sym->ts,
					      TREE_TYPE (decl),
					      sym->attr.dimension,
					      false, false);
4134 4135 4136
  debug_hooks->global_decl (decl);
}

4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169

static void
generate_coarray_sym_init (gfc_symbol *sym)
{
  tree tmp, size, decl, token;

  if (sym->attr.dummy || sym->attr.allocatable || !sym->attr.codimension
      || sym->attr.use_assoc || !sym->attr.referenced) 
    return;

  decl = sym->backend_decl;
  TREE_USED(decl) = 1;
  gcc_assert (GFC_ARRAY_TYPE_P (TREE_TYPE (decl)));

  /* FIXME: Workaround for PR middle-end/49106, cf. also PR middle-end/49108
     to make sure the variable is not optimized away.  */
  DECL_PRESERVE_P (DECL_CONTEXT (decl)) = 1;

  size = TYPE_SIZE_UNIT (gfc_get_element_type (TREE_TYPE (decl)));

  if (GFC_TYPE_ARRAY_RANK (TREE_TYPE (decl)))
    {
      tmp = GFC_TYPE_ARRAY_SIZE (TREE_TYPE (decl));
      size = fold_build2_loc (input_location, MULT_EXPR, size_type_node,
			      fold_convert (size_type_node, tmp),
			      fold_convert (size_type_node, size));
    }

  gcc_assert (GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE (decl)) != NULL_TREE);
  token = gfc_build_addr_expr (ppvoid_type_node,
			       GFC_TYPE_ARRAY_CAF_TOKEN (TREE_TYPE(decl)));

  tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_register, 6, size,
4170 4171
			     build_int_cst (integer_type_node,
					    GFC_CAF_COARRAY_ALLOC), /* type.  */
4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251
			     token, null_pointer_node, /* token, stat.  */
			     null_pointer_node, /* errgmsg, errmsg_len.  */
			     build_int_cst (integer_type_node, 0));
  
  gfc_add_modify (&caf_init_block, decl, fold_convert (TREE_TYPE (decl), tmp));


  /* Handle "static" initializer.  */
  if (sym->value)
    {
      sym->attr.pointer = 1;
      tmp = gfc_trans_assignment (gfc_lval_expr_from_sym (sym), sym->value,
				  true, false);
      sym->attr.pointer = 0;
      gfc_add_expr_to_block (&caf_init_block, tmp);
    }
}


/* Generate constructor function to initialize static, nonallocatable
   coarrays.  */

static void
generate_coarray_init (gfc_namespace * ns __attribute((unused)))
{
  tree fndecl, tmp, decl, save_fn_decl;

  save_fn_decl = current_function_decl;
  push_function_context ();

  tmp = build_function_type_list (void_type_node, NULL_TREE);
  fndecl = build_decl (input_location, FUNCTION_DECL,
		       create_tmp_var_name ("_caf_init"), tmp);

  DECL_STATIC_CONSTRUCTOR (fndecl) = 1;
  SET_DECL_INIT_PRIORITY (fndecl, DEFAULT_INIT_PRIORITY);

  decl = build_decl (input_location, RESULT_DECL, NULL_TREE, void_type_node);
  DECL_ARTIFICIAL (decl) = 1;
  DECL_IGNORED_P (decl) = 1;
  DECL_CONTEXT (decl) = fndecl;
  DECL_RESULT (fndecl) = decl;

  pushdecl (fndecl);
  current_function_decl = fndecl;
  announce_function (fndecl);

  rest_of_decl_compilation (fndecl, 0, 0);
  make_decl_rtl (fndecl);
  init_function_start (fndecl);

  pushlevel (0);
  gfc_init_block (&caf_init_block);

  gfc_traverse_ns (ns, generate_coarray_sym_init);

  DECL_SAVED_TREE (fndecl) = gfc_finish_block (&caf_init_block);
  decl = getdecls ();

  poplevel (1, 0, 1);
  BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;

  DECL_SAVED_TREE (fndecl)
    = build3_v (BIND_EXPR, decl, DECL_SAVED_TREE (fndecl),
                DECL_INITIAL (fndecl));
  dump_function (TDI_original, fndecl);

  cfun->function_end_locus = input_location;
  set_cfun (NULL);

  if (decl_function_context (fndecl))
    (void) cgraph_create_node (fndecl);
  else
    cgraph_finalize_function (fndecl, true);

  pop_function_context ();
  current_function_decl = save_fn_decl;
}


4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265
/* Generate all the required code for module variables.  */

void
gfc_generate_module_vars (gfc_namespace * ns)
{
  module_namespace = ns;
  cur_module = gfc_find_module (ns->proc_name->name);

  /* Check if the frontend left the namespace in a reasonable state.  */
  gcc_assert (ns->proc_name && !ns->proc_name->tlink);

  /* Generate COMMON blocks.  */
  gfc_trans_common (ns);

4266 4267
  has_coarray_vars = false;

4268 4269 4270
  /* Create decls for all the module variables.  */
  gfc_traverse_ns (ns, gfc_create_module_variable);

4271 4272 4273
  if (gfc_option.coarray == GFC_FCOARRAY_LIB && has_coarray_vars)
    generate_coarray_init (ns);

4274 4275 4276
  cur_module = NULL;

  gfc_trans_use_stmts (ns);
4277
  gfc_traverse_ns (ns, gfc_emit_parameter_debug_info);
4278 4279 4280
}


4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292
static void
gfc_generate_contained_functions (gfc_namespace * parent)
{
  gfc_namespace *ns;

  /* We create all the prototypes before generating any code.  */
  for (ns = parent->contained; ns; ns = ns->sibling)
    {
      /* Skip namespaces from used modules.  */
      if (ns->parent != parent)
	continue;

4293
      gfc_create_function_decl (ns, false);
4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306
    }

  for (ns = parent->contained; ns; ns = ns->sibling)
    {
      /* Skip namespaces from used modules.  */
      if (ns->parent != parent)
	continue;

      gfc_generate_function_code (ns);
    }
}


4307 4308 4309 4310 4311 4312 4313
/* Drill down through expressions for the array specification bounds and
   character length calling generate_local_decl for all those variables
   that have not already been declared.  */

static void
generate_local_decl (gfc_symbol *);

4314
/* Traverse expr, marking all EXPR_VARIABLE symbols referenced.  */
4315

4316 4317 4318 4319 4320 4321
static bool
expr_decls (gfc_expr *e, gfc_symbol *sym,
	    int *f ATTRIBUTE_UNUSED)
{
  if (e->expr_type != EXPR_VARIABLE
	    || sym == e->symtree->n.sym
4322 4323
	    || e->symtree->n.sym->mark
	    || e->symtree->n.sym->ns != sym->ns)
4324
	return false;
4325

4326 4327 4328
  generate_local_decl (e->symtree->n.sym);
  return false;
}
4329

4330 4331 4332 4333
static void
generate_expr_decls (gfc_symbol *sym, gfc_expr *e)
{
  gfc_traverse_expr (e, sym, expr_decls, 0);
4334 4335 4336
}


4337
/* Check for dependencies in the character length and array spec.  */
4338 4339 4340 4341 4342 4343 4344

static void
generate_dependency_declarations (gfc_symbol *sym)
{
  int i;

  if (sym->ts.type == BT_CHARACTER
4345 4346 4347 4348
      && sym->ts.u.cl
      && sym->ts.u.cl->length
      && sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
    generate_expr_decls (sym, sym->ts.u.cl->length);
4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360

  if (sym->as && sym->as->rank)
    {
      for (i = 0; i < sym->as->rank; i++)
	{
          generate_expr_decls (sym, sym->as->lower[i]);
          generate_expr_decls (sym, sym->as->upper[i]);
	}
    }
}


4361 4362 4363 4364 4365 4366 4367 4368 4369
/* Generate decls for all local variables.  We do this to ensure correct
   handling of expressions which only appear in the specification of
   other functions.  */

static void
generate_local_decl (gfc_symbol * sym)
{
  if (sym->attr.flavor == FL_VARIABLE)
    {
4370 4371 4372 4373
      if (sym->attr.codimension && !sym->attr.dummy && !sym->attr.allocatable
	  && sym->attr.referenced && !sym->attr.use_assoc)
	has_coarray_vars = true;

4374
      if (!sym->attr.dummy && !sym->ns->proc_name->attr.entry_master)
4375
	generate_dependency_declarations (sym);
4376

4377
      if (sym->attr.referenced)
4378
	gfc_get_symbol_decl (sym);
4379 4380 4381

      /* Warnings for unused dummy arguments.  */
      else if (sym->attr.dummy)
4382
	{
4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399
	  /* INTENT(out) dummy arguments are likely meant to be set.  */
	  if (gfc_option.warn_unused_dummy_argument
	      && sym->attr.intent == INTENT_OUT)
	    {
	      if (sym->ts.type != BT_DERIVED)
		gfc_warning ("Dummy argument '%s' at %L was declared "
			     "INTENT(OUT) but was not set",  sym->name,
			     &sym->declared_at);
	      else if (!gfc_has_default_initializer (sym->ts.u.derived))
		gfc_warning ("Derived-type dummy argument '%s' at %L was "
			     "declared INTENT(OUT) but was not set and "
			     "does not have a default initializer",
			     sym->name, &sym->declared_at);
	    }
	  else if (gfc_option.warn_unused_dummy_argument)
	    gfc_warning ("Unused dummy argument '%s' at %L", sym->name,
			 &sym->declared_at);
4400
	}
4401

4402
      /* Warn for unused variables, but not if they're inside a common
4403
	 block, a namelist, or are use-associated.  */
4404
      else if (warn_unused_variable
4405 4406
	       && !(sym->attr.in_common || sym->attr.use_assoc || sym->mark
		    || sym->attr.in_namelist))
4407
	gfc_warning ("Unused variable '%s' declared at %L", sym->name,
4408
		     &sym->declared_at);
4409

4410 4411 4412 4413 4414
      /* For variable length CHARACTER parameters, the PARM_DECL already
	 references the length variable, so force gfc_get_symbol_decl
	 even when not referenced.  If optimize > 0, it will be optimized
	 away anyway.  But do this only after emitting -Wunused-parameter
	 warning if requested.  */
4415 4416
      if (sym->attr.dummy && !sym->attr.referenced
	    && sym->ts.type == BT_CHARACTER
4417 4418
	    && sym->ts.u.cl->backend_decl != NULL
	    && TREE_CODE (sym->ts.u.cl->backend_decl) == VAR_DECL)
4419 4420 4421 4422
	{
	  sym->attr.referenced = 1;
	  gfc_get_symbol_decl (sym);
	}
4423

Paul Thomas committed
4424 4425 4426 4427
      /* INTENT(out) dummy arguments and result variables with allocatable
	 components are reset by default and need to be set referenced to
	 generate the code for nullification and automatic lengths.  */
      if (!sym->attr.referenced
4428
	    && sym->ts.type == BT_DERIVED
4429
	    && sym->ts.u.derived->attr.alloc_comp
4430
	    && !sym->attr.pointer
Paul Thomas committed
4431 4432 4433
	    && ((sym->attr.dummy && sym->attr.intent == INTENT_OUT)
		  ||
		(sym->attr.result && sym != sym->result)))
4434 4435 4436 4437 4438
	{
	  sym->attr.referenced = 1;
	  gfc_get_symbol_decl (sym);
	}

4439 4440 4441 4442 4443 4444
      /* Check for dependencies in the array specification and string
	length, adding the necessary declarations to the function.  We
	mark the symbol now, as well as in traverse_ns, to prevent
	getting stuck in a circular dependency.  */
      sym->mark = 1;

4445 4446 4447 4448
      /* We do not want the middle-end to warn about unused parameters
         as this was already done above.  */
      if (sym->attr.dummy && sym->backend_decl != NULL_TREE)
	  TREE_NO_WARNING(sym->backend_decl) = 1;
4449
    }
4450 4451
  else if (sym->attr.flavor == FL_PARAMETER)
    {
4452
      if (warn_unused_parameter
4453 4454
           && !sym->attr.referenced
           && !sym->attr.use_assoc)
4455
	gfc_warning ("Unused parameter '%s' declared at %L", sym->name,
4456 4457
		     &sym->declared_at);
    }
4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473
  else if (sym->attr.flavor == FL_PROCEDURE)
    {
      /* TODO: move to the appropriate place in resolve.c.  */
      if (warn_return_type
	  && sym->attr.function
	  && sym->result
	  && sym != sym->result
	  && !sym->result->attr.referenced
	  && !sym->attr.use_assoc
	  && sym->attr.if_source != IFSRC_IFBODY)
	{
	  gfc_warning ("Return value '%s' of function '%s' declared at "
		       "%L not set", sym->result->name, sym->name,
		        &sym->result->declared_at);

	  /* Prevents "Unused variable" warning for RESULT variables.  */
4474
	  sym->result->mark = 1;
4475 4476
	}
    }
4477

4478 4479 4480 4481 4482 4483 4484 4485 4486 4487
  if (sym->attr.dummy == 1)
    {
      /* Modify the tree type for scalar character dummy arguments of bind(c)
	 procedures if they are passed by value.  The tree type for them will
	 be promoted to INTEGER_TYPE for the middle end, which appears to be
	 what C would do with characters passed by-value.  The value attribute
         implies the dummy is a scalar.  */
      if (sym->attr.value == 1 && sym->backend_decl != NULL
	  && sym->ts.type == BT_CHARACTER && sym->ts.is_c_interop
	  && sym->ns->proc_name != NULL && sym->ns->proc_name->attr.is_bind_c)
4488
	gfc_conv_scalar_char_value (sym, NULL, NULL);
4489 4490
    }

4491 4492 4493 4494 4495
  /* Make sure we convert the types of the derived types from iso_c_binding
     into (void *).  */
  if (sym->attr.flavor != FL_PROCEDURE && sym->attr.is_iso_c
      && sym->ts.type == BT_DERIVED)
    sym->backend_decl = gfc_typenode_for_spec (&(sym->ts));
4496 4497 4498 4499 4500 4501 4502 4503 4504
}

static void
generate_local_vars (gfc_namespace * ns)
{
  gfc_traverse_ns (ns, generate_local_decl);
}


4505 4506
/* Generate a switch statement to jump to the correct entry point.  Also
   creates the label decls for the entry points.  */
4507

4508 4509
static tree
gfc_trans_entry_master_switch (gfc_entry_list * el)
4510
{
4511 4512 4513 4514
  stmtblock_t block;
  tree label;
  tree tmp;
  tree val;
4515

4516 4517 4518 4519
  gfc_init_block (&block);
  for (; el; el = el->next)
    {
      /* Add the case label.  */
4520
      label = gfc_build_label_decl (NULL_TREE);
4521
      val = build_int_cst (gfc_array_index_type, el->id);
4522
      tmp = build_case_label (val, NULL_TREE, label);
4523
      gfc_add_expr_to_block (&block, tmp);
4524

4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535
      /* And jump to the actual entry point.  */
      label = gfc_build_label_decl (NULL_TREE);
      tmp = build1_v (GOTO_EXPR, label);
      gfc_add_expr_to_block (&block, tmp);

      /* Save the label decl.  */
      el->label = label;
    }
  tmp = gfc_finish_block (&block);
  /* The first argument selects the entry point.  */
  val = DECL_ARGUMENTS (current_function_decl);
4536
  tmp = build3_v (SWITCH_EXPR, val, tmp, NULL_TREE);
4537
  return tmp;
4538 4539
}

4540

4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559
/* Add code to string lengths of actual arguments passed to a function against
   the expected lengths of the dummy arguments.  */

static void
add_argument_checking (stmtblock_t *block, gfc_symbol *sym)
{
  gfc_formal_arglist *formal;

  for (formal = sym->formal; formal; formal = formal->next)
    if (formal->sym && formal->sym->ts.type == BT_CHARACTER)
      {
	enum tree_code comparison;
	tree cond;
	tree argname;
	gfc_symbol *fsym;
	gfc_charlen *cl;
	const char *message;

	fsym = formal->sym;
4560
	cl = fsym->ts.u.cl;
4561 4562 4563 4564 4565 4566 4567

	gcc_assert (cl);
	gcc_assert (cl->passed_length != NULL_TREE);
	gcc_assert (cl->backend_decl != NULL_TREE);

	/* For POINTER, ALLOCATABLE and assumed-shape dummy arguments, the
	   string lengths must match exactly.  Otherwise, it is only required
4568 4569 4570 4571 4572
	   that the actual string length is *at least* the expected one.
	   Sequence association allows for a mismatch of the string length
	   if the actual argument is (part of) an array, but only if the
	   dummy argument is an array. (See "Sequence association" in
	   Section 12.4.1.4 for F95 and 12.4.1.5 for F2003.)  */
4573 4574 4575 4576 4577 4578 4579
	if (fsym->attr.pointer || fsym->attr.allocatable
	    || (fsym->as && fsym->as->type == AS_ASSUMED_SHAPE))
	  {
	    comparison = NE_EXPR;
	    message = _("Actual string length does not match the declared one"
			" for dummy argument '%s' (%ld/%ld)");
	  }
4580 4581
	else if (fsym->as && fsym->as->rank != 0)
	  continue;
4582 4583 4584 4585 4586 4587 4588 4589 4590 4591
	else
	  {
	    comparison = LT_EXPR;
	    message = _("Actual string length is shorter than the declared one"
			" for dummy argument '%s' (%ld/%ld)");
	  }

	/* Build the condition.  For optional arguments, an actual length
	   of 0 is also acceptable if the associated string is NULL, which
	   means the argument was not passed.  */
4592 4593
	cond = fold_build2_loc (input_location, comparison, boolean_type_node,
				cl->passed_length, cl->backend_decl);
4594 4595 4596 4597 4598 4599
	if (fsym->attr.optional)
	  {
	    tree not_absent;
	    tree not_0length;
	    tree absent_failed;

4600 4601 4602
	    not_0length = fold_build2_loc (input_location, NE_EXPR,
					   boolean_type_node,
					   cl->passed_length,
4603
					   build_zero_cst (gfc_charlen_type_node));
4604 4605 4606
	    /* The symbol needs to be referenced for gfc_get_symbol_decl.  */
	    fsym->attr.referenced = 1;
	    not_absent = gfc_conv_expr_present (fsym);
4607

4608 4609 4610
	    absent_failed = fold_build2_loc (input_location, TRUTH_OR_EXPR,
					     boolean_type_node, not_0length,
					     not_absent);
4611

4612 4613
	    cond = fold_build2_loc (input_location, TRUTH_AND_EXPR,
				    boolean_type_node, cond, absent_failed);
4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628
	  }

	/* Build the runtime check.  */
	argname = gfc_build_cstring_const (fsym->name);
	argname = gfc_build_addr_expr (pchar_type_node, argname);
	gfc_trans_runtime_check (true, false, cond, block, &fsym->declared_at,
				 message, argname,
				 fold_convert (long_integer_type_node,
					       cl->passed_length),
				 fold_convert (long_integer_type_node,
					       cl->backend_decl));
      }
}


4629 4630 4631 4632 4633 4634
/* Generate the _gfortran_caf_this_image and _gfortran_caf_num_images
   global variables for -fcoarray=lib. They are placed into the translation
   unit of the main program.  Make sure that in one TU (the one of the main
   program), the first call to gfc_init_coarray_decl is done with true.
   Otherwise, expect link errors.  */

4635
void
4636
gfc_init_coarray_decl (bool main_tu)
4637
{
4638
  tree save_fn_decl;
4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649

  if (gfc_option.coarray != GFC_FCOARRAY_LIB)
    return;

  if (gfort_gvar_caf_this_image || gfort_gvar_caf_num_images)
    return;

  save_fn_decl = current_function_decl;
  current_function_decl = NULL_TREE;
  push_cfun (cfun);

4650 4651 4652 4653
  gfort_gvar_caf_this_image
	= build_decl (input_location, VAR_DECL,
		      get_identifier (PREFIX("caf_this_image")),
		      integer_type_node);
4654 4655 4656
  DECL_ARTIFICIAL (gfort_gvar_caf_this_image) = 1;
  TREE_USED (gfort_gvar_caf_this_image) = 1;
  TREE_PUBLIC (gfort_gvar_caf_this_image) = 1;
4657 4658 4659 4660 4661 4662 4663 4664
  TREE_READONLY (gfort_gvar_caf_this_image) = 0;

  if (main_tu)
    TREE_STATIC (gfort_gvar_caf_this_image) = 1;
  else
    DECL_EXTERNAL (gfort_gvar_caf_this_image) = 1;

  pushdecl_top_level (gfort_gvar_caf_this_image);
4665

4666 4667 4668 4669
  gfort_gvar_caf_num_images
	= build_decl (input_location, VAR_DECL,
		      get_identifier (PREFIX("caf_num_images")),
		      integer_type_node);
4670 4671 4672
  DECL_ARTIFICIAL (gfort_gvar_caf_num_images) = 1;
  TREE_USED (gfort_gvar_caf_num_images) = 1;
  TREE_PUBLIC (gfort_gvar_caf_num_images) = 1;
4673 4674 4675 4676 4677 4678 4679 4680
  TREE_READONLY (gfort_gvar_caf_num_images) = 0;

  if (main_tu)
    TREE_STATIC (gfort_gvar_caf_num_images) = 1;
  else
    DECL_EXTERNAL (gfort_gvar_caf_num_images) = 1;

  pushdecl_top_level (gfort_gvar_caf_num_images);
4681 4682 4683 4684 4685 4686

  pop_cfun ();
  current_function_decl = save_fn_decl;
}


4687 4688 4689
static void
create_main_function (tree fndecl)
{
4690
  tree old_context;
4691 4692 4693 4694
  tree ftn_main;
  tree tmp, decl, result_decl, argc, argv, typelist, arglist;
  stmtblock_t body;

4695 4696 4697 4698 4699 4700 4701 4702 4703
  old_context = current_function_decl;

  if (old_context)
    {
      push_function_context ();
      saved_parent_function_decls = saved_function_decls;
      saved_function_decls = NULL_TREE;
    }

4704 4705 4706 4707 4708 4709 4710
  /* main() function must be declared with global scope.  */
  gcc_assert (current_function_decl == NULL_TREE);

  /* Declare the function.  */
  tmp =  build_function_type_list (integer_type_node, integer_type_node,
				   build_pointer_type (pchar_type_node),
				   NULL_TREE);
4711
  main_identifier_node = get_identifier ("main");
4712 4713
  ftn_main = build_decl (input_location, FUNCTION_DECL,
      			 main_identifier_node, tmp);
4714 4715 4716 4717 4718 4719 4720
  DECL_EXTERNAL (ftn_main) = 0;
  TREE_PUBLIC (ftn_main) = 1;
  TREE_STATIC (ftn_main) = 1;
  DECL_ATTRIBUTES (ftn_main)
      = tree_cons (get_identifier("externally_visible"), NULL_TREE, NULL_TREE);

  /* Setup the result declaration (for "return 0").  */
4721 4722
  result_decl = build_decl (input_location,
			    RESULT_DECL, NULL_TREE, integer_type_node);
4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735
  DECL_ARTIFICIAL (result_decl) = 1;
  DECL_IGNORED_P (result_decl) = 1;
  DECL_CONTEXT (result_decl) = ftn_main;
  DECL_RESULT (ftn_main) = result_decl;

  pushdecl (ftn_main);

  /* Get the arguments.  */

  arglist = NULL_TREE;
  typelist = TYPE_ARG_TYPES (TREE_TYPE (ftn_main));

  tmp = TREE_VALUE (typelist);
4736
  argc = build_decl (input_location, PARM_DECL, get_identifier ("argc"), tmp);
4737 4738 4739 4740 4741 4742 4743 4744
  DECL_CONTEXT (argc) = ftn_main;
  DECL_ARG_TYPE (argc) = TREE_VALUE (typelist);
  TREE_READONLY (argc) = 1;
  gfc_finish_decl (argc);
  arglist = chainon (arglist, argc);

  typelist = TREE_CHAIN (typelist);
  tmp = TREE_VALUE (typelist);
4745
  argv = build_decl (input_location, PARM_DECL, get_identifier ("argv"), tmp);
4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765
  DECL_CONTEXT (argv) = ftn_main;
  DECL_ARG_TYPE (argv) = TREE_VALUE (typelist);
  TREE_READONLY (argv) = 1;
  DECL_BY_REFERENCE (argv) = 1;
  gfc_finish_decl (argv);
  arglist = chainon (arglist, argv);

  DECL_ARGUMENTS (ftn_main) = arglist;
  current_function_decl = ftn_main;
  announce_function (ftn_main);

  rest_of_decl_compilation (ftn_main, 1, 0);
  make_decl_rtl (ftn_main);
  init_function_start (ftn_main);
  pushlevel (0);

  gfc_init_block (&body);

  /* Call some libgfortran initialization routines, call then MAIN__(). */

4766 4767 4768 4769 4770 4771 4772 4773
  /* Call _gfortran_caf_init (*argc, ***argv, *this_image, *num_images).  */
  if (gfc_option.coarray == GFC_FCOARRAY_LIB)
    {
      tree pint_type, pppchar_type;
      pint_type = build_pointer_type (integer_type_node);
      pppchar_type
	= build_pointer_type (build_pointer_type (pchar_type_node));

4774
      gfc_init_coarray_decl (true);
4775 4776 4777 4778 4779 4780 4781 4782
      tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_init, 4,
		gfc_build_addr_expr (pint_type, argc),
		gfc_build_addr_expr (pppchar_type, argv),
		gfc_build_addr_expr (pint_type, gfort_gvar_caf_this_image),
		gfc_build_addr_expr (pint_type, gfort_gvar_caf_num_images));
      gfc_add_expr_to_block (&body, tmp);
    }

4783
  /* Call _gfortran_set_args (argc, argv).  */
4784 4785
  TREE_USED (argc) = 1;
  TREE_USED (argv) = 1;
4786 4787
  tmp = build_call_expr_loc (input_location,
			 gfor_fndecl_set_args, 2, argc, argv);
4788 4789 4790 4791 4792 4793
  gfc_add_expr_to_block (&body, tmp);

  /* Add a call to set_options to set up the runtime library Fortran
     language standard parameters.  */
  {
    tree array_type, array, var;
4794
    VEC(constructor_elt,gc) *v = NULL;
4795 4796 4797 4798 4799 4800 4801 4802

    /* Passing a new option to the library requires four modifications:
     + add it to the tree_cons list below
          + change the array size in the call to build_array_type
          + change the first argument to the library call
            gfor_fndecl_set_options
          + modify the library (runtime/compile_options.c)!  */

4803 4804 4805 4806 4807 4808 4809 4810
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node,
                                           gfc_option.warn_std));
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node,
                                           gfc_option.allow_std));
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node, pedantic));
4811 4812 4813
    /* TODO: This is the old -fdump-core option, which is unused but
       passed due to ABI compatibility; remove when bumping the
       library ABI.  */
4814 4815
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node,
4816
                                           0));
4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node,
                                           gfc_option.flag_backtrace));
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node,
                                           gfc_option.flag_sign_zero));
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node,
                                           (gfc_option.rtcheck
                                            & GFC_RTCHECK_BOUNDS)));
    CONSTRUCTOR_APPEND_ELT (v, NULL_TREE,
                            build_int_cst (integer_type_node,
                                           gfc_option.flag_range_check));
4830 4831

    array_type = build_array_type (integer_type_node,
4832
				   build_index_type (size_int (7)));
4833
    array = build_constructor (array_type, v);
4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844
    TREE_CONSTANT (array) = 1;
    TREE_STATIC (array) = 1;

    /* Create a static variable to hold the jump table.  */
    var = gfc_create_var (array_type, "options");
    TREE_CONSTANT (var) = 1;
    TREE_STATIC (var) = 1;
    TREE_READONLY (var) = 1;
    DECL_INITIAL (var) = array;
    var = gfc_build_addr_expr (build_pointer_type (integer_type_node), var);

4845 4846
    tmp = build_call_expr_loc (input_location,
			   gfor_fndecl_set_options, 2,
4847 4848 4849 4850 4851 4852 4853 4854
			   build_int_cst (integer_type_node, 8), var);
    gfc_add_expr_to_block (&body, tmp);
  }

  /* If -ffpe-trap option was provided, add a call to set_fpe so that
     the library will raise a FPE when needed.  */
  if (gfc_option.fpe != 0)
    {
4855 4856
      tmp = build_call_expr_loc (input_location,
			     gfor_fndecl_set_fpe, 1,
4857 4858 4859 4860 4861 4862 4863 4864 4865 4866
			     build_int_cst (integer_type_node,
					    gfc_option.fpe));
      gfc_add_expr_to_block (&body, tmp);
    }

  /* If this is the main program and an -fconvert option was provided,
     add a call to set_convert.  */

  if (gfc_option.convert != GFC_CONVERT_NATIVE)
    {
4867 4868
      tmp = build_call_expr_loc (input_location,
			     gfor_fndecl_set_convert, 1,
4869 4870 4871 4872 4873 4874 4875 4876 4877 4878
			     build_int_cst (integer_type_node,
					    gfc_option.convert));
      gfc_add_expr_to_block (&body, tmp);
    }

  /* If this is the main program and an -frecord-marker option was provided,
     add a call to set_record_marker.  */

  if (gfc_option.record_marker != 0)
    {
4879 4880
      tmp = build_call_expr_loc (input_location,
			     gfor_fndecl_set_record_marker, 1,
4881 4882 4883 4884 4885 4886 4887
			     build_int_cst (integer_type_node,
					    gfc_option.record_marker));
      gfc_add_expr_to_block (&body, tmp);
    }

  if (gfc_option.max_subrecord_length != 0)
    {
4888 4889
      tmp = build_call_expr_loc (input_location,
			     gfor_fndecl_set_max_subrecord_length, 1,
4890 4891 4892 4893 4894 4895
			     build_int_cst (integer_type_node,
					    gfc_option.max_subrecord_length));
      gfc_add_expr_to_block (&body, tmp);
    }

  /* Call MAIN__().  */
4896 4897
  tmp = build_call_expr_loc (input_location,
			 fndecl, 0);
4898 4899
  gfc_add_expr_to_block (&body, tmp);

4900 4901 4902
  /* Mark MAIN__ as used.  */
  TREE_USED (fndecl) = 1;

4903 4904 4905 4906 4907
  /* Coarray: Call _gfortran_caf_finalize(void).  */
  if (gfc_option.coarray == GFC_FCOARRAY_LIB)
    { 
      /* Per F2008, 8.5.1 END of the main program implies a
	 SYNC MEMORY.  */ 
4908
      tmp = built_in_decls [BUILT_IN_SYNC_SYNCHRONIZE];
4909 4910 4911 4912 4913 4914 4915
      tmp = build_call_expr_loc (input_location, tmp, 0);
      gfc_add_expr_to_block (&body, tmp);

      tmp = build_call_expr_loc (input_location, gfor_fndecl_caf_finalize, 0);
      gfc_add_expr_to_block (&body, tmp);
    }

4916
  /* "return 0".  */
4917 4918 4919
  tmp = fold_build2_loc (input_location, MODIFY_EXPR, integer_type_node,
			 DECL_RESULT (ftn_main),
			 build_int_cst (integer_type_node, 0));
4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937
  tmp = build1_v (RETURN_EXPR, tmp);
  gfc_add_expr_to_block (&body, tmp);


  DECL_SAVED_TREE (ftn_main) = gfc_finish_block (&body);
  decl = getdecls ();

  /* Finish off this function and send it for code generation.  */
  poplevel (1, 0, 1);
  BLOCK_SUPERCONTEXT (DECL_INITIAL (ftn_main)) = ftn_main;

  DECL_SAVED_TREE (ftn_main)
    = build3_v (BIND_EXPR, decl, DECL_SAVED_TREE (ftn_main),
		DECL_INITIAL (ftn_main));

  /* Output the GENERIC tree.  */
  dump_function (TDI_original, ftn_main);

4938
  cgraph_finalize_function (ftn_main, true);
4939 4940 4941 4942 4943 4944 4945

  if (old_context)
    {
      pop_function_context ();
      saved_function_decls = saved_parent_function_decls;
    }
  current_function_decl = old_context;
4946 4947 4948
}


4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989
/* Get the result expression for a procedure.  */

static tree
get_proc_result (gfc_symbol* sym)
{
  if (sym->attr.subroutine || sym == sym->result)
    {
      if (current_fake_result_decl != NULL)
	return TREE_VALUE (current_fake_result_decl);

      return NULL_TREE;
    }

  return sym->result->backend_decl;
}


/* Generate an appropriate return-statement for a procedure.  */

tree
gfc_generate_return (void)
{
  gfc_symbol* sym;
  tree result;
  tree fndecl;

  sym = current_procedure_symbol;
  fndecl = sym->backend_decl;

  if (TREE_TYPE (DECL_RESULT (fndecl)) == void_type_node)
    result = NULL_TREE;
  else
    {
      result = get_proc_result (sym);

      /* Set the return value to the dummy result variable.  The
	 types may be different for scalar default REAL functions
	 with -ff2c, therefore we have to convert.  */
      if (result != NULL_TREE)
	{
	  result = convert (TREE_TYPE (DECL_RESULT (fndecl)), result);
4990 4991 4992
	  result = fold_build2_loc (input_location, MODIFY_EXPR,
				    TREE_TYPE (result), DECL_RESULT (fndecl),
				    result);
4993 4994 4995 4996 4997 4998 4999
	}
    }

  return build1_v (RETURN_EXPR, result);
}


5000 5001 5002 5003 5004 5005 5006 5007 5008
/* Generate code for a function.  */

void
gfc_generate_function_code (gfc_namespace * ns)
{
  tree fndecl;
  tree old_context;
  tree decl;
  tree tmp;
5009
  stmtblock_t init, cleanup;
5010
  stmtblock_t body;
5011
  gfc_wrapped_block try_block;
5012
  tree recurcheckvar = NULL_TREE;
5013
  gfc_symbol *sym;
5014
  gfc_symbol *previous_procedure_symbol;
Paul Thomas committed
5015
  int rank;
5016
  bool is_recursive;
5017 5018

  sym = ns->proc_name;
5019 5020
  previous_procedure_symbol = current_procedure_symbol;
  current_procedure_symbol = sym;
5021

5022
  /* Check that the frontend isn't still using this.  */
5023
  gcc_assert (sym->tlink == NULL);
5024 5025 5026 5027
  sym->tlink = sym;

  /* Create the declaration for functions with global scope.  */
  if (!sym->backend_decl)
5028
    gfc_create_function_decl (ns, false);
5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039

  fndecl = sym->backend_decl;
  old_context = current_function_decl;

  if (old_context)
    {
      push_function_context ();
      saved_parent_function_decls = saved_function_decls;
      saved_function_decls = NULL_TREE;
    }

5040
  trans_function_start (sym);
5041

5042
  gfc_init_block (&init);
5043

Jakub Jelinek committed
5044 5045 5046 5047 5048 5049 5050
  if (ns->entries && ns->proc_name->ts.type == BT_CHARACTER)
    {
      /* Copy length backend_decls to all entry point result
	 symbols.  */
      gfc_entry_list *el;
      tree backend_decl;

5051 5052
      gfc_conv_const_charlen (ns->proc_name->ts.u.cl);
      backend_decl = ns->proc_name->result->ts.u.cl->backend_decl;
Jakub Jelinek committed
5053
      for (el = ns->entries; el; el = el->next)
5054
	el->sym->result->ts.u.cl->backend_decl = backend_decl;
Jakub Jelinek committed
5055 5056
    }

5057 5058 5059
  /* Translate COMMON blocks.  */
  gfc_trans_common (ns);

5060 5061 5062 5063 5064 5065
  /* Null the parent fake result declaration if this namespace is
     a module function or an external procedures.  */
  if ((ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
	|| ns->parent == NULL)
    parent_fake_result_decl = NULL_TREE;

5066 5067
  gfc_generate_contained_functions (ns);

5068 5069 5070
  nonlocal_dummy_decls = NULL;
  nonlocal_dummy_decl_pset = NULL;

5071
  has_coarray_vars = false;
5072
  generate_local_vars (ns);
5073

5074 5075 5076
  if (gfc_option.coarray == GFC_FCOARRAY_LIB && has_coarray_vars)
    generate_coarray_init (ns);

5077 5078 5079 5080 5081 5082 5083 5084
  /* Keep the parent fake result declaration in module functions
     or external procedures.  */
  if ((ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
	|| ns->parent == NULL)
    current_fake_result_decl = parent_fake_result_decl;
  else
    current_fake_result_decl = NULL_TREE;

5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102
  is_recursive = sym->attr.recursive
		 || (sym->attr.entry_master
		     && sym->ns->entries->sym->attr.recursive);
  if ((gfc_option.rtcheck & GFC_RTCHECK_RECURSION)
	&& !is_recursive
	&& !gfc_option.flag_recursive)
    {
      char * msg;

      asprintf (&msg, "Recursive call to nonrecursive procedure '%s'",
		sym->name);
      recurcheckvar = gfc_create_var (boolean_type_node, "is_recursive");
      TREE_STATIC (recurcheckvar) = 1;
      DECL_INITIAL (recurcheckvar) = boolean_false_node;
      gfc_add_expr_to_block (&init, recurcheckvar);
      gfc_trans_runtime_check (true, false, recurcheckvar, &init,
			       &sym->declared_at, msg);
      gfc_add_modify (&init, recurcheckvar, boolean_true_node);
5103
      free (msg);
5104
    }
5105 5106 5107 5108 5109

  /* Now generate the code for the body of this function.  */
  gfc_init_block (&body);

  if (TREE_TYPE (DECL_RESULT (fndecl)) != void_type_node
5110
	&& sym->attr.subroutine)
5111 5112
    {
      tree alternate_return;
5113
      alternate_return = gfc_get_fake_result_decl (sym, 0);
5114
      gfc_add_modify (&body, alternate_return, integer_zero_node);
5115 5116
    }

5117 5118 5119 5120 5121 5122 5123
  if (ns->entries)
    {
      /* Jump to the correct entry point.  */
      tmp = gfc_trans_entry_master_switch (ns->entries);
      gfc_add_expr_to_block (&body, tmp);
    }

5124 5125 5126
  /* If bounds-checking is enabled, generate code to check passed in actual
     arguments against the expected dummy argument attributes (e.g. string
     lengths).  */
5127
  if ((gfc_option.rtcheck & GFC_RTCHECK_BOUNDS) && !sym->attr.is_bind_c)
5128 5129
    add_argument_checking (&body, sym);

5130 5131 5132 5133 5134
  tmp = gfc_trans_code (ns->code);
  gfc_add_expr_to_block (&body, tmp);

  if (TREE_TYPE (DECL_RESULT (fndecl)) != void_type_node)
    {
5135
      tree result = get_proc_result (sym);
5136

5137 5138 5139
      if (result != NULL_TREE
	    && sym->attr.function
	    && !sym->attr.pointer)
Paul Thomas committed
5140
	{
5141 5142 5143 5144 5145 5146 5147
	  if (sym->attr.allocatable && sym->attr.dimension == 0
	      && sym->result == sym)
	    gfc_add_modify (&init, result, fold_convert (TREE_TYPE (result),
							 null_pointer_node));
	  else if (sym->ts.type == BT_DERIVED
	      && sym->ts.u.derived->attr.alloc_comp
	      && !sym->attr.allocatable)
5148 5149
	    {
	      rank = sym->as ? sym->as->rank : 0;
5150 5151
	      tmp = gfc_nullify_alloc_comp (sym->ts.u.derived, result, rank);
	      gfc_add_expr_to_block (&init, tmp);
5152
	    }
Tobias Burnus committed
5153
	}
5154

5155 5156 5157 5158 5159 5160
      if (result == NULL_TREE)
	{
	  /* TODO: move to the appropriate place in resolve.c.  */
	  if (warn_return_type && !sym->attr.referenced && sym == sym->result)
	    gfc_warning ("Return value of function '%s' at %L not set",
			 sym->name, &sym->declared_at);
Paul Thomas committed
5161

5162 5163
	  TREE_NO_WARNING(sym->backend_decl) = 1;
	}
5164
      else
5165
	gfc_add_expr_to_block (&body, gfc_generate_return ());
5166
    }
5167 5168 5169 5170 5171 5172

  gfc_init_block (&cleanup);

  /* Reset recursion-check variable.  */
  if ((gfc_option.rtcheck & GFC_RTCHECK_RECURSION)
	 && !is_recursive
5173
	 && !gfc_option.gfc_flag_openmp
5174
	 && recurcheckvar != NULL_TREE)
5175
    {
5176 5177
      gfc_add_modify (&cleanup, recurcheckvar, boolean_false_node);
      recurcheckvar = NULL;
5178
    }
Paul Thomas committed
5179

5180 5181 5182 5183 5184 5185 5186
  /* Finish the function body and add init and cleanup code.  */
  tmp = gfc_finish_block (&body);
  gfc_start_wrapped_block (&try_block, tmp);
  /* Add code to create and cleanup arrays.  */
  gfc_trans_deferred_vars (sym, &try_block);
  gfc_add_init_cleanup (&try_block, gfc_finish_block (&init),
			gfc_finish_block (&cleanup));
5187 5188 5189 5190 5191 5192 5193

  /* Add all the decls we created during processing.  */
  decl = saved_function_decls;
  while (decl)
    {
      tree next;

5194 5195
      next = DECL_CHAIN (decl);
      DECL_CHAIN (decl) = NULL_TREE;
5196 5197 5198 5199 5200
      pushdecl (decl);
      decl = next;
    }
  saved_function_decls = NULL_TREE;

5201
  DECL_SAVED_TREE (fndecl) = gfc_finish_wrapped_block (&try_block);
5202
  decl = getdecls ();
5203 5204 5205 5206 5207

  /* Finish off this function and send it for code generation.  */
  poplevel (1, 0, 1);
  BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;

5208 5209 5210 5211
  DECL_SAVED_TREE (fndecl)
    = build3_v (BIND_EXPR, decl, DECL_SAVED_TREE (fndecl),
		DECL_INITIAL (fndecl));

5212 5213 5214 5215 5216 5217 5218 5219 5220
  if (nonlocal_dummy_decls)
    {
      BLOCK_VARS (DECL_INITIAL (fndecl))
	= chainon (BLOCK_VARS (DECL_INITIAL (fndecl)), nonlocal_dummy_decls);
      pointer_set_destroy (nonlocal_dummy_decl_pset);
      nonlocal_dummy_decls = NULL;
      nonlocal_dummy_decl_pset = NULL;
    }

5221 5222 5223 5224 5225 5226 5227 5228 5229 5230
  /* Output the GENERIC tree.  */
  dump_function (TDI_original, fndecl);

  /* Store the end of the function, so that we get good line number
     info for the epilogue.  */
  cfun->function_end_locus = input_location;

  /* We're leaving the context of this function, so zap cfun.
     It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
     tree_rest_of_compilation.  */
5231
  set_cfun (NULL);
5232 5233 5234 5235 5236 5237 5238 5239

  if (old_context)
    {
      pop_function_context ();
      saved_function_decls = saved_parent_function_decls;
    }
  current_function_decl = old_context;

5240 5241
  if (decl_function_context (fndecl) && !gfc_option.coarray == GFC_FCOARRAY_LIB
      && has_coarray_vars)
5242
    /* Register this function with cgraph just far enough to get it
5243 5244 5245 5246
       added to our parent's nested function list.
       If there are static coarrays in this function, the nested _caf_init
       function has already called cgraph_create_node, which also created
       the cgraph node for this function.  */
5247
    (void) cgraph_create_node (fndecl);
5248
  else
5249
    cgraph_finalize_function (fndecl, true);
5250 5251

  gfc_trans_use_stmts (ns);
5252
  gfc_traverse_ns (ns, gfc_emit_parameter_debug_info);
5253 5254 5255

  if (sym->attr.is_main_program)
    create_main_function (fndecl);
5256 5257

  current_procedure_symbol = previous_procedure_symbol;
5258 5259
}

5260

5261 5262 5263
void
gfc_generate_constructors (void)
{
5264
  gcc_assert (gfc_static_ctors == NULL_TREE);
5265 5266 5267 5268 5269 5270 5271 5272 5273 5274
#if 0
  tree fnname;
  tree type;
  tree fndecl;
  tree decl;
  tree tmp;

  if (gfc_static_ctors == NULL_TREE)
    return;

Geoffrey Keating committed
5275
  fnname = get_file_function_name ("I");
5276
  type = build_function_type_list (void_type_node, NULL_TREE);
5277

5278 5279
  fndecl = build_decl (input_location,
		       FUNCTION_DECL, fnname, type);
5280 5281
  TREE_PUBLIC (fndecl) = 1;

5282 5283
  decl = build_decl (input_location,
		     RESULT_DECL, NULL_TREE, void_type_node);
5284 5285
  DECL_ARTIFICIAL (decl) = 1;
  DECL_IGNORED_P (decl) = 1;
5286 5287 5288 5289 5290 5291 5292
  DECL_CONTEXT (decl) = fndecl;
  DECL_RESULT (fndecl) = decl;

  pushdecl (fndecl);

  current_function_decl = fndecl;

5293
  rest_of_decl_compilation (fndecl, 1, 0);
5294

5295
  make_decl_rtl (fndecl);
5296

5297
  init_function_start (fndecl);
5298 5299 5300 5301 5302

  pushlevel (0);

  for (; gfc_static_ctors; gfc_static_ctors = TREE_CHAIN (gfc_static_ctors))
    {
5303 5304
      tmp = build_call_expr_loc (input_location,
			     TREE_VALUE (gfc_static_ctors), 0);
5305
      DECL_SAVED_TREE (fndecl) = build_stmt (input_location, EXPR_STMT, tmp);
5306 5307
    }

5308
  decl = getdecls ();
5309 5310 5311
  poplevel (1, 0, 1);

  BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
5312 5313 5314
  DECL_SAVED_TREE (fndecl)
    = build3_v (BIND_EXPR, decl, DECL_SAVED_TREE (fndecl),
		DECL_INITIAL (fndecl));
5315 5316 5317 5318

  free_after_parsing (cfun);
  free_after_compilation (cfun);

5319
  tree_rest_of_compilation (fndecl);
5320 5321 5322 5323 5324

  current_function_decl = NULL_TREE;
#endif
}

5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335
/* Translates a BLOCK DATA program unit. This means emitting the
   commons contained therein plus their initializations. We also emit
   a globally visible symbol to make sure that each BLOCK DATA program
   unit remains unique.  */

void
gfc_generate_block_data (gfc_namespace * ns)
{
  tree decl;
  tree id;

5336 5337 5338 5339 5340 5341 5342
  /* Tell the backend the source location of the block data.  */
  if (ns->proc_name)
    gfc_set_backend_locus (&ns->proc_name->declared_at);
  else
    gfc_set_backend_locus (&gfc_current_locus);

  /* Process the DATA statements.  */
5343 5344
  gfc_trans_common (ns);

5345 5346 5347
  /* Create a global symbol with the mane of the block data.  This is to
     generate linker errors if the same name is used twice.  It is never
     really used.  */
5348 5349 5350 5351 5352
  if (ns->proc_name)
    id = gfc_sym_mangled_function_id (ns->proc_name);
  else
    id = get_identifier ("__BLOCK_DATA__");

5353 5354
  decl = build_decl (input_location,
		     VAR_DECL, id, gfc_array_index_type);
5355 5356
  TREE_PUBLIC (decl) = 1;
  TREE_STATIC (decl) = 1;
5357
  DECL_IGNORED_P (decl) = 1;
5358 5359 5360 5361 5362

  pushdecl (decl);
  rest_of_decl_compilation (decl, 1, 0);
}

Asher Langton committed
5363

5364 5365 5366
/* Process the local variables of a BLOCK construct.  */

void
5367
gfc_process_block_locals (gfc_namespace* ns)
5368 5369 5370 5371
{
  tree decl;

  gcc_assert (saved_local_decls == NULL_TREE);
5372 5373
  has_coarray_vars = false;

5374 5375
  generate_local_vars (ns);

5376 5377 5378
  if (gfc_option.coarray == GFC_FCOARRAY_LIB && has_coarray_vars)
    generate_coarray_init (ns);

5379 5380 5381 5382 5383
  decl = saved_local_decls;
  while (decl)
    {
      tree next;

5384 5385
      next = DECL_CHAIN (decl);
      DECL_CHAIN (decl) = NULL_TREE;
5386 5387 5388 5389 5390 5391 5392
      pushdecl (decl);
      decl = next;
    }
  saved_local_decls = NULL_TREE;
}


5393
#include "gt-fortran-trans-decl.h"