trans-decl.c 90 KB
Newer Older
dnovillo's avatar
 
dnovillo committed
1
/* Backend function setup
2 3
   Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
   Inc.
dnovillo's avatar
 
dnovillo committed
4 5
   Contributed by Paul Brook

6
This file is part of GCC.
dnovillo's avatar
 
dnovillo committed
7

8 9 10 11
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
Software Foundation; either version 2, or (at your option) any later
version.
dnovillo's avatar
 
dnovillo committed
12

13 14 15 16
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.
dnovillo's avatar
 
dnovillo committed
17 18

You should have received a copy of the GNU General Public License
19
along with GCC; see the file COPYING.  If not, write to the Free
kcook's avatar
kcook committed
20 21
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.  */
dnovillo's avatar
 
dnovillo committed
22 23 24 25 26 27 28 29

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

#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "tree.h"
#include "tree-dump.h"
dnovillo's avatar
 
dnovillo committed
30
#include "tree-gimple.h"
dnovillo's avatar
 
dnovillo committed
31 32 33
#include "ggc.h"
#include "toplev.h"
#include "tm.h"
rsandifo's avatar
rsandifo committed
34
#include "rtl.h"
dnovillo's avatar
 
dnovillo committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#include "target.h"
#include "function.h"
#include "flags.h"
#include "cgraph.h"
#include "gfortran.h"
#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;
53
static GTY(()) tree parent_fake_result_decl;
dnovillo's avatar
 
dnovillo committed
54 55 56 57 58 59

static GTY(()) tree current_function_return_label;


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

jakub's avatar
jakub committed
60 61
static GTY(()) tree saved_function_decls;
static GTY(()) tree saved_parent_function_decls;
dnovillo's avatar
 
dnovillo committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78


/* 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;


/* List of static constructor functions.  */

tree gfc_static_ctors;


/* Function declarations for builtin library functions.  */

tree gfor_fndecl_internal_malloc;
tree gfor_fndecl_internal_malloc64;
rsandifo's avatar
rsandifo committed
79 80
tree gfor_fndecl_internal_realloc;
tree gfor_fndecl_internal_realloc64;
dnovillo's avatar
 
dnovillo committed
81 82 83
tree gfor_fndecl_internal_free;
tree gfor_fndecl_allocate;
tree gfor_fndecl_allocate64;
84 85
tree gfor_fndecl_allocate_array;
tree gfor_fndecl_allocate64_array;
dnovillo's avatar
 
dnovillo committed
86 87 88 89 90 91 92
tree gfor_fndecl_deallocate;
tree gfor_fndecl_pause_numeric;
tree gfor_fndecl_pause_string;
tree gfor_fndecl_stop_numeric;
tree gfor_fndecl_stop_string;
tree gfor_fndecl_select_string;
tree gfor_fndecl_runtime_error;
93
tree gfor_fndecl_set_fpe;
fxcoudert's avatar
fxcoudert committed
94
tree gfor_fndecl_set_std;
95
tree gfor_fndecl_set_convert;
96
tree gfor_fndecl_set_record_marker;
97 98
tree gfor_fndecl_ctime;
tree gfor_fndecl_fdate;
99
tree gfor_fndecl_ttynam;
dnovillo's avatar
 
dnovillo committed
100 101 102 103 104 105 106 107
tree gfor_fndecl_in_pack;
tree gfor_fndecl_in_unpack;
tree gfor_fndecl_associated;


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

fxcoudert's avatar
fxcoudert committed
108
gfc_powdecl_list gfor_fndecl_math_powi[4][3];
dnovillo's avatar
 
dnovillo committed
109 110
tree gfor_fndecl_math_cpowf;
tree gfor_fndecl_math_cpow;
fxcoudert's avatar
fxcoudert committed
111 112
tree gfor_fndecl_math_cpowl10;
tree gfor_fndecl_math_cpowl16;
dnovillo's avatar
 
dnovillo committed
113 114
tree gfor_fndecl_math_ishftc4;
tree gfor_fndecl_math_ishftc8;
fxcoudert's avatar
fxcoudert committed
115
tree gfor_fndecl_math_ishftc16;
dnovillo's avatar
 
dnovillo committed
116 117
tree gfor_fndecl_math_exponent4;
tree gfor_fndecl_math_exponent8;
fxcoudert's avatar
fxcoudert committed
118 119
tree gfor_fndecl_math_exponent10;
tree gfor_fndecl_math_exponent16;
dnovillo's avatar
 
dnovillo committed
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140


/* String functions.  */

tree gfor_fndecl_copy_string;
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;
tree gfor_fndecl_string_repeat;
tree gfor_fndecl_adjustl;
tree gfor_fndecl_adjustr;


/* Other misc. runtime library functions.  */

tree gfor_fndecl_size0;
tree gfor_fndecl_size1;
pbrook's avatar
pbrook committed
141
tree gfor_fndecl_iargc;
dnovillo's avatar
 
dnovillo committed
142 143 144 145 146 147 148 149 150

/* Intrinsic functions implemented in FORTRAN.  */
tree gfor_fndecl_si_kind;
tree gfor_fndecl_sr_kind;


static void
gfc_add_decl_to_parent_function (tree decl)
{
pbrook's avatar
pbrook committed
151
  gcc_assert (decl);
dnovillo's avatar
 
dnovillo committed
152 153 154 155 156 157 158 159 160
  DECL_CONTEXT (decl) = DECL_CONTEXT (current_function_decl);
  DECL_NONLOCAL (decl) = 1;
  TREE_CHAIN (decl) = saved_parent_function_decls;
  saved_parent_function_decls = decl;
}

void
gfc_add_decl_to_function (tree decl)
{
pbrook's avatar
pbrook committed
161
  gcc_assert (decl);
dnovillo's avatar
 
dnovillo committed
162 163 164 165 166 167 168
  TREE_USED (decl) = 1;
  DECL_CONTEXT (decl) = current_function_decl;
  TREE_CHAIN (decl) = saved_function_decls;
  saved_function_decls = decl;
}


169 170 171
/* 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.  */
dnovillo's avatar
 
dnovillo committed
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194

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.  */
  label_decl = build_decl (LABEL_DECL, label_id, void_type_node);
  DECL_CONTEXT (label_decl) = current_function_decl;
  DECL_MODE (label_decl) = VOIDmode;

195 196 197 198 199
  /* 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;
dnovillo's avatar
 
dnovillo committed
200

201
  DECL_ARTIFICIAL (label_decl) = 1;
dnovillo's avatar
 
dnovillo committed
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
  return label_decl;
}


/* Returns the return label for the current function.  */

tree
gfc_get_return_label (void)
{
  char name[GFC_MAX_SYMBOL_LEN + 10];

  if (current_function_return_label)
    return current_function_return_label;

  sprintf (name, "__return_%s",
	   IDENTIFIER_POINTER (DECL_NAME (current_function_decl)));

  current_function_return_label =
    gfc_build_label_decl (get_identifier (name));

  DECL_ARTIFICIAL (current_function_return_label) = 1;

  return current_function_return_label;
}


228 229 230 231 232 233 234 235 236 237 238 239 240 241
/* Set the backend source location of a decl.  */

void
gfc_set_decl_location (tree decl, locus * loc)
{
#ifdef USE_MAPPED_LOCATION
  DECL_SOURCE_LOCATION (decl) = loc->lb->location;
#else
  DECL_SOURCE_LINE (decl) = loc->lb->linenum;
  DECL_SOURCE_FILE (decl) = loc->lb->file->filename;
#endif
}


dnovillo's avatar
 
dnovillo committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255
/* 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.  */
pbrook's avatar
pbrook committed
256
      gcc_assert (lp != NULL && lp->value <= MAX_LABEL_VALUE);
dnovillo's avatar
 
dnovillo committed
257 258 259 260 261 262 263 264

      /* 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.  */
265
      if (lp->value <= MAX_LABEL_VALUE)	/* An internal label.  */
266
	gfc_set_decl_location (label_decl, &lp->where);
dnovillo's avatar
 
dnovillo committed
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
      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)
{
  return (get_identifier (sym->name));
}


/* Construct mangled name from symbol name.  */

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

293
  if (sym->module == NULL)
dnovillo's avatar
 
dnovillo committed
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
    return gfc_sym_identifier (sym);
  else
    {
      snprintf (name, sizeof name, "__%s__%s", sym->module, sym->name);
      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];

311 312
  if (sym->module == NULL || sym->attr.proc == PROC_EXTERNAL
      || (sym->module != NULL && sym->attr.if_source == IFSRC_IFBODY))
dnovillo's avatar
 
dnovillo committed
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
    {
      if (strcmp (sym->name, "MAIN__") == 0
	  || sym->attr.proc == PROC_INTRINSIC)
	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
    {
      snprintf (name, sizeof name, "__%s__%s", sym->module, sym->name);
      return get_identifier (name);
    }
}


tobi's avatar
tobi committed
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
/* 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;
}


364 365 366 367 368 369 370 371 372 373 374 375 376 377
/* 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) 
378
    ptr_decl = build_fold_indirect_ref (ptr_decl);
379 380 381 382 383

  /* Check to see if we're dealing with a variable-sized array.  */
  if (sym->attr.dimension
      && TREE_CODE (TREE_TYPE (decl)) == POINTER_TYPE) 
    {  
384
      /* These decls will be dereferenced later, so we don't dereference
385 386 387 388 389 390 391
	 them here.  */
      value = convert (TREE_TYPE (decl), ptr_decl);
    }
  else
    {
      ptr_decl = convert (build_pointer_type (TREE_TYPE (decl)),
			  ptr_decl);
392
      value = build_fold_indirect_ref (ptr_decl);
393 394 395 396
    }

  SET_DECL_VALUE_EXPR (decl, value);
  DECL_HAS_VALUE_EXPR_P (decl) = 1;
jakub's avatar
jakub committed
397
  GFC_DECL_CRAY_POINTEE (decl) = 1;
398 399 400 401 402
  /* This is a fake variable just for debugging purposes.  */
  TREE_ASM_WRITTEN (decl) = 1;
}


dnovillo's avatar
 
dnovillo committed
403 404 405 406 407 408
/* Finish processing of a declaration and install its initial value.  */

static void
gfc_finish_decl (tree decl, tree init)
{
  if (TREE_CODE (decl) == PARM_DECL)
pbrook's avatar
pbrook committed
409
    gcc_assert (init == NULL_TREE);
dnovillo's avatar
 
dnovillo committed
410 411 412
  /* Remember that PARM_DECL doesn't have a DECL_INITIAL field per se
     -- it overlaps DECL_ARG_TYPE.  */
  else if (init == NULL_TREE)
pbrook's avatar
pbrook committed
413
    gcc_assert (DECL_INITIAL (decl) == NULL_TREE);
dnovillo's avatar
 
dnovillo committed
414
  else
pbrook's avatar
pbrook committed
415
    gcc_assert (DECL_INITIAL (decl) == error_mark_node);
dnovillo's avatar
 
dnovillo committed
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463

  if (init != NULL_TREE)
    {
      if (TREE_CODE (decl) != TYPE_DECL)
	DECL_INITIAL (decl) = init;
      else
	{
	  /* typedef foo = bar; store the type of bar as the type of foo.  */
	  TREE_TYPE (decl) = TREE_TYPE (init);
	  DECL_INITIAL (decl) = init = 0;
	}
    }

  if (TREE_CODE (decl) == VAR_DECL)
    {
      if (DECL_SIZE (decl) == NULL_TREE
	  && TYPE_SIZE (TREE_TYPE (decl)) != NULL_TREE)
	layout_decl (decl, 0);

      /* 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.  */
      if (DECL_SIZE (decl) == NULL_TREE
          && (TREE_STATIC (decl) ? (DECL_INITIAL (decl) != 0
				    || DECL_CONTEXT (decl) != 0)
                                 : !DECL_EXTERNAL (decl)))
	{
	  gfc_fatal_error ("storage size not known");
	}

      if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
	  && (DECL_SIZE (decl) != 0)
	  && (TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST))
	{
	  gfc_fatal_error ("storage size not constant");
	}
    }

}


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

static void
gfc_finish_var_decl (tree decl, gfc_symbol * sym)
{
464
  /* TREE_ADDRESSABLE means the address of this variable is actually needed.
dnovillo's avatar
 
dnovillo committed
465 466 467
     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.  */
steven's avatar
steven committed
468

469
  /* Set DECL_VALUE_EXPR for Cray Pointees.  */
steven's avatar
steven committed
470
  if (sym->attr.cray_pointee)
471
    gfc_finish_cray_pointee (decl, sym);
steven's avatar
steven committed
472

dnovillo's avatar
 
dnovillo committed
473 474 475 476 477 478 479 480 481 482
  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)
    {
eedelman's avatar
eedelman committed
483 484
      if (sym->ns->proc_name->backend_decl == current_function_decl
          || sym->result == sym)
dnovillo's avatar
 
dnovillo committed
485 486 487 488 489
	gfc_add_decl_to_function (decl);
      else
	gfc_add_decl_to_parent_function (decl);
    }

490 491 492
  if (sym->attr.cray_pointee)
    return;

dnovillo's avatar
 
dnovillo committed
493 494 495 496 497 498
  /* If a variable is USE associated, it's always external.  */
  if (sym->attr.use_assoc)
    {
      DECL_EXTERNAL (decl) = 1;
      TREE_PUBLIC (decl) = 1;
    }
499
  else if (sym->module && !sym->attr.result && !sym->attr.dummy)
dnovillo's avatar
 
dnovillo committed
500
    {
tobi's avatar
tobi committed
501
      /* TODO: Don't set sym->module for result or dummy variables.  */
eedelman's avatar
eedelman committed
502
      gcc_assert (current_function_decl == NULL_TREE || sym->result == sym);
dnovillo's avatar
 
dnovillo committed
503 504 505 506 507 508 509 510 511 512 513 514 515 516
      /* This is the declaration of a module variable.  */
      TREE_PUBLIC (decl) = 1;
      TREE_STATIC (decl) = 1;
    }

  if ((sym->attr.save || sym->attr.data || sym->value)
      && !sym->attr.use_assoc)
    TREE_STATIC (decl) = 1;
  
  /* Keep variables larger than max-stack-var-size off stack.  */
  if (!sym->ns->proc_name->attr.recursive
      && INTEGER_CST_P (DECL_SIZE_UNIT (decl))
      && !gfc_can_put_var_on_stack (DECL_SIZE_UNIT (decl)))
    TREE_STATIC (decl) = 1;
jakub's avatar
jakub committed
517 518 519 520 521

  /* Handle threadprivate variables.  */
  if (sym->attr.threadprivate && targetm.have_tls
      && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
    DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
dnovillo's avatar
 
dnovillo committed
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
}


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

void
gfc_allocate_lang_decl (tree decl)
{
  DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
    ggc_alloc_cleared (sizeof (struct lang_decl));
}

/* 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;
}


/* 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;

  type = TREE_TYPE (decl);

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

pbrook's avatar
pbrook committed
603
  gcc_assert (GFC_ARRAY_TYPE_P (type));
dnovillo's avatar
 
dnovillo committed
604 605 606 607 608 609 610
  nest = (sym->ns->proc_name->backend_decl != current_function_decl)
	 && !sym->attr.contained;

  for (dim = 0; dim < GFC_TYPE_ARRAY_RANK (type); dim++)
    {
      if (GFC_TYPE_ARRAY_LBOUND (type, dim) == NULL_TREE)
        GFC_TYPE_ARRAY_LBOUND (type, dim) = create_index_var ("lbound", nest);
611
      /* Don't try to use the unknown bound for assumed shape arrays.  */
dnovillo's avatar
 
dnovillo committed
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
      if (GFC_TYPE_ARRAY_UBOUND (type, dim) == NULL_TREE
          && (sym->as->type != AS_ASSUMED_SIZE
              || dim < GFC_TYPE_ARRAY_RANK (type) - 1))
        GFC_TYPE_ARRAY_UBOUND (type, dim) = create_index_var ("ubound", nest);

      if (GFC_TYPE_ARRAY_STRIDE (type, dim) == NULL_TREE)
        GFC_TYPE_ARRAY_STRIDE (type, dim) = create_index_var ("stride", nest);
    }
  if (GFC_TYPE_ARRAY_OFFSET (type) == NULL_TREE)
    {
      GFC_TYPE_ARRAY_OFFSET (type) = gfc_create_var_np (gfc_array_index_type,
							"offset");
      if (nest)
	gfc_add_decl_to_parent_function (GFC_TYPE_ARRAY_OFFSET (type));
      else
	gfc_add_decl_to_function (GFC_TYPE_ARRAY_OFFSET (type));
    }
jakub's avatar
jakub committed
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652

  if (GFC_TYPE_ARRAY_SIZE (type) == NULL_TREE
      && sym->as->type != AS_ASSUMED_SIZE)
    GFC_TYPE_ARRAY_SIZE (type) = create_index_var ("size", nest);

  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;

      size = build2 (MINUS_EXPR, gfc_array_index_type,
		     GFC_TYPE_ARRAY_SIZE (type), gfc_index_one_node);
      range = build_range_type (gfc_array_index_type, gfc_index_zero_node,
				size);
      TYPE_DOMAIN (type) = range;
      layout_type (type);
    }
dnovillo's avatar
 
dnovillo committed
653 654 655 656
}


/* For some dummy arguments we don't use the actual argument directly.
tobi's avatar
tobi committed
657
   Instead we create a local decl and use that.  This allows us to perform
dnovillo's avatar
 
dnovillo committed
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
   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;
  int packed;
  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);
pbrook's avatar
pbrook committed
679
  gcc_assert (TREE_CODE (dummy) == PARM_DECL
dnovillo's avatar
 
dnovillo committed
680 681
	  && POINTER_TYPE_P (type));

682
  /* Do we know the element size?  */
dnovillo's avatar
 
dnovillo committed
683 684 685 686 687 688 689
  known_size = sym->ts.type != BT_CHARACTER
	  || INTEGER_CST_P (sym->ts.cl->backend_decl);
  
  if (known_size && !GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (type)))
    {
      /* For descriptorless arrays with known element size the actual
         argument is sufficient.  */
pbrook's avatar
pbrook committed
690
      gcc_assert (GFC_ARRAY_TYPE_P (type));
dnovillo's avatar
 
dnovillo committed
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 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 744 745 746
      gfc_build_qualified_array (dummy, sym);
      return dummy;
    }

  type = TREE_TYPE (type);
  if (GFC_DESCRIPTOR_TYPE_P (type))
    {
      /* Create a decriptorless array pointer.  */
      as = sym->as;
      packed = 0;
      if (!gfc_option.flag_repack_arrays)
	{
	  if (as->type == AS_ASSUMED_SIZE)
	    packed = 2;
	}
      else
	{
	  if (as->type == AS_EXPLICIT)
	    {
	      packed = 2;
	      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))
		    packed = 1;
		}
	    }
	  else
	    packed = 1;
	}

      type = gfc_typenode_for_spec (&sym->ts);
      type = gfc_get_nodesc_array_type (type, sym->as, packed);
    }
  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.  */
      sym->backend_decl = NULL_TREE;
      type = gfc_sym_type (sym);
      packed = 2;
    }

  ASM_FORMAT_PRIVATE_NAME (name, IDENTIFIER_POINTER (DECL_NAME (dummy)), 0);
  decl = build_decl (VAR_DECL, get_identifier (name), type);

  DECL_ARTIFICIAL (decl) = 1;
  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.  */
pbrook's avatar
pbrook committed
747
  gcc_assert (sym->as->type != AS_DEFERRED);
dnovillo's avatar
 
dnovillo committed
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786

  switch (packed)
    {
    case 1:
      GFC_DECL_PARTIAL_PACKED_ARRAY (decl) = 1;
      break;

    case 2:
      GFC_DECL_PACKED_ARRAY (decl) = 1;
      break;
    }

  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;
}


/* 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)
{
  tree length;

pbrook's avatar
pbrook committed
787
  gcc_assert (sym->ts.cl);
dnovillo's avatar
 
dnovillo committed
788 789 790 791 792 793 794 795 796 797
  gfc_conv_const_charlen (sym->ts.cl);
  
  if (sym->ts.cl->backend_decl == NULL_TREE)
    {
      char name[GFC_MAX_MANGLED_SYMBOL_LEN + 2];

      /* Also prefix the mangled name.  */
      strcpy (&name[1], sym->name);
      name[0] = '.';
      length = build_decl (VAR_DECL, get_identifier (name),
tobi's avatar
tobi committed
798
			   gfc_charlen_type_node);
dnovillo's avatar
 
dnovillo committed
799 800
      DECL_ARTIFICIAL (length) = 1;
      TREE_USED (length) = 1;
jakub's avatar
jakub committed
801 802
      if (sym->ns->proc_name->tlink != NULL)
	gfc_defer_symbol_init (sym);
dnovillo's avatar
 
dnovillo committed
803 804 805 806 807 808
      sym->ts.cl->backend_decl = length;
    }

  return sym->ts.cl->backend_decl;
}

fengwang's avatar
 
fengwang committed
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
/* 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;
  length = build_decl (VAR_DECL, create_tmp_var_name (sym->name),
		       gfc_charlen_type_node);
  addr = build_decl (VAR_DECL, create_tmp_var_name (sym->name),
		     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))
    DECL_INITIAL (length) = build_int_cst (NULL_TREE, -2);
  else
    gfc_defer_symbol_init (sym);

  GFC_DECL_STRING_LEN (decl) = length;
  GFC_DECL_ASSIGN_ADDR (decl) = addr;
}
dnovillo's avatar
 
dnovillo committed
842 843 844 845 846 847 848 849 850 851 852

/* 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;
  int byref;

853 854
  gcc_assert (sym->attr.referenced
               || sym->ns->proc_name->attr.if_source == IFSRC_IFBODY);
dnovillo's avatar
 
dnovillo committed
855 856 857 858 859 860 861 862 863 864 865 866 867 868

  if (sym->ns && sym->ns->proc_name->attr.function)
    byref = gfc_return_by_reference (sym->ns->proc_name);
  else
    byref = 0;

  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);
869 870 871 872
	  /* For entry master function skip over the __entry
	     argument.  */
	  if (sym->ns->proc_name->attr.entry_master)
	    sym->backend_decl = TREE_CHAIN (sym->backend_decl);
dnovillo's avatar
 
dnovillo committed
873 874 875
	}

      /* Dummy variables should already have been created.  */
pbrook's avatar
pbrook committed
876
      gcc_assert (sym->backend_decl);
dnovillo's avatar
 
dnovillo committed
877 878 879 880 881

      /* Create a character length variable.  */
      if (sym->ts.type == BT_CHARACTER)
	{
	  if (sym->ts.cl->backend_decl == NULL_TREE)
jakub's avatar
jakub committed
882 883 884 885 886
	    length = gfc_create_string_length (sym);
	  else
	    length = sym->ts.cl->backend_decl;
	  if (TREE_CODE (length) == VAR_DECL
	      && DECL_CONTEXT (length) == NULL_TREE)
dnovillo's avatar
 
dnovillo committed
887
	    {
888
	      gfc_add_decl_to_function (length);
jakub's avatar
jakub committed
889
	      gfc_defer_symbol_init (sym);
890
	    }
dnovillo's avatar
 
dnovillo committed
891 892 893 894 895 896 897 898 899 900
	}

      /* Use a copy of the descriptor for dummy arrays.  */
      if (sym->attr.dimension && !TREE_USED (sym->backend_decl))
        {
          sym->backend_decl =
            gfc_build_dummy_array_decl (sym, sym->backend_decl);
	}

      TREE_USED (sym->backend_decl) = 1;
fengwang's avatar
 
fengwang committed
901 902 903 904
      if (sym->attr.assign && GFC_DECL_ASSIGN (sym->backend_decl) == 0)
	{
	  gfc_add_assign_aux_vars (sym);
	}
dnovillo's avatar
 
dnovillo committed
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
      return sym->backend_decl;
    }

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

  /* Catch function declarations.  Only used for actual parameters.  */
  if (sym->attr.flavor == FL_PROCEDURE)
    {
      decl = gfc_get_extern_function_decl (sym);
      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.  */
  decl = build_decl (VAR_DECL, gfc_sym_identifier (sym), gfc_sym_type (sym));

929 930
  gfc_set_decl_location (decl, &sym->declared_at);

931
  /* Symbols from modules should have their assembler names mangled.
dnovillo's avatar
 
dnovillo committed
932 933
     This is done here rather than in gfc_finish_var_decl because it
     is different for string length variables.  */
934
  if (sym->module)
dnovillo's avatar
 
dnovillo committed
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
    SET_DECL_ASSEMBLER_NAME (decl, gfc_sym_mangled_identifier (sym));

  if (sym->attr.dimension)
    {
      /* Create variables to hold the non-constant bits of array info.  */
      gfc_build_qualified_array (decl, sym);

      /* Remember this variable for allocation/cleanup.  */
      gfc_defer_symbol_init (sym);

      if ((sym->attr.allocatable || !sym->attr.dummy) && !sym->attr.pointer)
	GFC_DECL_PACKED_ARRAY (decl) = 1;
    }

  gfc_finish_var_decl (decl, sym);

951
  if (sym->ts.type == BT_CHARACTER)
dnovillo's avatar
 
dnovillo committed
952 953 954 955
    {
      /* Character variables need special handling.  */
      gfc_allocate_lang_decl (decl);

956
      if (TREE_CODE (length) != INTEGER_CST)
dnovillo's avatar
 
dnovillo committed
957 958 959
	{
	  char name[GFC_MAX_MANGLED_SYMBOL_LEN + 2];

960
	  if (sym->module)
dnovillo's avatar
 
dnovillo committed
961 962 963 964 965 966 967 968 969
	    {
	      /* 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)));
	      SET_DECL_ASSEMBLER_NAME (decl, get_identifier (name));
	    }
	  gfc_finish_var_decl (length, sym);
pbrook's avatar
pbrook committed
970
	  gcc_assert (!sym->value);
dnovillo's avatar
 
dnovillo committed
971 972 973 974
	}
    }
  sym->backend_decl = decl;

fengwang's avatar
 
fengwang committed
975 976 977 978 979
  if (sym->attr.assign)
    {
      gfc_add_assign_aux_vars (sym);
    }

980 981 982 983 984 985 986 987
  if (TREE_STATIC (decl) && !sym->attr.use_assoc)
    {
      /* Add static initializer.  */
      DECL_INITIAL (decl) = gfc_conv_initializer (sym->value, &sym->ts,
	  TREE_TYPE (decl), sym->attr.dimension,
	  sym->attr.pointer || sym->attr.allocatable);
    }

dnovillo's avatar
 
dnovillo committed
988 989 990 991
  return decl;
}


pbrook's avatar
pbrook committed
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
/* 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;
}


dnovillo's avatar
 
dnovillo committed
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
/* Get a basic decl for an external function.  */

tree
gfc_get_extern_function_decl (gfc_symbol * sym)
{
  tree type;
  tree fndecl;
  gfc_expr e;
  gfc_intrinsic_sym *isym;
  gfc_expr argexpr;
tobi's avatar
tobi committed
1028
  char s[GFC_MAX_SYMBOL_LEN + 13]; /* "f2c_specific" and '\0'.  */
dnovillo's avatar
 
dnovillo committed
1029 1030 1031 1032 1033 1034
  tree name;
  tree mangled_name;

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

1035 1036 1037
  /* 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.  */
pbrook's avatar
pbrook committed
1038
  gcc_assert (!(sym->attr.entry || sym->attr.entry_master));
1039

dnovillo's avatar
 
dnovillo committed
1040 1041 1042 1043 1044 1045 1046
  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);
pbrook's avatar
pbrook committed
1047
      gcc_assert (isym->resolve.f0 != NULL);
dnovillo's avatar
 
dnovillo committed
1048 1049 1050 1051 1052

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

      memset (&argexpr, 0, sizeof (argexpr));
pbrook's avatar
pbrook committed
1053
      gcc_assert (isym->formal);
dnovillo's avatar
 
dnovillo committed
1054 1055 1056 1057 1058 1059 1060
      argexpr.ts = isym->formal->ts;

      if (isym->formal->next == NULL)
	isym->resolve.f1 (&e, &argexpr);
      else
	{
	  /* All specific intrinsics take one or two arguments.  */
pbrook's avatar
pbrook committed
1061
	  gcc_assert (isym->formal->next->next == NULL);
dnovillo's avatar
 
dnovillo committed
1062 1063
	  isym->resolve.f2 (&e, &argexpr, NULL);
	}
tobi's avatar
tobi committed
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075

      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.  */
	  sprintf (s, "f2c_specific%s", e.value.function.name);
	}
      else
	sprintf (s, "specific%s", e.value.function.name);

dnovillo's avatar
 
dnovillo committed
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
      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);
  fndecl = build_decl (FUNCTION_DECL, name, type);

  SET_DECL_ASSEMBLER_NAME (fndecl, mangled_name);
  /* If the return type is a pointer, avoid alias issues by setting
     DECL_IS_MALLOC to nonzero. This means that the function should be
     treated as if it were a malloc, meaning it returns a pointer that
     is not an alias.  */
  if (POINTER_TYPE_P (type))
    DECL_IS_MALLOC (fndecl) = 1;

  /* 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
    {
1104
      /* Global declaration, e.g. intrinsic subroutine.  */
dnovillo's avatar
 
dnovillo committed
1105 1106 1107 1108 1109
      DECL_CONTEXT (fndecl) = NULL_TREE;
    }

  DECL_EXTERNAL (fndecl) = 1;

1110
  /* This specifies if a function is globally addressable, i.e. it is
dnovillo's avatar
 
dnovillo committed
1111 1112 1113 1114 1115 1116 1117 1118
     the opposite of declaring static in C.  */
  TREE_PUBLIC (fndecl) = 1;

  /* 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)
    {
eedelman's avatar
eedelman committed
1119
      if (sym->attr.function && !gfc_return_by_reference (sym))
1120 1121 1122 1123
	DECL_IS_PURE (fndecl) = 1;
      /* 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
1124
	 can be optimized away. See also in build_function_decl().  */
1125
      TREE_SIDE_EFFECTS (fndecl) = 0;
dnovillo's avatar
 
dnovillo committed
1126 1127
    }

1128 1129 1130 1131
  /* Mark non-returning functions.  */
  if (sym->attr.noreturn)
      TREE_THIS_VOLATILE(fndecl) = 1;

dnovillo's avatar
 
dnovillo committed
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
  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
1142 1143
   sense) use gfc_get_extern_function_decl.  HAS_ENTRIES is true if this is
   a master function with alternate entry points.  */
dnovillo's avatar
 
dnovillo committed
1144

1145 1146
static void
build_function_decl (gfc_symbol * sym)
dnovillo's avatar
 
dnovillo committed
1147
{
1148
  tree fndecl, type;
dnovillo's avatar
 
dnovillo committed
1149
  symbol_attribute attr;
1150
  tree result_decl;
dnovillo's avatar
 
dnovillo committed
1151 1152
  gfc_formal_arglist *f;

pbrook's avatar
pbrook committed
1153 1154
  gcc_assert (!sym->backend_decl);
  gcc_assert (!sym->attr.external);
dnovillo's avatar
 
dnovillo committed
1155

1156 1157 1158 1159
  /* 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);

dnovillo's avatar
 
dnovillo committed
1160
  /* Allow only one nesting level.  Allow public declarations.  */
pbrook's avatar
pbrook committed
1161
  gcc_assert (current_function_decl == NULL_TREE
dnovillo's avatar
 
dnovillo committed
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
	  || DECL_CONTEXT (current_function_decl) == NULL_TREE);

  type = gfc_get_function_type (sym);
  fndecl = build_decl (FUNCTION_DECL, gfc_sym_identifier (sym), type);

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

  /* Figure out the return type of the declared function, and build a
1172
     RESULT_DECL for it.  If this is a subroutine with alternate
dnovillo's avatar
 
dnovillo committed
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
     returns, build a RESULT_DECL for it.  */
  attr = sym->attr;

  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;
    }

  result_decl = build_decl (RESULT_DECL, result_decl, type);
1210 1211
  DECL_ARTIFICIAL (result_decl) = 1;
  DECL_IGNORED_P (result_decl) = 1;
dnovillo's avatar
 
dnovillo committed
1212 1213 1214 1215
  DECL_CONTEXT (result_decl) = fndecl;
  DECL_RESULT (fndecl) = result_decl;

  /* Don't call layout_decl for a RESULT_DECL.
1216
     layout_decl (result_decl, 0);  */
dnovillo's avatar
 
dnovillo committed
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228

  /* If the return type is a pointer, avoid alias issues by setting
     DECL_IS_MALLOC to nonzero. This means that the function should be
     treated as if it were a malloc, meaning it returns a pointer that
     is not an alias.  */
  if (POINTER_TYPE_P (type))
    DECL_IS_MALLOC (fndecl) = 1;

  /* Set up all attributes for the function.  */
  DECL_CONTEXT (fndecl) = current_function_decl;
  DECL_EXTERNAL (fndecl) = 0;

1229
  /* This specifies if a function is globally visible, i.e. it is
1230
     the opposite of declaring static in C.  */
1231 1232
  if (DECL_CONTEXT (fndecl) == NULL_TREE
      && !sym->attr.entry_master)
dnovillo's avatar
 
dnovillo committed
1233 1234 1235
    TREE_PUBLIC (fndecl) = 1;

  /* TREE_STATIC means the function body is defined here.  */
1236
  TREE_STATIC (fndecl) = 1;
dnovillo's avatar
 
dnovillo committed
1237

1238
  /* Set attributes for PURE functions. A call to a PURE function in the
dnovillo's avatar
 
dnovillo committed
1239 1240 1241 1242
     Fortran 95 sense is both pure and without side effects in the C
     sense.  */
  if (attr.pure || attr.elemental)
    {
1243 1244
      /* TODO: check if a pure SUBROUTINE has no INTENT(OUT) arguments
	 including a alternate return. In that case it can also be
1245
	 marked as PURE. See also in gfc_get_extern_function_decl().  */
eedelman's avatar
eedelman committed
1246
      if (attr.function && !gfc_return_by_reference (sym))
1247
	DECL_IS_PURE (fndecl) = 1;
dnovillo's avatar
 
dnovillo committed
1248 1249 1250 1251 1252
      TREE_SIDE_EFFECTS (fndecl) = 0;
    }

  /* Layout the function declaration and put it in the binding level
     of the current function.  */
1253
  pushdecl (fndecl);
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265

  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;
jakub's avatar
jakub committed
1266 1267
  tree typelist, hidden_typelist;
  tree arglist, hidden_arglist;
1268 1269 1270 1271 1272
  tree type;
  tree parm;

  fndecl = sym->backend_decl;

1273 1274 1275
  /* Build formal argument list. Make sure that their TREE_CONTEXT is
     the new FUNCTION_DECL node.  */
  arglist = NULL_TREE;
jakub's avatar
jakub committed
1276
  hidden_arglist = NULL_TREE;
1277
  typelist = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292

  if (sym->attr.entry_master)
    {
      type = TREE_VALUE (typelist);
      parm = build_decl (PARM_DECL, get_identifier ("__entry"), type);
      
      DECL_CONTEXT (parm) = fndecl;
      DECL_ARG_TYPE (parm) = type;
      TREE_READONLY (parm) = 1;
      gfc_finish_decl (parm, NULL_TREE);

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

1293
  if (gfc_return_by_reference (sym))
dnovillo's avatar
 
dnovillo committed
1294
    {
jakub's avatar
jakub committed
1295
      tree type = TREE_VALUE (typelist), length = NULL;
dnovillo's avatar
 
dnovillo committed
1296

1297 1298 1299
      if (sym->ts.type == BT_CHARACTER)
	{
	  /* Length of character result.  */
jakub's avatar
jakub committed
1300 1301
	  tree len_type = TREE_VALUE (TREE_CHAIN (typelist));
	  gcc_assert (len_type == gfc_charlen_type_node);
dnovillo's avatar
 
dnovillo committed
1302

1303 1304
	  length = build_decl (PARM_DECL,
			       get_identifier (".__result"),
jakub's avatar
jakub committed
1305
			       len_type);
1306 1307 1308 1309
	  if (!sym->ts.cl->length)
	    {
	      sym->ts.cl->backend_decl = length;
	      TREE_USED (length) = 1;
dnovillo's avatar
 
dnovillo committed
1310
	    }
pbrook's avatar
pbrook committed
1311
	  gcc_assert (TREE_CODE (length) == PARM_DECL);
1312
	  DECL_CONTEXT (length) = fndecl;
jakub's avatar
jakub committed
1313
	  DECL_ARG_TYPE (length) = len_type;
1314
	  TREE_READONLY (length) = 1;
tobi's avatar
tobi committed
1315
	  DECL_ARTIFICIAL (length) = 1;
1316
	  gfc_finish_decl (length, NULL_TREE);
jakub's avatar
jakub committed
1317 1318 1319 1320 1321
	  if (sym->ts.cl->backend_decl == NULL
	      || sym->ts.cl->backend_decl == length)
	    {
	      gfc_symbol *arg;
	      tree backend_decl;
dnovillo's avatar
 
dnovillo committed
1322

jakub's avatar
jakub committed
1323 1324 1325 1326 1327 1328 1329 1330 1331
	      if (sym->ts.cl->backend_decl == NULL)
		{
		  tree len = build_decl (VAR_DECL,
					 get_identifier ("..__result"),
					 gfc_charlen_type_node);
		  DECL_ARTIFICIAL (len) = 1;
		  TREE_USED (len) = 1;
		  sym->ts.cl->backend_decl = len;
		}
dnovillo's avatar
 
dnovillo committed
1332

jakub's avatar
jakub committed
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
	      /* 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);
	    }
	}
dnovillo's avatar
 
dnovillo committed
1344

jakub's avatar
jakub committed
1345
      parm = build_decl (PARM_DECL, get_identifier ("__result"), type);
dnovillo's avatar
 
dnovillo committed
1346

jakub's avatar
jakub committed
1347 1348 1349 1350 1351
      DECL_CONTEXT (parm) = fndecl;
      DECL_ARG_TYPE (parm) = TREE_VALUE (typelist);
      TREE_READONLY (parm) = 1;
      DECL_ARTIFICIAL (parm) = 1;
      gfc_finish_decl (parm, NULL_TREE);
dnovillo's avatar
 
dnovillo committed
1352

jakub's avatar
jakub committed
1353 1354
      arglist = chainon (arglist, parm);
      typelist = TREE_CHAIN (typelist);
dnovillo's avatar
 
dnovillo committed
1355

jakub's avatar
jakub committed
1356 1357 1358 1359
      if (sym->ts.type == BT_CHARACTER)
	{
	  gfc_allocate_lang_decl (parm);
	  arglist = chainon (arglist, length);
1360 1361 1362
	  typelist = TREE_CHAIN (typelist);
	}
    }
dnovillo's avatar
 
dnovillo committed
1363

jakub's avatar
jakub committed
1364 1365 1366 1367 1368
  hidden_typelist = typelist;
  for (f = sym->formal; f; f = f->next)
    if (f->sym != NULL)	/* Ignore alternate returns.  */
      hidden_typelist = TREE_CHAIN (hidden_typelist);

1369 1370 1371
  for (f = sym->formal; f; f = f->next)
    {
      char name[GFC_MAX_SYMBOL_LEN + 2];
jakub's avatar
jakub committed
1372

1373 1374 1375
      /* Ignore alternate returns.  */
      if (f->sym == NULL)
	continue;
dnovillo's avatar
 
dnovillo committed
1376

1377
      type = TREE_VALUE (typelist);
dnovillo's avatar
 
dnovillo committed
1378

jakub's avatar
jakub committed
1379 1380 1381 1382 1383 1384 1385 1386 1387
      if (f->sym->ts.type == BT_CHARACTER)
	{
	  tree len_type = TREE_VALUE (hidden_typelist);
	  tree length = NULL_TREE;
	  gcc_assert (len_type == gfc_charlen_type_node);

	  strcpy (&name[1], f->sym->name);
	  name[0] = '_';
	  length = build_decl (PARM_DECL, get_identifier (name), len_type);
dnovillo's avatar
 
dnovillo committed
1388

jakub's avatar
jakub committed
1389 1390 1391 1392 1393 1394
	  hidden_arglist = chainon (hidden_arglist, length);
	  DECL_CONTEXT (length) = fndecl;
	  DECL_ARTIFICIAL (length) = 1;
	  DECL_ARG_TYPE (length) = len_type;
	  TREE_READONLY (length) = 1;
	  gfc_finish_decl (length, NULL_TREE);
dnovillo's avatar
 
dnovillo committed
1395

jakub's avatar
jakub committed
1396
	  /* TODO: Check string lengths when -fbounds-check.  */
dnovillo's avatar
 
dnovillo committed
1397

jakub's avatar
jakub committed
1398 1399
	  /* Use the passed value for assumed length variables.  */
	  if (!f->sym->ts.cl->length)
dnovillo's avatar
 
dnovillo committed
1400
	    {
jakub's avatar
jakub committed
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
	      TREE_USED (length) = 1;
	      if (!f->sym->ts.cl->backend_decl)
		f->sym->ts.cl->backend_decl = length;
	      else
		{
		  /* there is already another variable using this
		     gfc_charlen node, build a new one for this variable
		     and chain it into the list of gfc_charlens.
		     This happens for e.g. in the case
		     CHARACTER(*)::c1,c2
		     since CHARACTER declarations on the same line share
		     the same gfc_charlen node.  */
		  gfc_charlen *cl;
1414
	      
jakub's avatar
jakub committed
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
		  cl = gfc_get_charlen ();
		  cl->backend_decl = length;
		  cl->next = f->sym->ts.cl->next;
		  f->sym->ts.cl->next = cl;
		  f->sym->ts.cl = cl;
		}
	    }

	  hidden_typelist = TREE_CHAIN (hidden_typelist);

	  if (f->sym->ts.cl->backend_decl == NULL
	      || f->sym->ts.cl->backend_decl == length)
	    {
	      if (f->sym->ts.cl->backend_decl == NULL)
		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);
dnovillo's avatar
 
dnovillo committed
1436 1437 1438
	    }
	}

jakub's avatar
jakub committed
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
      /* 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);
	}

      /* Build a the argument declaration.  */
      parm = build_decl (PARM_DECL, gfc_sym_identifier (f->sym), type);

      /* 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;

      gfc_finish_decl (parm, NULL_TREE);

      f->sym->backend_decl = parm;

      arglist = chainon (arglist, parm);
1468
      typelist = TREE_CHAIN (typelist);
dnovillo's avatar
 
dnovillo committed
1469
    }
1470

jakub's avatar
jakub committed
1471 1472 1473 1474
  /* Add the hidden string length parameters.  */
  arglist = chainon (arglist, hidden_arglist);

  gcc_assert (TREE_VALUE (hidden_typelist) == void_type_node);
1475
  DECL_ARGUMENTS (fndecl) = arglist;
1476
}
1477

1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
/* Convert FNDECL's code to GIMPLE and handle any nested functions.  */

static void
gfc_gimplify_function (tree fndecl)
{
  struct cgraph_node *cgn;

  gimplify_function_tree (fndecl);
  dump_function (TDI_generic, fndecl);

jakub's avatar
jakub committed
1488 1489 1490 1491 1492
  /* Generate errors for structured block violations.  */
  /* ??? Could be done as part of resolve_labels.  */
  if (flag_openmp)
    diagnose_omp_structured_block_errors (fndecl);

1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
  /* Convert all nested functions to GIMPLE now.  We do things in this order
     so that items like VLA sizes are expanded properly in the context of the
     correct function.  */
  cgn = cgraph_node (fndecl);
  for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
    gfc_gimplify_function (cgn->decl);
}


/* 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;

1511
  /* Let GCC know the current scope is this function.  */
1512 1513
  current_function_decl = fndecl;

1514
  /* Let the world know what we're about to do.  */
1515 1516 1517 1518
  announce_function (fndecl);

  if (DECL_CONTEXT (fndecl) == NULL_TREE)
    {
1519
      /* Create RTL for function declaration.  */
1520 1521 1522
      rest_of_decl_compilation (fndecl, 1, 0);
    }

1523
  /* Create RTL for function definition.  */
1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
  make_decl_rtl (fndecl);

  init_function_start (fndecl);

  /* Even though we're inside a function body, we still don't want to
     call expand_expr to calculate the size of a variable-sized array.
     We haven't necessarily assigned RTL to all variables yet, so it's
     not safe to try to expand expressions involving them.  */
  cfun->x_dont_save_pending_sizes_p = 1;

1534
  /* function.c requires a push at the start of the function.  */
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
  pushlevel (0);
}

/* Create thunks for alternate entry points.  */

static void
build_entry_thunks (gfc_namespace * ns)
{
  gfc_formal_arglist *formal;
  gfc_formal_arglist *thunk_formal;
  gfc_entry_list *el;
  gfc_symbol *thunk_sym;
  stmtblock_t body;
  tree thunk_fndecl;
  tree args;
  tree string_args;
  tree tmp;
1552
  locus old_loc;
1553 1554

  /* This should always be a toplevel function.  */
pbrook's avatar
pbrook committed
1555
  gcc_assert (current_function_decl == NULL_TREE);
1556

1557
  gfc_get_backend_locus (&old_loc);
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570
  for (el = ns->entries; el; el = el->next)
    {
      thunk_sym = el->sym;
      
      build_function_decl (thunk_sym);
      create_function_arglist (thunk_sym);

      trans_function_start (thunk_sym);

      thunk_fndecl = thunk_sym->backend_decl;

      gfc_start_block (&body);

1571
      /* Pass extra parameter identifying this entry point.  */
1572
      tmp = build_int_cst (gfc_array_index_type, el->id);
1573 1574 1575
      args = tree_cons (NULL_TREE, tmp, NULL_TREE);
      string_args = NULL_TREE;

1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
      if (thunk_sym->attr.function)
	{
	  if (gfc_return_by_reference (ns->proc_name))
	    {
	      tree ref = DECL_ARGUMENTS (current_function_decl);
	      args = tree_cons (NULL_TREE, ref, args);
	      if (ns->proc_name->ts.type == BT_CHARACTER)
		args = tree_cons (NULL_TREE, TREE_CHAIN (ref),
				  args);
	    }
	}

1588 1589
      for (formal = ns->proc_name->formal; formal; formal = formal->next)
	{
1590 1591 1592 1593
	  /* Ignore alternate returns.  */
	  if (formal->sym == NULL)
	    continue;

1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
	  /* 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.  */
	      args = tree_cons (NULL_TREE, thunk_formal->sym->backend_decl,
				args);
	      if (formal->sym->ts.type == BT_CHARACTER)
		{
		  tmp = thunk_formal->sym->ts.cl->backend_decl;
		  string_args = tree_cons (NULL_TREE, tmp, string_args);
		}
	    }
	  else
	    {
	      /* Pass NULL for a missing argument.  */
	      args = tree_cons (NULL_TREE, null_pointer_node, args);
	      if (formal->sym->ts.type == BT_CHARACTER)
		{
1621
		  tmp = build_int_cst (gfc_charlen_type_node, 0);
1622 1623 1624 1625 1626 1627 1628 1629 1630
		  string_args = tree_cons (NULL_TREE, tmp, string_args);
		}
	    }
	}

      /* Call the master function.  */
      args = nreverse (args);
      args = chainon (args, nreverse (string_args));
      tmp = ns->proc_name->backend_decl;
1631
      tmp = build_function_call_expr (tmp, args);
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
      if (ns->proc_name->attr.mixed_entry_master)
	{
	  tree union_decl, field;
	  tree master_type = TREE_TYPE (ns->proc_name->backend_decl);

	  union_decl = build_decl (VAR_DECL, get_identifier ("__result"),
				   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;
	  tmp = build2 (MODIFY_EXPR,
			TREE_TYPE (union_decl),
			union_decl, tmp);
	  gfc_add_expr_to_block (&body, tmp);

	  for (field = TYPE_FIELDS (TREE_TYPE (union_decl));
	       field; field = TREE_CHAIN (field))
	    if (strcmp (IDENTIFIER_POINTER (DECL_NAME (field)),
		thunk_sym->result->name) == 0)
	      break;
	  gcc_assert (field != NULL_TREE);
	  tmp = build3 (COMPONENT_REF, TREE_TYPE (field), union_decl, field,
			NULL_TREE);
	  tmp = build2 (MODIFY_EXPR,
			TREE_TYPE (DECL_RESULT (current_function_decl)),
			DECL_RESULT (current_function_decl), tmp);
	  tmp = build1_v (RETURN_EXPR, tmp);
	}
      else if (TREE_TYPE (DECL_RESULT (current_function_decl))
	       != void_type_node)
	{
	  tmp = build2 (MODIFY_EXPR,
			TREE_TYPE (DECL_RESULT (current_function_decl)),
			DECL_RESULT (current_function_decl), tmp);
	  tmp = build1_v (RETURN_EXPR, tmp);
	}
1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
      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);
      poplevel (1, 0, 1);
      BLOCK_SUPERCONTEXT (DECL_INITIAL (thunk_fndecl)) = thunk_fndecl;

      /* 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.  */
      cfun = NULL;

      current_function_decl = NULL_TREE;

      gfc_gimplify_function (thunk_fndecl);
hubicka's avatar
hubicka committed
1695
      cgraph_finalize_function (thunk_fndecl, false);
1696 1697 1698 1699 1700

      /* 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)
1701 1702 1703 1704 1705 1706 1707 1708
	if (formal->sym != NULL)  /* Ignore alternate returns.  */
	  {
	    formal->sym->backend_decl = NULL_TREE;
	    if (formal->sym->ts.type == BT_CHARACTER)
	      formal->sym->ts.cl->backend_decl = NULL_TREE;
	  }

      if (thunk_sym->attr.function)
1709
	{
1710 1711 1712 1713
	  if (thunk_sym->ts.type == BT_CHARACTER)
	    thunk_sym->ts.cl->backend_decl = NULL_TREE;
	  if (thunk_sym->result->ts.type == BT_CHARACTER)
	    thunk_sym->result->ts.cl->backend_decl = NULL_TREE;
1714 1715
	}
    }
1716 1717

  gfc_set_backend_locus (&old_loc);
1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
}


/* Create a decl for a function, and create any thunks for alternate entry
   points.  */

void
gfc_create_function_decl (gfc_namespace * ns)
{
  /* Create a declaration for the master function.  */
  build_function_decl (ns->proc_name);

1730
  /* Compile the entry thunks.  */
1731 1732 1733 1734 1735 1736 1737
  if (ns->entries)
    build_entry_thunks (ns);

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

1738 1739
/* Return the decl used to hold the function return value.  If
   parent_flag is set, the context is the parent_scope*/
dnovillo's avatar
 
dnovillo committed
1740 1741

tree
1742
gfc_get_fake_result_decl (gfc_symbol * sym, int parent_flag)
dnovillo's avatar
 
dnovillo committed
1743
{
1744 1745 1746 1747
  tree decl;
  tree length;
  tree this_fake_result_decl;
  tree this_function_decl;
dnovillo's avatar
 
dnovillo committed
1748 1749 1750

  char name[GFC_MAX_SYMBOL_LEN + 10];

1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761
  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;
    }

1762
  if (sym
1763
      && sym->ns->proc_name->backend_decl == this_function_decl
jakub's avatar
jakub committed
1764
      && sym->ns->proc_name->attr.entry_master
1765 1766
      && sym != sym->ns->proc_name)
    {
jakub's avatar
jakub committed
1767
      tree t = NULL, var;
1768 1769
      if (this_fake_result_decl != NULL)
	for (t = TREE_CHAIN (this_fake_result_decl); t; t = TREE_CHAIN (t))
jakub's avatar
jakub committed
1770 1771 1772 1773
	  if (strcmp (IDENTIFIER_POINTER (TREE_PURPOSE (t)), sym->name) == 0)
	    break;
      if (t)
	return TREE_VALUE (t);
1774 1775 1776 1777 1778 1779 1780
      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;

jakub's avatar
jakub committed
1781
      if (decl && sym->ns->proc_name->attr.mixed_entry_master)
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
	{
	  tree field;

	  for (field = TYPE_FIELDS (TREE_TYPE (decl));
	       field; field = TREE_CHAIN (field))
	    if (strcmp (IDENTIFIER_POINTER (DECL_NAME (field)),
		sym->name) == 0)
	      break;

	  gcc_assert (field != NULL_TREE);
	  decl = build3 (COMPONENT_REF, TREE_TYPE (field), decl, field,
			 NULL_TREE);
	}
1795 1796 1797 1798 1799 1800 1801

      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);

jakub's avatar
jakub committed
1802 1803
      SET_DECL_VALUE_EXPR (var, decl);
      DECL_HAS_VALUE_EXPR_P (var) = 1;
1804
      GFC_DECL_RESULT (var) = 1;
1805 1806 1807 1808

      TREE_CHAIN (this_fake_result_decl)
	  = tree_cons (get_identifier (sym->name), var,
		       TREE_CHAIN (this_fake_result_decl));
jakub's avatar
jakub committed
1809
      return var;
1810 1811
    }

1812 1813
  if (this_fake_result_decl != NULL_TREE)
    return TREE_VALUE (this_fake_result_decl);
dnovillo's avatar
 
dnovillo committed
1814 1815 1816 1817 1818 1819

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

jakub's avatar
jakub committed
1820
  if (sym->ts.type == BT_CHARACTER)
dnovillo's avatar
 
dnovillo committed
1821
    {
jakub's avatar
jakub committed
1822 1823 1824 1825 1826 1827
      if (sym->ts.cl->backend_decl == NULL_TREE)
	length = gfc_create_string_length (sym);
      else
	length = sym->ts.cl->backend_decl;
      if (TREE_CODE (length) == VAR_DECL
	  && DECL_CONTEXT (length) == NULL_TREE)
1828
	gfc_add_decl_to_function (length);
dnovillo's avatar
 
dnovillo committed
1829 1830 1831 1832
    }

  if (gfc_return_by_reference (sym))
    {
1833
      decl = DECL_ARGUMENTS (this_function_decl);
1834

1835
      if (sym->ns->proc_name->backend_decl == this_function_decl
1836 1837
	  && sym->ns->proc_name->attr.entry_master)
	decl = TREE_CHAIN (decl);
dnovillo's avatar
 
dnovillo committed
1838 1839 1840 1841 1842 1843 1844 1845

      TREE_USED (decl) = 1;
      if (sym->as)
	decl = gfc_build_dummy_array_decl (sym, decl);
    }
  else
    {
      sprintf (name, "__result_%.20s",
1846
	       IDENTIFIER_POINTER (DECL_NAME (this_function_decl)));
dnovillo's avatar
 
dnovillo committed
1847 1848

      decl = build_decl (VAR_DECL, get_identifier (name),
1849
			 TREE_TYPE (TREE_TYPE (this_function_decl)));
dnovillo's avatar
 
dnovillo committed
1850 1851 1852 1853 1854

      DECL_ARTIFICIAL (decl) = 1;
      DECL_EXTERNAL (decl) = 0;
      TREE_PUBLIC (decl) = 0;
      TREE_USED (decl) = 1;
jakub's avatar
jakub committed
1855
      GFC_DECL_RESULT (decl) = 1;
dnovillo's avatar
 
dnovillo committed
1856 1857 1858

      layout_decl (decl, 0);

1859 1860 1861 1862
      if (parent_flag)
	gfc_add_decl_to_parent_function (decl);
      else
	gfc_add_decl_to_function (decl);
dnovillo's avatar
 
dnovillo committed
1863 1864
    }

1865 1866 1867 1868
  if (parent_flag)
    parent_fake_result_decl = build_tree_list (NULL, decl);
  else
    current_fake_result_decl = build_tree_list (NULL, decl);
dnovillo's avatar
 
dnovillo committed
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887

  return decl;
}


/* 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 arglist;
  tree argtype;
  tree fntype;
  tree fndecl;
  va_list p;
  int n;

  /* Library functions must be declared with global scope.  */
pbrook's avatar
pbrook committed
1888
  gcc_assert (current_function_decl == NULL_TREE);
dnovillo's avatar
 
dnovillo committed
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917

  va_start (p, nargs);


  /* Create a list of the argument types.  */
  for (arglist = NULL_TREE, n = abs (nargs); n > 0; n--)
    {
      argtype = va_arg (p, tree);
      arglist = gfc_chainon_list (arglist, argtype);
    }

  if (nargs >= 0)
    {
      /* Terminate the list.  */
      arglist = gfc_chainon_list (arglist, void_type_node);
    }

  /* Build the function type and decl.  */
  fntype = build_function_type (rettype, arglist);
  fndecl = build_decl (FUNCTION_DECL, name, fntype);

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

  va_end (p);

  pushdecl (fndecl);

1918
  rest_of_decl_compilation (fndecl, 1, 0);
dnovillo's avatar
 
dnovillo committed
1919 1920 1921 1922 1923 1924 1925

  return fndecl;
}

static void
gfc_build_intrinsic_function_decls (void)
{
1926 1927
  tree gfc_int4_type_node = gfc_get_int_type (4);
  tree gfc_int8_type_node = gfc_get_int_type (8);
fxcoudert's avatar
fxcoudert committed
1928
  tree gfc_int16_type_node = gfc_get_int_type (16);
1929 1930 1931
  tree gfc_logical4_type_node = gfc_get_logical_type (4);
  tree gfc_real4_type_node = gfc_get_real_type (4);
  tree gfc_real8_type_node = gfc_get_real_type (8);
fxcoudert's avatar
fxcoudert committed
1932 1933
  tree gfc_real10_type_node = gfc_get_real_type (10);
  tree gfc_real16_type_node = gfc_get_real_type (16);
1934 1935
  tree gfc_complex4_type_node = gfc_get_complex_type (4);
  tree gfc_complex8_type_node = gfc_get_complex_type (8);
fxcoudert's avatar
fxcoudert committed
1936 1937
  tree gfc_complex10_type_node = gfc_get_complex_type (10);
  tree gfc_complex16_type_node = gfc_get_complex_type (16);
1938
  tree gfc_c_int_type_node = gfc_get_int_type (gfc_c_int_kind);
1939

dnovillo's avatar
 
dnovillo committed
1940 1941 1942 1943 1944
  /* String functions.  */
  gfor_fndecl_copy_string =
    gfc_build_library_function_decl (get_identifier (PREFIX("copy_string")),
				     void_type_node,
				     4,
tobi's avatar
tobi committed
1945 1946
				     gfc_charlen_type_node, pchar_type_node,
				     gfc_charlen_type_node, pchar_type_node);
dnovillo's avatar
 
dnovillo committed
1947 1948 1949 1950 1951

  gfor_fndecl_compare_string =
    gfc_build_library_function_decl (get_identifier (PREFIX("compare_string")),
				     gfc_int4_type_node,
				     4,
tobi's avatar
tobi committed
1952 1953
				     gfc_charlen_type_node, pchar_type_node,
				     gfc_charlen_type_node, pchar_type_node);
dnovillo's avatar
 
dnovillo committed
1954 1955 1956 1957 1958

  gfor_fndecl_concat_string =
    gfc_build_library_function_decl (get_identifier (PREFIX("concat_string")),
				     void_type_node,
				     6,
tobi's avatar
tobi committed
1959 1960 1961
				     gfc_charlen_type_node, pchar_type_node,
				     gfc_charlen_type_node, pchar_type_node,
				     gfc_charlen_type_node, pchar_type_node);
dnovillo's avatar
 
dnovillo committed
1962 1963 1964 1965

  gfor_fndecl_string_len_trim =
    gfc_build_library_function_decl (get_identifier (PREFIX("string_len_trim")),
				     gfc_int4_type_node,
tobi's avatar
tobi committed
1966
				     2, gfc_charlen_type_node,
dnovillo's avatar
 
dnovillo committed
1967 1968 1969 1970 1971
				     pchar_type_node);

  gfor_fndecl_string_index =
    gfc_build_library_function_decl (get_identifier (PREFIX("string_index")),
				     gfc_int4_type_node,
tobi's avatar
tobi committed
1972 1973
				     5, gfc_charlen_type_node, pchar_type_node,
				     gfc_charlen_type_node, pchar_type_node,
dnovillo's avatar
 
dnovillo committed
1974 1975 1976 1977 1978
                                     gfc_logical4_type_node);

  gfor_fndecl_string_scan =
    gfc_build_library_function_decl (get_identifier (PREFIX("string_scan")),
                                     gfc_int4_type_node,
tobi's avatar
tobi committed
1979 1980
                                     5, gfc_charlen_type_node, pchar_type_node,
                                     gfc_charlen_type_node, pchar_type_node,
dnovillo's avatar
 
dnovillo committed
1981 1982 1983 1984 1985
                                     gfc_logical4_type_node);

  gfor_fndecl_string_verify =
    gfc_build_library_function_decl (get_identifier (PREFIX("string_verify")),
                                     gfc_int4_type_node,
tobi's avatar
tobi committed
1986 1987
                                     5, gfc_charlen_type_node, pchar_type_node,
                                     gfc_charlen_type_node, pchar_type_node,
dnovillo's avatar
 
dnovillo committed
1988 1989 1990 1991 1992 1993
                                     gfc_logical4_type_node);

  gfor_fndecl_string_trim = 
    gfc_build_library_function_decl (get_identifier (PREFIX("string_trim")),
                                     void_type_node,
                                     4,
tobi's avatar
tobi committed
1994
                                     build_pointer_type (gfc_charlen_type_node),
dnovillo's avatar
 
dnovillo committed
1995
                                     ppvoid_type_node,
tobi's avatar
tobi committed
1996
                                     gfc_charlen_type_node,
dnovillo's avatar
 
dnovillo committed
1997 1998 1999 2000 2001 2002 2003
                                     pchar_type_node);

  gfor_fndecl_string_repeat =
    gfc_build_library_function_decl (get_identifier (PREFIX("string_repeat")),
                                     void_type_node,
                                     4,
                                     pchar_type_node,
tobi's avatar
tobi committed
2004
                                     gfc_charlen_type_node,
dnovillo's avatar
 
dnovillo committed
2005 2006 2007
                                     pchar_type_node,
                                     gfc_int4_type_node);

2008 2009 2010 2011 2012 2013 2014 2015
  gfor_fndecl_ttynam =
    gfc_build_library_function_decl (get_identifier (PREFIX("ttynam")),
                                     void_type_node,
                                     3,
                                     pchar_type_node,
                                     gfc_charlen_type_node,
                                     gfc_c_int_type_node);

2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030
  gfor_fndecl_fdate =
    gfc_build_library_function_decl (get_identifier (PREFIX("fdate")),
                                     void_type_node,
                                     2,
                                     pchar_type_node,
                                     gfc_charlen_type_node);

  gfor_fndecl_ctime =
    gfc_build_library_function_decl (get_identifier (PREFIX("ctime")),
                                     void_type_node,
                                     3,
                                     pchar_type_node,
                                     gfc_charlen_type_node,
                                     gfc_int8_type_node);

dnovillo's avatar
 
dnovillo committed
2031 2032 2033 2034 2035
  gfor_fndecl_adjustl =
    gfc_build_library_function_decl (get_identifier (PREFIX("adjustl")),
				     void_type_node,
				     3,
				     pchar_type_node,
tobi's avatar
tobi committed
2036
				     gfc_charlen_type_node, pchar_type_node);
dnovillo's avatar
 
dnovillo committed
2037 2038 2039 2040 2041 2042

  gfor_fndecl_adjustr =
    gfc_build_library_function_decl (get_identifier (PREFIX("adjustr")),
				     void_type_node,
				     3,
				     pchar_type_node,
tobi's avatar
tobi committed
2043
				     gfc_charlen_type_node, pchar_type_node);
dnovillo's avatar
 
dnovillo committed
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057

  gfor_fndecl_si_kind =
    gfc_build_library_function_decl (get_identifier ("selected_int_kind"),
                                     gfc_int4_type_node,
                                     1,
                                     pvoid_type_node);

  gfor_fndecl_sr_kind =
    gfc_build_library_function_decl (get_identifier ("selected_real_kind"),
                                     gfc_int4_type_node,
                                     2, pvoid_type_node,
                                     pvoid_type_node);

  /* Power functions.  */
2058
  {
fxcoudert's avatar
fxcoudert committed
2059 2060 2061 2062 2063 2064 2065 2066 2067
    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++)
2068
      {
fxcoudert's avatar
fxcoudert committed
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
	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);
	      }
	  }

	for (rkind = 0; rkind < NRKINDS; rkind ++)
2085
	  {
fxcoudert's avatar
fxcoudert committed
2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
	    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);
	      }

	    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);
	      }
2105 2106
	  }
      }
fxcoudert's avatar
fxcoudert committed
2107 2108
#undef NIKINDS
#undef NRKINDS
2109 2110
  }

dnovillo's avatar
 
dnovillo committed
2111 2112 2113 2114 2115 2116 2117 2118
  gfor_fndecl_math_cpowf =
    gfc_build_library_function_decl (get_identifier ("cpowf"),
				     gfc_complex4_type_node,
				     1, gfc_complex4_type_node);
  gfor_fndecl_math_cpow =
    gfc_build_library_function_decl (get_identifier ("cpow"),
				     gfc_complex8_type_node,
				     1, gfc_complex8_type_node);
fxcoudert's avatar
fxcoudert committed
2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129
  if (gfc_complex10_type_node)
    gfor_fndecl_math_cpowl10 =
      gfc_build_library_function_decl (get_identifier ("cpowl"),
				       gfc_complex10_type_node, 1,
				       gfc_complex10_type_node);
  if (gfc_complex16_type_node)
    gfor_fndecl_math_cpowl16 =
      gfc_build_library_function_decl (get_identifier ("cpowl"),
				       gfc_complex16_type_node, 1,
				       gfc_complex16_type_node);

dnovillo's avatar
 
dnovillo committed
2130 2131 2132 2133 2134 2135 2136 2137 2138
  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);
  gfor_fndecl_math_ishftc8 =
    gfc_build_library_function_decl (get_identifier (PREFIX("ishftc8")),
				     gfc_int8_type_node,
				     3, gfc_int8_type_node,
fxcoudert's avatar
fxcoudert committed
2139 2140 2141 2142 2143 2144 2145 2146 2147
				     gfc_int4_type_node, gfc_int4_type_node);
  if (gfc_int16_type_node)
    gfor_fndecl_math_ishftc16 =
      gfc_build_library_function_decl (get_identifier (PREFIX("ishftc16")),
				       gfc_int16_type_node, 3,
				       gfc_int16_type_node,
				       gfc_int4_type_node,
				       gfc_int4_type_node);

dnovillo's avatar
 
dnovillo committed
2148 2149 2150 2151 2152 2153 2154 2155
  gfor_fndecl_math_exponent4 =
    gfc_build_library_function_decl (get_identifier (PREFIX("exponent_r4")),
				     gfc_int4_type_node,
				     1, gfc_real4_type_node);
  gfor_fndecl_math_exponent8 =
    gfc_build_library_function_decl (get_identifier (PREFIX("exponent_r8")),
				     gfc_int4_type_node,
				     1, gfc_real8_type_node);
fxcoudert's avatar
fxcoudert committed
2156 2157 2158 2159 2160 2161 2162 2163 2164 2165
  if (gfc_real10_type_node)
    gfor_fndecl_math_exponent10 =
      gfc_build_library_function_decl (get_identifier (PREFIX("exponent_r10")),
				       gfc_int4_type_node, 1,
				       gfc_real10_type_node);
  if (gfc_real16_type_node)
    gfor_fndecl_math_exponent16 =
      gfc_build_library_function_decl (get_identifier (PREFIX("exponent_r16")),
				       gfc_int4_type_node, 1,
				       gfc_real16_type_node);
dnovillo's avatar
 
dnovillo committed
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176

  /* Other functions.  */
  gfor_fndecl_size0 =
    gfc_build_library_function_decl (get_identifier (PREFIX("size0")),
				     gfc_array_index_type,
				     1, pvoid_type_node);
  gfor_fndecl_size1 =
    gfc_build_library_function_decl (get_identifier (PREFIX("size1")),
				     gfc_array_index_type,
				     2, pvoid_type_node,
				     gfc_array_index_type);
pbrook's avatar
pbrook committed
2177 2178 2179 2180 2181

  gfor_fndecl_iargc =
    gfc_build_library_function_decl (get_identifier (PREFIX ("iargc")),
				     gfc_int4_type_node,
				     0);
dnovillo's avatar
 
dnovillo committed
2182 2183 2184 2185 2186 2187 2188 2189
}


/* Make prototypes for runtime library functions.  */

void
gfc_build_builtin_function_decls (void)
{
2190
  tree gfc_c_int_type_node = gfc_get_int_type (gfc_c_int_kind);
2191 2192 2193
  tree gfc_int4_type_node = gfc_get_int_type (4);
  tree gfc_int8_type_node = gfc_get_int_type (8);
  tree gfc_logical4_type_node = gfc_get_logical_type (4);
kargl's avatar
kargl committed
2194
  tree gfc_pint4_type_node = build_pointer_type (gfc_int4_type_node);
2195

2196
  /* Treat these two internal malloc wrappers as malloc.  */
dnovillo's avatar
 
dnovillo committed
2197 2198 2199
  gfor_fndecl_internal_malloc =
    gfc_build_library_function_decl (get_identifier (PREFIX("internal_malloc")),
				     pvoid_type_node, 1, gfc_int4_type_node);
2200
  DECL_IS_MALLOC (gfor_fndecl_internal_malloc) = 1;
dnovillo's avatar
 
dnovillo committed
2201 2202 2203 2204 2205

  gfor_fndecl_internal_malloc64 =
    gfc_build_library_function_decl (get_identifier
				     (PREFIX("internal_malloc64")),
				     pvoid_type_node, 1, gfc_int8_type_node);
2206
  DECL_IS_MALLOC (gfor_fndecl_internal_malloc64) = 1;
dnovillo's avatar
 
dnovillo committed
2207

rsandifo's avatar
rsandifo committed
2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219
  gfor_fndecl_internal_realloc =
    gfc_build_library_function_decl (get_identifier
				     (PREFIX("internal_realloc")),
				     pvoid_type_node, 2, pvoid_type_node,
				     gfc_int4_type_node);

  gfor_fndecl_internal_realloc64 =
    gfc_build_library_function_decl (get_identifier
				     (PREFIX("internal_realloc64")),
				     pvoid_type_node, 2, pvoid_type_node,
				     gfc_int8_type_node);

dnovillo's avatar
 
dnovillo committed
2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
  gfor_fndecl_internal_free =
    gfc_build_library_function_decl (get_identifier (PREFIX("internal_free")),
				     void_type_node, 1, pvoid_type_node);

  gfor_fndecl_allocate =
    gfc_build_library_function_decl (get_identifier (PREFIX("allocate")),
				     void_type_node, 2, ppvoid_type_node,
				     gfc_int4_type_node);

  gfor_fndecl_allocate64 =
    gfc_build_library_function_decl (get_identifier (PREFIX("allocate64")),
				     void_type_node, 2, ppvoid_type_node,
				     gfc_int8_type_node);

2234 2235 2236 2237 2238 2239 2240 2241 2242 2243
  gfor_fndecl_allocate_array =
    gfc_build_library_function_decl (get_identifier (PREFIX("allocate_array")),
				     void_type_node, 2, ppvoid_type_node,
				     gfc_int4_type_node);

  gfor_fndecl_allocate64_array =
    gfc_build_library_function_decl (get_identifier (PREFIX("allocate64_array")),
				     void_type_node, 2, ppvoid_type_node,
				     gfc_int8_type_node);

dnovillo's avatar
 
dnovillo committed
2244 2245
  gfor_fndecl_deallocate =
    gfc_build_library_function_decl (get_identifier (PREFIX("deallocate")),
kargl's avatar
kargl committed
2246 2247
				     void_type_node, 2, ppvoid_type_node,
				     gfc_pint4_type_node);
dnovillo's avatar
 
dnovillo committed
2248 2249 2250 2251 2252

  gfor_fndecl_stop_numeric =
    gfc_build_library_function_decl (get_identifier (PREFIX("stop_numeric")),
				     void_type_node, 1, gfc_int4_type_node);

2253 2254 2255
  /* Stop doesn't return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_stop_numeric) = 1;

dnovillo's avatar
 
dnovillo committed
2256 2257 2258 2259
  gfor_fndecl_stop_string =
    gfc_build_library_function_decl (get_identifier (PREFIX("stop_string")),
				     void_type_node, 2, pchar_type_node,
                                     gfc_int4_type_node);
2260 2261
  /* Stop doesn't return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_stop_string) = 1;
dnovillo's avatar
 
dnovillo committed
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277

  gfor_fndecl_pause_numeric =
    gfc_build_library_function_decl (get_identifier (PREFIX("pause_numeric")),
				     void_type_node, 1, gfc_int4_type_node);

  gfor_fndecl_pause_string =
    gfc_build_library_function_decl (get_identifier (PREFIX("pause_string")),
				     void_type_node, 2, pchar_type_node,
                                     gfc_int4_type_node);

  gfor_fndecl_select_string =
    gfc_build_library_function_decl (get_identifier (PREFIX("select_string")),
                                     pvoid_type_node, 0);

  gfor_fndecl_runtime_error =
    gfc_build_library_function_decl (get_identifier (PREFIX("runtime_error")),
2278
				     void_type_node, 1, pchar_type_node);
2279 2280
  /* The runtime_error function does not return.  */
  TREE_THIS_VOLATILE (gfor_fndecl_runtime_error) = 1;
dnovillo's avatar
 
dnovillo committed
2281

2282 2283 2284 2285
  gfor_fndecl_set_fpe =
    gfc_build_library_function_decl (get_identifier (PREFIX("set_fpe")),
				    void_type_node, 1, gfc_c_int_type_node);

fxcoudert's avatar
fxcoudert committed
2286 2287 2288
  gfor_fndecl_set_std =
    gfc_build_library_function_decl (get_identifier (PREFIX("set_std")),
				    void_type_node,
fxcoudert's avatar
fxcoudert committed
2289 2290
				    3,
				    gfc_int4_type_node,
fxcoudert's avatar
fxcoudert committed
2291 2292 2293
				    gfc_int4_type_node,
				    gfc_int4_type_node);

2294 2295 2296 2297
  gfor_fndecl_set_convert =
    gfc_build_library_function_decl (get_identifier (PREFIX("set_convert")),
				     void_type_node, 1, gfc_c_int_type_node);

2298 2299 2300 2301
  gfor_fndecl_set_record_marker =
    gfc_build_library_function_decl (get_identifier (PREFIX("set_record_marker")),
				     void_type_node, 1, gfc_c_int_type_node);

dnovillo's avatar
 
dnovillo committed
2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323
  gfor_fndecl_in_pack = gfc_build_library_function_decl (
        get_identifier (PREFIX("internal_pack")),
        pvoid_type_node, 1, pvoid_type_node);

  gfor_fndecl_in_unpack = gfc_build_library_function_decl (
        get_identifier (PREFIX("internal_unpack")),
        pvoid_type_node, 1, pvoid_type_node);

  gfor_fndecl_associated =
    gfc_build_library_function_decl (
                                     get_identifier (PREFIX("associated")),
                                     gfc_logical4_type_node,
                                     2,
                                     ppvoid_type_node,
                                     ppvoid_type_node);

  gfc_build_intrinsic_function_decls ();
  gfc_build_intrinsic_lib_fndecls ();
  gfc_build_io_library_fndecls ();
}


2324
/* Evaluate the length of dummy character variables.  */
dnovillo's avatar
 
dnovillo committed
2325 2326

static tree
jakub's avatar
jakub committed
2327
gfc_trans_dummy_character (gfc_symbol *sym, gfc_charlen *cl, tree fnbody)
dnovillo's avatar
 
dnovillo committed
2328 2329 2330 2331 2332 2333 2334 2335 2336
{
  stmtblock_t body;

  gfc_finish_decl (cl->backend_decl, NULL_TREE);

  gfc_start_block (&body);

  /* Evaluate the string length expression.  */
  gfc_trans_init_string_length (cl, &body);
jakub's avatar
jakub committed
2337 2338 2339

  gfc_trans_vla_type_sizes (sym, &body);

dnovillo's avatar
 
dnovillo committed
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
  gfc_add_expr_to_block (&body, fnbody);
  return gfc_finish_block (&body);
}


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

static tree
gfc_trans_auto_character_variable (gfc_symbol * sym, tree fnbody)
{
  stmtblock_t body;
  tree decl;
  tree tmp;

pbrook's avatar
pbrook committed
2354 2355
  gcc_assert (sym->backend_decl);
  gcc_assert (sym->ts.cl && sym->ts.cl->length);
dnovillo's avatar
 
dnovillo committed
2356 2357 2358 2359 2360 2361

  gfc_start_block (&body);

  /* Evaluate the string length expression.  */
  gfc_trans_init_string_length (sym->ts.cl, &body);

jakub's avatar
jakub committed
2362 2363
  gfc_trans_vla_type_sizes (sym, &body);

dnovillo's avatar
 
dnovillo committed
2364 2365
  decl = sym->backend_decl;

2366
  /* Emit a DECL_EXPR for this variable, which will cause the
giovannibajo's avatar
giovannibajo committed
2367
     gimplifier to allocate storage, and all that good stuff.  */
2368
  tmp = build1 (DECL_EXPR, TREE_TYPE (decl), decl);
dnovillo's avatar
 
dnovillo committed
2369
  gfc_add_expr_to_block (&body, tmp);
2370

dnovillo's avatar
 
dnovillo committed
2371 2372 2373 2374
  gfc_add_expr_to_block (&body, fnbody);
  return gfc_finish_block (&body);
}

fengwang's avatar
 
fengwang committed
2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393
/* Set the initial value of ASSIGN statement auxiliary variable explicitly.  */

static tree
gfc_trans_assign_aux_var (gfc_symbol * sym, tree fnbody)
{
  stmtblock_t body;

  gcc_assert (sym->backend_decl);
  gfc_start_block (&body);

  /* Set the initial value to length. See the comments in
     function gfc_add_assign_aux_vars in this file.  */
  gfc_add_modify_expr (&body, GFC_DECL_STRING_LEN (sym->backend_decl),
		       build_int_cst (NULL_TREE, -2));

  gfc_add_expr_to_block (&body, fnbody);
  return gfc_finish_block (&body);
}

jakub's avatar
jakub committed
2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
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);
  gfc_add_modify_expr (body, var, val);
  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);
}

dnovillo's avatar
 
dnovillo committed
2500 2501 2502

/* Generate function entry and exit code, and add it to the function body.
   This includes:
2503
    Allocation and initialization of array variables.
dnovillo's avatar
 
dnovillo committed
2504
    Allocation of character string variables.
fengwang's avatar
 
fengwang committed
2505 2506
    Initialization and possibly repacking of dummy arrays.
    Initialization of ASSIGN statement auxiliary variable.  */
dnovillo's avatar
 
dnovillo committed
2507 2508 2509 2510 2511 2512

static tree
gfc_trans_deferred_vars (gfc_symbol * proc_sym, tree fnbody)
{
  locus loc;
  gfc_symbol *sym;
jakub's avatar
jakub committed
2513 2514
  gfc_formal_arglist *f;
  stmtblock_t body;
dnovillo's avatar
 
dnovillo committed
2515 2516 2517 2518 2519 2520 2521

  /* 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)
	{
2522 2523 2524 2525 2526 2527 2528 2529 2530
	  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;
	    }
	  if (el == NULL)
	    warning (0, "Function does not return a value");
dnovillo's avatar
 
dnovillo committed
2531
	}
2532
      else if (proc_sym->as)
dnovillo's avatar
 
dnovillo committed
2533
	{
jakub's avatar
jakub committed
2534 2535
	  tree result = TREE_VALUE (current_fake_result_decl);
	  fnbody = gfc_trans_dummy_array_bias (proc_sym, result, fnbody);
2536 2537 2538 2539 2540 2541

	  /* An automatic character length, pointer array result.  */
	  if (proc_sym->ts.type == BT_CHARACTER
		&& TREE_CODE (proc_sym->ts.cl->backend_decl) == VAR_DECL)
	    fnbody = gfc_trans_dummy_character (proc_sym, proc_sym->ts.cl,
						fnbody);
dnovillo's avatar
 
dnovillo committed
2542 2543 2544 2545
	}
      else if (proc_sym->ts.type == BT_CHARACTER)
	{
	  if (TREE_CODE (proc_sym->ts.cl->backend_decl) == VAR_DECL)
jakub's avatar
jakub committed
2546 2547
	    fnbody = gfc_trans_dummy_character (proc_sym, proc_sym->ts.cl,
						fnbody);
dnovillo's avatar
 
dnovillo committed
2548 2549
	}
      else
tobi's avatar
tobi committed
2550 2551
	gcc_assert (gfc_option.flag_f2c
		    && proc_sym->ts.type == BT_COMPLEX);
dnovillo's avatar
 
dnovillo committed
2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582
    }

  for (sym = proc_sym->tlink; sym != proc_sym; sym = sym->tlink)
    {
      if (sym->attr.dimension)
	{
	  switch (sym->as->type)
	    {
	    case AS_EXPLICIT:
	      if (sym->attr.dummy || sym->attr.result)
		fnbody =
		  gfc_trans_dummy_array_bias (sym, sym->backend_decl, fnbody);
	      else if (sym->attr.pointer || sym->attr.allocatable)
		{
		  if (TREE_STATIC (sym->backend_decl))
		    gfc_trans_static_array_pointer (sym);
		  else
		    fnbody = gfc_trans_deferred_array (sym, fnbody);
		}
	      else
		{
		  gfc_get_backend_locus (&loc);
		  gfc_set_backend_locus (&sym->declared_at);
		  fnbody = gfc_trans_auto_array_allocation (sym->backend_decl,
		      sym, fnbody);
		  gfc_set_backend_locus (&loc);
		}
	      break;

	    case AS_ASSUMED_SIZE:
	      /* Must be a dummy parameter.  */
pbrook's avatar
pbrook committed
2583
	      gcc_assert (sym->attr.dummy);
dnovillo's avatar
 
dnovillo committed
2584 2585 2586 2587 2588 2589 2590

	      /* We should always pass assumed size arrays the g77 way.  */
	      fnbody = gfc_trans_g77_array (sym, fnbody);
              break;

	    case AS_ASSUMED_SHAPE:
	      /* Must be a dummy parameter.  */
pbrook's avatar
pbrook committed
2591
	      gcc_assert (sym->attr.dummy);
dnovillo's avatar
 
dnovillo committed
2592 2593 2594 2595 2596 2597 2598 2599 2600 2601

	      fnbody = gfc_trans_dummy_array_bias (sym, sym->backend_decl,
						   fnbody);
	      break;

	    case AS_DEFERRED:
	      fnbody = gfc_trans_deferred_array (sym, fnbody);
	      break;

	    default:
pbrook's avatar
pbrook committed
2602
	      gcc_unreachable ();
dnovillo's avatar
 
dnovillo committed
2603 2604 2605 2606 2607 2608 2609
	    }
	}
      else if (sym->ts.type == BT_CHARACTER)
	{
	  gfc_get_backend_locus (&loc);
	  gfc_set_backend_locus (&sym->declared_at);
	  if (sym->attr.dummy || sym->attr.result)
jakub's avatar
jakub committed
2610
	    fnbody = gfc_trans_dummy_character (sym, sym->ts.cl, fnbody);
dnovillo's avatar
 
dnovillo committed
2611 2612 2613 2614
	  else
	    fnbody = gfc_trans_auto_character_variable (sym, fnbody);
	  gfc_set_backend_locus (&loc);
	}
fengwang's avatar
 
fengwang committed
2615 2616 2617 2618 2619 2620 2621
      else if (sym->attr.assign)
	{
	  gfc_get_backend_locus (&loc);
	  gfc_set_backend_locus (&sym->declared_at);
	  fnbody = gfc_trans_assign_aux_var (sym, fnbody);
	  gfc_set_backend_locus (&loc);
	}
dnovillo's avatar
 
dnovillo committed
2622
      else
pbrook's avatar
pbrook committed
2623
	gcc_unreachable ();
dnovillo's avatar
 
dnovillo committed
2624 2625
    }

jakub's avatar
jakub committed
2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
  gfc_init_block (&body);

  for (f = proc_sym->formal; f; f = f->next)
    if (f->sym && f->sym->tlink == NULL && f->sym->ts.type == BT_CHARACTER)
      {
	gcc_assert (f->sym->ts.cl->backend_decl != NULL);
	if (TREE_CODE (f->sym->ts.cl->backend_decl) == PARM_DECL)
	  gfc_trans_vla_type_sizes (f->sym, &body);
      }

  if (gfc_return_by_reference (proc_sym) && proc_sym->ts.type == BT_CHARACTER
      && current_fake_result_decl != NULL)
    {
      gcc_assert (proc_sym->ts.cl->backend_decl != NULL);
      if (TREE_CODE (proc_sym->ts.cl->backend_decl) == PARM_DECL)
	gfc_trans_vla_type_sizes (proc_sym, &body);
    }

  gfc_add_expr_to_block (&body, fnbody);
  return gfc_finish_block (&body);
dnovillo's avatar
 
dnovillo committed
2646 2647 2648 2649 2650 2651 2652 2653 2654 2655
}


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

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

2656 2657 2658 2659 2660
  /* Module functions with alternate entries are dealt with later and
     would get caught by the next condition.  */
  if (sym->attr.entry)
    return;

dnovillo's avatar
 
dnovillo committed
2661 2662 2663 2664 2665 2666 2667
  /* Only output symbols from this module.  */
  if (sym->ns != module_namespace)
    {
      /* I don't think this should ever happen.  */
      internal_error ("module symbol %s in wrong namespace", sym->name);
    }

2668
  /* Only output variables and array valued parameters.  */
dnovillo's avatar
 
dnovillo committed
2669 2670 2671 2672
  if (sym->attr.flavor != FL_VARIABLE
      && (sym->attr.flavor != FL_PARAMETER || sym->attr.dimension == 0))
    return;

tobi's avatar
tobi committed
2673 2674 2675
  /* Don't generate variables from other modules. Variables from
     COMMONs will already have been generated.  */
  if (sym->attr.use_assoc || sym->attr.in_common)
dnovillo's avatar
 
dnovillo committed
2676 2677
    return;

2678
  /* Equivalenced variables arrive here after creation.  */
2679 2680
  if (sym->backend_decl
	&& (sym->equiv_built || sym->attr.in_equivalence))
2681 2682
      return;

dnovillo's avatar
 
dnovillo committed
2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693
  if (sym->backend_decl)
    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);
2694
  rest_of_decl_compilation (decl, 1, 0);
dnovillo's avatar
 
dnovillo committed
2695 2696 2697 2698 2699 2700 2701 2702 2703 2704

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

      length = sym->ts.cl->backend_decl;
      if (!INTEGER_CST_P (length))
        {
          pushdecl (length);
2705
          rest_of_decl_compilation (length, 1, 0);
dnovillo's avatar
 
dnovillo committed
2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717
        }
    }
}


/* Generate all the required code for module variables.  */

void
gfc_generate_module_vars (gfc_namespace * ns)
{
  module_namespace = ns;

2718
  /* Check if the frontend left the namespace in a reasonable state.  */
pbrook's avatar
pbrook committed
2719
  gcc_assert (ns->proc_name && !ns->proc_name->tlink);
dnovillo's avatar
 
dnovillo committed
2720

tobi's avatar
tobi committed
2721 2722 2723
  /* Generate COMMON blocks.  */
  gfc_trans_common (ns);

2724
  /* Create decls for all the module variables.  */
dnovillo's avatar
 
dnovillo committed
2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739
  gfc_traverse_ns (ns, gfc_create_module_variable);
}

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;

2740
      gfc_create_function_decl (ns);
dnovillo's avatar
 
dnovillo committed
2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764
    }

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

      gfc_generate_function_code (ns);
    }
}


/* 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)
    {
      if (sym->attr.referenced)
        gfc_get_symbol_decl (sym);
2765
      else if (sym->attr.dummy && warn_unused_parameter)
2766
            warning (0, "unused parameter %qs", sym->name);
2767
      /* Warn for unused variables, but not if they're inside a common
2768
	 block or are use-associated.  */
tobi's avatar
tobi committed
2769 2770
      else if (warn_unused_variable
	       && !(sym->attr.in_common || sym->attr.use_assoc))
2771
	warning (0, "unused variable %qs", sym->name); 
jakub's avatar
jakub committed
2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784
      /* 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.  */
      if (sym->attr.dummy && ! sym->attr.referenced
	  && sym->ts.type == BT_CHARACTER
	  && sym->ts.cl->backend_decl != NULL
	  && TREE_CODE (sym->ts.cl->backend_decl) == VAR_DECL)
	{
	  sym->attr.referenced = 1;
	  gfc_get_symbol_decl (sym);
	}
dnovillo's avatar
 
dnovillo committed
2785 2786 2787 2788 2789 2790 2791 2792 2793 2794
    }
}

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


2795 2796
/* Generate a switch statement to jump to the correct entry point.  Also
   creates the label decls for the entry points.  */
dnovillo's avatar
 
dnovillo committed
2797

2798 2799
static tree
gfc_trans_entry_master_switch (gfc_entry_list * el)
dnovillo's avatar
 
dnovillo committed
2800
{
2801 2802 2803 2804
  stmtblock_t block;
  tree label;
  tree tmp;
  tree val;
dnovillo's avatar
 
dnovillo committed
2805

2806 2807 2808 2809
  gfc_init_block (&block);
  for (; el; el = el->next)
    {
      /* Add the case label.  */
2810
      label = gfc_build_label_decl (NULL_TREE);
2811
      val = build_int_cst (gfc_array_index_type, el->id);
2812
      tmp = build3_v (CASE_LABEL_EXPR, val, NULL_TREE, label);
2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825
      gfc_add_expr_to_block (&block, tmp);
      
      /* 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);
2826
  tmp = build3_v (SWITCH_EXPR, val, tmp, NULL_TREE);
2827
  return tmp;
dnovillo's avatar
 
dnovillo committed
2828 2829
}

2830

dnovillo's avatar
 
dnovillo committed
2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845
/* Generate code for a function.  */

void
gfc_generate_function_code (gfc_namespace * ns)
{
  tree fndecl;
  tree old_context;
  tree decl;
  tree tmp;
  stmtblock_t block;
  stmtblock_t body;
  tree result;
  gfc_symbol *sym;

  sym = ns->proc_name;
2846

dnovillo's avatar
 
dnovillo committed
2847
  /* Check that the frontend isn't still using this.  */
pbrook's avatar
pbrook committed
2848
  gcc_assert (sym->tlink == NULL);
dnovillo's avatar
 
dnovillo committed
2849 2850 2851 2852
  sym->tlink = sym;

  /* Create the declaration for functions with global scope.  */
  if (!sym->backend_decl)
2853
    gfc_create_function_decl (ns);
dnovillo's avatar
 
dnovillo committed
2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864

  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;
    }

2865
  trans_function_start (sym);
dnovillo's avatar
 
dnovillo committed
2866 2867 2868

  gfc_start_block (&block);

2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881
  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;

      gfc_conv_const_charlen (ns->proc_name->ts.cl);
      backend_decl = ns->proc_name->result->ts.cl->backend_decl;
      for (el = ns->entries; el; el = el->next)
	el->sym->result->ts.cl->backend_decl = backend_decl;
    }

dnovillo's avatar
 
dnovillo committed
2882 2883 2884
  /* Translate COMMON blocks.  */
  gfc_trans_common (ns);

2885 2886 2887 2888 2889 2890
  /* 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;

2891 2892
  gfc_generate_contained_functions (ns);

dnovillo's avatar
 
dnovillo committed
2893
  generate_local_vars (ns);
2894
  
2895 2896 2897 2898 2899 2900 2901 2902
  /* 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;

dnovillo's avatar
 
dnovillo committed
2903 2904 2905 2906 2907
  current_function_return_label = NULL;

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

fxcoudert's avatar
fxcoudert committed
2908 2909 2910 2911
  /* If this is the main program, add a call to set_std to set up the
     runtime library Fortran language standard parameters.  */

  if (sym->attr.is_main_program)
fxcoudert's avatar
fxcoudert committed
2912 2913 2914 2915 2916 2917 2918 2919 2920 2921
    {
      tree arglist, gfc_int4_type_node;

      gfc_int4_type_node = gfc_get_int_type (4);
      arglist = gfc_chainon_list (NULL_TREE,
				  build_int_cst (gfc_int4_type_node,
						 gfc_option.warn_std));
      arglist = gfc_chainon_list (arglist,
				  build_int_cst (gfc_int4_type_node,
						 gfc_option.allow_std));
fxcoudert's avatar
fxcoudert committed
2922 2923 2924
      arglist = gfc_chainon_list (arglist,
				  build_int_cst (gfc_int4_type_node,
						 pedantic));
2925
      tmp = build_function_call_expr (gfor_fndecl_set_std, arglist);
fxcoudert's avatar
fxcoudert committed
2926 2927 2928
      gfc_add_expr_to_block (&body, tmp);
    }

2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939
  /* If this is the main program and a -ffpe-trap option was provided,
     add a call to set_fpe so that the library will raise a FPE when
     needed.  */
  if (sym->attr.is_main_program && gfc_option.fpe != 0)
    {
      tree arglist, gfc_c_int_type_node;

      gfc_c_int_type_node = gfc_get_int_type (gfc_c_int_kind);
      arglist = gfc_chainon_list (NULL_TREE,
				  build_int_cst (gfc_c_int_type_node,
						 gfc_option.fpe));
2940
      tmp = build_function_call_expr (gfor_fndecl_set_fpe, arglist);
2941 2942 2943
      gfc_add_expr_to_block (&body, tmp);
    }

2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958
  /* If this is the main program and an -fconvert option was provided,
     add a call to set_convert.  */

  if (sym->attr.is_main_program && gfc_option.convert != CONVERT_NATIVE)
    {
      tree arglist, gfc_c_int_type_node;

      gfc_c_int_type_node = gfc_get_int_type (gfc_c_int_kind);
      arglist = gfc_chainon_list (NULL_TREE,
				  build_int_cst (gfc_c_int_type_node,
						 gfc_option.convert));
      tmp = build_function_call_expr (gfor_fndecl_set_convert, arglist);
      gfc_add_expr_to_block (&body, tmp);
    }

2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973
  /* If this is the main program and an -frecord-marker option was provided,
     add a call to set_record_marker.  */

  if (sym->attr.is_main_program && gfc_option.record_marker != 0)
    {
      tree arglist, gfc_c_int_type_node;

      gfc_c_int_type_node = gfc_get_int_type (gfc_c_int_kind);
      arglist = gfc_chainon_list (NULL_TREE,
				  build_int_cst (gfc_c_int_type_node,
						 gfc_option.record_marker));
      tmp = build_function_call_expr (gfor_fndecl_set_record_marker, arglist);
      gfc_add_expr_to_block (&body, tmp);

    }
2974

dnovillo's avatar
 
dnovillo committed
2975 2976 2977 2978
  if (TREE_TYPE (DECL_RESULT (fndecl)) != void_type_node
      && sym->attr.subroutine)
    {
      tree alternate_return;
2979
      alternate_return = gfc_get_fake_result_decl (sym, 0);
dnovillo's avatar
 
dnovillo committed
2980 2981 2982
      gfc_add_modify_expr (&body, alternate_return, integer_zero_node);
    }

2983 2984 2985 2986 2987 2988 2989
  if (ns->entries)
    {
      /* Jump to the correct entry point.  */
      tmp = gfc_trans_entry_master_switch (ns->entries);
      gfc_add_expr_to_block (&body, tmp);
    }

dnovillo's avatar
 
dnovillo committed
2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006
  tmp = gfc_trans_code (ns->code);
  gfc_add_expr_to_block (&body, tmp);

  /* Add a return label if needed.  */
  if (current_function_return_label)
    {
      tmp = build1_v (LABEL_EXPR, current_function_return_label);
      gfc_add_expr_to_block (&body, tmp);
    }

  tmp = gfc_finish_block (&body);
  /* Add code to create and cleanup arrays.  */
  tmp = gfc_trans_deferred_vars (sym, tmp);
  gfc_add_expr_to_block (&block, tmp);

  if (TREE_TYPE (DECL_RESULT (fndecl)) != void_type_node)
    {
3007
      if (sym->attr.subroutine || sym == sym->result)
dnovillo's avatar
 
dnovillo committed
3008
	{
jakub's avatar
jakub committed
3009 3010 3011 3012
	  if (current_fake_result_decl != NULL)
	    result = TREE_VALUE (current_fake_result_decl);
	  else
	    result = NULL_TREE;
dnovillo's avatar
 
dnovillo committed
3013 3014 3015 3016 3017 3018
	  current_fake_result_decl = NULL_TREE;
	}
      else
	result = sym->result->backend_decl;

      if (result == NULL_TREE)
3019
	warning (0, "Function return value not set");
dnovillo's avatar
 
dnovillo committed
3020 3021
      else
	{
3022
	  /* Set the return value to the dummy result variable.  */
3023 3024 3025
	  tmp = build2 (MODIFY_EXPR, TREE_TYPE (result),
			DECL_RESULT (fndecl), result);
	  tmp = build1_v (RETURN_EXPR, tmp);
dnovillo's avatar
 
dnovillo committed
3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068
	  gfc_add_expr_to_block (&block, tmp);
	}
    }

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

      next = TREE_CHAIN (decl);
      TREE_CHAIN (decl) = NULL_TREE;
      pushdecl (decl);
      decl = next;
    }
  saved_function_decls = NULL_TREE;

  DECL_SAVED_TREE (fndecl) = gfc_finish_block (&block);

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

  /* 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.  */
  cfun = NULL;

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

  if (decl_function_context (fndecl))
3069 3070 3071
    /* Register this function with cgraph just far enough to get it
       added to our parent's nested function list.  */
    (void) cgraph_node (fndecl);
dnovillo's avatar
 
dnovillo committed
3072 3073
  else
    {
3074
      gfc_gimplify_function (fndecl);
hubicka's avatar
hubicka committed
3075
      cgraph_finalize_function (fndecl, false);
dnovillo's avatar
 
dnovillo committed
3076 3077 3078 3079 3080 3081
    }
}

void
gfc_generate_constructors (void)
{
pbrook's avatar
pbrook committed
3082
  gcc_assert (gfc_static_ctors == NULL_TREE);
dnovillo's avatar
 
dnovillo committed
3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100
#if 0
  tree fnname;
  tree type;
  tree fndecl;
  tree decl;
  tree tmp;

  if (gfc_static_ctors == NULL_TREE)
    return;

  fnname = get_file_function_name ('I');
  type = build_function_type (void_type_node,
			      gfc_chainon_list (NULL_TREE, void_type_node));

  fndecl = build_decl (FUNCTION_DECL, fnname, type);
  TREE_PUBLIC (fndecl) = 1;

  decl = build_decl (RESULT_DECL, NULL_TREE, void_type_node);
3101 3102
  DECL_ARTIFICIAL (decl) = 1;
  DECL_IGNORED_P (decl) = 1;
dnovillo's avatar
 
dnovillo committed
3103 3104 3105 3106 3107 3108 3109
  DECL_CONTEXT (decl) = fndecl;
  DECL_RESULT (fndecl) = decl;

  pushdecl (fndecl);

  current_function_decl = fndecl;

3110
  rest_of_decl_compilation (fndecl, 1, 0);
dnovillo's avatar
 
dnovillo committed
3111

3112
  make_decl_rtl (fndecl);
dnovillo's avatar
 
dnovillo committed
3113

3114
  init_function_start (fndecl);
dnovillo's avatar
 
dnovillo committed
3115 3116 3117 3118 3119 3120

  pushlevel (0);

  for (; gfc_static_ctors; gfc_static_ctors = TREE_CHAIN (gfc_static_ctors))
    {
      tmp =
3121
	build_function_call_expr (TREE_VALUE (gfc_static_ctors), NULL_TREE);
dnovillo's avatar
 
dnovillo committed
3122 3123 3124 3125 3126 3127 3128 3129 3130 3131
      DECL_SAVED_TREE (fndecl) = build_stmt (EXPR_STMT, tmp);
    }

  poplevel (1, 0, 1);

  BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;

  free_after_parsing (cfun);
  free_after_compilation (cfun);

3132
  tree_rest_of_compilation (fndecl);
dnovillo's avatar
 
dnovillo committed
3133 3134 3135 3136 3137

  current_function_decl = NULL_TREE;
#endif
}

tobi's avatar
tobi committed
3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148
/* 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;

3149 3150 3151 3152 3153 3154 3155
  /* 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.  */
tobi's avatar
tobi committed
3156 3157
  gfc_trans_common (ns);

3158 3159 3160
  /* 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.  */
tobi's avatar
tobi committed
3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173
  if (ns->proc_name)
    id = gfc_sym_mangled_function_id (ns->proc_name);
  else
    id = get_identifier ("__BLOCK_DATA__");

  decl = build_decl (VAR_DECL, id, gfc_array_index_type);
  TREE_PUBLIC (decl) = 1;
  TREE_STATIC (decl) = 1;

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

steven's avatar
steven committed
3174

dnovillo's avatar
 
dnovillo committed
3175
#include "gt-fortran-trans-decl.h"