iresolve.c 88.8 KB
Newer Older
1
/* Intrinsic function resolution.
2
   Copyright (C) 2000-2017 Free Software Foundation, Inc.
3 4
   Contributed by Andy Vaught & Katherine Holcomb

5
This file is part of GCC.
6

7 8
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
9
Software Foundation; either version 3, or (at your option) any later
10
version.
11

12 13 14 15
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.
16 17

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


/* Assign name and types to intrinsic procedures.  For functions, the
   first argument to a resolution function is an expression pointer to
   the original function node and the rest are pointers to the
   arguments of the function call.  For subroutines, a pointer to the
   code node is passed.  The result type and library subroutine name
   are generally set according to the function arguments.  */

#include "config.h"
30 31
#include "system.h"
#include "coretypes.h"
32
#include "tree.h"
33
#include "gfortran.h"
34
#include "stringpool.h"
35
#include "intrinsic.h"
Jerry DeLisle committed
36
#include "constructor.h"
37
#include "arith.h"
38

39
/* Given printf-like arguments, return a stable version of the result string. 
40

41 42 43 44
   We already have a working, optimized string hashing table in the form of
   the identifier table.  Reusing this table is likely not to be wasted, 
   since if the function name makes it to the gimple output of the frontend,
   we'll have to create the identifier anyway.  */
45

46
const char *
47 48
gfc_get_string (const char *format, ...)
{
49
  char temp_name[128];
50
  va_list ap;
51
  tree ident;
52 53

  va_start (ap, format);
54
  vsnprintf (temp_name, sizeof (temp_name), format, ap);
55
  va_end (ap);
56
  temp_name[sizeof (temp_name) - 1] = 0;
57

58 59
  ident = get_identifier (temp_name);
  return IDENTIFIER_POINTER (ident);
60 61
}

62 63 64 65 66
/* MERGE and SPREAD need to have source charlen's present for passing
   to the result expression.  */
static void
check_charlen_present (gfc_expr *source)
{
67
  if (source->ts.u.cl == NULL)
68
    source->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
69 70 71

  if (source->expr_type == EXPR_CONSTANT)
    {
Jerry DeLisle committed
72 73 74
      source->ts.u.cl->length
		= gfc_get_int_expr (gfc_default_integer_kind, NULL,
				    source->value.character.length);
75 76
      source->rank = 0;
    }
77
  else if (source->expr_type == EXPR_ARRAY)
Jerry DeLisle committed
78 79 80 81 82 83
    {
      gfc_constructor *c = gfc_constructor_first (source->value.constructor);
      source->ts.u.cl->length
		= gfc_get_int_expr (gfc_default_integer_kind, NULL,
				    c->expr->value.character.length);
    }
84 85
}

86 87 88 89 90 91
/* Helper function for resolving the "mask" argument.  */

static void
resolve_mask_arg (gfc_expr *mask)
{

92
  gfc_typespec ts;
93
  gfc_clear_ts (&ts);
94

95
  if (mask->rank == 0)
96
    {
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
      /* For the scalar case, coerce the mask to kind=4 unconditionally
	 (because this is the only kind we have a library function
	 for).  */

      if (mask->ts.kind != 4)
	{
	  ts.type = BT_LOGICAL;
	  ts.kind = 4;
	  gfc_convert_type (mask, &ts, 2);
	}
    }
  else
    {
      /* In the library, we access the mask with a GFC_LOGICAL_1
	 argument.  No need to waste memory if we are about to create
	 a temporary array.  */
113
      if (mask->expr_type == EXPR_OP && mask->ts.kind != 1)
114 115 116
	{
	  ts.type = BT_LOGICAL;
	  ts.kind = 1;
117
	  gfc_convert_type_warn (mask, &ts, 2, 0);
118
	}
119 120 121
    }
}

122 123 124

static void
resolve_bound (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *kind,
125
	       const char *name, bool coarray)
126 127 128 129 130 131 132 133 134 135
{
  f->ts.type = BT_INTEGER;
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;

  if (dim == NULL)
    {
      f->rank = 1;
136 137 138 139 140 141
      if (array->rank != -1)
	{
	  f->shape = gfc_get_shape (1);
	  mpz_init_set_ui (f->shape[0], coarray ? gfc_get_corank (array)
						: array->rank);
	}
142 143
    }

144
  f->value.function.name = gfc_get_string (name);
145 146
}

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180

static void
resolve_transformational (const char *name, gfc_expr *f, gfc_expr *array,
			  gfc_expr *dim, gfc_expr *mask)
{
  const char *prefix;

  f->ts = array->ts;

  if (mask)
    {
      if (mask->rank == 0)
	prefix = "s";
      else
	prefix = "m";

      resolve_mask_arg (mask);
    }
  else
    prefix = "";

  if (dim != NULL)
    {
      f->rank = array->rank - 1;
      f->shape = gfc_copy_shape_excluding (array->shape, array->rank, dim);
      gfc_resolve_dim_arg (dim);
    }

  f->value.function.name
    = gfc_get_string (PREFIX ("%s%s_%c%d"), prefix, name,
		    gfc_type_letter (array->ts.type), array->ts.kind);
}


181 182 183 184
/********************** Resolution functions **********************/


void
185
gfc_resolve_abs (gfc_expr *f, gfc_expr *a)
186 187 188 189 190
{
  f->ts = a->ts;
  if (f->ts.type == BT_COMPLEX)
    f->ts.type = BT_REAL;

191 192
  f->value.function.name
    = gfc_get_string ("__abs_%c%d", gfc_type_letter (a->ts.type), a->ts.kind);
193 194 195 196
}


void
197 198
gfc_resolve_access (gfc_expr *f, gfc_expr *name ATTRIBUTE_UNUSED,
		    gfc_expr *mode ATTRIBUTE_UNUSED)
199 200 201
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_c_int_kind;
202
  f->value.function.name = PREFIX ("access_func");
203 204 205
}


206 207 208 209 210
void
gfc_resolve_adjustl (gfc_expr *f, gfc_expr *string)
{
  f->ts.type = BT_CHARACTER;
  f->ts.kind = string->ts.kind;
211 212 213
  if (string->ts.u.cl)
    f->ts.u.cl = gfc_new_charlen (gfc_current_ns, string->ts.u.cl);

214 215 216 217 218 219 220 221 222
  f->value.function.name = gfc_get_string ("__adjustl_s%d", f->ts.kind);
}


void
gfc_resolve_adjustr (gfc_expr *f, gfc_expr *string)
{
  f->ts.type = BT_CHARACTER;
  f->ts.kind = string->ts.kind;
223 224 225
  if (string->ts.u.cl)
    f->ts.u.cl = gfc_new_charlen (gfc_current_ns, string->ts.u.cl);

226 227 228 229
  f->value.function.name = gfc_get_string ("__adjustr_s%d", f->ts.kind);
}


230 231 232
static void
gfc_resolve_char_achar (gfc_expr *f, gfc_expr *x, gfc_expr *kind,
			const char *name)
233 234
{
  f->ts.type = BT_CHARACTER;
235 236
  f->ts.kind = (kind == NULL)
	     ? gfc_default_character_kind : mpz_get_si (kind->value.integer);
237
  f->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
Jerry DeLisle committed
238
  f->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
239

240
  f->value.function.name = gfc_get_string (name, f->ts.kind,
241 242
					   gfc_type_letter (x->ts.type),
					   x->ts.kind);
243 244 245 246
}


void
247 248 249 250 251 252 253
gfc_resolve_achar (gfc_expr *f, gfc_expr *x, gfc_expr *kind)
{
  gfc_resolve_char_achar (f, x, kind, "__achar_%d_%c%d");
}


void
254
gfc_resolve_acos (gfc_expr *f, gfc_expr *x)
255 256
{
  f->ts = x->ts;
257 258
  f->value.function.name
    = gfc_get_string ("__acos_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
259 260 261 262
}


void
263
gfc_resolve_acosh (gfc_expr *f, gfc_expr *x)
264 265
{
  f->ts = x->ts;
266 267 268
  f->value.function.name
    = gfc_get_string ("__acosh_%c%d", gfc_type_letter (x->ts.type),
		      x->ts.kind);
269 270 271 272
}


void
273
gfc_resolve_aimag (gfc_expr *f, gfc_expr *x)
274 275 276
{
  f->ts.type = BT_REAL;
  f->ts.kind = x->ts.kind;
277 278 279
  f->value.function.name
    = gfc_get_string ("__aimag_%c%d", gfc_type_letter (x->ts.type),
		      x->ts.kind);
280 281 282 283
}


void
284
gfc_resolve_and (gfc_expr *f, gfc_expr *i, gfc_expr *j)
285 286
{
  f->ts.type = i->ts.type;
287
  f->ts.kind = gfc_kind_max (i, j);
288 289 290

  if (i->ts.kind != j->ts.kind)
    {
291 292
      if (i->ts.kind == gfc_kind_max (i, j))
	gfc_convert_type (j, &i->ts, 2);
293
      else
294
	gfc_convert_type (i, &j->ts, 2);
295 296
    }

297 298
  f->value.function.name
    = gfc_get_string ("__and_%c%d", gfc_type_letter (i->ts.type), f->ts.kind);
299 300 301 302
}


void
303
gfc_resolve_aint (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
304
{
305
  gfc_typespec ts;
306
  gfc_clear_ts (&ts);
307
  
308 309 310
  f->ts.type = a->ts.type;
  f->ts.kind = (kind == NULL) ? a->ts.kind : mpz_get_si (kind->value.integer);

311 312 313 314 315 316
  if (a->ts.kind != f->ts.kind)
    {
      ts.type = f->ts.type;
      ts.kind = f->ts.kind;
      gfc_convert_type (a, &ts, 2);
    }
317 318
  /* The resolved name is only used for specific intrinsics where
     the return kind is the same as the arg kind.  */
319 320
  f->value.function.name
    = gfc_get_string ("__aint_%c%d", gfc_type_letter (a->ts.type), a->ts.kind);
321 322 323 324
}


void
325
gfc_resolve_dint (gfc_expr *f, gfc_expr *a)
326 327 328 329 330 331
{
  gfc_resolve_aint (f, a, NULL);
}


void
332
gfc_resolve_all (gfc_expr *f, gfc_expr *mask, gfc_expr *dim)
333 334 335 336 337
{
  f->ts = mask->ts;

  if (dim != NULL)
    {
338
      gfc_resolve_dim_arg (dim);
339
      f->rank = mask->rank - 1;
340
      f->shape = gfc_copy_shape_excluding (mask->shape, mask->rank, dim);
341 342
    }

343 344 345
  f->value.function.name
    = gfc_get_string (PREFIX ("all_%c%d"), gfc_type_letter (mask->ts.type),
		      mask->ts.kind);
346 347 348 349
}


void
350
gfc_resolve_anint (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
351
{
352
  gfc_typespec ts;
353
  gfc_clear_ts (&ts);
354
  
355 356 357
  f->ts.type = a->ts.type;
  f->ts.kind = (kind == NULL) ? a->ts.kind : mpz_get_si (kind->value.integer);

358 359 360 361 362 363 364
  if (a->ts.kind != f->ts.kind)
    {
      ts.type = f->ts.type;
      ts.kind = f->ts.kind;
      gfc_convert_type (a, &ts, 2);
    }

365 366
  /* The resolved name is only used for specific intrinsics where
     the return kind is the same as the arg kind.  */
367 368 369
  f->value.function.name
    = gfc_get_string ("__anint_%c%d", gfc_type_letter (a->ts.type),
		      a->ts.kind);
370 371 372 373
}


void
374
gfc_resolve_dnint (gfc_expr *f, gfc_expr *a)
375 376 377 378 379 380
{
  gfc_resolve_anint (f, a, NULL);
}


void
381
gfc_resolve_any (gfc_expr *f, gfc_expr *mask, gfc_expr *dim)
382 383 384 385 386
{
  f->ts = mask->ts;

  if (dim != NULL)
    {
387
      gfc_resolve_dim_arg (dim);
388
      f->rank = mask->rank - 1;
389
      f->shape = gfc_copy_shape_excluding (mask->shape, mask->rank, dim);
390 391
    }

392 393 394
  f->value.function.name
    = gfc_get_string (PREFIX ("any_%c%d"), gfc_type_letter (mask->ts.type),
		      mask->ts.kind);
395 396 397 398
}


void
399
gfc_resolve_asin (gfc_expr *f, gfc_expr *x)
400 401
{
  f->ts = x->ts;
402 403
  f->value.function.name
    = gfc_get_string ("__asin_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
404 405
}

406
void
407
gfc_resolve_asinh (gfc_expr *f, gfc_expr *x)
408 409
{
  f->ts = x->ts;
410 411 412
  f->value.function.name
    = gfc_get_string ("__asinh_%c%d", gfc_type_letter (x->ts.type),
		      x->ts.kind);
413
}
414 415

void
416
gfc_resolve_atan (gfc_expr *f, gfc_expr *x)
417 418
{
  f->ts = x->ts;
419 420
  f->value.function.name
    = gfc_get_string ("__atan_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
421 422
}

423
void
424
gfc_resolve_atanh (gfc_expr *f, gfc_expr *x)
425 426
{
  f->ts = x->ts;
427 428 429
  f->value.function.name
    = gfc_get_string ("__atanh_%c%d", gfc_type_letter (x->ts.type),
		      x->ts.kind);
430
}
431 432

void
433
gfc_resolve_atan2 (gfc_expr *f, gfc_expr *x, gfc_expr *y ATTRIBUTE_UNUSED)
434 435
{
  f->ts = x->ts;
436 437 438
  f->value.function.name
    = gfc_get_string ("__atan2_%c%d", gfc_type_letter (x->ts.type),
		      x->ts.kind);
439 440 441
}


442 443 444
/* Resolve the BESYN and BESJN intrinsics.  */

void
445
gfc_resolve_besn (gfc_expr *f, gfc_expr *n, gfc_expr *x)
446 447
{
  gfc_typespec ts;
448
  gfc_clear_ts (&ts);
449 450 451 452 453 454 455 456 457 458 459 460
  
  f->ts = x->ts;
  if (n->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
      gfc_convert_type (n, &ts, 2);
    }
  f->value.function.name = gfc_get_string ("<intrinsic>");
}


461
void
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
gfc_resolve_bessel_n2 (gfc_expr *f, gfc_expr *n1, gfc_expr *n2, gfc_expr *x)
{
  gfc_typespec ts;
  gfc_clear_ts (&ts);
  
  f->ts = x->ts;
  f->rank = 1;
  if (n1->expr_type == EXPR_CONSTANT && n2->expr_type == EXPR_CONSTANT)
    {
      f->shape = gfc_get_shape (1);
      mpz_init (f->shape[0]);
      mpz_sub (f->shape[0], n2->value.integer, n1->value.integer);
      mpz_add_ui (f->shape[0], f->shape[0], 1);
    }

  if (n1->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
      gfc_convert_type (n1, &ts, 2);
    }

  if (n2->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
      gfc_convert_type (n2, &ts, 2);
    }

  if (f->value.function.isym->id == GFC_ISYM_JN2)
    f->value.function.name = gfc_get_string (PREFIX ("bessel_jn_r%d"),
					     f->ts.kind);
  else
    f->value.function.name = gfc_get_string (PREFIX ("bessel_yn_r%d"),
					     f->ts.kind);
}


void
501
gfc_resolve_btest (gfc_expr *f, gfc_expr *i, gfc_expr *pos)
502 503
{
  f->ts.type = BT_LOGICAL;
504
  f->ts.kind = gfc_default_logical_kind;
505 506
  f->value.function.name
    = gfc_get_string ("__btest_%d_%d", i->ts.kind, pos->ts.kind);
507 508 509 510
}


void
511 512 513 514 515 516 517 518 519 520 521 522 523 524
gfc_resolve_c_loc (gfc_expr *f, gfc_expr *x ATTRIBUTE_UNUSED)
{
  f->ts = f->value.function.isym->ts;
}


void
gfc_resolve_c_funloc (gfc_expr *f, gfc_expr *x ATTRIBUTE_UNUSED)
{
  f->ts = f->value.function.isym->ts;
}


void
525
gfc_resolve_ceiling (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
526 527
{
  f->ts.type = BT_INTEGER;
528 529 530 531 532
  f->ts.kind = (kind == NULL)
	     ? gfc_default_integer_kind : mpz_get_si (kind->value.integer);
  f->value.function.name
    = gfc_get_string ("__ceiling_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
533 534 535 536
}


void
537
gfc_resolve_char (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
538
{
539
  gfc_resolve_char_achar (f, a, kind, "__char_%d_%c%d");
540 541 542 543
}


void
544
gfc_resolve_chdir (gfc_expr *f, gfc_expr *d ATTRIBUTE_UNUSED)
545 546 547
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
548
  f->value.function.name = gfc_get_string (PREFIX ("chdir_i%d"), f->ts.kind);
549 550 551 552
}


void
553
gfc_resolve_chdir_sub (gfc_code *c)
554 555 556 557 558 559 560 561 562
{
  const char *name;
  int kind;

  if (c->ext.actual->next->expr != NULL)
    kind = c->ext.actual->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

563
  name = gfc_get_string (PREFIX ("chdir_i%d_sub"), kind);
564 565 566 567 568
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
569 570
gfc_resolve_chmod (gfc_expr *f, gfc_expr *name ATTRIBUTE_UNUSED,
		   gfc_expr *mode ATTRIBUTE_UNUSED)
571 572 573
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_c_int_kind;
574
  f->value.function.name = PREFIX ("chmod_func");
575 576 577 578
}


void
579
gfc_resolve_chmod_sub (gfc_code *c)
580 581 582 583 584 585 586 587 588
{
  const char *name;
  int kind;

  if (c->ext.actual->next->next->expr != NULL)
    kind = c->ext.actual->next->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

589
  name = gfc_get_string (PREFIX ("chmod_i%d_sub"), kind);
590 591 592 593 594
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
595
gfc_resolve_cmplx (gfc_expr *f, gfc_expr *x, gfc_expr *y, gfc_expr *kind)
596 597
{
  f->ts.type = BT_COMPLEX;
598 599
  f->ts.kind = (kind == NULL)
	     ? gfc_default_real_kind : mpz_get_si (kind->value.integer);
600 601

  if (y == NULL)
602 603 604
    f->value.function.name
      = gfc_get_string ("__cmplx0_%d_%c%d", f->ts.kind,
			gfc_type_letter (x->ts.type), x->ts.kind);
605
  else
606 607 608 609
    f->value.function.name
      = gfc_get_string ("__cmplx1_%d_%c%d_%c%d", f->ts.kind,
			gfc_type_letter (x->ts.type), x->ts.kind,
			gfc_type_letter (y->ts.type), y->ts.kind);
610 611
}

612

613
void
614
gfc_resolve_dcmplx (gfc_expr *f, gfc_expr *x, gfc_expr *y)
615
{
Jerry DeLisle committed
616 617
  gfc_resolve_cmplx (f, x, y, gfc_get_int_expr (gfc_default_integer_kind, NULL,
						gfc_default_double_kind));
618 619
}

620

621
void
622
gfc_resolve_complex (gfc_expr *f, gfc_expr *x, gfc_expr *y)
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
{
  int kind;

  if (x->ts.type == BT_INTEGER)
    {
      if (y->ts.type == BT_INTEGER)
	kind = gfc_default_real_kind;
      else
	kind = y->ts.kind;
    }
  else
    {
      if (y->ts.type == BT_REAL)
	kind = (x->ts.kind > y->ts.kind) ? x->ts.kind : y->ts.kind;
      else
	kind = x->ts.kind;
    }

  f->ts.type = BT_COMPLEX;
  f->ts.kind = kind;
643 644 645 646
  f->value.function.name
    = gfc_get_string ("__cmplx1_%d_%c%d_%c%d", f->ts.kind,
		      gfc_type_letter (x->ts.type), x->ts.kind,
		      gfc_type_letter (y->ts.type), y->ts.kind);
647 648 649 650
}


void
651
gfc_resolve_conjg (gfc_expr *f, gfc_expr *x)
652 653 654 655 656 657 658
{
  f->ts = x->ts;
  f->value.function.name = gfc_get_string ("__conjg_%d", x->ts.kind);
}


void
659
gfc_resolve_cos (gfc_expr *f, gfc_expr *x)
660 661
{
  f->ts = x->ts;
662 663
  f->value.function.name
    = gfc_get_string ("__cos_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
664 665 666 667
}


void
668
gfc_resolve_cosh (gfc_expr *f, gfc_expr *x)
669 670
{
  f->ts = x->ts;
671 672
  f->value.function.name
    = gfc_get_string ("__cosh_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
673 674 675
}


676 677 678 679 680 681 682 683 684 685 686 687
/* Our replacement of elements of a trig call with an EXPR_OP (e.g.
   multiplying the result or operands by a factor to convert to/from degrees)
   will cause the resolve_* function to be invoked again when resolving the
   freshly created EXPR_OP.  See gfc_resolve_trigd, gfc_resolve_atrigd,
   gfc_resolve_cotan.  We must observe this and avoid recursively creating
   layers of nested EXPR_OP expressions.  */

static bool
is_trig_resolved (gfc_expr *f)
{
  /* We know we've already resolved the function if we see the lib call
     starting with '__'.  */
688 689
  return (f->value.function.name != NULL
	  && strncmp ("__", f->value.function.name, 2) == 0);
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 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 747 748 749 750 751 752 753 754 755
}

/* Return a shallow copy of the function expression f.  The original expression
   has its pointers cleared so that it may be freed without affecting the
   shallow copy.  This is similar to gfc_copy_expr, but doesn't perform a deep
   copy of the argument list, allowing it to be reused somewhere else,
   setting the expression up nicely for gfc_replace_expr.  */

static gfc_expr *
copy_replace_function_shallow (gfc_expr *f)
{
  gfc_expr *fcopy;
  gfc_actual_arglist *args;

  /* The only thing deep-copied in gfc_copy_expr is args.  */
  args = f->value.function.actual;
  f->value.function.actual = NULL;
  fcopy = gfc_copy_expr (f);
  fcopy->value.function.actual = args;

  /* Clear the old function so the shallow copy is not affected if the old
     expression is freed.  */
  f->value.function.name = NULL;
  f->value.function.isym = NULL;
  f->value.function.actual = NULL;
  f->value.function.esym = NULL;
  f->shape = NULL;
  f->ref = NULL;

  return fcopy;
}


/* Resolve cotan = cos / sin.  */

void
gfc_resolve_cotan (gfc_expr *f, gfc_expr *x)
{
  gfc_expr *result, *fcopy, *sin;
  gfc_actual_arglist *sin_args;

  if (is_trig_resolved (f))
    return;

  /* Compute cotan (x) = cos (x) / sin (x).  */
  f->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_COS);
  gfc_resolve_cos (f, x);

  sin_args = gfc_get_actual_arglist ();
  sin_args->expr = gfc_copy_expr (x);

  sin = gfc_get_expr ();
  sin->ts = f->ts;
  sin->where = f->where;
  sin->expr_type = EXPR_FUNCTION;
  sin->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_SIN);
  sin->value.function.actual = sin_args;
  gfc_resolve_sin (sin, sin_args->expr);

  /* Replace f with cos/sin - we do this in place in f for the caller.  */
  fcopy = copy_replace_function_shallow (f);
  result = gfc_divide (fcopy, sin);
  gfc_replace_expr (f, result);
}


756
void
757
gfc_resolve_count (gfc_expr *f, gfc_expr *mask, gfc_expr *dim, gfc_expr *kind)
758 759
{
  f->ts.type = BT_INTEGER;
760 761 762 763
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
764 765 766 767

  if (dim != NULL)
    {
      f->rank = mask->rank - 1;
768
      gfc_resolve_dim_arg (dim);
769
      f->shape = gfc_copy_shape_excluding (mask->shape, mask->rank, dim);
770 771
    }

772 773
  resolve_mask_arg (mask);

774
  f->value.function.name
775 776
    = gfc_get_string (PREFIX ("count_%d_%c"), f->ts.kind,
		      gfc_type_letter (mask->ts.type));
777 778 779 780
}


void
781 782
gfc_resolve_cshift (gfc_expr *f, gfc_expr *array, gfc_expr *shift,
		    gfc_expr *dim)
783
{
784
  int n, m;
785

786 787 788
  if (array->ts.type == BT_CHARACTER && array->ref)
    gfc_resolve_substring_charlen (array);

789 790
  f->ts = array->ts;
  f->rank = array->rank;
791
  f->shape = gfc_copy_shape (array->shape, array->rank);
792 793 794 795 796 797

  if (shift->rank > 0)
    n = 1;
  else
    n = 0;

798 799 800 801 802 803 804 805
  /* If dim kind is greater than default integer we need to use the larger.  */
  m = gfc_default_integer_kind;
  if (dim != NULL)
    m = m < dim->ts.kind ? dim->ts.kind : m;
  
  /* Convert shift to at least m, so we don't need
      kind=1 and kind=2 versions of the library functions.  */
  if (shift->ts.kind < m)
806 807
    {
      gfc_typespec ts;
808
      gfc_clear_ts (&ts);
809
      ts.type = BT_INTEGER;
810
      ts.kind = m;
811 812
      gfc_convert_type_warn (shift, &ts, 2, 0);
    }
813
 
814 815
  if (dim != NULL)
    {
816 817
      if (dim->expr_type != EXPR_CONSTANT && dim->symtree != NULL
	  && dim->symtree->n.sym->attr.optional)
818 819 820 821 822 823 824 825 826 827 828
	{
	  /* Mark this for later setting the type in gfc_conv_missing_dummy.  */
	  dim->representation.length = shift->ts.kind;
	}
      else
	{
	  gfc_resolve_dim_arg (dim);
	  /* Convert dim to shift's kind to reduce variations.  */
	  if (dim->ts.kind != shift->ts.kind)
	    gfc_convert_type_warn (dim, &shift->ts, 2, 0);
        }
829
    }
830

831 832 833 834 835 836 837 838 839 840 841 842 843
  if (array->ts.type == BT_CHARACTER)
    {
      if (array->ts.kind == gfc_default_character_kind)
	f->value.function.name
	  = gfc_get_string (PREFIX ("cshift%d_%d_char"), n, shift->ts.kind);
      else
	f->value.function.name
	  = gfc_get_string (PREFIX ("cshift%d_%d_char%d"), n, shift->ts.kind,
			    array->ts.kind);
    }
  else
    f->value.function.name
	= gfc_get_string (PREFIX ("cshift%d_%d"), n, shift->ts.kind);
844 845 846 847
}


void
848
gfc_resolve_ctime (gfc_expr *f, gfc_expr *time)
849 850
{
  gfc_typespec ts;
851
  gfc_clear_ts (&ts);
852 853 854 855 856 857 858 859 860
  
  f->ts.type = BT_CHARACTER;
  f->ts.kind = gfc_default_character_kind;

  /* ctime TIME argument is a INTEGER(KIND=8), says the doc */
  if (time->ts.kind != 8)
    {
      ts.type = BT_INTEGER;
      ts.kind = 8;
861 862
      ts.u.derived = NULL;
      ts.u.cl = NULL;
863 864 865
      gfc_convert_type (time, &ts, 2);
    }

866
  f->value.function.name = gfc_get_string (PREFIX ("ctime"));
867 868 869 870
}


void
871
gfc_resolve_dble (gfc_expr *f, gfc_expr *a)
872 873
{
  f->ts.type = BT_REAL;
874
  f->ts.kind = gfc_default_double_kind;
875 876
  f->value.function.name
    = gfc_get_string ("__dble_%c%d", gfc_type_letter (a->ts.type), a->ts.kind);
877 878 879 880
}


void
881
gfc_resolve_dim (gfc_expr *f, gfc_expr *a, gfc_expr *p)
882
{
883 884 885 886 887 888 889 890 891
  f->ts.type = a->ts.type;
  if (p != NULL)
    f->ts.kind = gfc_kind_max (a,p);
  else
    f->ts.kind = a->ts.kind;

  if (p != NULL && a->ts.kind != p->ts.kind)
    {
      if (a->ts.kind == gfc_kind_max (a,p))
892
	gfc_convert_type (p, &a->ts, 2);
893
      else
894
	gfc_convert_type (a, &p->ts, 2);
895 896
    }

897 898
  f->value.function.name
    = gfc_get_string ("__dim_%c%d", gfc_type_letter (f->ts.type), f->ts.kind);
899 900 901 902
}


void
903
gfc_resolve_dot_product (gfc_expr *f, gfc_expr *a, gfc_expr *b)
904 905 906
{
  gfc_expr temp;

907 908
  temp.expr_type = EXPR_OP;
  gfc_clear_ts (&temp.ts);
909
  temp.value.op.op = INTRINSIC_NONE;
910 911
  temp.value.op.op1 = a;
  temp.value.op.op2 = b;
912
  gfc_type_convert_binary (&temp, 1);
913
  f->ts = temp.ts;
914 915 916
  f->value.function.name
    = gfc_get_string (PREFIX ("dot_product_%c%d"),
		      gfc_type_letter (f->ts.type), f->ts.kind);
917 918 919 920
}


void
921 922
gfc_resolve_dprod (gfc_expr *f, gfc_expr *a ATTRIBUTE_UNUSED,
		   gfc_expr *b ATTRIBUTE_UNUSED)
923
{
924
  f->ts.kind = gfc_default_double_kind;
925 926 927 928 929 930
  f->ts.type = BT_REAL;
  f->value.function.name = gfc_get_string ("__dprod_r%d", f->ts.kind);
}


void
931 932 933 934 935 936 937 938 939 940 941 942 943 944
gfc_resolve_dshift (gfc_expr *f, gfc_expr *i, gfc_expr *j ATTRIBUTE_UNUSED,
		    gfc_expr *shift ATTRIBUTE_UNUSED)
{
  f->ts = i->ts;
  if (f->value.function.isym->id == GFC_ISYM_DSHIFTL)
    f->value.function.name = gfc_get_string ("dshiftl_i%d", f->ts.kind);
  else if (f->value.function.isym->id == GFC_ISYM_DSHIFTR)
    f->value.function.name = gfc_get_string ("dshiftr_i%d", f->ts.kind);
  else
    gcc_unreachable ();
}


void
945 946
gfc_resolve_eoshift (gfc_expr *f, gfc_expr *array, gfc_expr *shift,
		     gfc_expr *boundary, gfc_expr *dim)
947
{
948
  int n, m;
949

950 951 952
  if (array->ts.type == BT_CHARACTER && array->ref)
    gfc_resolve_substring_charlen (array);

953 954
  f->ts = array->ts;
  f->rank = array->rank;
955
  f->shape = gfc_copy_shape (array->shape, array->rank);
956 957 958 959 960 961 962

  n = 0;
  if (shift->rank > 0)
    n = n | 1;
  if (boundary && boundary->rank > 0)
    n = n | 2;

963 964 965 966 967 968 969 970
  /* If dim kind is greater than default integer we need to use the larger.  */
  m = gfc_default_integer_kind;
  if (dim != NULL)
    m = m < dim->ts.kind ? dim->ts.kind : m;
  
  /* Convert shift to at least m, so we don't need
      kind=1 and kind=2 versions of the library functions.  */
  if (shift->ts.kind < m)
971 972
    {
      gfc_typespec ts;
973
      gfc_clear_ts (&ts);
974
      ts.type = BT_INTEGER;
975
      ts.kind = m;
976 977
      gfc_convert_type_warn (shift, &ts, 2, 0);
    }
978
 
979 980
  if (dim != NULL)
    {
981 982
      if (dim->expr_type != EXPR_CONSTANT && dim->symtree != NULL
	  && dim->symtree->n.sym->attr.optional)
983 984 985 986 987 988 989 990 991 992 993
	{
	  /* Mark this for later setting the type in gfc_conv_missing_dummy.  */
	  dim->representation.length = shift->ts.kind;
	}
      else
	{
	  gfc_resolve_dim_arg (dim);
	  /* Convert dim to shift's kind to reduce variations.  */
	  if (dim->ts.kind != shift->ts.kind)
	    gfc_convert_type_warn (dim, &shift->ts, 2, 0);
        }
994
    }
995

996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
  if (array->ts.type == BT_CHARACTER)
    {
      if (array->ts.kind == gfc_default_character_kind)
	f->value.function.name
	  = gfc_get_string (PREFIX ("eoshift%d_%d_char"), n, shift->ts.kind);
      else
	f->value.function.name
	  = gfc_get_string (PREFIX ("eoshift%d_%d_char%d"), n, shift->ts.kind,
			    array->ts.kind);
    }
  else
    f->value.function.name
	= gfc_get_string (PREFIX ("eoshift%d_%d"), n, shift->ts.kind);
1009 1010 1011 1012
}


void
1013
gfc_resolve_exp (gfc_expr *f, gfc_expr *x)
1014 1015
{
  f->ts = x->ts;
1016 1017
  f->value.function.name
    = gfc_get_string ("__exp_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
1018 1019 1020 1021
}


void
1022
gfc_resolve_exponent (gfc_expr *f, gfc_expr *x)
1023 1024
{
  f->ts.type = BT_INTEGER;
1025
  f->ts.kind = gfc_default_integer_kind;
1026 1027 1028 1029
  f->value.function.name = gfc_get_string ("__exponent_%d", x->ts.kind);
}


1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
/* Resolve the EXTENDS_TYPE_OF intrinsic function.  */

void
gfc_resolve_extends_type_of (gfc_expr *f, gfc_expr *a, gfc_expr *mo)
{
  gfc_symbol *vtab;
  gfc_symtree *st;

  /* Prevent double resolution.  */
  if (f->ts.type == BT_LOGICAL)
    return;

  /* Replace the first argument with the corresponding vtab.  */
  if (a->ts.type == BT_CLASS)
1044
    gfc_add_vptr_component (a);
1045 1046
  else if (a->ts.type == BT_DERIVED)
    {
1047 1048
      locus where;

1049
      vtab = gfc_find_derived_vtab (a->ts.u.derived);
1050 1051
      /* Clear the old expr.  */
      gfc_free_ref_list (a->ref);
1052
      where = a->where;
1053 1054 1055 1056 1057 1058
      memset (a, '\0', sizeof (gfc_expr));
      /* Construct a new one.  */
      a->expr_type = EXPR_VARIABLE;
      st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
      a->symtree = st;
      a->ts = vtab->ts;
1059
      a->where = where;
1060 1061 1062 1063
    }

  /* Replace the second argument with the corresponding vtab.  */
  if (mo->ts.type == BT_CLASS)
1064
    gfc_add_vptr_component (mo);
1065 1066
  else if (mo->ts.type == BT_DERIVED)
    {
1067 1068
      locus where;

1069
      vtab = gfc_find_derived_vtab (mo->ts.u.derived);
1070
      /* Clear the old expr.  */
1071
      where = mo->where;
1072 1073 1074 1075 1076 1077 1078
      gfc_free_ref_list (mo->ref);
      memset (mo, '\0', sizeof (gfc_expr));
      /* Construct a new one.  */
      mo->expr_type = EXPR_VARIABLE;
      st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
      mo->symtree = st;
      mo->ts = vtab->ts;
1079
      mo->where = where;
1080 1081 1082 1083
    }

  f->ts.type = BT_LOGICAL;
  f->ts.kind = 4;
1084 1085 1086 1087

  f->value.function.isym->formal->ts = a->ts;
  f->value.function.isym->formal->next->ts = mo->ts;

1088 1089 1090 1091 1092
  /* Call library function.  */
  f->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
}


1093
void
1094
gfc_resolve_fdate (gfc_expr *f)
1095 1096 1097
{
  f->ts.type = BT_CHARACTER;
  f->ts.kind = gfc_default_character_kind;
1098
  f->value.function.name = gfc_get_string (PREFIX ("fdate"));
1099 1100 1101 1102
}


void
1103
gfc_resolve_floor (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
1104 1105
{
  f->ts.type = BT_INTEGER;
1106 1107 1108 1109 1110
  f->ts.kind = (kind == NULL)
	     ? gfc_default_integer_kind : mpz_get_si (kind->value.integer);
  f->value.function.name
    = gfc_get_string ("__floor%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
1111 1112 1113 1114
}


void
1115
gfc_resolve_fnum (gfc_expr *f, gfc_expr *n)
Steven G. Kargl committed
1116 1117 1118 1119 1120
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
  if (n->ts.kind != f->ts.kind)
    gfc_convert_type (n, &f->ts, 2);
1121
  f->value.function.name = gfc_get_string (PREFIX ("fnum_i%d"), f->ts.kind);
Steven G. Kargl committed
1122 1123 1124 1125
}


void
1126
gfc_resolve_fraction (gfc_expr *f, gfc_expr *x)
1127 1128 1129 1130 1131 1132
{
  f->ts = x->ts;
  f->value.function.name = gfc_get_string ("__fraction_%d", x->ts.kind);
}


1133 1134 1135
/* Resolve single-argument g77 math intrinsics, eg BESY0, ERF.  */

void
1136
gfc_resolve_g77_math1 (gfc_expr *f, gfc_expr *x)
1137 1138 1139 1140 1141 1142
{
  f->ts = x->ts;
  f->value.function.name = gfc_get_string ("<intrinsic>");
}


1143
void
1144 1145 1146 1147
gfc_resolve_gamma (gfc_expr *f, gfc_expr *x)
{
  f->ts = x->ts;
  f->value.function.name
1148
    = gfc_get_string ("__tgamma_%d", x->ts.kind);
1149 1150 1151 1152
}


void
1153
gfc_resolve_getcwd (gfc_expr *f, gfc_expr *n ATTRIBUTE_UNUSED)
1154 1155 1156
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
1157
  f->value.function.name = gfc_get_string (PREFIX ("getcwd"));
1158 1159 1160 1161
}


void
1162
gfc_resolve_getgid (gfc_expr *f)
1163 1164 1165
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
1166
  f->value.function.name = gfc_get_string (PREFIX ("getgid"));
1167 1168 1169 1170
}


void
1171
gfc_resolve_getpid (gfc_expr *f)
1172 1173 1174
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
1175
  f->value.function.name = gfc_get_string (PREFIX ("getpid"));
1176 1177 1178 1179
}


void
1180
gfc_resolve_getuid (gfc_expr *f)
1181 1182 1183
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
1184
  f->value.function.name = gfc_get_string (PREFIX ("getuid"));
1185 1186
}

1187

1188
void
1189
gfc_resolve_hostnm (gfc_expr *f, gfc_expr *n ATTRIBUTE_UNUSED)
1190 1191 1192 1193 1194 1195
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
  f->value.function.name = gfc_get_string (PREFIX ("hostnm"));
}

1196

1197
void
1198 1199 1200 1201 1202 1203 1204 1205
gfc_resolve_hypot (gfc_expr *f, gfc_expr *x, gfc_expr *y ATTRIBUTE_UNUSED)
{
  f->ts = x->ts;
  f->value.function.name = gfc_get_string ("__hypot_r%d", x->ts.kind);
}


void
1206 1207 1208 1209 1210 1211 1212
gfc_resolve_iall (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
{
  resolve_transformational ("iall", f, array, dim, mask);
}


void
1213
gfc_resolve_iand (gfc_expr *f, gfc_expr *i, gfc_expr *j)
1214
{
1215 1216 1217 1218 1219
  /* If the kind of i and j are different, then g77 cross-promoted the
     kinds to the largest value.  The Fortran 95 standard requires the 
     kinds to match.  */
  if (i->ts.kind != j->ts.kind)
    {
1220 1221
      if (i->ts.kind == gfc_kind_max (i, j))
	gfc_convert_type (j, &i->ts, 2);
1222
      else
1223
	gfc_convert_type (i, &j->ts, 2);
1224
    }
1225 1226 1227 1228 1229 1230 1231

  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__iand_%d", i->ts.kind);
}


void
1232 1233 1234 1235 1236 1237 1238
gfc_resolve_iany (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
{
  resolve_transformational ("iany", f, array, dim, mask);
}


void
1239
gfc_resolve_ibclr (gfc_expr *f, gfc_expr *i, gfc_expr *pos ATTRIBUTE_UNUSED)
1240 1241 1242 1243 1244 1245 1246
{
  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__ibclr_%d", i->ts.kind);
}


void
1247 1248
gfc_resolve_ibits (gfc_expr *f, gfc_expr *i, gfc_expr *pos ATTRIBUTE_UNUSED,
		   gfc_expr *len ATTRIBUTE_UNUSED)
1249 1250 1251 1252 1253 1254 1255
{
  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__ibits_%d", i->ts.kind);
}


void
1256
gfc_resolve_ibset (gfc_expr *f, gfc_expr *i, gfc_expr *pos ATTRIBUTE_UNUSED)
1257 1258 1259 1260 1261 1262 1263
{
  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__ibset_%d", i->ts.kind);
}


void
1264
gfc_resolve_iachar (gfc_expr *f, gfc_expr *c, gfc_expr *kind)
1265 1266
{
  f->ts.type = BT_INTEGER;
1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
  f->value.function.name = gfc_get_string ("__ichar_%d", c->ts.kind);
}


void
gfc_resolve_ichar (gfc_expr *f, gfc_expr *c, gfc_expr *kind)
{
  f->ts.type = BT_INTEGER;
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
1283 1284 1285 1286 1287
  f->value.function.name = gfc_get_string ("__ichar_%d", c->ts.kind);
}


void
1288
gfc_resolve_idnint (gfc_expr *f, gfc_expr *a)
1289 1290 1291 1292 1293 1294
{
  gfc_resolve_nint (f, a, NULL);
}


void
1295
gfc_resolve_ierrno (gfc_expr *f)
1296 1297 1298
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
1299
  f->value.function.name = gfc_get_string (PREFIX ("ierrno_i%d"), f->ts.kind);
1300 1301 1302 1303
}


void
1304
gfc_resolve_ieor (gfc_expr *f, gfc_expr *i, gfc_expr *j)
1305
{
1306 1307 1308 1309 1310
  /* If the kind of i and j are different, then g77 cross-promoted the
     kinds to the largest value.  The Fortran 95 standard requires the 
     kinds to match.  */
  if (i->ts.kind != j->ts.kind)
    {
1311 1312
      if (i->ts.kind == gfc_kind_max (i, j))
	gfc_convert_type (j, &i->ts, 2);
1313
      else
1314
	gfc_convert_type (i, &j->ts, 2);
1315
    }
1316 1317 1318 1319 1320 1321 1322

  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__ieor_%d", i->ts.kind);
}


void
1323
gfc_resolve_ior (gfc_expr *f, gfc_expr *i, gfc_expr *j)
1324
{
1325 1326 1327 1328 1329
  /* If the kind of i and j are different, then g77 cross-promoted the
     kinds to the largest value.  The Fortran 95 standard requires the 
     kinds to match.  */
  if (i->ts.kind != j->ts.kind)
    {
1330 1331
      if (i->ts.kind == gfc_kind_max (i, j))
	gfc_convert_type (j, &i->ts, 2);
1332
      else
1333
	gfc_convert_type (i, &j->ts, 2);
1334
    }
1335 1336 1337 1338 1339 1340 1341

  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__ior_%d", i->ts.kind);
}


void
1342
gfc_resolve_index_func (gfc_expr *f, gfc_expr *str,
1343 1344
			gfc_expr *sub_str ATTRIBUTE_UNUSED, gfc_expr *back,
			gfc_expr *kind)
1345 1346
{
  gfc_typespec ts;
1347
  gfc_clear_ts (&ts);
1348 1349

  f->ts.type = BT_INTEGER;
1350 1351 1352 1353
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
1354 1355 1356 1357 1358

  if (back && back->ts.kind != gfc_default_integer_kind)
    {
      ts.type = BT_LOGICAL;
      ts.kind = gfc_default_integer_kind;
1359 1360
      ts.u.derived = NULL;
      ts.u.cl = NULL;
1361 1362 1363
      gfc_convert_type (back, &ts, 2);
    }

1364 1365
  f->value.function.name
    = gfc_get_string ("__index_%d_i%d", str->ts.kind, f->ts.kind);
1366 1367 1368 1369
}


void
1370
gfc_resolve_int (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
1371 1372
{
  f->ts.type = BT_INTEGER;
1373 1374 1375 1376 1377
  f->ts.kind = (kind == NULL)
	     ? gfc_default_integer_kind : mpz_get_si (kind->value.integer);
  f->value.function.name
    = gfc_get_string ("__int_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
1378 1379 1380 1381
}


void
1382
gfc_resolve_int2 (gfc_expr *f, gfc_expr *a)
1383 1384 1385
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 2;
1386 1387 1388
  f->value.function.name
    = gfc_get_string ("__int_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
1389 1390 1391 1392
}


void
1393
gfc_resolve_int8 (gfc_expr *f, gfc_expr *a)
1394 1395 1396
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 8;
1397 1398 1399
  f->value.function.name
    = gfc_get_string ("__int_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
1400 1401 1402 1403
}


void
1404
gfc_resolve_long (gfc_expr *f, gfc_expr *a)
1405 1406 1407
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
1408 1409 1410
  f->value.function.name
    = gfc_get_string ("__int_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
1411 1412 1413 1414
}


void
1415 1416 1417 1418 1419 1420 1421
gfc_resolve_iparity (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
{
  resolve_transformational ("iparity", f, array, dim, mask);
}


void
1422
gfc_resolve_isatty (gfc_expr *f, gfc_expr *u)
1423 1424
{
  gfc_typespec ts;
1425
  gfc_clear_ts (&ts);
1426 1427 1428 1429 1430 1431 1432
  
  f->ts.type = BT_LOGICAL;
  f->ts.kind = gfc_default_integer_kind;
  if (u->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
1433 1434
      ts.u.derived = NULL;
      ts.u.cl = NULL;
1435 1436 1437
      gfc_convert_type (u, &ts, 2);
    }

1438
  f->value.function.name = gfc_get_string (PREFIX ("isatty_l%d"), f->ts.kind);
1439 1440 1441 1442
}


void
1443
gfc_resolve_ishft (gfc_expr *f, gfc_expr *i, gfc_expr *shift)
1444 1445
{
  f->ts = i->ts;
1446 1447
  f->value.function.name
    = gfc_get_string ("__ishft_%d_%d", i->ts.kind, shift->ts.kind);
1448 1449 1450 1451
}


void
1452
gfc_resolve_rshift (gfc_expr *f, gfc_expr *i, gfc_expr *shift)
1453 1454
{
  f->ts = i->ts;
1455 1456
  f->value.function.name
    = gfc_get_string ("__rshift_%d_%d", i->ts.kind, shift->ts.kind);
1457 1458 1459 1460
}


void
1461
gfc_resolve_lshift (gfc_expr *f, gfc_expr *i, gfc_expr *shift)
1462 1463
{
  f->ts = i->ts;
1464 1465
  f->value.function.name
    = gfc_get_string ("__lshift_%d_%d", i->ts.kind, shift->ts.kind);
1466 1467 1468 1469
}


void
1470
gfc_resolve_ishftc (gfc_expr *f, gfc_expr *i, gfc_expr *shift, gfc_expr *size)
1471 1472 1473
{
  int s_kind;

1474
  s_kind = (size == NULL) ? gfc_default_integer_kind : size->ts.kind;
1475 1476

  f->ts = i->ts;
1477 1478
  f->value.function.name
    = gfc_get_string ("__ishftc_%d_%d_%d", i->ts.kind, shift->ts.kind, s_kind);
1479 1480 1481 1482
}


void
1483 1484
gfc_resolve_kill (gfc_expr *f, gfc_expr *p ATTRIBUTE_UNUSED,
		  gfc_expr *s ATTRIBUTE_UNUSED)
1485 1486 1487
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
1488
  f->value.function.name = gfc_get_string (PREFIX ("kill_i%d"), f->ts.kind);
1489 1490 1491 1492
}


void
1493
gfc_resolve_lbound (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
1494
{
1495
  resolve_bound (f, array, dim, kind, "__lbound", false);
1496
}
1497 1498


1499 1500 1501
void
gfc_resolve_lcobound (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
{
1502
  resolve_bound (f, array, dim, kind, "__lcobound", true);
1503 1504 1505 1506
}


void
1507
gfc_resolve_len (gfc_expr *f, gfc_expr *string, gfc_expr *kind)
1508 1509
{
  f->ts.type = BT_INTEGER;
1510 1511 1512 1513
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
1514 1515 1516
  f->value.function.name
    = gfc_get_string ("__len_%d_i%d", string->ts.kind,
		      gfc_default_integer_kind);
1517 1518 1519 1520
}


void
1521
gfc_resolve_len_trim (gfc_expr *f, gfc_expr *string, gfc_expr *kind)
1522 1523
{
  f->ts.type = BT_INTEGER;
1524 1525 1526 1527
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
1528 1529 1530 1531 1532
  f->value.function.name = gfc_get_string ("__len_trim%d", string->ts.kind);
}


void
1533 1534 1535 1536 1537 1538 1539 1540 1541
gfc_resolve_lgamma (gfc_expr *f, gfc_expr *x)
{
  f->ts = x->ts;
  f->value.function.name
    = gfc_get_string ("__lgamma_%d", x->ts.kind);
}


void
1542 1543
gfc_resolve_link (gfc_expr *f, gfc_expr *p1 ATTRIBUTE_UNUSED,
		  gfc_expr *p2 ATTRIBUTE_UNUSED)
1544 1545 1546
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
1547
  f->value.function.name = gfc_get_string (PREFIX ("link_i%d"), f->ts.kind);
1548 1549 1550 1551
}


void
Asher Langton committed
1552 1553 1554 1555 1556 1557 1558 1559 1560
gfc_resolve_loc (gfc_expr *f, gfc_expr *x)
{
  f->ts.type= BT_INTEGER;
  f->ts.kind = gfc_index_integer_kind;
  f->value.function.name = gfc_get_string ("__loc_%d", x->ts.kind);
}


void
1561
gfc_resolve_log (gfc_expr *f, gfc_expr *x)
1562 1563
{
  f->ts = x->ts;
1564 1565
  f->value.function.name
    = gfc_get_string ("__log_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
1566 1567 1568 1569
}


void
1570
gfc_resolve_log10 (gfc_expr *f, gfc_expr *x)
1571 1572
{
  f->ts = x->ts;
1573 1574 1575
  f->value.function.name
    = gfc_get_string ("__log10_%c%d", gfc_type_letter (x->ts.type),
		      x->ts.kind);
1576 1577 1578 1579
}


void
1580
gfc_resolve_logical (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
1581 1582
{
  f->ts.type = BT_LOGICAL;
1583 1584
  f->ts.kind = (kind == NULL)
	     ? gfc_default_logical_kind : mpz_get_si (kind->value.integer);
1585 1586
  f->rank = a->rank;

1587 1588 1589
  f->value.function.name
    = gfc_get_string ("__logical_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
1590 1591 1592 1593
}


void
1594
gfc_resolve_matmul (gfc_expr *f, gfc_expr *a, gfc_expr *b)
1595 1596 1597 1598 1599 1600
{
  gfc_expr temp;

  if (a->ts.type == BT_LOGICAL && b->ts.type == BT_LOGICAL)
    {
      f->ts.type = BT_LOGICAL;
1601
      f->ts.kind = gfc_default_logical_kind;
1602 1603 1604 1605 1606
    }
  else
    {
      temp.expr_type = EXPR_OP;
      gfc_clear_ts (&temp.ts);
1607
      temp.value.op.op = INTRINSIC_NONE;
1608 1609
      temp.value.op.op1 = a;
      temp.value.op.op2 = b;
1610
      gfc_type_convert_binary (&temp, 1);
1611 1612 1613 1614 1615
      f->ts = temp.ts;
    }

  f->rank = (a->rank == 2 && b->rank == 2) ? 2 : 1;

1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
  if (a->rank == 2 && b->rank == 2)
    {
      if (a->shape && b->shape)
	{
	  f->shape = gfc_get_shape (f->rank);
	  mpz_init_set (f->shape[0], a->shape[0]);
	  mpz_init_set (f->shape[1], b->shape[1]);
	}
    }
  else if (a->rank == 1)
    {
      if (b->shape)
	{
	  f->shape = gfc_get_shape (f->rank);
	  mpz_init_set (f->shape[0], b->shape[1]);
	}
    }
  else 
    {
      /* b->rank == 1 and a->rank == 2 here, all other cases have
	 been caught in check.c.   */
      if (a->shape)
	{
	  f->shape = gfc_get_shape (f->rank);
	  mpz_init_set (f->shape[0], a->shape[0]);
	}
    }

1644 1645 1646
  f->value.function.name
    = gfc_get_string (PREFIX ("matmul_%c%d"), gfc_type_letter (f->ts.type),
		      f->ts.kind);
1647 1648 1649 1650
}


static void
1651
gfc_resolve_minmax (const char *name, gfc_expr *f, gfc_actual_arglist *args)
1652 1653 1654 1655 1656 1657 1658 1659 1660
{
  gfc_actual_arglist *a;

  f->ts.type = args->expr->ts.type;
  f->ts.kind = args->expr->ts.kind;
  /* Find the largest type kind.  */
  for (a = args->next; a; a = a->next)
    {
      if (a->expr->ts.kind > f->ts.kind)
1661
	f->ts.kind = a->expr->ts.kind;
1662 1663 1664 1665 1666 1667
    }

  /* Convert all parameters to the required kind.  */
  for (a = args; a; a = a->next)
    {
      if (a->expr->ts.kind != f->ts.kind)
1668
	gfc_convert_type (a->expr, &f->ts, 2);
1669 1670
    }

1671 1672
  f->value.function.name
    = gfc_get_string (name, gfc_type_letter (f->ts.type), f->ts.kind);
1673 1674 1675 1676
}


void
1677
gfc_resolve_max (gfc_expr *f, gfc_actual_arglist *args)
1678 1679 1680 1681 1682 1683
{
  gfc_resolve_minmax ("__max_%c%d", f, args);
}


void
1684 1685
gfc_resolve_maxloc (gfc_expr *f, gfc_expr *array, gfc_expr *dim,
		    gfc_expr *mask)
1686 1687
{
  const char *name;
1688
  int i, j, idim;
1689 1690

  f->ts.type = BT_INTEGER;
1691
  f->ts.kind = gfc_default_integer_kind;
1692 1693

  if (dim == NULL)
1694 1695 1696 1697 1698
    {
      f->rank = 1;
      f->shape = gfc_get_shape (1);
      mpz_init_set_si (f->shape[0], array->rank);
    }
1699 1700 1701
  else
    {
      f->rank = array->rank - 1;
1702
      gfc_resolve_dim_arg (dim);
1703 1704 1705 1706 1707 1708 1709
      if (array->shape && dim->expr_type == EXPR_CONSTANT)
	{
	  idim = (int) mpz_get_si (dim->value.integer);
	  f->shape = gfc_get_shape (f->rank);
	  for (i = 0, j = 0; i < f->rank; i++, j++)
	    {
	      if (i == (idim - 1))
1710
		j++;
1711 1712 1713
	      mpz_init_set (f->shape[i], array->shape[j]);
	    }
	}
1714 1715
    }

1716 1717 1718 1719 1720 1721 1722
  if (mask)
    {
      if (mask->rank == 0)
	name = "smaxloc";
      else
	name = "mmaxloc";

1723
      resolve_mask_arg (mask);
1724 1725 1726 1727
    }
  else
    name = "maxloc";

1728 1729 1730
  f->value.function.name
    = gfc_get_string (PREFIX ("%s%d_%d_%c%d"), name, dim != NULL, f->ts.kind,
		      gfc_type_letter (array->ts.type), array->ts.kind);
1731 1732 1733 1734
}


void
1735 1736
gfc_resolve_maxval (gfc_expr *f, gfc_expr *array, gfc_expr *dim,
		    gfc_expr *mask)
1737
{
1738
  const char *name;
1739
  int i, j, idim;
1740

1741 1742 1743 1744 1745
  f->ts = array->ts;

  if (dim != NULL)
    {
      f->rank = array->rank - 1;
1746
      gfc_resolve_dim_arg (dim);
1747 1748 1749 1750 1751 1752 1753 1754

      if (f->rank && array->shape && dim->expr_type == EXPR_CONSTANT)
	{
	  idim = (int) mpz_get_si (dim->value.integer);
	  f->shape = gfc_get_shape (f->rank);
	  for (i = 0, j = 0; i < f->rank; i++, j++)
	    {
	      if (i == (idim - 1))
1755
		j++;
1756 1757 1758
	      mpz_init_set (f->shape[i], array->shape[j]);
	    }
	}
1759 1760
    }

1761 1762 1763 1764 1765 1766 1767
  if (mask)
    {
      if (mask->rank == 0)
	name = "smaxval";
      else
	name = "mmaxval";

1768
      resolve_mask_arg (mask);
1769 1770 1771 1772
    }
  else
    name = "maxval";

1773 1774 1775
  f->value.function.name
    = gfc_get_string (PREFIX ("%s_%c%d"), name,
		      gfc_type_letter (array->ts.type), array->ts.kind);
1776 1777 1778 1779
}


void
1780
gfc_resolve_mclock (gfc_expr *f)
1781 1782 1783
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
1784
  f->value.function.name = PREFIX ("mclock");
1785 1786 1787 1788
}


void
1789
gfc_resolve_mclock8 (gfc_expr *f)
1790 1791 1792
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 8;
1793
  f->value.function.name = PREFIX ("mclock8");
1794 1795 1796 1797
}


void
1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812
gfc_resolve_mask (gfc_expr *f, gfc_expr *i ATTRIBUTE_UNUSED,
		  gfc_expr *kind)
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = kind ? mpz_get_si (kind->value.integer)
		    : gfc_default_integer_kind;

  if (f->value.function.isym->id == GFC_ISYM_MASKL)
    f->value.function.name = gfc_get_string ("__maskl_i%d", f->ts.kind);
  else
    f->value.function.name = gfc_get_string ("__maskr_i%d", f->ts.kind);
}


void
1813 1814 1815
gfc_resolve_merge (gfc_expr *f, gfc_expr *tsource,
		   gfc_expr *fsource ATTRIBUTE_UNUSED,
		   gfc_expr *mask ATTRIBUTE_UNUSED)
1816
{
1817 1818 1819 1820 1821 1822
  if (tsource->ts.type == BT_CHARACTER && tsource->ref)
    gfc_resolve_substring_charlen (tsource);

  if (fsource->ts.type == BT_CHARACTER && fsource->ref)
    gfc_resolve_substring_charlen (fsource);

1823 1824 1825
  if (tsource->ts.type == BT_CHARACTER)
    check_charlen_present (tsource);

1826
  f->ts = tsource->ts;
1827 1828 1829
  f->value.function.name
    = gfc_get_string ("__merge_%c%d", gfc_type_letter (tsource->ts.type),
		      tsource->ts.kind);
1830 1831 1832 1833
}


void
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843
gfc_resolve_merge_bits (gfc_expr *f, gfc_expr *i,
			gfc_expr *j ATTRIBUTE_UNUSED,
			gfc_expr *mask ATTRIBUTE_UNUSED)
{
  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__merge_bits_i%d", i->ts.kind);
}


void
1844
gfc_resolve_min (gfc_expr *f, gfc_actual_arglist *args)
1845 1846 1847 1848 1849 1850
{
  gfc_resolve_minmax ("__min_%c%d", f, args);
}


void
1851 1852
gfc_resolve_minloc (gfc_expr *f, gfc_expr *array, gfc_expr *dim,
		    gfc_expr *mask)
1853 1854
{
  const char *name;
1855
  int i, j, idim;
1856 1857

  f->ts.type = BT_INTEGER;
1858
  f->ts.kind = gfc_default_integer_kind;
1859 1860

  if (dim == NULL)
1861 1862 1863 1864 1865
    {
      f->rank = 1;
      f->shape = gfc_get_shape (1);
      mpz_init_set_si (f->shape[0], array->rank);
    }
1866 1867 1868
  else
    {
      f->rank = array->rank - 1;
1869
      gfc_resolve_dim_arg (dim);
1870 1871 1872 1873 1874 1875 1876
      if (array->shape && dim->expr_type == EXPR_CONSTANT)
	{
	  idim = (int) mpz_get_si (dim->value.integer);
	  f->shape = gfc_get_shape (f->rank);
	  for (i = 0, j = 0; i < f->rank; i++, j++)
	    {
	      if (i == (idim - 1))
1877
		j++;
1878 1879 1880
	      mpz_init_set (f->shape[i], array->shape[j]);
	    }
	}
1881 1882
    }

1883 1884 1885 1886 1887 1888 1889
  if (mask)
    {
      if (mask->rank == 0)
	name = "sminloc";
      else
	name = "mminloc";

1890
      resolve_mask_arg (mask);
1891 1892 1893 1894
    }
  else
    name = "minloc";

1895 1896 1897
  f->value.function.name
    = gfc_get_string (PREFIX ("%s%d_%d_%c%d"), name, dim != NULL, f->ts.kind,
		      gfc_type_letter (array->ts.type), array->ts.kind);
1898 1899
}

1900

1901
void
1902 1903
gfc_resolve_minval (gfc_expr *f, gfc_expr *array, gfc_expr *dim,
		    gfc_expr *mask)
1904
{
1905
  const char *name;
1906
  int i, j, idim;
1907

1908 1909 1910 1911 1912
  f->ts = array->ts;

  if (dim != NULL)
    {
      f->rank = array->rank - 1;
1913
      gfc_resolve_dim_arg (dim);
1914 1915 1916 1917 1918 1919 1920 1921

      if (f->rank && array->shape && dim->expr_type == EXPR_CONSTANT)
	{
	  idim = (int) mpz_get_si (dim->value.integer);
	  f->shape = gfc_get_shape (f->rank);
	  for (i = 0, j = 0; i < f->rank; i++, j++)
	    {
	      if (i == (idim - 1))
1922
		j++;
1923 1924 1925
	      mpz_init_set (f->shape[i], array->shape[j]);
	    }
	}
1926 1927
    }

1928 1929 1930 1931 1932 1933 1934
  if (mask)
    {
      if (mask->rank == 0)
	name = "sminval";
      else
	name = "mminval";

1935
      resolve_mask_arg (mask);
1936 1937 1938 1939
    }
  else
    name = "minval";

1940 1941 1942
  f->value.function.name
    = gfc_get_string (PREFIX ("%s_%c%d"), name,
		      gfc_type_letter (array->ts.type), array->ts.kind);
1943 1944 1945 1946
}


void
1947
gfc_resolve_mod (gfc_expr *f, gfc_expr *a, gfc_expr *p)
1948
{
1949 1950 1951 1952 1953 1954 1955 1956 1957
  f->ts.type = a->ts.type;
  if (p != NULL)
    f->ts.kind = gfc_kind_max (a,p);
  else
    f->ts.kind = a->ts.kind;

  if (p != NULL && a->ts.kind != p->ts.kind)
    {
      if (a->ts.kind == gfc_kind_max (a,p))
1958
	gfc_convert_type (p, &a->ts, 2);
1959
      else
1960
	gfc_convert_type (a, &p->ts, 2);
1961 1962
    }

1963 1964
  f->value.function.name
    = gfc_get_string ("__mod_%c%d", gfc_type_letter (f->ts.type), f->ts.kind);
1965 1966 1967 1968
}


void
1969
gfc_resolve_modulo (gfc_expr *f, gfc_expr *a, gfc_expr *p)
1970
{
1971 1972 1973 1974 1975 1976 1977 1978 1979
  f->ts.type = a->ts.type;
  if (p != NULL)
    f->ts.kind = gfc_kind_max (a,p);
  else
    f->ts.kind = a->ts.kind;

  if (p != NULL && a->ts.kind != p->ts.kind)
    {
      if (a->ts.kind == gfc_kind_max (a,p))
1980
	gfc_convert_type (p, &a->ts, 2);
1981
      else
1982
	gfc_convert_type (a, &p->ts, 2);
1983 1984
    }

1985 1986 1987
  f->value.function.name
    = gfc_get_string ("__modulo_%c%d", gfc_type_letter (f->ts.type),
		      f->ts.kind);
1988 1989
}

1990
void
1991
gfc_resolve_nearest (gfc_expr *f, gfc_expr *a, gfc_expr *p)
1992
{
1993 1994 1995
  if (p->ts.kind != a->ts.kind)
    gfc_convert_type (p, &a->ts, 2);

1996
  f->ts = a->ts;
1997 1998 1999
  f->value.function.name
    = gfc_get_string ("__nearest_%c%d", gfc_type_letter (a->ts.type),
		      a->ts.kind);
2000
}
2001 2002

void
2003
gfc_resolve_nint (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
2004 2005
{
  f->ts.type = BT_INTEGER;
2006 2007 2008 2009
  f->ts.kind = (kind == NULL)
	     ? gfc_default_integer_kind : mpz_get_si (kind->value.integer);
  f->value.function.name
    = gfc_get_string ("__nint_%d_%d", f->ts.kind, a->ts.kind);
2010 2011 2012 2013
}


void
2014 2015
gfc_resolve_norm2 (gfc_expr *f, gfc_expr *array, gfc_expr *dim)
{
2016
  resolve_transformational ("norm2", f, array, dim, NULL);
2017 2018 2019 2020
}


void
2021
gfc_resolve_not (gfc_expr *f, gfc_expr *i)
2022 2023 2024 2025 2026 2027 2028
{
  f->ts = i->ts;
  f->value.function.name = gfc_get_string ("__not_%d", i->ts.kind);
}


void
2029
gfc_resolve_or (gfc_expr *f, gfc_expr *i, gfc_expr *j)
2030 2031
{
  f->ts.type = i->ts.type;
2032
  f->ts.kind = gfc_kind_max (i, j);
2033 2034 2035

  if (i->ts.kind != j->ts.kind)
    {
2036 2037
      if (i->ts.kind == gfc_kind_max (i, j))
	gfc_convert_type (j, &i->ts, 2);
2038
      else
2039
	gfc_convert_type (i, &j->ts, 2);
2040 2041
    }

2042 2043
  f->value.function.name
    = gfc_get_string ("__or_%c%d", gfc_type_letter (i->ts.type), f->ts.kind);
2044 2045 2046 2047
}


void
2048 2049
gfc_resolve_pack (gfc_expr *f, gfc_expr *array, gfc_expr *mask,
		  gfc_expr *vector ATTRIBUTE_UNUSED)
2050
{
2051 2052 2053
  if (array->ts.type == BT_CHARACTER && array->ref)
    gfc_resolve_substring_charlen (array);

2054 2055 2056
  f->ts = array->ts;
  f->rank = 1;

2057
  resolve_mask_arg (mask);
2058 2059

  if (mask->rank != 0)
2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
    {
      if (array->ts.type == BT_CHARACTER)
	f->value.function.name
	  = array->ts.kind == 1 ? PREFIX ("pack_char")
				: gfc_get_string
					(PREFIX ("pack_char%d"),
					 array->ts.kind);
      else
	f->value.function.name = PREFIX ("pack");
    }
2070
  else
2071 2072 2073 2074 2075 2076 2077 2078 2079 2080
    {
      if (array->ts.type == BT_CHARACTER)
	f->value.function.name
	  = array->ts.kind == 1 ? PREFIX ("pack_s_char")
				: gfc_get_string
					(PREFIX ("pack_s_char%d"),
					 array->ts.kind);
      else
	f->value.function.name = PREFIX ("pack_s");
    }
2081 2082 2083 2084
}


void
2085 2086
gfc_resolve_parity (gfc_expr *f, gfc_expr *array, gfc_expr *dim)
{
2087
  resolve_transformational ("parity", f, array, dim, NULL);
2088 2089 2090 2091
}


void
2092 2093
gfc_resolve_product (gfc_expr *f, gfc_expr *array, gfc_expr *dim,
		     gfc_expr *mask)
2094
{
2095
  resolve_transformational ("product", f, array, dim, mask);
2096 2097 2098 2099
}


void
2100 2101 2102 2103 2104 2105 2106 2107 2108
gfc_resolve_rank (gfc_expr *f, gfc_expr *array ATTRIBUTE_UNUSED)
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
  f->value.function.name = gfc_get_string ("__rank");
}


void
2109
gfc_resolve_real (gfc_expr *f, gfc_expr *a, gfc_expr *kind)
2110 2111 2112 2113 2114 2115
{
  f->ts.type = BT_REAL;

  if (kind != NULL)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
2116 2117
    f->ts.kind = (a->ts.type == BT_COMPLEX)
	       ? a->ts.kind : gfc_default_real_kind;
2118

2119 2120 2121
  f->value.function.name
    = gfc_get_string ("__real_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
2122 2123 2124 2125
}


void
2126
gfc_resolve_realpart (gfc_expr *f, gfc_expr *a)
2127 2128 2129
{
  f->ts.type = BT_REAL;
  f->ts.kind = a->ts.kind;
2130 2131 2132
  f->value.function.name
    = gfc_get_string ("__real_%d_%c%d", f->ts.kind,
		      gfc_type_letter (a->ts.type), a->ts.kind);
2133 2134 2135 2136
}


void
2137 2138
gfc_resolve_rename (gfc_expr *f, gfc_expr *p1 ATTRIBUTE_UNUSED,
		    gfc_expr *p2 ATTRIBUTE_UNUSED)
2139 2140 2141
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
2142
  f->value.function.name = gfc_get_string (PREFIX ("rename_i%d"), f->ts.kind);
2143 2144 2145 2146
}


void
2147
gfc_resolve_repeat (gfc_expr *f, gfc_expr *string,
2148
		    gfc_expr *ncopies)
2149
{
2150
  int len;
2151
  gfc_expr *tmp;
2152 2153 2154
  f->ts.type = BT_CHARACTER;
  f->ts.kind = string->ts.kind;
  f->value.function.name = gfc_get_string ("__repeat_%d", string->ts.kind);
2155 2156 2157 2158 2159 2160 2161 2162

  /* If possible, generate a character length.  */
  if (f->ts.u.cl == NULL)
    f->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);

  tmp = NULL;
  if (string->expr_type == EXPR_CONSTANT)
    {
2163 2164
      len = string->value.character.length;
      tmp = gfc_get_int_expr (gfc_default_integer_kind, NULL , len);
2165 2166 2167 2168 2169 2170 2171 2172
    }
  else if (string->ts.u.cl && string->ts.u.cl->length)
    {
      tmp = gfc_copy_expr (string->ts.u.cl->length);
    }

  if (tmp)
    f->ts.u.cl->length = gfc_multiply (tmp, gfc_copy_expr (ncopies));
2173 2174 2175 2176
}


void
2177 2178 2179
gfc_resolve_reshape (gfc_expr *f, gfc_expr *source, gfc_expr *shape,
		     gfc_expr *pad ATTRIBUTE_UNUSED,
		     gfc_expr *order ATTRIBUTE_UNUSED)
2180 2181 2182 2183 2184
{
  mpz_t rank;
  int kind;
  int i;

2185 2186 2187
  if (source->ts.type == BT_CHARACTER && source->ref)
    gfc_resolve_substring_charlen (source);

2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198
  f->ts = source->ts;

  gfc_array_size (shape, &rank);
  f->rank = mpz_get_si (rank);
  mpz_clear (rank);
  switch (source->ts.type)
    {
    case BT_COMPLEX:
    case BT_REAL:
    case BT_INTEGER:
    case BT_LOGICAL:
2199
    case BT_CHARACTER:
2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
      kind = source->ts.kind;
      break;

    default:
      kind = 0;
      break;
    }

  switch (kind)
    {
    case 4:
    case 8:
2212 2213
    case 10:
    case 16:
2214
      if (source->ts.type == BT_COMPLEX || source->ts.type == BT_REAL)
2215 2216 2217 2218
	f->value.function.name
	  = gfc_get_string (PREFIX ("reshape_%c%d"),
			    gfc_type_letter (source->ts.type),
			    source->ts.kind);
2219 2220 2221
      else if (source->ts.type == BT_CHARACTER)
	f->value.function.name = gfc_get_string (PREFIX ("reshape_char%d"),
						 kind);
2222
      else
2223 2224
	f->value.function.name
	  = gfc_get_string (PREFIX ("reshape_%d"), source->ts.kind);
2225 2226 2227
      break;

    default:
2228
      f->value.function.name = (source->ts.type == BT_CHARACTER
2229
				? PREFIX ("reshape_char") : PREFIX ("reshape"));
2230 2231 2232
      break;
    }

2233
  if (shape->expr_type == EXPR_ARRAY && gfc_is_constant_expr (shape))
2234 2235 2236
    {
      gfc_constructor *c;
      f->shape = gfc_get_shape (f->rank);
Jerry DeLisle committed
2237
      c = gfc_constructor_first (shape->value.constructor);
2238 2239 2240
      for (i = 0; i < f->rank; i++)
	{
	  mpz_init_set (f->shape[i], c->expr->value.integer);
Jerry DeLisle committed
2241
	  c = gfc_constructor_next (c);
2242 2243
	}
    }
2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254

  /* Force-convert both SHAPE and ORDER to index_kind so that we don't need
     so many runtime variations.  */
  if (shape->ts.kind != gfc_index_integer_kind)
    {
      gfc_typespec ts = shape->ts;
      ts.kind = gfc_index_integer_kind;
      gfc_convert_type_warn (shape, &ts, 2, 0);
    }
  if (order && order->ts.kind != gfc_index_integer_kind)
    gfc_convert_type_warn (order, &shape->ts, 2, 0);
2255 2256 2257 2258
}


void
2259
gfc_resolve_rrspacing (gfc_expr *f, gfc_expr *x)
2260 2261 2262 2263 2264
{
  f->ts = x->ts;
  f->value.function.name = gfc_get_string ("__rrspacing_%d", x->ts.kind);
}

2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277
void
gfc_resolve_fe_runtime_error (gfc_code *c)
{
  const char *name;
  gfc_actual_arglist *a;

  name = gfc_get_string (PREFIX ("runtime_error"));

  for (a = c->ext.actual->next; a; a = a->next)
    a->name = "%VAL";

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}
2278 2279

void
2280
gfc_resolve_scale (gfc_expr *f, gfc_expr *x, gfc_expr *i ATTRIBUTE_UNUSED)
2281 2282
{
  f->ts = x->ts;
2283
  f->value.function.name = gfc_get_string ("__scale_%d", x->ts.kind);
2284 2285 2286 2287
}


void
2288 2289
gfc_resolve_scan (gfc_expr *f, gfc_expr *string,
		  gfc_expr *set ATTRIBUTE_UNUSED,
2290
		  gfc_expr *back ATTRIBUTE_UNUSED, gfc_expr *kind)
2291 2292
{
  f->ts.type = BT_INTEGER;
2293 2294 2295 2296
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
2297 2298 2299 2300 2301
  f->value.function.name = gfc_get_string ("__scan_%d", string->ts.kind);
}


void
2302
gfc_resolve_secnds (gfc_expr *t1, gfc_expr *t0)
2303 2304
{
  t1->ts = t0->ts;
2305
  t1->value.function.name = gfc_get_string (PREFIX ("secnds"));
2306 2307 2308 2309
}


void
2310 2311
gfc_resolve_set_exponent (gfc_expr *f, gfc_expr *x,
			  gfc_expr *i ATTRIBUTE_UNUSED)
2312 2313
{
  f->ts = x->ts;
2314
  f->value.function.name = gfc_get_string ("__set_exponent_%d", x->ts.kind);
2315 2316 2317 2318
}


void
2319
gfc_resolve_shape (gfc_expr *f, gfc_expr *array, gfc_expr *kind)
2320 2321
{
  f->ts.type = BT_INTEGER;
2322 2323 2324 2325 2326 2327

  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;

2328
  f->rank = 1;
2329 2330 2331 2332 2333 2334
  if (array->rank != -1)
    {
      f->shape = gfc_get_shape (1);
      mpz_init_set_ui (f->shape[0], array->rank);
    }

2335
  f->value.function.name = gfc_get_string (PREFIX ("shape_%d"), f->ts.kind);
2336 2337 2338 2339
}


void
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354
gfc_resolve_shift (gfc_expr *f, gfc_expr *i, gfc_expr *shift ATTRIBUTE_UNUSED)
{
  f->ts = i->ts;
  if (f->value.function.isym->id == GFC_ISYM_SHIFTA)
    f->value.function.name = gfc_get_string ("shifta_i%d", f->ts.kind);
  else if (f->value.function.isym->id == GFC_ISYM_SHIFTL)
    f->value.function.name = gfc_get_string ("shiftl_i%d", f->ts.kind);
  else if (f->value.function.isym->id == GFC_ISYM_SHIFTR)
    f->value.function.name = gfc_get_string ("shiftr_i%d", f->ts.kind);
  else
    gcc_unreachable ();
}


void
2355
gfc_resolve_sign (gfc_expr *f, gfc_expr *a, gfc_expr *b ATTRIBUTE_UNUSED)
2356 2357
{
  f->ts = a->ts;
2358 2359
  f->value.function.name
    = gfc_get_string ("__sign_%c%d", gfc_type_letter (a->ts.type), a->ts.kind);
2360 2361 2362 2363
}


void
2364
gfc_resolve_signal (gfc_expr *f, gfc_expr *number, gfc_expr *handler)
2365 2366 2367 2368 2369 2370 2371 2372 2373
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_c_int_kind;

  /* handler can be either BT_INTEGER or BT_PROCEDURE  */
  if (handler->ts.type == BT_INTEGER)
    {
      if (handler->ts.kind != gfc_c_int_kind)
	gfc_convert_type (handler, &f->ts, 2);
2374
      f->value.function.name = gfc_get_string (PREFIX ("signal_func_int"));
2375 2376
    }
  else
2377
    f->value.function.name = gfc_get_string (PREFIX ("signal_func"));
2378 2379 2380 2381 2382 2383 2384

  if (number->ts.kind != gfc_c_int_kind)
    gfc_convert_type (number, &f->ts, 2);
}


void
2385
gfc_resolve_sin (gfc_expr *f, gfc_expr *x)
2386 2387
{
  f->ts = x->ts;
2388 2389
  f->value.function.name
    = gfc_get_string ("__sin_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
2390 2391 2392 2393
}


void
2394
gfc_resolve_sinh (gfc_expr *f, gfc_expr *x)
2395 2396
{
  f->ts = x->ts;
2397 2398
  f->value.function.name
    = gfc_get_string ("__sinh_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
2399 2400 2401 2402
}


void
2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414
gfc_resolve_size (gfc_expr *f, gfc_expr *array ATTRIBUTE_UNUSED,
		  gfc_expr *dim ATTRIBUTE_UNUSED, gfc_expr *kind)
{
  f->ts.type = BT_INTEGER;
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
}


void
2415 2416 2417 2418 2419 2420 2421 2422 2423
gfc_resolve_stride (gfc_expr *f, gfc_expr *array ATTRIBUTE_UNUSED,
		  gfc_expr *dim ATTRIBUTE_UNUSED)
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_index_integer_kind;
}


void
2424
gfc_resolve_spacing (gfc_expr *f, gfc_expr *x)
2425 2426 2427 2428 2429 2430 2431
{
  f->ts = x->ts;
  f->value.function.name = gfc_get_string ("__spacing_%d", x->ts.kind);
}


void
2432 2433
gfc_resolve_spread (gfc_expr *f, gfc_expr *source, gfc_expr *dim,
		    gfc_expr *ncopies)
2434
{
2435 2436 2437
  if (source->ts.type == BT_CHARACTER && source->ref)
    gfc_resolve_substring_charlen (source);

2438 2439 2440
  if (source->ts.type == BT_CHARACTER)
    check_charlen_present (source);

2441 2442
  f->ts = source->ts;
  f->rank = source->rank + 1;
2443
  if (source->rank == 0)
2444 2445 2446 2447 2448 2449 2450 2451 2452 2453
    {
      if (source->ts.type == BT_CHARACTER)
	f->value.function.name
	  = source->ts.kind == 1 ? PREFIX ("spread_char_scalar")
				 : gfc_get_string
					(PREFIX ("spread_char%d_scalar"),
					 source->ts.kind);
      else
	f->value.function.name = PREFIX ("spread_scalar");
    }
2454
  else
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464
    {
      if (source->ts.type == BT_CHARACTER)
	f->value.function.name
	  = source->ts.kind == 1 ? PREFIX ("spread_char")
				 : gfc_get_string
					(PREFIX ("spread_char%d"),
					 source->ts.kind);
      else
	f->value.function.name = PREFIX ("spread");
    }
2465

2466
  if (dim && gfc_is_constant_expr (dim)
2467
      && ncopies && gfc_is_constant_expr (ncopies) && source->shape[0])
2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481
    {
      int i, idim;
      idim = mpz_get_ui (dim->value.integer);
      f->shape = gfc_get_shape (f->rank);
      for (i = 0; i < (idim - 1); i++)
	mpz_init_set (f->shape[i], source->shape[i]);

      mpz_init_set (f->shape[idim - 1], ncopies->value.integer);

      for (i = idim; i < f->rank ; i++)
	mpz_init_set (f->shape[i], source->shape[i-1]);
    }


2482
  gfc_resolve_dim_arg (dim);
2483 2484 2485 2486 2487
  gfc_resolve_index (ncopies, 1);
}


void
2488
gfc_resolve_sqrt (gfc_expr *f, gfc_expr *x)
2489 2490
{
  f->ts = x->ts;
2491 2492
  f->value.function.name
    = gfc_get_string ("__sqrt_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
2493 2494 2495
}


Steven G. Kargl committed
2496 2497 2498
/* Resolve the g77 compatibility function STAT AND FSTAT.  */

void
2499 2500
gfc_resolve_stat (gfc_expr *f, gfc_expr *n ATTRIBUTE_UNUSED,
		  gfc_expr *a ATTRIBUTE_UNUSED)
Steven G. Kargl committed
2501 2502 2503
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
2504
  f->value.function.name = gfc_get_string (PREFIX ("stat_i%d"), f->ts.kind);
Steven G. Kargl committed
2505 2506 2507 2508
}


void
2509 2510
gfc_resolve_lstat (gfc_expr *f, gfc_expr *n ATTRIBUTE_UNUSED,
		   gfc_expr *a ATTRIBUTE_UNUSED)
2511 2512 2513
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
2514
  f->value.function.name = gfc_get_string (PREFIX ("lstat_i%d"), f->ts.kind);
2515 2516 2517 2518
}


void
2519
gfc_resolve_fstat (gfc_expr *f, gfc_expr *n, gfc_expr *a ATTRIBUTE_UNUSED)
Steven G. Kargl committed
2520 2521 2522 2523 2524 2525
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
  if (n->ts.kind != f->ts.kind)
    gfc_convert_type (n, &f->ts, 2);

2526
  f->value.function.name = gfc_get_string (PREFIX ("fstat_i%d"), f->ts.kind);
Steven G. Kargl committed
2527 2528 2529
}


2530
void
2531
gfc_resolve_fgetc (gfc_expr *f, gfc_expr *u, gfc_expr *c ATTRIBUTE_UNUSED)
2532 2533
{
  gfc_typespec ts;
2534
  gfc_clear_ts (&ts);
2535 2536 2537 2538 2539 2540 2541

  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_c_int_kind;
  if (u->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
2542 2543
      ts.u.derived = NULL;
      ts.u.cl = NULL;
2544 2545 2546
      gfc_convert_type (u, &ts, 2);
    }

2547
  f->value.function.name = gfc_get_string (PREFIX ("fgetc"));
2548 2549 2550 2551
}


void
2552
gfc_resolve_fget (gfc_expr *f, gfc_expr *c ATTRIBUTE_UNUSED)
2553 2554 2555
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_c_int_kind;
2556
  f->value.function.name = gfc_get_string (PREFIX ("fget"));
2557 2558 2559 2560
}


void
2561
gfc_resolve_fputc (gfc_expr *f, gfc_expr *u, gfc_expr *c ATTRIBUTE_UNUSED)
2562 2563
{
  gfc_typespec ts;
2564
  gfc_clear_ts (&ts);
2565 2566 2567 2568 2569 2570 2571

  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_c_int_kind;
  if (u->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
2572 2573
      ts.u.derived = NULL;
      ts.u.cl = NULL;
2574 2575 2576
      gfc_convert_type (u, &ts, 2);
    }

2577
  f->value.function.name = gfc_get_string (PREFIX ("fputc"));
2578 2579 2580 2581
}


void
2582
gfc_resolve_fput (gfc_expr *f, gfc_expr *c ATTRIBUTE_UNUSED)
2583 2584 2585
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_c_int_kind;
2586
  f->value.function.name = gfc_get_string (PREFIX ("fput"));
2587 2588 2589 2590
}


void
2591
gfc_resolve_ftell (gfc_expr *f, gfc_expr *u)
2592 2593
{
  gfc_typespec ts;
2594
  gfc_clear_ts (&ts);
2595 2596

  f->ts.type = BT_INTEGER;
2597
  f->ts.kind = gfc_intio_kind;
2598 2599 2600 2601
  if (u->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
2602 2603
      ts.u.derived = NULL;
      ts.u.cl = NULL;
2604 2605 2606
      gfc_convert_type (u, &ts, 2);
    }

2607
  f->value.function.name = gfc_get_string (PREFIX ("ftell"));
2608 2609 2610 2611
}


void
2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623
gfc_resolve_storage_size (gfc_expr *f, gfc_expr *a ATTRIBUTE_UNUSED,
			  gfc_expr *kind)
{
  f->ts.type = BT_INTEGER;
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
}


void
2624
gfc_resolve_sum (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
2625
{
2626
  resolve_transformational ("sum", f, array, dim, mask);
2627 2628 2629
}


2630
void
2631 2632
gfc_resolve_symlnk (gfc_expr *f, gfc_expr *p1 ATTRIBUTE_UNUSED,
		    gfc_expr *p2 ATTRIBUTE_UNUSED)
2633 2634 2635
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = gfc_default_integer_kind;
2636
  f->value.function.name = gfc_get_string (PREFIX ("symlnk_i%d"), f->ts.kind);
2637 2638 2639
}


2640 2641 2642
/* Resolve the g77 compatibility function SYSTEM.  */

void
2643
gfc_resolve_system (gfc_expr *f, gfc_expr *n ATTRIBUTE_UNUSED)
2644 2645 2646
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
2647
  f->value.function.name = gfc_get_string (PREFIX ("system"));
2648 2649 2650
}


2651
void
2652
gfc_resolve_tan (gfc_expr *f, gfc_expr *x)
2653 2654
{
  f->ts = x->ts;
2655 2656
  f->value.function.name
    = gfc_get_string ("__tan_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
2657 2658 2659 2660
}


void
2661
gfc_resolve_tanh (gfc_expr *f, gfc_expr *x)
2662 2663
{
  f->ts = x->ts;
2664 2665
  f->value.function.name
    = gfc_get_string ("__tanh_%c%d", gfc_type_letter (x->ts.type), x->ts.kind);
2666 2667 2668
}


2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697
/* Build an expression for converting degrees to radians.  */

static gfc_expr *
get_radians (gfc_expr *deg)
{
  gfc_expr *result, *factor;
  gfc_actual_arglist *mod_args;

  gcc_assert (deg->ts.type == BT_REAL);

  /* Set deg = deg % 360 to avoid offsets from large angles.  */
  factor = gfc_get_constant_expr (deg->ts.type, deg->ts.kind, &deg->where);
  mpfr_set_d (factor->value.real, 360.0, GFC_RND_MODE);

  mod_args = gfc_get_actual_arglist ();
  mod_args->expr = deg;
  mod_args->next = gfc_get_actual_arglist ();
  mod_args->next->expr = factor;

  result = gfc_get_expr ();
  result->ts = deg->ts;
  result->where = deg->where;
  result->expr_type = EXPR_FUNCTION;
  result->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_MOD);
  result->value.function.actual = mod_args;

  /* Set factor = pi / 180.  */
  factor = gfc_get_constant_expr (deg->ts.type, deg->ts.kind, &deg->where);
  mpfr_const_pi (factor->value.real, GFC_RND_MODE);
2698
  mpfr_div_ui (factor->value.real, factor->value.real, 180, GFC_RND_MODE);
2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712

  /* Result is rad = (deg % 360) * (pi / 180).  */
  result = gfc_multiply (result, factor);
  return result;
}


/* Build an expression for converting radians to degrees.  */

static gfc_expr *
get_degrees (gfc_expr *rad)
{
  gfc_expr *result, *factor;
  gfc_actual_arglist *mod_args;
2713
  mpfr_t tmp;
2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735

  gcc_assert (rad->ts.type == BT_REAL);

  /* Set rad = rad % 2pi to avoid offsets from large angles.  */
  factor = gfc_get_constant_expr (rad->ts.type, rad->ts.kind, &rad->where);
  mpfr_const_pi (factor->value.real, GFC_RND_MODE);
  mpfr_mul_ui (factor->value.real, factor->value.real, 2, GFC_RND_MODE);

  mod_args = gfc_get_actual_arglist ();
  mod_args->expr = rad;
  mod_args->next = gfc_get_actual_arglist ();
  mod_args->next->expr = factor;

  result = gfc_get_expr ();
  result->ts = rad->ts;
  result->where = rad->where;
  result->expr_type = EXPR_FUNCTION;
  result->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_MOD);
  result->value.function.actual = mod_args;

  /* Set factor = 180 / pi.  */
  factor = gfc_get_constant_expr (rad->ts.type, rad->ts.kind, &rad->where);
2736
  mpfr_set_ui (factor->value.real, 180, GFC_RND_MODE);
2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754
  mpfr_init (tmp);
  mpfr_const_pi (tmp, GFC_RND_MODE);
  mpfr_div (factor->value.real, factor->value.real, tmp, GFC_RND_MODE);
  mpfr_clear (tmp);

  /* Result is deg = (rad % 2pi) * (180 / pi).  */
  result = gfc_multiply (result, factor);
  return result;
}


/* Resolve a call to a trig function.  */

static void
resolve_trig_call (gfc_expr *f, gfc_expr *x)
{
  switch (f->value.function.isym->id)
    {
2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774
    case GFC_ISYM_ACOS:
      return gfc_resolve_acos (f, x);
    case GFC_ISYM_ASIN:
      return gfc_resolve_asin (f, x);
    case GFC_ISYM_ATAN:
      return gfc_resolve_atan (f, x);
    case GFC_ISYM_ATAN2:
      /* NB. arg3 is unused for atan2 */
      return gfc_resolve_atan2 (f, x, NULL);
    case GFC_ISYM_COS:
      return gfc_resolve_cos (f, x);
    case GFC_ISYM_COTAN:
      return gfc_resolve_cotan (f, x);
    case GFC_ISYM_SIN:
      return gfc_resolve_sin (f, x);
    case GFC_ISYM_TAN:
      return gfc_resolve_tan (f, x);
    default:
      gcc_unreachable ();
    }
2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
}

/* Resolve degree trig function as trigd (x) = trig (radians (x)).  */

void
gfc_resolve_trigd (gfc_expr *f, gfc_expr *x)
{
  if (is_trig_resolved (f))
    return;

  x = get_radians (x);
  f->value.function.actual->expr = x;

  resolve_trig_call (f, x);
}


/* Resolve degree inverse trig function as atrigd (x) = degrees (atrig (x)).  */

void
gfc_resolve_atrigd (gfc_expr *f, gfc_expr *x)
{
  gfc_expr *result, *fcopy;

  if (is_trig_resolved (f))
    return;

  resolve_trig_call (f, x);

  fcopy = copy_replace_function_shallow (f);
  result = get_degrees (fcopy);
  gfc_replace_expr (f, result);
}


/* Resolve atan2d(x) = degrees(atan2(x)).  */

void
gfc_resolve_atan2d (gfc_expr *f, gfc_expr *x, gfc_expr *y ATTRIBUTE_UNUSED)
{
  /* Note that we lose the second arg here - that's okay because it is
     unused in gfc_resolve_atan2 anyway.  */
  gfc_resolve_atrigd (f, x);
}


2821
void
2822 2823 2824
gfc_resolve_image_index (gfc_expr *f, gfc_expr *array ATTRIBUTE_UNUSED,
			 gfc_expr *sub ATTRIBUTE_UNUSED)
{
2825 2826
  static char image_index[] = "__image_index";
  f->ts.type = BT_INTEGER;
2827
  f->ts.kind = gfc_default_integer_kind;
2828
  f->value.function.name = image_index;
2829 2830 2831 2832
}


void
2833 2834
gfc_resolve_this_image (gfc_expr *f, gfc_expr *array, gfc_expr *dim,
			gfc_expr *distance ATTRIBUTE_UNUSED)
2835
{
2836
  static char this_image[] = "__this_image";
2837
  if (array && gfc_is_coarray (array))
2838 2839 2840 2841 2842 2843 2844
    resolve_bound (f, array, dim, NULL, "__this_image", true);
  else
    {
      f->ts.type = BT_INTEGER;
      f->ts.kind = gfc_default_integer_kind;
      f->value.function.name = this_image;
    }
2845 2846 2847 2848
}


void
2849
gfc_resolve_time (gfc_expr *f)
2850 2851 2852
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
2853
  f->value.function.name = gfc_get_string (PREFIX ("time_func"));
2854 2855 2856 2857
}


void
2858
gfc_resolve_time8 (gfc_expr *f)
2859 2860 2861
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 8;
2862
  f->value.function.name = gfc_get_string (PREFIX ("time8_func"));
2863 2864 2865 2866
}


void
2867 2868
gfc_resolve_transfer (gfc_expr *f, gfc_expr *source ATTRIBUTE_UNUSED,
		      gfc_expr *mold, gfc_expr *size)
2869 2870 2871 2872
{
  /* TODO: Make this do something meaningful.  */
  static char transfer0[] = "__transfer0", transfer1[] = "__transfer1";

2873
  if (mold->ts.type == BT_CHARACTER
2874
	&& !mold->ts.u.cl->length
2875 2876 2877 2878
	&& gfc_is_constant_expr (mold))
    {
      int len;
      if (mold->expr_type == EXPR_CONSTANT)
Jerry DeLisle committed
2879 2880 2881 2882 2883
        {
	  len = mold->value.character.length;
	  mold->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
						    NULL, len);
	}
2884 2885
      else
	{
Jerry DeLisle committed
2886 2887 2888 2889
	  gfc_constructor *c = gfc_constructor_first (mold->value.constructor);
	  len = c->expr->value.character.length;
	  mold->ts.u.cl->length = gfc_get_int_expr (gfc_default_integer_kind,
						    NULL, len);
2890 2891
	}
    }
2892

2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903
  f->ts = mold->ts;

  if (size == NULL && mold->rank == 0)
    {
      f->rank = 0;
      f->value.function.name = transfer0;
    }
  else
    {
      f->rank = 1;
      f->value.function.name = transfer1;
2904 2905 2906 2907 2908
      if (size && gfc_is_constant_expr (size))
	{
	  f->shape = gfc_get_shape (1);
	  mpz_init_set (f->shape[0], size->value.integer);
	}
2909 2910 2911 2912 2913
    }
}


void
2914
gfc_resolve_transpose (gfc_expr *f, gfc_expr *matrix)
2915
{
2916 2917 2918 2919

  if (matrix->ts.type == BT_CHARACTER && matrix->ref)
    gfc_resolve_substring_charlen (matrix);

2920 2921
  f->ts = matrix->ts;
  f->rank = 2;
2922 2923 2924 2925 2926 2927
  if (matrix->shape)
    {
      f->shape = gfc_get_shape (2);
      mpz_init_set (f->shape[0], matrix->shape[1]);
      mpz_init_set (f->shape[1], matrix->shape[0]);
    }
2928

2929
  switch (matrix->ts.kind)
2930 2931 2932
    {
    case 4:
    case 8:
2933 2934
    case 10:
    case 16:
2935
      switch (matrix->ts.type)
2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946
	{
	case BT_REAL:
	case BT_COMPLEX:
	  f->value.function.name
	    = gfc_get_string (PREFIX ("transpose_%c%d"),
			      gfc_type_letter (matrix->ts.type),
			      matrix->ts.kind);
	  break;

	case BT_INTEGER:
	case BT_LOGICAL:
2947 2948
	  /* Use the integer routines for real and logical cases.  This
	     assumes they all have the same alignment requirements.  */
2949 2950 2951 2952 2953
	  f->value.function.name
	    = gfc_get_string (PREFIX ("transpose_i%d"), matrix->ts.kind);
	  break;

	default:
2954 2955 2956 2957
	  if (matrix->ts.type == BT_CHARACTER && matrix->ts.kind == 4)
	    f->value.function.name = PREFIX ("transpose_char4");
	  else
	    f->value.function.name = PREFIX ("transpose");
2958 2959
	  break;
	}
2960 2961 2962
      break;

    default:
2963
      f->value.function.name = (matrix->ts.type == BT_CHARACTER
2964 2965
				? PREFIX ("transpose_char")
				: PREFIX ("transpose"));
2966
      break;
2967 2968 2969 2970 2971
    }
}


void
2972
gfc_resolve_trim (gfc_expr *f, gfc_expr *string)
2973 2974 2975 2976 2977 2978 2979 2980
{
  f->ts.type = BT_CHARACTER;
  f->ts.kind = string->ts.kind;
  f->value.function.name = gfc_get_string ("__trim_%d", string->ts.kind);
}


void
2981
gfc_resolve_ubound (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
2982
{
2983
  resolve_bound (f, array, dim, kind, "__ubound", false);
2984
}
2985

2986

2987 2988 2989
void
gfc_resolve_ucobound (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *kind)
{
2990
  resolve_bound (f, array, dim, kind, "__ucobound", true);
2991 2992 2993
}


2994 2995 2996
/* Resolve the g77 compatibility function UMASK.  */

void
2997
gfc_resolve_umask (gfc_expr *f, gfc_expr *n)
2998 2999 3000
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = n->ts.kind;
3001
  f->value.function.name = gfc_get_string (PREFIX ("umask_i%d"), n->ts.kind);
3002 3003 3004 3005 3006 3007
}


/* Resolve the g77 compatibility function UNLINK.  */

void
3008
gfc_resolve_unlink (gfc_expr *f, gfc_expr *n ATTRIBUTE_UNUSED)
3009 3010 3011
{
  f->ts.type = BT_INTEGER;
  f->ts.kind = 4;
3012
  f->value.function.name = gfc_get_string (PREFIX ("unlink"));
3013 3014
}

3015 3016

void
3017
gfc_resolve_ttynam (gfc_expr *f, gfc_expr *unit)
3018 3019
{
  gfc_typespec ts;
3020
  gfc_clear_ts (&ts);
3021 3022 3023 3024 3025 3026 3027 3028
  
  f->ts.type = BT_CHARACTER;
  f->ts.kind = gfc_default_character_kind;

  if (unit->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
3029 3030
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3031 3032 3033
      gfc_convert_type (unit, &ts, 2);
    }

3034
  f->value.function.name = gfc_get_string (PREFIX ("ttynam"));
3035 3036 3037
}


3038
void
3039 3040
gfc_resolve_unpack (gfc_expr *f, gfc_expr *vector, gfc_expr *mask,
		    gfc_expr *field ATTRIBUTE_UNUSED)
3041
{
3042 3043 3044
  if (vector->ts.type == BT_CHARACTER && vector->ref)
    gfc_resolve_substring_charlen (vector);

3045
  f->ts = vector->ts;
3046
  f->rank = mask->rank;
3047
  resolve_mask_arg (mask);
3048

3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061
  if (vector->ts.type == BT_CHARACTER)
    {
      if (vector->ts.kind == 1)
	f->value.function.name
	  = gfc_get_string (PREFIX ("unpack%d_char"), field->rank > 0 ? 1 : 0);
      else
	f->value.function.name
	  = gfc_get_string (PREFIX ("unpack%d_char%d"),
			    field->rank > 0 ? 1 : 0, vector->ts.kind);
    }
  else
    f->value.function.name
      = gfc_get_string (PREFIX ("unpack%d"), field->rank > 0 ? 1 : 0);
3062 3063 3064 3065
}


void
3066 3067
gfc_resolve_verify (gfc_expr *f, gfc_expr *string,
		    gfc_expr *set ATTRIBUTE_UNUSED,
3068
		    gfc_expr *back ATTRIBUTE_UNUSED, gfc_expr *kind)
3069 3070
{
  f->ts.type = BT_INTEGER;
3071 3072 3073 3074
  if (kind)
    f->ts.kind = mpz_get_si (kind->value.integer);
  else
    f->ts.kind = gfc_default_integer_kind;
3075 3076 3077 3078
  f->value.function.name = gfc_get_string ("__verify_%d", string->ts.kind);
}


3079
void
3080
gfc_resolve_xor (gfc_expr *f, gfc_expr *i, gfc_expr *j)
3081 3082
{
  f->ts.type = i->ts.type;
3083
  f->ts.kind = gfc_kind_max (i, j);
3084 3085 3086

  if (i->ts.kind != j->ts.kind)
    {
3087 3088
      if (i->ts.kind == gfc_kind_max (i, j))
	gfc_convert_type (j, &i->ts, 2);
3089
      else
3090
	gfc_convert_type (i, &j->ts, 2);
3091 3092
    }

3093 3094
  f->value.function.name
    = gfc_get_string ("__xor_%c%d", gfc_type_letter (i->ts.type), f->ts.kind);
3095 3096 3097
}


3098 3099 3100
/* Intrinsic subroutine resolution.  */

void
3101
gfc_resolve_alarm_sub (gfc_code *c)
3102 3103
{
  const char *name;
3104
  gfc_expr *seconds, *handler;
3105
  gfc_typespec ts;
3106
  gfc_clear_ts (&ts);
3107 3108 3109 3110 3111 3112

  seconds = c->ext.actual->expr;
  handler = c->ext.actual->next->expr;
  ts.type = BT_INTEGER;
  ts.kind = gfc_c_int_kind;

3113 3114 3115
  /* handler can be either BT_INTEGER or BT_PROCEDURE.
     In all cases, the status argument is of default integer kind
     (enforced in check.c) so that the function suffix is fixed.  */
3116 3117 3118 3119
  if (handler->ts.type == BT_INTEGER)
    {
      if (handler->ts.kind != gfc_c_int_kind)
	gfc_convert_type (handler, &ts, 2);
3120 3121
      name = gfc_get_string (PREFIX ("alarm_sub_int_i%d"),
			     gfc_default_integer_kind);
3122 3123
    }
  else
3124 3125
    name = gfc_get_string (PREFIX ("alarm_sub_i%d"),
			   gfc_default_integer_kind);
3126 3127 3128 3129 3130 3131 3132 3133

  if (seconds->ts.kind != gfc_c_int_kind)
    gfc_convert_type (seconds, &ts, 2);

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

void
3134
gfc_resolve_cpu_time (gfc_code *c)
3135 3136
{
  const char *name;
3137
  name = gfc_get_string (PREFIX ("cpu_time_%d"), c->ext.actual->expr->ts.kind);
3138 3139 3140 3141
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172
/* Create a formal arglist based on an actual one and set the INTENTs given.  */

static gfc_formal_arglist*
create_formal_for_intents (gfc_actual_arglist* actual, const sym_intent* ints)
{
  gfc_formal_arglist* head;
  gfc_formal_arglist* tail;
  int i;

  if (!actual)
    return NULL;

  head = tail = gfc_get_formal_arglist ();
  for (i = 0; actual; actual = actual->next, tail = tail->next, ++i)
    {
      gfc_symbol* sym;

      sym = gfc_new_symbol ("dummyarg", NULL);
      sym->ts = actual->expr->ts;

      sym->attr.intent = ints[i];
      tail->sym = sym;

      if (actual->next)
	tail->next = gfc_get_formal_arglist ();
    }

  return head;
}


3173
void
3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187
gfc_resolve_atomic_def (gfc_code *c)
{
  const char *name = "atomic_define";
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
gfc_resolve_atomic_ref (gfc_code *c)
{
  const char *name = "atomic_ref";
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3188 3189 3190 3191 3192 3193
void
gfc_resolve_event_query (gfc_code *c)
{
  const char *name = "event_query";
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}
3194 3195

void
3196
gfc_resolve_mvbits (gfc_code *c)
3197
{
3198 3199 3200
  static const sym_intent INTENTS[] = {INTENT_IN, INTENT_IN, INTENT_IN,
				       INTENT_INOUT, INTENT_IN};

3201
  const char *name;
3202
  gfc_typespec ts;
3203
  gfc_clear_ts (&ts);
3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218

  /* FROMPOS, LEN and TOPOS are restricted to small values.  As such,
     they will be converted so that they fit into a C int.  */
  ts.type = BT_INTEGER;
  ts.kind = gfc_c_int_kind;
  if (c->ext.actual->next->expr->ts.kind != gfc_c_int_kind)
    gfc_convert_type (c->ext.actual->next->expr, &ts, 2);
  if (c->ext.actual->next->next->expr->ts.kind != gfc_c_int_kind)
    gfc_convert_type (c->ext.actual->next->next->expr, &ts, 2);
  if (c->ext.actual->next->next->next->next->expr->ts.kind != gfc_c_int_kind)
    gfc_convert_type (c->ext.actual->next->next->next->next->expr, &ts, 2);

  /* TO and FROM are guaranteed to have the same kind parameter.  */
  name = gfc_get_string (PREFIX ("mvbits_i%d"),
			 c->ext.actual->expr->ts.kind);
3219
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
3220 3221
  /* Mark as elemental subroutine as this does not happen automatically.  */
  c->resolved_sym->attr.elemental = 1;
3222 3223 3224 3225

  /* Create a dummy formal arglist so the INTENTs are known later for purpose
     of creating temporaries.  */
  c->resolved_sym->formal = create_formal_for_intents (c->ext.actual, INTENTS);
3226 3227 3228 3229
}


void
3230
gfc_resolve_random_number (gfc_code *c)
3231 3232 3233 3234 3235
{
  const char *name;
  int kind;

  kind = c->ext.actual->expr->ts.kind;
3236
  if (c->ext.actual->expr->rank == 0)
3237
    name = gfc_get_string (PREFIX ("random_r%d"), kind);
3238
  else
3239
    name = gfc_get_string (PREFIX ("arandom_r%d"), kind);
3240
  
3241
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
3242 3243 3244
}


3245
void
3246 3247 3248 3249 3250 3251 3252 3253 3254 3255
gfc_resolve_random_seed (gfc_code *c)
{
  const char *name;

  name = gfc_get_string (PREFIX ("random_seed_i%d"), gfc_default_integer_kind);
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3256
gfc_resolve_rename_sub (gfc_code *c)
3257 3258 3259 3260 3261 3262 3263 3264 3265
{
  const char *name;
  int kind;

  if (c->ext.actual->next->next->expr != NULL)
    kind = c->ext.actual->next->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3266
  name = gfc_get_string (PREFIX ("rename_i%d_sub"), kind);
3267 3268 3269 3270 3271
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3272
gfc_resolve_kill_sub (gfc_code *c)
3273 3274 3275 3276 3277 3278 3279 3280 3281
{
  const char *name;
  int kind;

  if (c->ext.actual->next->next->expr != NULL)
    kind = c->ext.actual->next->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3282
  name = gfc_get_string (PREFIX ("kill_i%d_sub"), kind);
3283 3284 3285 3286 3287
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}
    

void
3288
gfc_resolve_link_sub (gfc_code *c)
3289 3290 3291 3292 3293 3294 3295 3296 3297
{
  const char *name;
  int kind;

  if (c->ext.actual->next->next->expr != NULL)
    kind = c->ext.actual->next->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3298
  name = gfc_get_string (PREFIX ("link_i%d_sub"), kind);
3299 3300 3301 3302 3303
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3304
gfc_resolve_symlnk_sub (gfc_code *c)
3305 3306 3307 3308 3309 3310 3311 3312 3313
{
  const char *name;
  int kind;

  if (c->ext.actual->next->next->expr != NULL)
    kind = c->ext.actual->next->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3314
  name = gfc_get_string (PREFIX ("symlnk_i%d_sub"), kind);
3315 3316 3317 3318
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


3319 3320 3321 3322 3323 3324 3325 3326 3327
/* G77 compatibility subroutines dtime() and etime().  */

void
gfc_resolve_dtime_sub (gfc_code *c)
{
  const char *name;
  name = gfc_get_string (PREFIX ("dtime_sub"));
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}
3328 3329

void
3330
gfc_resolve_etime_sub (gfc_code *c)
3331 3332
{
  const char *name;
3333
  name = gfc_get_string (PREFIX ("etime_sub"));
3334 3335 3336 3337
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


3338
/* G77 compatibility subroutines itime(), idate(), ltime() and gmtime().  */
3339 3340

void
3341
gfc_resolve_itime (gfc_code *c)
3342
{
3343 3344 3345
  c->resolved_sym
    = gfc_get_intrinsic_sub_symbol (gfc_get_string (PREFIX ("itime_i%d"),
						    gfc_default_integer_kind));
3346 3347 3348
}

void
3349
gfc_resolve_idate (gfc_code *c)
3350
{
3351 3352 3353
  c->resolved_sym
    = gfc_get_intrinsic_sub_symbol (gfc_get_string (PREFIX ("idate_i%d"),
						    gfc_default_integer_kind));
3354 3355
}

3356
void
3357
gfc_resolve_ltime (gfc_code *c)
3358
{
3359 3360 3361
  c->resolved_sym
    = gfc_get_intrinsic_sub_symbol (gfc_get_string (PREFIX ("ltime_i%d"),
						    gfc_default_integer_kind));
3362 3363 3364
}

void
3365
gfc_resolve_gmtime (gfc_code *c)
3366
{
3367 3368 3369
  c->resolved_sym
    = gfc_get_intrinsic_sub_symbol (gfc_get_string (PREFIX ("gmtime_i%d"),
						    gfc_default_integer_kind));
3370 3371
}

3372

3373 3374 3375
/* G77 compatibility subroutine second().  */

void
3376
gfc_resolve_second_sub (gfc_code *c)
3377 3378
{
  const char *name;
3379
  name = gfc_get_string (PREFIX ("second_sub"));
3380 3381 3382 3383
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


3384
void
3385
gfc_resolve_sleep_sub (gfc_code *c)
3386 3387 3388 3389 3390 3391 3392 3393 3394
{
  const char *name;
  int kind;

  if (c->ext.actual->expr != NULL)
    kind = c->ext.actual->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3395
  name = gfc_get_string (PREFIX ("sleep_i%d_sub"), kind);
3396 3397 3398 3399
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


3400 3401 3402
/* G77 compatibility function srand().  */

void
3403
gfc_resolve_srand (gfc_code *c)
3404 3405
{
  const char *name;
3406
  name = gfc_get_string (PREFIX ("srand"));
3407
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
3408 3409
}

3410

3411 3412 3413
/* Resolve the getarg intrinsic subroutine.  */

void
3414
gfc_resolve_getarg (gfc_code *c)
3415 3416
{
  const char *name;
3417 3418 3419 3420

  if (c->ext.actual->expr->ts.kind != gfc_default_integer_kind)
    {
      gfc_typespec ts;
3421
      gfc_clear_ts (&ts);
3422 3423 3424 3425 3426 3427 3428 3429

      ts.type = BT_INTEGER;
      ts.kind = gfc_default_integer_kind;

      gfc_convert_type (c->ext.actual->expr, &ts, 2);
    }

  name = gfc_get_string (PREFIX ("getarg_i%d"), gfc_default_integer_kind);
3430 3431 3432
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3433

3434 3435 3436
/* Resolve the getcwd intrinsic subroutine.  */

void
3437
gfc_resolve_getcwd_sub (gfc_code *c)
3438 3439 3440 3441 3442 3443 3444 3445 3446
{
  const char *name;
  int kind;

  if (c->ext.actual->next->expr != NULL)
    kind = c->ext.actual->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3447
  name = gfc_get_string (PREFIX ("getcwd_i%d_sub"), kind);
3448 3449 3450
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3451 3452 3453 3454

/* Resolve the get_command intrinsic subroutine.  */

void
3455
gfc_resolve_get_command (gfc_code *c)
3456 3457 3458
{
  const char *name;
  int kind;
3459
  kind = gfc_default_integer_kind;
3460
  name = gfc_get_string (PREFIX ("get_command_i%d"), kind);
3461 3462 3463 3464 3465 3466 3467
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


/* Resolve the get_command_argument intrinsic subroutine.  */

void
3468
gfc_resolve_get_command_argument (gfc_code *c)
3469 3470 3471
{
  const char *name;
  int kind;
3472
  kind = gfc_default_integer_kind;
3473
  name = gfc_get_string (PREFIX ("get_command_argument_i%d"), kind);
3474 3475 3476
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3477

3478
/* Resolve the get_environment_variable intrinsic subroutine.  */
3479 3480

void
3481
gfc_resolve_get_environment_variable (gfc_code *code)
3482 3483 3484
{
  const char *name;
  int kind;
3485
  kind = gfc_default_integer_kind;
3486
  name = gfc_get_string (PREFIX ("get_environment_variable_i%d"), kind);
3487 3488 3489
  code->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3490

3491
void
3492
gfc_resolve_signal_sub (gfc_code *c)
3493 3494 3495 3496
{
  const char *name;
  gfc_expr *number, *handler, *status;
  gfc_typespec ts;
3497
  gfc_clear_ts (&ts);
3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509

  number = c->ext.actual->expr;
  handler = c->ext.actual->next->expr;
  status = c->ext.actual->next->next->expr;
  ts.type = BT_INTEGER;
  ts.kind = gfc_c_int_kind;

  /* handler can be either BT_INTEGER or BT_PROCEDURE  */
  if (handler->ts.type == BT_INTEGER)
    {
      if (handler->ts.kind != gfc_c_int_kind)
	gfc_convert_type (handler, &ts, 2);
3510
      name = gfc_get_string (PREFIX ("signal_sub_int"));
3511 3512
    }
  else
3513
    name = gfc_get_string (PREFIX ("signal_sub"));
3514 3515 3516 3517 3518 3519 3520 3521 3522

  if (number->ts.kind != gfc_c_int_kind)
    gfc_convert_type (number, &ts, 2);
  if (status != NULL && status->ts.kind != gfc_c_int_kind)
    gfc_convert_type (status, &ts, 2);

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3523

3524 3525 3526
/* Resolve the SYSTEM intrinsic subroutine.  */

void
3527
gfc_resolve_system_sub (gfc_code *c)
3528 3529
{
  const char *name;
3530
  name = gfc_get_string (PREFIX ("system_sub"));
3531 3532
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}
3533

3534

3535 3536 3537
/* Determine if the arguments to SYSTEM_CLOCK are INTEGER(4) or INTEGER(8) */

void
3538
gfc_resolve_system_clock (gfc_code *c)
3539 3540 3541
{
  const char *name;
  int kind;
3542 3543 3544 3545 3546 3547 3548 3549
  gfc_expr *count = c->ext.actual->expr;
  gfc_expr *count_max = c->ext.actual->next->next->expr;

  /* The INTEGER(8) version has higher precision, it is used if both COUNT
     and COUNT_MAX can hold 64-bit values, or are absent.  */
  if ((!count || count->ts.kind >= 8)
      && (!count_max || count_max->ts.kind >= 8))
    kind = 8;
3550
  else
3551
    kind = gfc_default_integer_kind;
3552

3553
  name = gfc_get_string (PREFIX ("system_clock_%d"), kind);
3554 3555 3556
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3557

3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568
/* Resolve the EXECUTE_COMMAND_LINE intrinsic subroutine.  */
void
gfc_resolve_execute_command_line (gfc_code *c)
{
  const char *name;
  name = gfc_get_string (PREFIX ("execute_command_line_i%d"),
			 gfc_default_integer_kind);
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


3569 3570 3571
/* Resolve the EXIT intrinsic subroutine.  */

void
3572
gfc_resolve_exit (gfc_code *c)
3573 3574
{
  const char *name;
3575 3576
  gfc_typespec ts;
  gfc_expr *n;
3577
  gfc_clear_ts (&ts);
3578

3579 3580 3581 3582 3583 3584 3585
  /* The STATUS argument has to be of default kind.  If it is not,
     we convert it.  */
  ts.type = BT_INTEGER;
  ts.kind = gfc_default_integer_kind;
  n = c->ext.actual->expr;
  if (n != NULL && n->ts.kind != ts.kind)
    gfc_convert_type (n, &ts, 2);
3586

3587
  name = gfc_get_string (PREFIX ("exit_i%d"), ts.kind);
3588 3589 3590
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3591

Steven G. Kargl committed
3592 3593 3594
/* Resolve the FLUSH intrinsic subroutine.  */

void
3595
gfc_resolve_flush (gfc_code *c)
Steven G. Kargl committed
3596 3597 3598 3599
{
  const char *name;
  gfc_typespec ts;
  gfc_expr *n;
3600
  gfc_clear_ts (&ts);
Steven G. Kargl committed
3601 3602 3603 3604

  ts.type = BT_INTEGER;
  ts.kind = gfc_default_integer_kind;
  n = c->ext.actual->expr;
3605
  if (n != NULL && n->ts.kind != ts.kind)
Steven G. Kargl committed
3606 3607
    gfc_convert_type (n, &ts, 2);

3608
  name = gfc_get_string (PREFIX ("flush_i%d"), ts.kind);
Steven G. Kargl committed
3609 3610 3611
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3612 3613

void
3614
gfc_resolve_ctime_sub (gfc_code *c)
3615 3616
{
  gfc_typespec ts;
3617
  gfc_clear_ts (&ts);
3618 3619 3620 3621 3622 3623
  
  /* ctime TIME argument is a INTEGER(KIND=8), says the doc */
  if (c->ext.actual->expr->ts.kind != 8)
    {
      ts.type = BT_INTEGER;
      ts.kind = 8;
3624 3625
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3626 3627 3628
      gfc_convert_type (c->ext.actual->expr, &ts, 2);
    }

3629
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (PREFIX ("ctime_sub"));
3630 3631 3632 3633
}


void
3634
gfc_resolve_fdate_sub (gfc_code *c)
3635 3636 3637 3638 3639 3640
{
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (PREFIX ("fdate_sub"));
}


void
3641
gfc_resolve_gerror (gfc_code *c)
3642 3643 3644 3645 3646 3647
{
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (PREFIX ("gerror"));
}


void
3648
gfc_resolve_getlog (gfc_code *c)
3649 3650 3651 3652 3653 3654
{
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (PREFIX ("getlog"));
}


void
3655
gfc_resolve_hostnm_sub (gfc_code *c)
3656 3657 3658 3659 3660 3661 3662 3663 3664
{
  const char *name;
  int kind;

  if (c->ext.actual->next->expr != NULL)
    kind = c->ext.actual->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3665
  name = gfc_get_string (PREFIX ("hostnm_i%d_sub"), kind);
3666 3667 3668 3669 3670
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3671
gfc_resolve_perror (gfc_code *c)
3672 3673 3674 3675
{
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (PREFIX ("perror_sub"));
}

Steven G. Kargl committed
3676 3677 3678
/* Resolve the STAT and FSTAT intrinsic subroutines.  */

void
3679
gfc_resolve_stat_sub (gfc_code *c)
Steven G. Kargl committed
3680 3681
{
  const char *name;
3682
  name = gfc_get_string (PREFIX ("stat_i%d_sub"), gfc_default_integer_kind);
Steven G. Kargl committed
3683 3684 3685 3686 3687
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3688
gfc_resolve_lstat_sub (gfc_code *c)
3689 3690
{
  const char *name;
3691
  name = gfc_get_string (PREFIX ("lstat_i%d_sub"), gfc_default_integer_kind);
3692 3693 3694 3695 3696
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3697
gfc_resolve_fstat_sub (gfc_code *c)
Steven G. Kargl committed
3698 3699 3700 3701 3702 3703 3704 3705 3706
{
  const char *name;
  gfc_expr *u;
  gfc_typespec *ts;

  u = c->ext.actual->expr;
  ts = &c->ext.actual->next->expr->ts;
  if (u->ts.kind != ts->kind)
    gfc_convert_type (u, ts, 2);
3707
  name = gfc_get_string (PREFIX ("fstat_i%d_sub"), ts->kind);
Steven G. Kargl committed
3708 3709 3710
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

3711 3712

void
3713
gfc_resolve_fgetc_sub (gfc_code *c)
3714 3715 3716 3717
{
  const char *name;
  gfc_typespec ts;
  gfc_expr *u, *st;
3718
  gfc_clear_ts (&ts);
3719 3720 3721 3722 3723 3724 3725 3726

  u = c->ext.actual->expr;
  st = c->ext.actual->next->next->expr;

  if (u->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
3727 3728
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3729 3730 3731 3732
      gfc_convert_type (u, &ts, 2);
    }

  if (st != NULL)
3733
    name = gfc_get_string (PREFIX ("fgetc_i%d_sub"), st->ts.kind);
3734
  else
3735
    name = gfc_get_string (PREFIX ("fgetc_i%d_sub"), gfc_default_integer_kind);
3736 3737 3738 3739 3740 3741

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3742
gfc_resolve_fget_sub (gfc_code *c)
3743 3744 3745 3746 3747 3748
{
  const char *name;
  gfc_expr *st;

  st = c->ext.actual->next->expr;
  if (st != NULL)
3749
    name = gfc_get_string (PREFIX ("fget_i%d_sub"), st->ts.kind);
3750
  else
3751
    name = gfc_get_string (PREFIX ("fget_i%d_sub"), gfc_default_integer_kind);
3752 3753 3754 3755 3756 3757

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3758
gfc_resolve_fputc_sub (gfc_code *c)
3759 3760 3761 3762
{
  const char *name;
  gfc_typespec ts;
  gfc_expr *u, *st;
3763
  gfc_clear_ts (&ts);
3764 3765 3766 3767 3768 3769 3770 3771

  u = c->ext.actual->expr;
  st = c->ext.actual->next->next->expr;

  if (u->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
3772 3773
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3774 3775 3776 3777
      gfc_convert_type (u, &ts, 2);
    }

  if (st != NULL)
3778
    name = gfc_get_string (PREFIX ("fputc_i%d_sub"), st->ts.kind);
3779
  else
3780
    name = gfc_get_string (PREFIX ("fputc_i%d_sub"), gfc_default_integer_kind);
3781 3782 3783 3784 3785 3786

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3787
gfc_resolve_fput_sub (gfc_code *c)
3788 3789 3790 3791 3792 3793
{
  const char *name;
  gfc_expr *st;

  st = c->ext.actual->next->expr;
  if (st != NULL)
3794
    name = gfc_get_string (PREFIX ("fput_i%d_sub"), st->ts.kind);
3795
  else
3796
    name = gfc_get_string (PREFIX ("fput_i%d_sub"), gfc_default_integer_kind);
3797 3798 3799 3800 3801

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


3802 3803 3804 3805 3806 3807 3808
void 
gfc_resolve_fseek_sub (gfc_code *c)
{
  gfc_expr *unit;
  gfc_expr *offset;
  gfc_expr *whence;
  gfc_typespec ts;
3809
  gfc_clear_ts (&ts);
3810 3811 3812 3813 3814 3815 3816 3817 3818

  unit   = c->ext.actual->expr;
  offset = c->ext.actual->next->expr;
  whence = c->ext.actual->next->next->expr;

  if (unit->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
3819 3820
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3821 3822 3823 3824 3825 3826 3827
      gfc_convert_type (unit, &ts, 2);
    }

  if (offset->ts.kind != gfc_intio_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_intio_kind;
3828 3829
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3830 3831 3832 3833 3834 3835 3836
      gfc_convert_type (offset, &ts, 2);
    }

  if (whence->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
3837 3838
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3839 3840 3841 3842 3843 3844
      gfc_convert_type (whence, &ts, 2);
    }

  c->resolved_sym = gfc_get_intrinsic_sub_symbol (PREFIX ("fseek_sub"));
}

3845
void
3846
gfc_resolve_ftell_sub (gfc_code *c)
3847 3848 3849 3850 3851
{
  const char *name;
  gfc_expr *unit;
  gfc_expr *offset;
  gfc_typespec ts;
3852
  gfc_clear_ts (&ts);
3853 3854 3855 3856 3857 3858 3859 3860

  unit = c->ext.actual->expr;
  offset = c->ext.actual->next->expr;

  if (unit->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
3861 3862
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3863 3864 3865
      gfc_convert_type (unit, &ts, 2);
    }

3866
  name = gfc_get_string (PREFIX ("ftell_i%d_sub"), offset->ts.kind);
3867 3868 3869 3870 3871
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}


void
3872
gfc_resolve_ttynam_sub (gfc_code *c)
3873 3874
{
  gfc_typespec ts;
3875
  gfc_clear_ts (&ts);
3876 3877 3878 3879 3880
  
  if (c->ext.actual->expr->ts.kind != gfc_c_int_kind)
    {
      ts.type = BT_INTEGER;
      ts.kind = gfc_c_int_kind;
3881 3882
      ts.u.derived = NULL;
      ts.u.cl = NULL;
3883 3884 3885
      gfc_convert_type (c->ext.actual->expr, &ts, 2);
    }

3886
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (PREFIX ("ttynam_sub"));
3887 3888 3889
}


3890 3891 3892
/* Resolve the UMASK intrinsic subroutine.  */

void
3893
gfc_resolve_umask_sub (gfc_code *c)
3894 3895 3896 3897 3898 3899 3900 3901 3902
{
  const char *name;
  int kind;

  if (c->ext.actual->next->expr != NULL)
    kind = c->ext.actual->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3903
  name = gfc_get_string (PREFIX ("umask_i%d_sub"), kind);
3904 3905 3906 3907 3908 3909
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}

/* Resolve the UNLINK intrinsic subroutine.  */

void
3910
gfc_resolve_unlink_sub (gfc_code *c)
3911 3912 3913 3914 3915 3916 3917 3918 3919
{
  const char *name;
  int kind;

  if (c->ext.actual->next->expr != NULL)
    kind = c->ext.actual->next->expr->ts.kind;
  else
    kind = gfc_default_integer_kind;

3920
  name = gfc_get_string (PREFIX ("unlink_i%d_sub"), kind);
3921 3922
  c->resolved_sym = gfc_get_intrinsic_sub_symbol (name);
}