trans-stmt.c 104 KB
Newer Older
dnovillo's avatar
 
dnovillo committed
1
/* Statement translation -- generate GCC trees from gfc_code.
2 3
   Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
   Inc.
dnovillo's avatar
 
dnovillo committed
4 5 6
   Contributed by Paul Brook <paul@nowt.org>
   and Steven Bosscher <s.bosscher@student.tudelft.nl>

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

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

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

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


#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "tree.h"
dnovillo's avatar
 
dnovillo committed
29
#include "tree-gimple.h"
dnovillo's avatar
 
dnovillo committed
30 31 32 33
#include "ggc.h"
#include "toplev.h"
#include "real.h"
#include "gfortran.h"
34
#include "flags.h"
dnovillo's avatar
 
dnovillo committed
35 36 37 38 39 40
#include "trans.h"
#include "trans-stmt.h"
#include "trans-types.h"
#include "trans-array.h"
#include "trans-const.h"
#include "arith.h"
sayle's avatar
 
sayle committed
41
#include "dependency.h"
dnovillo's avatar
 
dnovillo committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

typedef struct iter_info
{
  tree var;
  tree start;
  tree end;
  tree step;
  struct iter_info *next;
}
iter_info;

typedef struct forall_info
{
  iter_info *this_loop;
  tree mask;
  tree pmask;
  tree maskindex;
  int nvar;
  tree size;
  struct forall_info  *outer;
  struct forall_info  *next_nest;
}
forall_info;

sayle's avatar
 
sayle committed
66 67
static void gfc_trans_where_2 (gfc_code *, tree, bool,
			       forall_info *, stmtblock_t *);
dnovillo's avatar
 
dnovillo committed
68 69 70 71 72 73 74 75 76

/* Translate a F95 label number to a LABEL_EXPR.  */

tree
gfc_trans_label_here (gfc_code * code)
{
  return build1_v (LABEL_EXPR, gfc_get_label_decl (code->here));
}

fengwang's avatar
fengwang committed
77 78 79 80 81 82 83 84 85 86 87 88 89

/* Given a variable expression which has been ASSIGNed to, find the decl
   containing the auxiliary variables.  For variables in common blocks this
   is a field_decl.  */

void
gfc_conv_label_variable (gfc_se * se, gfc_expr * expr)
{
  gcc_assert (expr->symtree->n.sym->attr.assign == 1);
  gfc_conv_expr (se, expr);
  /* Deals with variable in common block. Get the field declaration.  */
  if (TREE_CODE (se->expr) == COMPONENT_REF)
    se->expr = TREE_OPERAND (se->expr, 1);
fengwang's avatar
 
fengwang committed
90 91 92
  /* Deals with dummy argument. Get the parameter declaration.  */
  else if (TREE_CODE (se->expr) == INDIRECT_REF)
    se->expr = TREE_OPERAND (se->expr, 0);
fengwang's avatar
fengwang committed
93 94
}

dnovillo's avatar
 
dnovillo committed
95
/* Translate a label assignment statement.  */
fengwang's avatar
fengwang committed
96

dnovillo's avatar
 
dnovillo committed
97 98 99 100 101 102 103 104 105 106 107 108 109 110
tree
gfc_trans_label_assign (gfc_code * code)
{
  tree label_tree;
  gfc_se se;
  tree len;
  tree addr;
  tree len_tree;
  char *label_str;
  int label_len;

  /* Start a new block.  */
  gfc_init_se (&se, NULL);
  gfc_start_block (&se.pre);
fengwang's avatar
fengwang committed
111 112
  gfc_conv_label_variable (&se, code->expr);

dnovillo's avatar
 
dnovillo committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126
  len = GFC_DECL_STRING_LEN (se.expr);
  addr = GFC_DECL_ASSIGN_ADDR (se.expr);

  label_tree = gfc_get_label_decl (code->label);

  if (code->label->defined == ST_LABEL_TARGET)
    {
      label_tree = gfc_build_addr_expr (pvoid_type_node, label_tree);
      len_tree = integer_minus_one_node;
    }
  else
    {
      label_str = code->label->format->value.character.string;
      label_len = code->label->format->value.character.length;
127
      len_tree = build_int_cst (NULL_TREE, label_len);
dnovillo's avatar
 
dnovillo committed
128
      label_tree = gfc_build_string_const (label_len + 1, label_str);
129
      label_tree = gfc_build_addr_expr (pvoid_type_node, label_tree);
dnovillo's avatar
 
dnovillo committed
130 131 132 133 134 135 136 137 138 139 140 141 142
    }

  gfc_add_modify_expr (&se.pre, len, len_tree);
  gfc_add_modify_expr (&se.pre, addr, label_tree);

  return gfc_finish_block (&se.pre);
}

/* Translate a GOTO statement.  */

tree
gfc_trans_goto (gfc_code * code)
{
143
  locus loc = code->loc;
dnovillo's avatar
 
dnovillo committed
144 145 146 147 148 149 150 151 152 153 154
  tree assigned_goto;
  tree target;
  tree tmp;
  gfc_se se;

  if (code->label != NULL)
    return build1_v (GOTO_EXPR, gfc_get_label_decl (code->label));

  /* ASSIGNED GOTO.  */
  gfc_init_se (&se, NULL);
  gfc_start_block (&se.pre);
fengwang's avatar
fengwang committed
155
  gfc_conv_label_variable (&se, code->expr);
dnovillo's avatar
 
dnovillo committed
156
  tmp = GFC_DECL_STRING_LEN (se.expr);
157 158
  tmp = fold_build2 (NE_EXPR, boolean_type_node, tmp,
		     build_int_cst (TREE_TYPE (tmp), -1));
159 160
  gfc_trans_runtime_check (tmp, "Assigned label is not a target label",
			   &se.pre, &loc);
dnovillo's avatar
 
dnovillo committed
161 162 163 164 165 166

  assigned_goto = GFC_DECL_ASSIGN_ADDR (se.expr);

  code = code->block;
  if (code == NULL)
    {
167
      target = build1 (GOTO_EXPR, void_type_node, assigned_goto);
dnovillo's avatar
 
dnovillo committed
168 169 170 171 172 173 174
      gfc_add_expr_to_block (&se.pre, target);
      return gfc_finish_block (&se.pre);
    }

  /* Check the label list.  */
  do
    {
175 176
      target = gfc_get_label_decl (code->label);
      tmp = gfc_build_addr_expr (pvoid_type_node, target);
177
      tmp = build2 (EQ_EXPR, boolean_type_node, tmp, assigned_goto);
178 179 180
      tmp = build3_v (COND_EXPR, tmp,
		      build1 (GOTO_EXPR, void_type_node, target),
		      build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
181 182 183 184
      gfc_add_expr_to_block (&se.pre, tmp);
      code = code->block;
    }
  while (code != NULL);
185 186 187
  gfc_trans_runtime_check (boolean_true_node,
			   "Assigned label is not in the list", &se.pre, &loc);

dnovillo's avatar
 
dnovillo committed
188 189 190 191
  return gfc_finish_block (&se.pre); 
}


192 193 194 195 196 197 198 199
/* Translate an ENTRY statement.  Just adds a label for this entry point.  */
tree
gfc_trans_entry (gfc_code * code)
{
  return build1_v (LABEL_EXPR, code->ext.entry->label);
}


200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
/* Check for dependencies between INTENT(IN) and INTENT(OUT) arguments of
   elemental subroutines.  Make temporaries for output arguments if any such
   dependencies are found.  Output arguments are chosen because internal_unpack
   can be used, as is, to copy the result back to the variable.  */
static void
gfc_conv_elemental_dependencies (gfc_se * se, gfc_se * loopse,
				 gfc_symbol * sym, gfc_actual_arglist * arg)
{
  gfc_actual_arglist *arg0;
  gfc_expr *e;
  gfc_formal_arglist *formal;
  gfc_loopinfo tmp_loop;
  gfc_se parmse;
  gfc_ss *ss;
  gfc_ss_info *info;
  gfc_symbol *fsym;
  int n;
  stmtblock_t block;
  tree data;
  tree offset;
  tree size;
  tree tmp;

  if (loopse->ss == NULL)
    return;

  ss = loopse->ss;
  arg0 = arg;
  formal = sym->formal;

  /* Loop over all the arguments testing for dependencies.  */
  for (; arg != NULL; arg = arg->next, formal = formal ? formal->next : NULL)
    {
      e = arg->expr;
      if (e == NULL)
	continue;

      /* Obtain the info structure for the current argument.  */ 
      info = NULL;
      for (ss = loopse->ss; ss && ss != gfc_ss_terminator; ss = ss->next)
	{
	  if (ss->expr != e)
	    continue;
	  info = &ss->data.info;
	  break;
	}

      /* If there is a dependency, create a temporary and use it
	 instead of the variable. */
      fsym = formal ? formal->sym : NULL;
      if (e->expr_type == EXPR_VARIABLE
	    && e->rank && fsym
	    && fsym->attr.intent == INTENT_OUT
	    && gfc_check_fncall_dependency (e, INTENT_OUT, sym, arg0))
	{
	  /* Make a local loopinfo for the temporary creation, so that
	     none of the other ss->info's have to be renormalized.  */
	  gfc_init_loopinfo (&tmp_loop);
	  for (n = 0; n < info->dimen; n++)
	    {
	      tmp_loop.to[n] = loopse->loop->to[n];
	      tmp_loop.from[n] = loopse->loop->from[n];
	      tmp_loop.order[n] = loopse->loop->order[n];
	    }

	  /* Generate the temporary.  Merge the block so that the
	     declarations are put at the right binding level.  */
	  size = gfc_create_var (gfc_array_index_type, NULL);
	  data = gfc_create_var (pvoid_type_node, NULL);
	  gfc_start_block (&block);
	  tmp = gfc_typenode_for_spec (&e->ts);
	  tmp = gfc_trans_create_temp_array (&se->pre, &se->post,
					      &tmp_loop, info, tmp,
273
					      false, true, false, false);
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
	  gfc_add_modify_expr (&se->pre, size, tmp);
	  tmp = fold_convert (pvoid_type_node, info->data);
	  gfc_add_modify_expr (&se->pre, data, tmp);
	  gfc_merge_block_scope (&block);

	  /* Obtain the argument descriptor for unpacking.  */
	  gfc_init_se (&parmse, NULL);
	  parmse.want_pointer = 1;
	  gfc_conv_expr_descriptor (&parmse, e, gfc_walk_expr (e));
	  gfc_add_block_to_block (&se->pre, &parmse.pre);

	  /* Calculate the offset for the temporary.  */
	  offset = gfc_index_zero_node;
	  for (n = 0; n < info->dimen; n++)
	    {
	      tmp = gfc_conv_descriptor_stride (info->descriptor,
						gfc_rank_cst[n]);
	      tmp = fold_build2 (MULT_EXPR, gfc_array_index_type,
				 loopse->loop->from[n], tmp);
	      offset = fold_build2 (MINUS_EXPR, gfc_array_index_type,
					  offset, tmp);
	    }
	  info->offset = gfc_create_var (gfc_array_index_type, NULL);	  
	  gfc_add_modify_expr (&se->pre, info->offset, offset);

	  /* Copy the result back using unpack.  */
	  tmp = gfc_chainon_list (NULL_TREE, parmse.expr);
	  tmp = gfc_chainon_list (tmp, data);
	  tmp = build_function_call_expr (gfor_fndecl_in_unpack, tmp);
	  gfc_add_expr_to_block (&se->post, tmp);

	  gfc_add_block_to_block (&se->post, &parmse.post);
	}
    }
}


dnovillo's avatar
 
dnovillo committed
311 312 313
/* Translate the CALL statement.  Builds a call to an F95 subroutine.  */

tree
314
gfc_trans_call (gfc_code * code, bool dependency_check)
dnovillo's avatar
 
dnovillo committed
315 316
{
  gfc_se se;
317
  gfc_ss * ss;
318
  int has_alternate_specifier;
dnovillo's avatar
 
dnovillo committed
319 320 321 322 323 324

  /* A CALL starts a new block because the actual arguments may have to
     be evaluated first.  */
  gfc_init_se (&se, NULL);
  gfc_start_block (&se.pre);

pbrook's avatar
pbrook committed
325
  gcc_assert (code->resolved_sym);
dnovillo's avatar
 
dnovillo committed
326

327 328 329
  ss = gfc_ss_terminator;
  if (code->resolved_sym->attr.elemental)
    ss = gfc_walk_elemental_function_args (ss, code->ext.actual, GFC_SS_REFERENCE);
dnovillo's avatar
 
dnovillo committed
330

331 332
  /* Is not an elemental subroutine call with array valued arguments.  */
  if (ss == gfc_ss_terminator)
dnovillo's avatar
 
dnovillo committed
333
    {
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356

      /* Translate the call.  */
      has_alternate_specifier
	= gfc_conv_function_call (&se, code->resolved_sym, code->ext.actual);

      /* A subroutine without side-effect, by definition, does nothing!  */
      TREE_SIDE_EFFECTS (se.expr) = 1;

      /* Chain the pieces together and return the block.  */
      if (has_alternate_specifier)
	{
	  gfc_code *select_code;
	  gfc_symbol *sym;
	  select_code = code->next;
	  gcc_assert(select_code->op == EXEC_SELECT);
	  sym = select_code->expr->symtree->n.sym;
	  se.expr = convert (gfc_typenode_for_spec (&sym->ts), se.expr);
	  gfc_add_modify_expr (&se.pre, sym->backend_decl, se.expr);
	}
      else
	gfc_add_expr_to_block (&se.pre, se.expr);

      gfc_add_block_to_block (&se.pre, &se.post);
dnovillo's avatar
 
dnovillo committed
357
    }
358

dnovillo's avatar
 
dnovillo committed
359
  else
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
    {
      /* An elemental subroutine call with array valued arguments has
	 to be scalarized.  */
      gfc_loopinfo loop;
      stmtblock_t body;
      stmtblock_t block;
      gfc_se loopse;

      /* gfc_walk_elemental_function_args renders the ss chain in the
         reverse order to the actual argument order.  */
      ss = gfc_reverse_ss (ss);

      /* Initialize the loop.  */
      gfc_init_se (&loopse, NULL);
      gfc_init_loopinfo (&loop);
      gfc_add_ss_to_loop (&loop, ss);

      gfc_conv_ss_startstride (&loop);
      gfc_conv_loop_setup (&loop);
      gfc_mark_ss_chain_used (ss, 1);

381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
      /* Convert the arguments, checking for dependencies.  */
      gfc_copy_loopinfo_to_se (&loopse, &loop);
      loopse.ss = ss;

      /* For operator assignment, we need to do dependency checking.  
	 We also check the intent of the parameters.  */
      if (dependency_check)
	{
	  gfc_symbol *sym;
	  sym = code->resolved_sym;
	  gcc_assert (sym->formal->sym->attr.intent = INTENT_OUT);
	  gcc_assert (sym->formal->next->sym->attr.intent = INTENT_IN);
	  gfc_conv_elemental_dependencies (&se, &loopse, sym,
					   code->ext.actual);
	}

397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
      /* Generate the loop body.  */
      gfc_start_scalarized_body (&loop, &body);
      gfc_init_block (&block);

      /* Add the subroutine call to the block.  */
      gfc_conv_function_call (&loopse, code->resolved_sym, code->ext.actual);
      gfc_add_expr_to_block (&loopse.pre, loopse.expr);

      gfc_add_block_to_block (&block, &loopse.pre);
      gfc_add_block_to_block (&block, &loopse.post);

      /* Finish up the loop block and the loop.  */
      gfc_add_expr_to_block (&body, gfc_finish_block (&block));
      gfc_trans_scalarizing_loops (&loop, &body);
      gfc_add_block_to_block (&se.pre, &loop.pre);
      gfc_add_block_to_block (&se.pre, &loop.post);
413
      gfc_add_block_to_block (&se.pre, &se.post);
414 415
      gfc_cleanup_loop (&loop);
    }
dnovillo's avatar
 
dnovillo committed
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435

  return gfc_finish_block (&se.pre);
}


/* Translate the RETURN statement.  */

tree
gfc_trans_return (gfc_code * code ATTRIBUTE_UNUSED)
{
  if (code->expr)
    {
      gfc_se se;
      tree tmp;
      tree result;

      /* if code->expr is not NULL, this return statement must appear
         in a subroutine and current_fake_result_decl has already
	 been generated.  */

436
      result = gfc_get_fake_result_decl (NULL, 0);
dnovillo's avatar
 
dnovillo committed
437 438 439 440 441 442 443 444 445 446 447 448 449
      if (!result)
        {
          gfc_warning ("An alternate return at %L without a * dummy argument",
                        &code->expr->where);
          return build1_v (GOTO_EXPR, gfc_get_return_label ());
        }

      /* Start a new block for this statement.  */
      gfc_init_se (&se, NULL);
      gfc_start_block (&se.pre);

      gfc_conv_expr (&se, code->expr);

450
      tmp = build2 (MODIFY_EXPR, TREE_TYPE (result), result, se.expr);
dnovillo's avatar
 
dnovillo committed
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
      gfc_add_expr_to_block (&se.pre, tmp);

      tmp = build1_v (GOTO_EXPR, gfc_get_return_label ());
      gfc_add_expr_to_block (&se.pre, tmp);
      gfc_add_block_to_block (&se.pre, &se.post);
      return gfc_finish_block (&se.pre);
    }
  else
    return build1_v (GOTO_EXPR, gfc_get_return_label ());
}


/* Translate the PAUSE statement.  We have to translate this statement
   to a runtime library call.  */

tree
gfc_trans_pause (gfc_code * code)
{
469
  tree gfc_int4_type_node = gfc_get_int_type (4);
dnovillo's avatar
 
dnovillo committed
470 471 472 473 474 475 476 477 478 479 480 481
  gfc_se se;
  tree args;
  tree tmp;
  tree fndecl;

  /* Start a new block for this statement.  */
  gfc_init_se (&se, NULL);
  gfc_start_block (&se.pre);


  if (code->expr == NULL)
    {
482
      tmp = build_int_cst (gfc_int4_type_node, code->ext.stop_code);
dnovillo's avatar
 
dnovillo committed
483 484 485 486 487 488 489 490 491 492 493
      args = gfc_chainon_list (NULL_TREE, tmp);
      fndecl = gfor_fndecl_pause_numeric;
    }
  else
    {
      gfc_conv_expr_reference (&se, code->expr);
      args = gfc_chainon_list (NULL_TREE, se.expr);
      args = gfc_chainon_list (args, se.string_length);
      fndecl = gfor_fndecl_pause_string;
    }

494
  tmp = build_function_call_expr (fndecl, args);
dnovillo's avatar
 
dnovillo committed
495 496 497 498 499 500 501 502 503 504 505 506 507 508
  gfc_add_expr_to_block (&se.pre, tmp);

  gfc_add_block_to_block (&se.pre, &se.post);

  return gfc_finish_block (&se.pre);
}


/* Translate the STOP statement.  We have to translate this statement
   to a runtime library call.  */

tree
gfc_trans_stop (gfc_code * code)
{
509
  tree gfc_int4_type_node = gfc_get_int_type (4);
dnovillo's avatar
 
dnovillo committed
510 511 512 513 514 515 516 517 518 519 520 521
  gfc_se se;
  tree args;
  tree tmp;
  tree fndecl;

  /* Start a new block for this statement.  */
  gfc_init_se (&se, NULL);
  gfc_start_block (&se.pre);


  if (code->expr == NULL)
    {
522
      tmp = build_int_cst (gfc_int4_type_node, code->ext.stop_code);
dnovillo's avatar
 
dnovillo committed
523 524 525 526 527 528 529 530 531 532 533
      args = gfc_chainon_list (NULL_TREE, tmp);
      fndecl = gfor_fndecl_stop_numeric;
    }
  else
    {
      gfc_conv_expr_reference (&se, code->expr);
      args = gfc_chainon_list (NULL_TREE, se.expr);
      args = gfc_chainon_list (args, se.string_length);
      fndecl = gfor_fndecl_stop_string;
    }

534
  tmp = build_function_call_expr (fndecl, args);
dnovillo's avatar
 
dnovillo committed
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
  gfc_add_expr_to_block (&se.pre, tmp);

  gfc_add_block_to_block (&se.pre, &se.post);

  return gfc_finish_block (&se.pre);
}


/* Generate GENERIC for the IF construct. This function also deals with
   the simple IF statement, because the front end translates the IF
   statement into an IF construct.

   We translate:

        IF (cond) THEN
           then_clause
        ELSEIF (cond2)
           elseif_clause
        ELSE
           else_clause
        ENDIF

   into:

        pre_cond_s;
        if (cond_s)
          {
            then_clause;
          }
        else
          {
            pre_cond_s
            if (cond_s)
              {
                elseif_clause
              }
            else
              {
                else_clause;
              }
          }

   where COND_S is the simplified version of the predicate. PRE_COND_S
   are the pre side-effects produced by the translation of the
   conditional.
   We need to build the chain recursively otherwise we run into
   problems with folding incomplete statements.  */

static tree
gfc_trans_if_1 (gfc_code * code)
{
  gfc_se if_se;
  tree stmt, elsestmt;

  /* Check for an unconditional ELSE clause.  */
  if (!code->expr)
    return gfc_trans_code (code->next);

  /* Initialize a statement builder for each block. Puts in NULL_TREEs.  */
  gfc_init_se (&if_se, NULL);
  gfc_start_block (&if_se.pre);

  /* Calculate the IF condition expression.  */
  gfc_conv_expr_val (&if_se, code->expr);

  /* Translate the THEN clause.  */
  stmt = gfc_trans_code (code->next);

  /* Translate the ELSE clause.  */
  if (code->block)
    elsestmt = gfc_trans_if_1 (code->block);
  else
    elsestmt = build_empty_stmt ();

  /* Build the condition expression and add it to the condition block.  */
610
  stmt = fold_build3 (COND_EXPR, void_type_node, if_se.expr, stmt, elsestmt);
dnovillo's avatar
 
dnovillo committed
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
  
  gfc_add_expr_to_block (&if_se.pre, stmt);

  /* Finish off this statement.  */
  return gfc_finish_block (&if_se.pre);
}

tree
gfc_trans_if (gfc_code * code)
{
  /* Ignore the top EXEC_IF, it only announces an IF construct. The
     actual code we must translate is in code->block.  */

  return gfc_trans_if_1 (code->block);
}


/* Translage an arithmetic IF expression.

   IF (cond) label1, label2, label3 translates to

    if (cond <= 0)
      {
        if (cond < 0)
          goto label1;
        else // cond == 0
          goto label2;
      }
    else // cond > 0
      goto label3;
641 642 643 644 645 646 647 648

   An optimized version can be generated in case of equal labels.
   E.g., if label1 is equal to label2, we can translate it to

    if (cond <= 0)
      goto label1;
    else
      goto label3;
dnovillo's avatar
 
dnovillo committed
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
*/

tree
gfc_trans_arithmetic_if (gfc_code * code)
{
  gfc_se se;
  tree tmp;
  tree branch1;
  tree branch2;
  tree zero;

  /* Start a new block.  */
  gfc_init_se (&se, NULL);
  gfc_start_block (&se.pre);

  /* Pre-evaluate COND.  */
  gfc_conv_expr_val (&se, code->expr);

  /* Build something to compare with.  */
  zero = gfc_build_const (TREE_TYPE (se.expr), integer_zero_node);

670 671 672 673 674 675 676 677
  if (code->label->value != code->label2->value)
    {
      /* If (cond < 0) take branch1 else take branch2.
         First build jumps to the COND .LT. 0 and the COND .EQ. 0 cases.  */
      branch1 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label));
      branch2 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label2));

      if (code->label->value != code->label3->value)
678
        tmp = fold_build2 (LT_EXPR, boolean_type_node, se.expr, zero);
679
      else
680
        tmp = fold_build2 (NE_EXPR, boolean_type_node, se.expr, zero);
dnovillo's avatar
 
dnovillo committed
681

682
      branch1 = fold_build3 (COND_EXPR, void_type_node, tmp, branch1, branch2);
683 684 685
    }
  else
    branch1 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label));
dnovillo's avatar
 
dnovillo committed
686

687 688 689 690 691
  if (code->label->value != code->label3->value
      && code->label2->value != code->label3->value)
    {
      /* if (cond <= 0) take branch1 else take branch2.  */
      branch2 = build1_v (GOTO_EXPR, gfc_get_label_decl (code->label3));
692 693
      tmp = fold_build2 (LE_EXPR, boolean_type_node, se.expr, zero);
      branch1 = fold_build3 (COND_EXPR, void_type_node, tmp, branch1, branch2);
694
    }
dnovillo's avatar
 
dnovillo committed
695 696 697 698 699 700 701

  /* Append the COND_EXPR to the evaluation of COND, and return.  */
  gfc_add_expr_to_block (&se.pre, branch1);
  return gfc_finish_block (&se.pre);
}


kazu's avatar
kazu committed
702
/* Translate the simple DO construct.  This is where the loop variable has
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 756 757 758 759 760 761 762 763 764 765 766 767 768 769
   integer type and step +-1.  We can't use this in the general case
   because integer overflow and floating point errors could give incorrect
   results.
   We translate a do loop from:

   DO dovar = from, to, step
      body
   END DO

   to:

   [Evaluate loop bounds and step]
   dovar = from;
   if ((step > 0) ? (dovar <= to) : (dovar => to))
    {
      for (;;)
        {
	  body;
   cycle_label:
	  cond = (dovar == to);
	  dovar += step;
	  if (cond) goto end_label;
	}
      }
   end_label:

   This helps the optimizers by avoiding the extra induction variable
   used in the general case.  */

static tree
gfc_trans_simple_do (gfc_code * code, stmtblock_t *pblock, tree dovar,
		     tree from, tree to, tree step)
{
  stmtblock_t body;
  tree type;
  tree cond;
  tree tmp;
  tree cycle_label;
  tree exit_label;
  
  type = TREE_TYPE (dovar);

  /* Initialize the DO variable: dovar = from.  */
  gfc_add_modify_expr (pblock, dovar, from);

  /* Cycle and exit statements are implemented with gotos.  */
  cycle_label = gfc_build_label_decl (NULL_TREE);
  exit_label = gfc_build_label_decl (NULL_TREE);

  /* Put the labels where they can be found later. See gfc_trans_do().  */
  code->block->backend_decl = tree_cons (cycle_label, exit_label, NULL);

  /* Loop body.  */
  gfc_start_block (&body);

  /* Main loop body.  */
  tmp = gfc_trans_code (code->block->next);
  gfc_add_expr_to_block (&body, tmp);

  /* Label for cycle statements (if needed).  */
  if (TREE_USED (cycle_label))
    {
      tmp = build1_v (LABEL_EXPR, cycle_label);
      gfc_add_expr_to_block (&body, tmp);
    }

  /* Evaluate the loop condition.  */
770
  cond = fold_build2 (EQ_EXPR, boolean_type_node, dovar, to);
771 772 773
  cond = gfc_evaluate_now (cond, &body);

  /* Increment the loop variable.  */
774
  tmp = fold_build2 (PLUS_EXPR, type, dovar, step);
775 776 777 778 779
  gfc_add_modify_expr (&body, dovar, tmp);

  /* The loop exit.  */
  tmp = build1_v (GOTO_EXPR, exit_label);
  TREE_USED (exit_label) = 1;
780 781
  tmp = fold_build3 (COND_EXPR, void_type_node,
		     cond, tmp, build_empty_stmt ());
782 783 784 785 786 787 788 789
  gfc_add_expr_to_block (&body, tmp);

  /* Finish the loop body.  */
  tmp = gfc_finish_block (&body);
  tmp = build1_v (LOOP_EXPR, tmp);

  /* Only execute the loop if the number of iterations is positive.  */
  if (tree_int_cst_sgn (step) > 0)
790
    cond = fold_build2 (LE_EXPR, boolean_type_node, dovar, to);
791
  else
792
    cond = fold_build2 (GE_EXPR, boolean_type_node, dovar, to);
793 794
  tmp = fold_build3 (COND_EXPR, void_type_node,
		     cond, tmp, build_empty_stmt ());
795 796 797 798 799 800 801 802 803
  gfc_add_expr_to_block (pblock, tmp);

  /* Add the exit label.  */
  tmp = build1_v (LABEL_EXPR, exit_label);
  gfc_add_expr_to_block (pblock, tmp);

  return gfc_finish_block (pblock);
}

dnovillo's avatar
 
dnovillo committed
804 805 806 807
/* Translate the DO construct.  This obviously is one of the most
   important ones to get right with any compiler, but especially
   so for Fortran.

808 809 810
   We special case some loop forms as described in gfc_trans_simple_do.
   For other cases we implement them with a separate loop count,
   as described in the standard.
dnovillo's avatar
 
dnovillo committed
811 812 813 814 815 816 817 818 819

   We translate a do loop from:

   DO dovar = from, to, step
      body
   END DO

   to:

820
   [evaluate loop bounds and step]
jakub's avatar
jakub committed
821
   count = (to + step - from) / step;
822 823
   dovar = from;
   for (;;)
dnovillo's avatar
 
dnovillo committed
824 825 826
     {
       body;
cycle_label:
827 828 829
       dovar += step
       count--;
       if (count <=0) goto exit_label;
dnovillo's avatar
 
dnovillo committed
830 831 832 833
     }
exit_label:

   TODO: Large loop counts
834
   The code above assumes the loop count fits into a signed integer kind,
835
   i.e. Does not work for loop counts > 2^31 for integer(kind=4) variables
836
   We must support the full range.  */
dnovillo's avatar
 
dnovillo committed
837 838 839 840 841 842 843 844 845 846

tree
gfc_trans_do (gfc_code * code)
{
  gfc_se se;
  tree dovar;
  tree from;
  tree to;
  tree step;
  tree count;
847
  tree count_one;
dnovillo's avatar
 
dnovillo committed
848 849 850 851 852 853 854 855 856 857
  tree type;
  tree cond;
  tree cycle_label;
  tree exit_label;
  tree tmp;
  stmtblock_t block;
  stmtblock_t body;

  gfc_start_block (&block);

858
  /* Evaluate all the expressions in the iterator.  */
dnovillo's avatar
 
dnovillo committed
859 860 861 862 863 864 865
  gfc_init_se (&se, NULL);
  gfc_conv_expr_lhs (&se, code->ext.iterator->var);
  gfc_add_block_to_block (&block, &se.pre);
  dovar = se.expr;
  type = TREE_TYPE (dovar);

  gfc_init_se (&se, NULL);
866
  gfc_conv_expr_val (&se, code->ext.iterator->start);
dnovillo's avatar
 
dnovillo committed
867
  gfc_add_block_to_block (&block, &se.pre);
868
  from = gfc_evaluate_now (se.expr, &block);
dnovillo's avatar
 
dnovillo committed
869 870

  gfc_init_se (&se, NULL);
871
  gfc_conv_expr_val (&se, code->ext.iterator->end);
dnovillo's avatar
 
dnovillo committed
872
  gfc_add_block_to_block (&block, &se.pre);
873
  to = gfc_evaluate_now (se.expr, &block);
dnovillo's avatar
 
dnovillo committed
874 875

  gfc_init_se (&se, NULL);
876
  gfc_conv_expr_val (&se, code->ext.iterator->step);
dnovillo's avatar
 
dnovillo committed
877
  gfc_add_block_to_block (&block, &se.pre);
878 879 880 881 882 883 884 885
  step = gfc_evaluate_now (se.expr, &block);

  /* Special case simple loops.  */
  if (TREE_CODE (type) == INTEGER_TYPE
      && (integer_onep (step)
	|| tree_int_cst_equal (step, integer_minus_one_node)))
    return gfc_trans_simple_do (code, &block, dovar, from, to, step);
      
886
  /* Initialize loop count. This code is executed before we enter the
dnovillo's avatar
 
dnovillo committed
887 888
     loop body. We generate: count = (to + step - from) / step.  */

889 890
  tmp = fold_build2 (MINUS_EXPR, type, step, from);
  tmp = fold_build2 (PLUS_EXPR, type, to, tmp);
891 892
  if (TREE_CODE (type) == INTEGER_TYPE)
    {
893
      tmp = fold_build2 (TRUNC_DIV_EXPR, type, tmp, step);
894 895 896 897 898 899 900
      count = gfc_create_var (type, "count");
    }
  else
    {
      /* TODO: We could use the same width as the real type.
	 This would probably cause more problems that it solves
	 when we implement "long double" types.  */
901 902
      tmp = fold_build2 (RDIV_EXPR, type, tmp, step);
      tmp = fold_build1 (FIX_TRUNC_EXPR, gfc_array_index_type, tmp);
903 904
      count = gfc_create_var (gfc_array_index_type, "count");
    }
dnovillo's avatar
 
dnovillo committed
905 906
  gfc_add_modify_expr (&block, count, tmp);

907
  count_one = build_int_cst (TREE_TYPE (count), 1);
908

909
  /* Initialize the DO variable: dovar = from.  */
dnovillo's avatar
 
dnovillo committed
910 911 912 913 914 915 916 917 918 919
  gfc_add_modify_expr (&block, dovar, from);

  /* Loop body.  */
  gfc_start_block (&body);

  /* Cycle and exit statements are implemented with gotos.  */
  cycle_label = gfc_build_label_decl (NULL_TREE);
  exit_label = gfc_build_label_decl (NULL_TREE);

  /* Start with the loop condition.  Loop until count <= 0.  */
920 921
  cond = fold_build2 (LE_EXPR, boolean_type_node, count,
		      build_int_cst (TREE_TYPE (count), 0));
dnovillo's avatar
 
dnovillo committed
922 923
  tmp = build1_v (GOTO_EXPR, exit_label);
  TREE_USED (exit_label) = 1;
924 925
  tmp = fold_build3 (COND_EXPR, void_type_node,
		     cond, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
  gfc_add_expr_to_block (&body, tmp);

  /* Put these labels where they can be found later. We put the
     labels in a TREE_LIST node (because TREE_CHAIN is already
     used). cycle_label goes in TREE_PURPOSE (backend_decl), exit
     label in TREE_VALUE (backend_decl).  */

  code->block->backend_decl = tree_cons (cycle_label, exit_label, NULL);

  /* Main loop body.  */
  tmp = gfc_trans_code (code->block->next);
  gfc_add_expr_to_block (&body, tmp);

  /* Label for cycle statements (if needed).  */
  if (TREE_USED (cycle_label))
    {
      tmp = build1_v (LABEL_EXPR, cycle_label);
      gfc_add_expr_to_block (&body, tmp);
    }

  /* Increment the loop variable.  */
947
  tmp = build2 (PLUS_EXPR, type, dovar, step);
dnovillo's avatar
 
dnovillo committed
948 949 950
  gfc_add_modify_expr (&body, dovar, tmp);

  /* Decrement the loop count.  */
951
  tmp = build2 (MINUS_EXPR, TREE_TYPE (count), count, count_one);
dnovillo's avatar
 
dnovillo committed
952 953 954 955 956 957
  gfc_add_modify_expr (&body, count, tmp);

  /* End of loop body.  */
  tmp = gfc_finish_block (&body);

  /* The for loop itself.  */
958
  tmp = build1_v (LOOP_EXPR, tmp);
dnovillo's avatar
 
dnovillo committed
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
  gfc_add_expr_to_block (&block, tmp);

  /* Add the exit label.  */
  tmp = build1_v (LABEL_EXPR, exit_label);
  gfc_add_expr_to_block (&block, tmp);

  return gfc_finish_block (&block);
}


/* Translate the DO WHILE construct.

   We translate

   DO WHILE (cond)
      body
   END DO

   to:

   for ( ; ; )
     {
       pre_cond;
       if (! cond) goto exit_label;
       body;
cycle_label:
     }
exit_label:

   Because the evaluation of the exit condition `cond' may have side
   effects, we can't do much for empty loop bodies.  The backend optimizers
   should be smart enough to eliminate any dead loops.  */

tree
gfc_trans_do_while (gfc_code * code)
{
  gfc_se cond;
  tree tmp;
  tree cycle_label;
  tree exit_label;
  stmtblock_t block;

  /* Everything we build here is part of the loop body.  */
  gfc_start_block (&block);

  /* Cycle and exit statements are implemented with gotos.  */
  cycle_label = gfc_build_label_decl (NULL_TREE);
  exit_label = gfc_build_label_decl (NULL_TREE);

  /* Put the labels where they can be found later. See gfc_trans_do().  */
  code->block->backend_decl = tree_cons (cycle_label, exit_label, NULL);

  /* Create a GIMPLE version of the exit condition.  */
  gfc_init_se (&cond, NULL);
  gfc_conv_expr_val (&cond, code->expr);
  gfc_add_block_to_block (&block, &cond.pre);
1015
  cond.expr = fold_build1 (TRUTH_NOT_EXPR, boolean_type_node, cond.expr);
dnovillo's avatar
 
dnovillo committed
1016 1017 1018 1019

  /* Build "IF (! cond) GOTO exit_label".  */
  tmp = build1_v (GOTO_EXPR, exit_label);
  TREE_USED (exit_label) = 1;
1020 1021
  tmp = fold_build3 (COND_EXPR, void_type_node,
		     cond.expr, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
  gfc_add_expr_to_block (&block, tmp);

  /* The main body of the loop.  */
  tmp = gfc_trans_code (code->block->next);
  gfc_add_expr_to_block (&block, tmp);

  /* Label for cycle statements (if needed).  */
  if (TREE_USED (cycle_label))
    {
      tmp = build1_v (LABEL_EXPR, cycle_label);
      gfc_add_expr_to_block (&block, tmp);
    }

  /* End of loop body.  */
  tmp = gfc_finish_block (&block);

  gfc_init_block (&block);
  /* Build the loop.  */
1040
  tmp = build1_v (LOOP_EXPR, tmp);
dnovillo's avatar
 
dnovillo committed
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
  gfc_add_expr_to_block (&block, tmp);

  /* Add the exit label.  */
  tmp = build1_v (LABEL_EXPR, exit_label);
  gfc_add_expr_to_block (&block, tmp);

  return gfc_finish_block (&block);
}


/* Translate the SELECT CASE construct for INTEGER case expressions,
   without killing all potential optimizations.  The problem is that
   Fortran allows unbounded cases, but the back-end does not, so we
   need to intercept those before we enter the equivalent SWITCH_EXPR
   we can build.

   For example, we translate this,

   SELECT CASE (expr)
      CASE (:100,101,105:115)
	 block_1
      CASE (190:199,200:)
	 block_2
      CASE (300)
	 block_3
      CASE DEFAULT
	 block_4
   END SELECT

   to the GENERIC equivalent,

     switch (expr)
       {
	 case (minimum value for typeof(expr) ... 100:
	 case 101:
	 case 105 ... 114:
	   block1:
	   goto end_label;

	 case 200 ... (maximum value for typeof(expr):
	 case 190 ... 199:
	   block2;
	   goto end_label;

	 case 300:
	   block_3;
	   goto end_label;

	 default:
	   block_4;
	   goto end_label;
       }

     end_label:  */

static tree
gfc_trans_integer_select (gfc_code * code)
{
  gfc_code *c;
  gfc_case *cp;
  tree end_label;
  tree tmp;
  gfc_se se;
  stmtblock_t block;
  stmtblock_t body;

  gfc_start_block (&block);

  /* Calculate the switch expression.  */
  gfc_init_se (&se, NULL);
  gfc_conv_expr_val (&se, code->expr);
  gfc_add_block_to_block (&block, &se.pre);

  end_label = gfc_build_label_decl (NULL_TREE);

  gfc_init_block (&body);

  for (c = code->block; c; c = c->block)
    {
      for (cp = c->ext.case_list; cp; cp = cp->next)
	{
	  tree low, high;
          tree label;

	  /* Assume it's the default case.  */
	  low = high = NULL_TREE;

	  if (cp->low)
	    {
	      low = gfc_conv_constant_to_tree (cp->low);

	      /* If there's only a lower bound, set the high bound to the
		 maximum value of the case expression.  */
	      if (!cp->high)
		high = TYPE_MAX_VALUE (TREE_TYPE (se.expr));
	    }

	  if (cp->high)
	    {
	      /* Three cases are possible here:

		 1) There is no lower bound, e.g. CASE (:N).
		 2) There is a lower bound .NE. high bound, that is
		    a case range, e.g. CASE (N:M) where M>N (we make
		    sure that M>N during type resolution).
		 3) There is a lower bound, and it has the same value
		    as the high bound, e.g. CASE (N:N).  This is our
		    internal representation of CASE(N).

		 In the first and second case, we need to set a value for
1151
		 high.  In the third case, we don't because the GCC middle
dnovillo's avatar
 
dnovillo committed
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
		 end represents a single case value by just letting high be
		 a NULL_TREE.  We can't do that because we need to be able
		 to represent unbounded cases.  */

	      if (!cp->low
		  || (cp->low
		      && mpz_cmp (cp->low->value.integer,
				  cp->high->value.integer) != 0))
		high = gfc_conv_constant_to_tree (cp->high);

	      /* Unbounded case.  */
	      if (!cp->low)
		low = TYPE_MIN_VALUE (TREE_TYPE (se.expr));
	    }

          /* Build a label.  */
1168
          label = gfc_build_label_decl (NULL_TREE);
dnovillo's avatar
 
dnovillo committed
1169 1170 1171

	  /* Add this case label.
             Add parameter 'label', make it match GCC backend.  */
1172
	  tmp = build3 (CASE_LABEL_EXPR, void_type_node, low, high, label);
dnovillo's avatar
 
dnovillo committed
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
	  gfc_add_expr_to_block (&body, tmp);
	}

      /* Add the statements for this case.  */
      tmp = gfc_trans_code (c->next);
      gfc_add_expr_to_block (&body, tmp);

      /* Break to the end of the construct.  */
      tmp = build1_v (GOTO_EXPR, end_label);
      gfc_add_expr_to_block (&body, tmp);
    }

  tmp = gfc_finish_block (&body);
1186
  tmp = build3_v (SWITCH_EXPR, se.expr, tmp, NULL_TREE);
dnovillo's avatar
 
dnovillo committed
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
  gfc_add_expr_to_block (&block, tmp);

  tmp = build1_v (LABEL_EXPR, end_label);
  gfc_add_expr_to_block (&block, tmp);

  return gfc_finish_block (&block);
}


/* Translate the SELECT CASE construct for LOGICAL case expressions.

   There are only two cases possible here, even though the standard
   does allow three cases in a LOGICAL SELECT CASE construct: .TRUE.,
   .FALSE., and DEFAULT.

   We never generate more than two blocks here.  Instead, we always
   try to eliminate the DEFAULT case.  This way, we can translate this
   kind of SELECT construct to a simple

   if {} else {};

   expression in GENERIC.  */

static tree
gfc_trans_logical_select (gfc_code * code)
{
  gfc_code *c;
  gfc_code *t, *f, *d;
  gfc_case *cp;
  gfc_se se;
  stmtblock_t block;

  /* Assume we don't have any cases at all.  */
  t = f = d = NULL;

  /* Now see which ones we actually do have.  We can have at most two
     cases in a single case list: one for .TRUE. and one for .FALSE.
     The default case is always separate.  If the cases for .TRUE. and
     .FALSE. are in the same case list, the block for that case list
     always executed, and we don't generate code a COND_EXPR.  */
  for (c = code->block; c; c = c->block)
    {
      for (cp = c->ext.case_list; cp; cp = cp->next)
	{
	  if (cp->low)
	    {
	      if (cp->low->value.logical == 0) /* .FALSE.  */
		f = c;
	      else /* if (cp->value.logical != 0), thus .TRUE.  */
		t = c;
	    }
	  else
	    d = c;
	}
    }

  /* Start a new block.  */
  gfc_start_block (&block);

  /* Calculate the switch expression.  We always need to do this
     because it may have side effects.  */
  gfc_init_se (&se, NULL);
  gfc_conv_expr_val (&se, code->expr);
  gfc_add_block_to_block (&block, &se.pre);

  if (t == f && t != NULL)
    {
      /* Cases for .TRUE. and .FALSE. are in the same block.  Just
         translate the code for these cases, append it to the current
         block.  */
      gfc_add_expr_to_block (&block, gfc_trans_code (t->next));
    }
  else
    {
1261
      tree true_tree, false_tree, stmt;
dnovillo's avatar
 
dnovillo committed
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286

      true_tree = build_empty_stmt ();
      false_tree = build_empty_stmt ();

      /* If we have a case for .TRUE. and for .FALSE., discard the default case.
          Otherwise, if .TRUE. or .FALSE. is missing and there is a default case,
          make the missing case the default case.  */
      if (t != NULL && f != NULL)
	d = NULL;
      else if (d != NULL)
        {
	  if (t == NULL)
	    t = d;
	  else
	    f = d;
	}

      /* Translate the code for each of these blocks, and append it to
         the current block.  */
      if (t != NULL)
        true_tree = gfc_trans_code (t->next);

      if (f != NULL)
	false_tree = gfc_trans_code (f->next);

1287 1288 1289
      stmt = fold_build3 (COND_EXPR, void_type_node, se.expr,
			  true_tree, false_tree);
      gfc_add_expr_to_block (&block, stmt);
dnovillo's avatar
 
dnovillo committed
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
    }

  return gfc_finish_block (&block);
}


/* Translate the SELECT CASE construct for CHARACTER case expressions.
   Instead of generating compares and jumps, it is far simpler to
   generate a data structure describing the cases in order and call a
   library subroutine that locates the right case.
   This is particularly true because this is the only case where we
   might have to dispose of a temporary.
   The library subroutine returns a pointer to jump to or NULL if no
   branches are to be taken.  */

static tree
gfc_trans_character_select (gfc_code *code)
{
  tree init, node, end_label, tmp, type, args, *labels;
  stmtblock_t block, body;
  gfc_case *cp, *d;
  gfc_code *c;
  gfc_se se;
  int i, n;

  static tree select_struct;
  static tree ss_string1, ss_string1_len;
  static tree ss_string2, ss_string2_len;
  static tree ss_target;

  if (select_struct == NULL)
    {
1322 1323
      tree gfc_int4_type_node = gfc_get_int_type (4);

dnovillo's avatar
 
dnovillo committed
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
      select_struct = make_node (RECORD_TYPE);
      TYPE_NAME (select_struct) = get_identifier ("_jump_struct");

#undef ADD_FIELD
#define ADD_FIELD(NAME, TYPE)				\
  ss_##NAME = gfc_add_field_to_struct			\
     (&(TYPE_FIELDS (select_struct)), select_struct,	\
      get_identifier (stringize(NAME)), TYPE)

      ADD_FIELD (string1, pchar_type_node);
      ADD_FIELD (string1_len, gfc_int4_type_node);

      ADD_FIELD (string2, pchar_type_node);
      ADD_FIELD (string2_len, gfc_int4_type_node);

      ADD_FIELD (target, pvoid_type_node);
#undef ADD_FIELD

      gfc_finish_type (select_struct);
    }

  cp = code->block->ext.case_list;
  while (cp->left != NULL)
    cp = cp->left;

  n = 0;
  for (d = cp; d; d = d->right)
    d->n = n++;

  if (n != 0)
    labels = gfc_getmem (n * sizeof (tree));
  else
    labels = NULL;

  for(i = 0; i < n; i++)
    {
      labels[i] = gfc_build_label_decl (NULL_TREE);
      TREE_USED (labels[i]) = 1;
      /* TODO: The gimplifier should do this for us, but it has
         inadequacies when dealing with static initializers.  */
      FORCED_LABEL (labels[i]) = 1;
    }

  end_label = gfc_build_label_decl (NULL_TREE);

  /* Generate the body */
  gfc_start_block (&block);
  gfc_init_block (&body);

  for (c = code->block; c; c = c->block)
    {
      for (d = c->ext.case_list; d; d = d->next)
        {
1377
          tmp = build1_v (LABEL_EXPR, labels[d->n]);
dnovillo's avatar
 
dnovillo committed
1378 1379 1380 1381 1382 1383
          gfc_add_expr_to_block (&body, tmp);
        }

      tmp = gfc_trans_code (c->next);
      gfc_add_expr_to_block (&body, tmp);

1384
      tmp = build1_v (GOTO_EXPR, end_label);
dnovillo's avatar
 
dnovillo committed
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427
      gfc_add_expr_to_block (&body, tmp);
    }

  /* Generate the structure describing the branches */
  init = NULL_TREE;
  i = 0;

  for(d = cp; d; d = d->right, i++)
    {
      node = NULL_TREE;

      gfc_init_se (&se, NULL);

      if (d->low == NULL)
        {
          node = tree_cons (ss_string1, null_pointer_node, node);
          node = tree_cons (ss_string1_len, integer_zero_node, node);
        }
      else
        {
          gfc_conv_expr_reference (&se, d->low);

          node = tree_cons (ss_string1, se.expr, node);
          node = tree_cons (ss_string1_len, se.string_length, node);
        }

      if (d->high == NULL)
        {
          node = tree_cons (ss_string2, null_pointer_node, node);
          node = tree_cons (ss_string2_len, integer_zero_node, node);
        }
      else
        {
          gfc_init_se (&se, NULL);
          gfc_conv_expr_reference (&se, d->high);

          node = tree_cons (ss_string2, se.expr, node);
          node = tree_cons (ss_string2_len, se.string_length, node);
        }

      tmp = gfc_build_addr_expr (pvoid_type_node, labels[i]);
      node = tree_cons (ss_target, tmp, node);

1428
      tmp = build_constructor_from_list (select_struct, nreverse (node));
dnovillo's avatar
 
dnovillo committed
1429 1430 1431
      init = tree_cons (NULL_TREE, tmp, init);
    }

nathan's avatar
.:  
nathan committed
1432
  type = build_array_type (select_struct, build_index_type
1433
			   (build_int_cst (NULL_TREE, n - 1)));
dnovillo's avatar
 
dnovillo committed
1434

1435
  init = build_constructor_from_list (type, nreverse(init));
dnovillo's avatar
 
dnovillo committed
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
  TREE_CONSTANT (init) = 1;
  TREE_INVARIANT (init) = 1;
  TREE_STATIC (init) = 1;
  /* Create a static variable to hold the jump table.  */
  tmp = gfc_create_var (type, "jumptable");
  TREE_CONSTANT (tmp) = 1;
  TREE_INVARIANT (tmp) = 1;
  TREE_STATIC (tmp) = 1;
  DECL_INITIAL (tmp) = init;
  init = tmp;

  /* Build an argument list for the library call */
  init = gfc_build_addr_expr (pvoid_type_node, init);
  args = gfc_chainon_list (NULL_TREE, init);

1451
  tmp = build_int_cst (NULL_TREE, n);
dnovillo's avatar
 
dnovillo committed
1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
  args = gfc_chainon_list (args, tmp);

  tmp = gfc_build_addr_expr (pvoid_type_node, end_label);
  args = gfc_chainon_list (args, tmp);

  gfc_init_se (&se, NULL);
  gfc_conv_expr_reference (&se, code->expr);

  args = gfc_chainon_list (args, se.expr);
  args = gfc_chainon_list (args, se.string_length);

  gfc_add_block_to_block (&block, &se.pre);

1465
  tmp = build_function_call_expr (gfor_fndecl_select_string, args);
dnovillo's avatar
 
dnovillo committed
1466 1467 1468 1469 1470
  tmp = build1 (GOTO_EXPR, void_type_node, tmp);
  gfc_add_expr_to_block (&block, tmp);

  tmp = gfc_finish_block (&body);
  gfc_add_expr_to_block (&block, tmp);
1471
  tmp = build1_v (LABEL_EXPR, end_label);
dnovillo's avatar
 
dnovillo committed
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
  gfc_add_expr_to_block (&block, tmp);

  if (n != 0)
    gfc_free (labels);

  return gfc_finish_block (&block);
}


/* Translate the three variants of the SELECT CASE construct.

   SELECT CASEs with INTEGER case expressions can be translated to an
   equivalent GENERIC switch statement, and for LOGICAL case
   expressions we build one or two if-else compares.

   SELECT CASEs with CHARACTER case expressions are a whole different
   story, because they don't exist in GENERIC.  So we sort them and
   do a binary search at runtime.

   Fortran has no BREAK statement, and it does not allow jumps from
   one case block to another.  That makes things a lot easier for
   the optimizers.  */

tree
gfc_trans_select (gfc_code * code)
{
pbrook's avatar
pbrook committed
1498
  gcc_assert (code && code->expr);
dnovillo's avatar
 
dnovillo committed
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538

  /* Empty SELECT constructs are legal.  */
  if (code->block == NULL)
    return build_empty_stmt ();

  /* Select the correct translation function.  */
  switch (code->expr->ts.type)
    {
    case BT_LOGICAL:	return gfc_trans_logical_select (code);
    case BT_INTEGER:	return gfc_trans_integer_select (code);
    case BT_CHARACTER:	return gfc_trans_character_select (code);
    default:
      gfc_internal_error ("gfc_trans_select(): Bad type for case expr.");
      /* Not reached */
    }
}


/* Generate the loops for a FORALL block.  The normal loop format:
    count = (end - start + step) / step
    loopvar = start
    while (1)
      {
        if (count <=0 )
          goto end_of_loop
        <body>
        loopvar += step
        count --
      }
    end_of_loop:  */

static tree
gfc_trans_forall_loop (forall_info *forall_tmp, int nvar, tree body, int mask_flag)
{
  int n;
  tree tmp;
  tree cond;
  stmtblock_t block;
  tree exit_label;
  tree count;
1539
  tree var, start, end, step;
dnovillo's avatar
 
dnovillo committed
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
  iter_info *iter;

  iter = forall_tmp->this_loop;
  for (n = 0; n < nvar; n++)
    {
      var = iter->var;
      start = iter->start;
      end = iter->end;
      step = iter->step;

      exit_label = gfc_build_label_decl (NULL_TREE);
      TREE_USED (exit_label) = 1;

      /* The loop counter.  */
      count = gfc_create_var (TREE_TYPE (var), "count");

      /* The body of the loop.  */
      gfc_init_block (&block);

      /* The exit condition.  */
1560 1561
      cond = fold_build2 (LE_EXPR, boolean_type_node,
			  count, build_int_cst (TREE_TYPE (count), 0));
dnovillo's avatar
 
dnovillo committed
1562
      tmp = build1_v (GOTO_EXPR, exit_label);
1563 1564
      tmp = fold_build3 (COND_EXPR, void_type_node,
			 cond, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
1565 1566 1567 1568 1569 1570
      gfc_add_expr_to_block (&block, tmp);

      /* The main loop body.  */
      gfc_add_expr_to_block (&block, body);

      /* Increment the loop variable.  */
1571
      tmp = build2 (PLUS_EXPR, TREE_TYPE (var), var, step);
dnovillo's avatar
 
dnovillo committed
1572 1573
      gfc_add_modify_expr (&block, var, tmp);

tobi's avatar
tobi committed
1574 1575
      /* Advance to the next mask element.  Only do this for the
	 innermost loop.  */
1576 1577 1578 1579 1580 1581 1582 1583
      if (n == 0 && mask_flag && forall_tmp->mask)
	{
	  tree maskindex = forall_tmp->maskindex;
	  tmp = build2 (PLUS_EXPR, gfc_array_index_type,
			maskindex, gfc_index_one_node);
	  gfc_add_modify_expr (&block, maskindex, tmp);
	}

dnovillo's avatar
 
dnovillo committed
1584
      /* Decrement the loop counter.  */
1585
      tmp = build2 (MINUS_EXPR, TREE_TYPE (var), count, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
1586 1587 1588 1589 1590 1591 1592 1593
      gfc_add_modify_expr (&block, count, tmp);

      body = gfc_finish_block (&block);

      /* Loop var initialization.  */
      gfc_init_block (&block);
      gfc_add_modify_expr (&block, var, start);

1594 1595 1596 1597 1598 1599
      /* Initialize maskindex counter.  Only do this before the
	 outermost loop.  */
      if (n == nvar - 1 && mask_flag && forall_tmp->mask)
	gfc_add_modify_expr (&block, forall_tmp->maskindex,
			     gfc_index_zero_node);

dnovillo's avatar
 
dnovillo committed
1600
      /* Initialize the loop counter.  */
1601 1602 1603
      tmp = fold_build2 (MINUS_EXPR, TREE_TYPE (var), step, start);
      tmp = fold_build2 (PLUS_EXPR, TREE_TYPE (var), end, tmp);
      tmp = fold_build2 (TRUNC_DIV_EXPR, TREE_TYPE (var), tmp, step);
dnovillo's avatar
 
dnovillo committed
1604 1605 1606
      gfc_add_modify_expr (&block, count, tmp);

      /* The loop expression.  */
1607
      tmp = build1_v (LOOP_EXPR, body);
dnovillo's avatar
 
dnovillo committed
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
      gfc_add_expr_to_block (&block, tmp);

      /* The exit label.  */
      tmp = build1_v (LABEL_EXPR, exit_label);
      gfc_add_expr_to_block (&block, tmp);

      body = gfc_finish_block (&block);
      iter = iter->next;
    }
  return body;
}


/* Generate the body and loops according to MASK_FLAG and NEST_FLAG.
1622
   if MASK_FLAG is nonzero, the body is controlled by maskes in forall
dnovillo's avatar
 
dnovillo committed
1623
   nest, otherwise, the body is not controlled by maskes.
1624
   if NEST_FLAG is nonzero, generate loops for nested forall, otherwise,
dnovillo's avatar
 
dnovillo committed
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
   only generate loops for the current forall level.  */

static tree
gfc_trans_nested_forall_loop (forall_info * nested_forall_info, tree body,
                              int mask_flag, int nest_flag)
{
  tree tmp;
  int nvar;
  forall_info *forall_tmp;
  tree pmask, mask, maskindex;

  forall_tmp = nested_forall_info;
  /* Generate loops for nested forall.  */
  if (nest_flag)
    {
      while (forall_tmp->next_nest != NULL)
        forall_tmp = forall_tmp->next_nest;
      while (forall_tmp != NULL)
        {
          /* Generate body with masks' control.  */
          if (mask_flag)
            {
              pmask = forall_tmp->pmask;
              mask = forall_tmp->mask;
              maskindex = forall_tmp->maskindex;

              if (mask)
                {
1653
                  /* If a mask was specified make the assignment conditional.  */
dnovillo's avatar
 
dnovillo committed
1654
                  if (pmask)
1655
		    tmp = build_fold_indirect_ref (mask);
dnovillo's avatar
 
dnovillo committed
1656 1657 1658 1659
                  else
                    tmp = mask;
                  tmp = gfc_build_array_ref (tmp, maskindex);

1660
                  body = build3_v (COND_EXPR, tmp, body, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
                }
            }
          nvar = forall_tmp->nvar;
          body = gfc_trans_forall_loop (forall_tmp, nvar, body, mask_flag);
          forall_tmp = forall_tmp->outer;
        }
    }
  else
    {
      nvar = forall_tmp->nvar;
      body = gfc_trans_forall_loop (forall_tmp, nvar, body, mask_flag);
    }

  return body;
}


/* Allocate data for holding a temporary array.  Returns either a local
   temporary array or a pointer variable.  */

static tree
gfc_do_allocate (tree bytesize, tree size, tree * pdata, stmtblock_t * pblock,
                 tree elem_type)
{
  tree tmpvar;
  tree type;
  tree tmp;
  tree args;

  if (INTEGER_CST_P (size))
    {
1692 1693
      tmp = fold_build2 (MINUS_EXPR, gfc_array_index_type, size,
			 gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
1694 1695 1696 1697
    }
  else
    tmp = NULL_TREE;

1698
  type = build_range_type (gfc_array_index_type, gfc_index_zero_node, tmp);
dnovillo's avatar
 
dnovillo committed
1699 1700 1701
  type = build_array_type (elem_type, type);
  if (gfc_can_put_var_on_stack (bytesize))
    {
pbrook's avatar
pbrook committed
1702
      gcc_assert (INTEGER_CST_P (size));
dnovillo's avatar
 
dnovillo committed
1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
      tmpvar = gfc_create_var (type, "temp");
      *pdata = NULL_TREE;
    }
  else
    {
      tmpvar = gfc_create_var (build_pointer_type (type), "temp");
      *pdata = convert (pvoid_type_node, tmpvar);

      args = gfc_chainon_list (NULL_TREE, bytesize);
      if (gfc_index_integer_kind == 4)
	tmp = gfor_fndecl_internal_malloc;
      else if (gfc_index_integer_kind == 8)
	tmp = gfor_fndecl_internal_malloc64;
      else
pbrook's avatar
pbrook committed
1717
	gcc_unreachable ();
1718
      tmp = build_function_call_expr (tmp, args);
dnovillo's avatar
 
dnovillo committed
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
      tmp = convert (TREE_TYPE (tmpvar), tmp);
      gfc_add_modify_expr (pblock, tmpvar, tmp);
    }
  return tmpvar;
}


/* Generate codes to copy the temporary to the actual lhs.  */

static tree
jakub's avatar
jakub committed
1729
generate_loop_for_temp_to_lhs (gfc_expr *expr, tree tmp1, tree count3,
sayle's avatar
 
sayle committed
1730
			       tree count1, tree wheremask, bool invert)
dnovillo's avatar
 
dnovillo committed
1731 1732 1733 1734 1735
{
  gfc_ss *lss;
  gfc_se lse, rse;
  stmtblock_t block, body;
  gfc_loopinfo loop1;
sayle's avatar
 
sayle committed
1736
  tree tmp;
dnovillo's avatar
 
dnovillo committed
1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
  tree wheremaskexpr;

  /* Walk the lhs.  */
  lss = gfc_walk_expr (expr);

  if (lss == gfc_ss_terminator)
    {
      gfc_start_block (&block);

      gfc_init_se (&lse, NULL);

      /* Translate the expression.  */
      gfc_conv_expr (&lse, expr);

      /* Form the expression for the temporary.  */
      tmp = gfc_build_array_ref (tmp1, count1);

      /* Use the scalar assignment as is.  */
      gfc_add_block_to_block (&block, &lse.pre);
      gfc_add_modify_expr (&block, lse.expr, tmp);
      gfc_add_block_to_block (&block, &lse.post);

      /* Increment the count1.  */
jakub's avatar
jakub committed
1760 1761
      tmp = fold_build2 (PLUS_EXPR, TREE_TYPE (count1), count1,
			 gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
1762
      gfc_add_modify_expr (&block, count1, tmp);
jakub's avatar
jakub committed
1763

dnovillo's avatar
 
dnovillo committed
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
      tmp = gfc_finish_block (&block);
    }
  else
    {
      gfc_start_block (&block);

      gfc_init_loopinfo (&loop1);
      gfc_init_se (&rse, NULL);
      gfc_init_se (&lse, NULL);

      /* Associate the lss with the loop.  */
      gfc_add_ss_to_loop (&loop1, lss);

      /* Calculate the bounds of the scalarization.  */
      gfc_conv_ss_startstride (&loop1);
      /* Setup the scalarizing loops.  */
      gfc_conv_loop_setup (&loop1);

      gfc_mark_ss_chain_used (lss, 1);

      /* Start the scalarized loop body.  */
      gfc_start_scalarized_body (&loop1, &body);

      /* Setup the gfc_se structures.  */
      gfc_copy_loopinfo_to_se (&lse, &loop1);
      lse.ss = lss;

      /* Form the expression of the temporary.  */
      if (lss != gfc_ss_terminator)
jakub's avatar
jakub committed
1793
	rse.expr = gfc_build_array_ref (tmp1, count1);
dnovillo's avatar
 
dnovillo committed
1794 1795 1796 1797 1798 1799
      /* Translate expr.  */
      gfc_conv_expr (&lse, expr);

      /* Use the scalar assignment.  */
      tmp = gfc_trans_scalar_assign (&lse, &rse, expr->ts.type);

sayle's avatar
 
sayle committed
1800 1801 1802 1803 1804 1805 1806 1807 1808 1809
      /* Form the mask expression according to the mask tree list.  */
      if (wheremask)
	{
	  wheremaskexpr = gfc_build_array_ref (wheremask, count3);
	  if (invert)
	    wheremaskexpr = fold_build1 (TRUTH_NOT_EXPR,
					 TREE_TYPE (wheremaskexpr),
					 wheremaskexpr);
	  tmp = fold_build3 (COND_EXPR, void_type_node,
			     wheremaskexpr, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
1810 1811 1812 1813
       }

      gfc_add_expr_to_block (&body, tmp);

jakub's avatar
jakub committed
1814
      /* Increment count1.  */
1815
      tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
jakub's avatar
jakub committed
1816 1817
			 count1, gfc_index_one_node);
      gfc_add_modify_expr (&body, count1, tmp);
dnovillo's avatar
 
dnovillo committed
1818 1819 1820

      /* Increment count3.  */
      if (count3)
jakub's avatar
jakub committed
1821 1822
	{
	  tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
1823
			     count3, gfc_index_one_node);
jakub's avatar
jakub committed
1824 1825
	  gfc_add_modify_expr (&body, count3, tmp);
	}
dnovillo's avatar
 
dnovillo committed
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838

      /* Generate the copying loops.  */
      gfc_trans_scalarizing_loops (&loop1, &body);
      gfc_add_block_to_block (&block, &loop1.pre);
      gfc_add_block_to_block (&block, &loop1.post);
      gfc_cleanup_loop (&loop1);

      tmp = gfc_finish_block (&block);
    }
  return tmp;
}


sayle's avatar
 
sayle committed
1839 1840 1841 1842
/* Generate codes to copy rhs to the temporary. TMP1 is the address of
   temporary, LSS and RSS are formed in function compute_inner_temp_size(),
   and should not be freed.  WHEREMASK is the conditional execution mask
   whose sense may be inverted by INVERT.  */
dnovillo's avatar
 
dnovillo committed
1843 1844

static tree
jakub's avatar
jakub committed
1845 1846
generate_loop_for_rhs_to_temp (gfc_expr *expr2, tree tmp1, tree count3,
			       tree count1, gfc_ss *lss, gfc_ss *rss,
sayle's avatar
 
sayle committed
1847
			       tree wheremask, bool invert)
dnovillo's avatar
 
dnovillo committed
1848 1849 1850 1851 1852
{
  stmtblock_t block, body1;
  gfc_loopinfo loop;
  gfc_se lse;
  gfc_se rse;
sayle's avatar
 
sayle committed
1853
  tree tmp;
dnovillo's avatar
 
dnovillo committed
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
  tree wheremaskexpr;

  gfc_start_block (&block);

  gfc_init_se (&rse, NULL);
  gfc_init_se (&lse, NULL);

  if (lss == gfc_ss_terminator)
    {
      gfc_init_block (&body1);
      gfc_conv_expr (&rse, expr2);
      lse.expr = gfc_build_array_ref (tmp1, count1);
    }
  else
    {
1869
      /* Initialize the loop.  */
dnovillo's avatar
 
dnovillo committed
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888
      gfc_init_loopinfo (&loop);

      /* We may need LSS to determine the shape of the expression.  */
      gfc_add_ss_to_loop (&loop, lss);
      gfc_add_ss_to_loop (&loop, rss);

      gfc_conv_ss_startstride (&loop);
      gfc_conv_loop_setup (&loop);

      gfc_mark_ss_chain_used (rss, 1);
      /* Start the loop body.  */
      gfc_start_scalarized_body (&loop, &body1);

      /* Translate the expression.  */
      gfc_copy_loopinfo_to_se (&rse, &loop);
      rse.ss = rss;
      gfc_conv_expr (&rse, expr2);

      /* Form the expression of the temporary.  */
jakub's avatar
jakub committed
1889
      lse.expr = gfc_build_array_ref (tmp1, count1);
dnovillo's avatar
 
dnovillo committed
1890 1891 1892 1893 1894 1895 1896 1897
    }

  /* Use the scalar assignment.  */
  tmp = gfc_trans_scalar_assign (&lse, &rse, expr2->ts.type);

  /* Form the mask expression according to the mask tree list.  */
  if (wheremask)
    {
1898
      wheremaskexpr = gfc_build_array_ref (wheremask, count3);
sayle's avatar
 
sayle committed
1899 1900 1901 1902
      if (invert)
	wheremaskexpr = fold_build1 (TRUTH_NOT_EXPR,
				     TREE_TYPE (wheremaskexpr),
				     wheremaskexpr);
1903 1904
      tmp = fold_build3 (COND_EXPR, void_type_node,
			 wheremaskexpr, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
1905 1906 1907 1908 1909 1910 1911
    }

  gfc_add_expr_to_block (&body1, tmp);

  if (lss == gfc_ss_terminator)
    {
      gfc_add_block_to_block (&block, &body1);
jakub's avatar
jakub committed
1912 1913 1914 1915 1916

      /* Increment count1.  */
      tmp = fold_build2 (PLUS_EXPR, TREE_TYPE (count1), count1,
			 gfc_index_one_node);
      gfc_add_modify_expr (&block, count1, tmp);
dnovillo's avatar
 
dnovillo committed
1917 1918 1919
    }
  else
    {
jakub's avatar
jakub committed
1920
      /* Increment count1.  */
1921
      tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
jakub's avatar
jakub committed
1922 1923
			 count1, gfc_index_one_node);
      gfc_add_modify_expr (&body1, count1, tmp);
dnovillo's avatar
 
dnovillo committed
1924 1925 1926

      /* Increment count3.  */
      if (count3)
jakub's avatar
jakub committed
1927 1928
	{
	  tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
1929
			     count3, gfc_index_one_node);
jakub's avatar
jakub committed
1930 1931
	  gfc_add_modify_expr (&body1, count3, tmp);
	}
dnovillo's avatar
 
dnovillo committed
1932 1933 1934 1935 1936 1937 1938 1939 1940

      /* Generate the copying loops.  */
      gfc_trans_scalarizing_loops (&loop, &body1);

      gfc_add_block_to_block (&block, &loop.pre);
      gfc_add_block_to_block (&block, &loop.post);

      gfc_cleanup_loop (&loop);
      /* TODO: Reuse lss and rss when copying temp->lhs.  Need to be careful
jakub's avatar
jakub committed
1941
	 as tree nodes in SS may not be valid in different scope.  */
dnovillo's avatar
 
dnovillo committed
1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964
    }

  tmp = gfc_finish_block (&block);
  return tmp;
}


/* Calculate the size of temporary needed in the assignment inside forall.
   LSS and RSS are filled in this function.  */

static tree
compute_inner_temp_size (gfc_expr *expr1, gfc_expr *expr2,
			 stmtblock_t * pblock,
                         gfc_ss **lss, gfc_ss **rss)
{
  gfc_loopinfo loop;
  tree size;
  int i;
  tree tmp;

  *lss = gfc_walk_expr (expr1);
  *rss = NULL;

1965
  size = gfc_index_one_node;
dnovillo's avatar
 
dnovillo committed
1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997
  if (*lss != gfc_ss_terminator)
    {
      gfc_init_loopinfo (&loop);

      /* Walk the RHS of the expression.  */
      *rss = gfc_walk_expr (expr2);
      if (*rss == gfc_ss_terminator)
        {
          /* The rhs is scalar.  Add a ss for the expression.  */
          *rss = gfc_get_ss ();
          (*rss)->next = gfc_ss_terminator;
          (*rss)->type = GFC_SS_SCALAR;
          (*rss)->expr = expr2;
        }

      /* Associate the SS with the loop.  */
      gfc_add_ss_to_loop (&loop, *lss);
      /* We don't actually need to add the rhs at this point, but it might
         make guessing the loop bounds a bit easier.  */
      gfc_add_ss_to_loop (&loop, *rss);

      /* We only want the shape of the expression, not rest of the junk
         generated by the scalarizer.  */
      loop.array_parameter = 1;

      /* Calculate the bounds of the scalarization.  */
      gfc_conv_ss_startstride (&loop);
      gfc_conv_loop_setup (&loop);

      /* Figure out how many elements we need.  */
      for (i = 0; i < loop.dimen; i++)
        {
1998 1999 2000 2001 2002
	  tmp = fold_build2 (MINUS_EXPR, gfc_array_index_type,
			     gfc_index_one_node, loop.from[i]);
          tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			     tmp, loop.to[i]);
          size = fold_build2 (MULT_EXPR, gfc_array_index_type, size, tmp);
dnovillo's avatar
 
dnovillo committed
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
        }
      gfc_add_block_to_block (pblock, &loop.pre);
      size = gfc_evaluate_now (size, pblock);
      gfc_add_block_to_block (pblock, &loop.post);

      /* TODO: write a function that cleans up a loopinfo without freeing
         the SS chains.  Currently a NOP.  */
    }

  return size;
}


/* Calculate the overall iterator number of the nested forall construct.  */

static tree
compute_overall_iter_number (forall_info *nested_forall_info, tree inner_size,
jakub's avatar
jakub committed
2020
			     stmtblock_t *inner_size_body, stmtblock_t *block)
dnovillo's avatar
 
dnovillo committed
2021 2022 2023 2024 2025 2026
{
  tree tmp, number;
  stmtblock_t body;

  /* TODO: optimizing the computing process.  */
  number = gfc_create_var (gfc_array_index_type, "num");
2027
  gfc_add_modify_expr (block, number, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2028 2029

  gfc_start_block (&body);
jakub's avatar
jakub committed
2030 2031
  if (inner_size_body)
    gfc_add_block_to_block (&body, inner_size_body);
dnovillo's avatar
 
dnovillo committed
2032
  if (nested_forall_info)
2033 2034
    tmp = build2 (PLUS_EXPR, gfc_array_index_type, number,
		  inner_size);
dnovillo's avatar
 
dnovillo committed
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049
  else
    tmp = inner_size;
  gfc_add_modify_expr (&body, number, tmp);
  tmp = gfc_finish_block (&body);

  /* Generate loops.  */
  if (nested_forall_info != NULL)
    tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 0, 1);

  gfc_add_expr_to_block (block, tmp);

  return number;
}


jakub's avatar
jakub committed
2050 2051
/* Allocate temporary for forall construct.  SIZE is the size of temporary
   needed.  PTEMP1 is returned for space free.  */
dnovillo's avatar
 
dnovillo committed
2052 2053

static tree
jakub's avatar
jakub committed
2054 2055
allocate_temp_for_forall_nest_1 (tree type, tree size, stmtblock_t * block,
				 tree * ptemp1)
dnovillo's avatar
 
dnovillo committed
2056 2057 2058 2059
{
  tree unit;
  tree temp1;
  tree tmp;
jakub's avatar
jakub committed
2060
  tree bytesize;
dnovillo's avatar
 
dnovillo committed
2061 2062

  unit = TYPE_SIZE_UNIT (type);
2063
  bytesize = fold_build2 (MULT_EXPR, gfc_array_index_type, size, unit);
dnovillo's avatar
 
dnovillo committed
2064 2065 2066 2067 2068

  *ptemp1 = NULL;
  temp1 = gfc_do_allocate (bytesize, size, ptemp1, block, type);

  if (*ptemp1)
2069
    tmp = build_fold_indirect_ref (temp1);
dnovillo's avatar
 
dnovillo committed
2070 2071 2072 2073 2074 2075 2076
  else
    tmp = temp1;

  return tmp;
}


jakub's avatar
jakub committed
2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
/* Allocate temporary for forall construct according to the information in
   nested_forall_info.  INNER_SIZE is the size of temporary needed in the
   assignment inside forall.  PTEMP1 is returned for space free.  */

static tree
allocate_temp_for_forall_nest (forall_info * nested_forall_info, tree type,
			       tree inner_size, stmtblock_t * inner_size_body,
			       stmtblock_t * block, tree * ptemp1)
{
  tree size;

  /* Calculate the total size of temporary needed in forall construct.  */
  size = compute_overall_iter_number (nested_forall_info, inner_size,
				      inner_size_body, block);

  return allocate_temp_for_forall_nest_1 (type, size, block, ptemp1);
}


/* Handle assignments inside forall which need temporary.

    forall (i=start:end:stride; maskexpr)
      e<i> = f<i>
    end forall
   (where e,f<i> are arbitrary expressions possibly involving i
    and there is a dependency between e<i> and f<i>)
   Translates to:
    masktmp(:) = maskexpr(:)

    maskindex = 0;
    count1 = 0;
    num = 0;
    for (i = start; i <= end; i += stride)
      num += SIZE (f<i>)
    count1 = 0;
    ALLOCATE (tmp(num))
    for (i = start; i <= end; i += stride)
      {
	if (masktmp[maskindex++])
	  tmp[count1++] = f<i>
      }
    maskindex = 0;
    count1 = 0;
    for (i = start; i <= end; i += stride)
      {
	if (masktmp[maskindex++])
	  e<i> = tmp[count1++]
      }
    DEALLOCATE (tmp)
  */
dnovillo's avatar
 
dnovillo committed
2127
static void
sayle's avatar
 
sayle committed
2128 2129
gfc_trans_assign_need_temp (gfc_expr * expr1, gfc_expr * expr2,
			    tree wheremask, bool invert,
dnovillo's avatar
 
dnovillo committed
2130 2131 2132 2133 2134 2135
                            forall_info * nested_forall_info,
                            stmtblock_t * block)
{
  tree type;
  tree inner_size;
  gfc_ss *lss, *rss;
jakub's avatar
jakub committed
2136
  tree count, count1;
dnovillo's avatar
 
dnovillo committed
2137 2138
  tree tmp, tmp1;
  tree ptemp1;
jakub's avatar
jakub committed
2139
  stmtblock_t inner_size_body;
dnovillo's avatar
 
dnovillo committed
2140

jakub's avatar
jakub committed
2141 2142
  /* Create vars. count1 is the current iterator number of the nested
     forall.  */
dnovillo's avatar
 
dnovillo committed
2143 2144 2145 2146 2147 2148
  count1 = gfc_create_var (gfc_array_index_type, "count1");

  /* Count is the wheremask index.  */
  if (wheremask)
    {
      count = gfc_create_var (gfc_array_index_type, "count");
2149
      gfc_add_modify_expr (block, count, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2150 2151 2152 2153 2154
    }
  else
    count = NULL;

  /* Initialize count1.  */
2155
  gfc_add_modify_expr (block, count1, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2156 2157 2158

  /* Calculate the size of temporary needed in the assignment. Return loop, lss
     and rss which are used in function generate_loop_for_rhs_to_temp().  */
jakub's avatar
jakub committed
2159 2160 2161
  gfc_init_block (&inner_size_body);
  inner_size = compute_inner_temp_size (expr1, expr2, &inner_size_body,
					&lss, &rss);
dnovillo's avatar
 
dnovillo committed
2162 2163 2164 2165 2166

  /* The type of LHS. Used in function allocate_temp_for_forall_nest */
  type = gfc_typenode_for_spec (&expr1->ts);

  /* Allocate temporary for nested forall construct according to the
2167
     information in nested_forall_info and inner_size.  */
jakub's avatar
jakub committed
2168 2169
  tmp1 = allocate_temp_for_forall_nest (nested_forall_info, type, inner_size,
					&inner_size_body, block, &ptemp1);
dnovillo's avatar
 
dnovillo committed
2170 2171

  /* Generate codes to copy rhs to the temporary .  */
jakub's avatar
jakub committed
2172
  tmp = generate_loop_for_rhs_to_temp (expr2, tmp1, count, count1, lss, rss,
sayle's avatar
 
sayle committed
2173
				       wheremask, invert);
dnovillo's avatar
 
dnovillo committed
2174

2175
  /* Generate body and loops according to the information in
dnovillo's avatar
 
dnovillo committed
2176 2177 2178 2179 2180
     nested_forall_info.  */
  tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1, 1);
  gfc_add_expr_to_block (block, tmp);

  /* Reset count1.  */
2181
  gfc_add_modify_expr (block, count1, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2182 2183 2184

  /* Reset count.  */
  if (wheremask)
2185
    gfc_add_modify_expr (block, count, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2186 2187

  /* Generate codes to copy the temporary to lhs.  */
sayle's avatar
 
sayle committed
2188 2189
  tmp = generate_loop_for_temp_to_lhs (expr1, tmp1, count, count1,
				       wheremask, invert);
dnovillo's avatar
 
dnovillo committed
2190

2191
  /* Generate body and loops according to the information in
dnovillo's avatar
 
dnovillo committed
2192 2193 2194 2195 2196 2197 2198 2199
     nested_forall_info.  */
  tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1, 1);
  gfc_add_expr_to_block (block, tmp);

  if (ptemp1)
    {
      /* Free the temporary.  */
      tmp = gfc_chainon_list (NULL_TREE, ptemp1);
2200
      tmp = build_function_call_expr (gfor_fndecl_internal_free, tmp);
dnovillo's avatar
 
dnovillo committed
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
      gfc_add_expr_to_block (block, tmp);
    }
}


/* Translate pointer assignment inside FORALL which need temporary.  */

static void
gfc_trans_pointer_assign_need_temp (gfc_expr * expr1, gfc_expr * expr2,
                                    forall_info * nested_forall_info,
                                    stmtblock_t * block)
{
  tree type;
  tree inner_size;
  gfc_ss *lss, *rss;
  gfc_se lse;
  gfc_se rse;
  gfc_ss_info *info;
  gfc_loopinfo loop;
  tree desc;
  tree parm;
  tree parmtype;
  stmtblock_t body;
  tree count;
  tree tmp, tmp1, ptemp1;

  count = gfc_create_var (gfc_array_index_type, "count");
2228
  gfc_add_modify_expr (block, count, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239

  inner_size = integer_one_node;
  lss = gfc_walk_expr (expr1);
  rss = gfc_walk_expr (expr2);
  if (lss == gfc_ss_terminator)
    {
      type = gfc_typenode_for_spec (&expr1->ts);
      type = build_pointer_type (type);

      /* Allocate temporary for nested forall construct according to the
         information in nested_forall_info and inner_size.  */
jakub's avatar
jakub committed
2240 2241
      tmp1 = allocate_temp_for_forall_nest (nested_forall_info, type,
					    inner_size, NULL, block, &ptemp1);
dnovillo's avatar
 
dnovillo committed
2242 2243 2244 2245 2246 2247 2248
      gfc_start_block (&body);
      gfc_init_se (&lse, NULL);
      lse.expr = gfc_build_array_ref (tmp1, count);
      gfc_init_se (&rse, NULL);
      rse.want_pointer = 1;
      gfc_conv_expr (&rse, expr2);
      gfc_add_block_to_block (&body, &rse.pre);
2249 2250
      gfc_add_modify_expr (&body, lse.expr,
			   fold_convert (TREE_TYPE (lse.expr), rse.expr));
dnovillo's avatar
 
dnovillo committed
2251 2252 2253
      gfc_add_block_to_block (&body, &rse.post);

      /* Increment count.  */
2254 2255
      tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			 count, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2256 2257 2258 2259
      gfc_add_modify_expr (&body, count, tmp);

      tmp = gfc_finish_block (&body);

2260
      /* Generate body and loops according to the information in
dnovillo's avatar
 
dnovillo committed
2261 2262 2263 2264 2265
         nested_forall_info.  */
      tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1, 1);
      gfc_add_expr_to_block (block, tmp);

      /* Reset count.  */
2266
      gfc_add_modify_expr (block, count, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277

      gfc_start_block (&body);
      gfc_init_se (&lse, NULL);
      gfc_init_se (&rse, NULL);
      rse.expr = gfc_build_array_ref (tmp1, count);
      lse.want_pointer = 1;
      gfc_conv_expr (&lse, expr1);
      gfc_add_block_to_block (&body, &lse.pre);
      gfc_add_modify_expr (&body, lse.expr, rse.expr);
      gfc_add_block_to_block (&body, &lse.post);
      /* Increment count.  */
2278 2279
      tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			 count, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2280 2281 2282
      gfc_add_modify_expr (&body, count, tmp);
      tmp = gfc_finish_block (&body);

2283
      /* Generate body and loops according to the information in
dnovillo's avatar
 
dnovillo committed
2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
         nested_forall_info.  */
      tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1, 1);
      gfc_add_expr_to_block (block, tmp);
    }
  else
    {
      gfc_init_loopinfo (&loop);

      /* Associate the SS with the loop.  */
      gfc_add_ss_to_loop (&loop, rss);

      /* Setup the scalarizing loops and bounds.  */
      gfc_conv_ss_startstride (&loop);

      gfc_conv_loop_setup (&loop);

      info = &rss->data.info;
      desc = info->descriptor;

      /* Make a new descriptor.  */
      parmtype = gfc_get_element_type (TREE_TYPE (desc));
      parmtype = gfc_get_array_type_bounds (parmtype, loop.dimen,
                                            loop.from, loop.to, 1);

      /* Allocate temporary for nested forall construct.  */
      tmp1 = allocate_temp_for_forall_nest (nested_forall_info, parmtype,
jakub's avatar
jakub committed
2310
					    inner_size, NULL, block, &ptemp1);
dnovillo's avatar
 
dnovillo committed
2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
      gfc_start_block (&body);
      gfc_init_se (&lse, NULL);
      lse.expr = gfc_build_array_ref (tmp1, count);
      lse.direct_byref = 1;
      rss = gfc_walk_expr (expr2);
      gfc_conv_expr_descriptor (&lse, expr2, rss);

      gfc_add_block_to_block (&body, &lse.pre);
      gfc_add_block_to_block (&body, &lse.post);

      /* Increment count.  */
2322 2323
      tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			 count, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2324 2325 2326 2327
      gfc_add_modify_expr (&body, count, tmp);

      tmp = gfc_finish_block (&body);

2328
      /* Generate body and loops according to the information in
dnovillo's avatar
 
dnovillo committed
2329 2330 2331 2332 2333
         nested_forall_info.  */
      tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1, 1);
      gfc_add_expr_to_block (block, tmp);

      /* Reset count.  */
2334
      gfc_add_modify_expr (block, count, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345

      parm = gfc_build_array_ref (tmp1, count);
      lss = gfc_walk_expr (expr1);
      gfc_init_se (&lse, NULL);
      gfc_conv_expr_descriptor (&lse, expr1, lss);
      gfc_add_modify_expr (&lse.pre, lse.expr, parm);
      gfc_start_block (&body);
      gfc_add_block_to_block (&body, &lse.pre);
      gfc_add_block_to_block (&body, &lse.post);

      /* Increment count.  */
2346 2347
      tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			 count, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358
      gfc_add_modify_expr (&body, count, tmp);

      tmp = gfc_finish_block (&body);

      tmp = gfc_trans_nested_forall_loop (nested_forall_info, tmp, 1, 1);
      gfc_add_expr_to_block (block, tmp);
    }
  /* Free the temporary.  */
  if (ptemp1)
    {
      tmp = gfc_chainon_list (NULL_TREE, ptemp1);
2359
      tmp = build_function_call_expr (gfor_fndecl_internal_free, tmp);
dnovillo's avatar
 
dnovillo committed
2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377
      gfc_add_expr_to_block (block, tmp);
    }
}


/* FORALL and WHERE statements are really nasty, especially when you nest
   them. All the rhs of a forall assignment must be evaluated before the
   actual assignments are performed. Presumably this also applies to all the
   assignments in an inner where statement.  */

/* Generate code for a FORALL statement.  Any temporaries are allocated as a
   linear array, relying on the fact that we process in the same order in all
   loops.

    forall (i=start:end:stride; maskexpr)
      e<i> = f<i>
      g<i> = h<i>
    end forall
2378
   (where e,f,g,h<i> are arbitrary expressions possibly involving i)
dnovillo's avatar
 
dnovillo committed
2379
   Translates to:
jakub's avatar
jakub committed
2380
    count = ((end + 1 - start) / stride)
dnovillo's avatar
 
dnovillo committed
2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392
    masktmp(:) = maskexpr(:)

    maskindex = 0;
    for (i = start; i <= end; i += stride)
      {
        if (masktmp[maskindex++])
          e<i> = f<i>
      }
    maskindex = 0;
    for (i = start; i <= end; i += stride)
      {
        if (masktmp[maskindex++])
2393
          g<i> = h<i>
dnovillo's avatar
 
dnovillo committed
2394 2395 2396 2397 2398
      }

    Note that this code only works when there are no dependencies.
    Forall loop with array assignments and data dependencies are a real pain,
    because the size of the temporary cannot always be determined before the
2399
    loop is executed.  This problem is compounded by the presence of nested
dnovillo's avatar
 
dnovillo committed
2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428
    FORALL constructs.
 */

static tree
gfc_trans_forall_1 (gfc_code * code, forall_info * nested_forall_info)
{
  stmtblock_t block;
  stmtblock_t body;
  tree *var;
  tree *start;
  tree *end;
  tree *step;
  gfc_expr **varexpr;
  tree tmp;
  tree assign;
  tree size;
  tree bytesize;
  tree tmpvar;
  tree sizevar;
  tree lenvar;
  tree maskindex;
  tree mask;
  tree pmask;
  int n;
  int nvar;
  int need_temp;
  gfc_forall_iterator *fa;
  gfc_se se;
  gfc_code *c;
pbrook's avatar
pbrook committed
2429
  gfc_saved_var *saved_vars;
dnovillo's avatar
 
dnovillo committed
2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446
  iter_info *this_forall, *iter_tmp;
  forall_info *info, *forall_tmp;

  gfc_start_block (&block);

  n = 0;
  /* Count the FORALL index number.  */
  for (fa = code->ext.forall_iterator; fa; fa = fa->next)
    n++;
  nvar = n;

  /* Allocate the space for var, start, end, step, varexpr.  */
  var = (tree *) gfc_getmem (nvar * sizeof (tree));
  start = (tree *) gfc_getmem (nvar * sizeof (tree));
  end = (tree *) gfc_getmem (nvar * sizeof (tree));
  step = (tree *) gfc_getmem (nvar * sizeof (tree));
  varexpr = (gfc_expr **) gfc_getmem (nvar * sizeof (gfc_expr *));
pbrook's avatar
pbrook committed
2447
  saved_vars = (gfc_saved_var *) gfc_getmem (nvar * sizeof (gfc_saved_var));
dnovillo's avatar
 
dnovillo committed
2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461

  /* Allocate the space for info.  */
  info = (forall_info *) gfc_getmem (sizeof (forall_info));
  n = 0;
  for (fa = code->ext.forall_iterator; fa; fa = fa->next)
    {
      gfc_symbol *sym = fa->var->symtree->n.sym;

      /* allocate space for this_forall.  */
      this_forall = (iter_info *) gfc_getmem (sizeof (iter_info));

      /* Create a temporary variable for the FORALL index.  */
      tmp = gfc_typenode_for_spec (&sym->ts);
      var[n] = gfc_create_var (tmp, sym->name);
pbrook's avatar
pbrook committed
2462 2463
      gfc_shadow_sym (sym, var[n], &saved_vars[n]);

dnovillo's avatar
 
dnovillo committed
2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513
      /* Record it in this_forall.  */
      this_forall->var = var[n];

      /* Replace the index symbol's backend_decl with the temporary decl.  */
      sym->backend_decl = var[n];

      /* Work out the start, end and stride for the loop.  */
      gfc_init_se (&se, NULL);
      gfc_conv_expr_val (&se, fa->start);
      /* Record it in this_forall.  */
      this_forall->start = se.expr;
      gfc_add_block_to_block (&block, &se.pre);
      start[n] = se.expr;

      gfc_init_se (&se, NULL);
      gfc_conv_expr_val (&se, fa->end);
      /* Record it in this_forall.  */
      this_forall->end = se.expr;
      gfc_make_safe_expr (&se);
      gfc_add_block_to_block (&block, &se.pre);
      end[n] = se.expr;

      gfc_init_se (&se, NULL);
      gfc_conv_expr_val (&se, fa->stride);
      /* Record it in this_forall.  */
      this_forall->step = se.expr;
      gfc_make_safe_expr (&se);
      gfc_add_block_to_block (&block, &se.pre);
      step[n] = se.expr;

      /* Set the NEXT field of this_forall to NULL.  */
      this_forall->next = NULL;
      /* Link this_forall to the info construct.  */
      if (info->this_loop == NULL)
        info->this_loop = this_forall;
      else
        {
          iter_tmp = info->this_loop;
          while (iter_tmp->next != NULL)
            iter_tmp = iter_tmp->next;
          iter_tmp->next = this_forall;
        }

      n++;
    }
  nvar = n;

  /* Work out the number of elements in the mask array.  */
  tmpvar = NULL_TREE;
  lenvar = NULL_TREE;
2514
  size = gfc_index_one_node;
dnovillo's avatar
 
dnovillo committed
2515 2516 2517 2518 2519 2520 2521 2522
  sizevar = NULL_TREE;

  for (n = 0; n < nvar; n++)
    {
      if (lenvar && TREE_TYPE (lenvar) != TREE_TYPE (start[n]))
	lenvar = NULL_TREE;

      /* size = (end + step - start) / step.  */
2523 2524 2525
      tmp = fold_build2 (MINUS_EXPR, TREE_TYPE (start[n]), 
			 step[n], start[n]);
      tmp = fold_build2 (PLUS_EXPR, TREE_TYPE (end[n]), end[n], tmp);
dnovillo's avatar
 
dnovillo committed
2526

2527
      tmp = fold_build2 (FLOOR_DIV_EXPR, TREE_TYPE (tmp), tmp, step[n]);
dnovillo's avatar
 
dnovillo committed
2528 2529
      tmp = convert (gfc_array_index_type, tmp);

2530
      size = fold_build2 (MULT_EXPR, gfc_array_index_type, size, tmp);
dnovillo's avatar
 
dnovillo committed
2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549
    }

  /* Record the nvar and size of current forall level.  */
  info->nvar = nvar;
  info->size = size;

  /* Link the current forall level to nested_forall_info.  */
  forall_tmp = nested_forall_info;
  if (forall_tmp == NULL)
    nested_forall_info = info;
  else
    {
      while (forall_tmp->next_nest != NULL)
        forall_tmp = forall_tmp->next_nest;
      info->outer = forall_tmp;
      forall_tmp->next_nest = info;
    }

  /* Copy the mask into a temporary variable if required.
2550
     For now we assume a mask temporary is needed.  */
dnovillo's avatar
 
dnovillo committed
2551 2552
  if (code->expr)
    {
2553 2554 2555 2556 2557
      /* As the mask array can be very big, prefer compact
	 boolean types.  */
      tree smallest_boolean_type_node
	= gfc_get_logical_type (gfc_logical_kinds[0].kind);

dnovillo's avatar
 
dnovillo committed
2558
      /* Allocate the mask temporary.  */
2559
      bytesize = fold_build2 (MULT_EXPR, gfc_array_index_type, size,
2560
			      TYPE_SIZE_UNIT (smallest_boolean_type_node));
dnovillo's avatar
 
dnovillo committed
2561

2562 2563
      mask = gfc_do_allocate (bytesize, size, &pmask, &block,
			      smallest_boolean_type_node);
dnovillo's avatar
 
dnovillo committed
2564 2565 2566 2567 2568 2569 2570

      maskindex = gfc_create_var_np (gfc_array_index_type, "mi");
      /* Record them in the info structure.  */
      info->pmask = pmask;
      info->mask = mask;
      info->maskindex = maskindex;

2571
      gfc_add_modify_expr (&block, maskindex, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2572 2573 2574 2575 2576 2577 2578 2579 2580 2581

      /* Start of mask assignment loop body.  */
      gfc_start_block (&body);

      /* Evaluate the mask expression.  */
      gfc_init_se (&se, NULL);
      gfc_conv_expr_val (&se, code->expr);
      gfc_add_block_to_block (&body, &se.pre);

      /* Store the mask.  */
2582
      se.expr = convert (smallest_boolean_type_node, se.expr);
dnovillo's avatar
 
dnovillo committed
2583 2584

      if (pmask)
2585
	tmp = build_fold_indirect_ref (mask);
dnovillo's avatar
 
dnovillo committed
2586 2587 2588 2589 2590 2591
      else
	tmp = mask;
      tmp = gfc_build_array_ref (tmp, maskindex);
      gfc_add_modify_expr (&body, tmp, se.expr);

      /* Advance to the next mask element.  */
2592
      tmp = build2 (PLUS_EXPR, gfc_array_index_type,
2593
		   maskindex, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616
      gfc_add_modify_expr (&body, maskindex, tmp);

      /* Generate the loops.  */
      tmp = gfc_finish_block (&body);
      tmp = gfc_trans_nested_forall_loop (info, tmp, 0, 0);
      gfc_add_expr_to_block (&block, tmp);
    }
  else
    {
      /* No mask was specified.  */
      maskindex = NULL_TREE;
      mask = pmask = NULL_TREE;
    }

  c = code->block->next;

  /* TODO: loop merging in FORALL statements.  */
  /* Now that we've got a copy of the mask, generate the assignment loops.  */
  while (c)
    {
      switch (c->op)
	{
	case EXEC_ASSIGN:
2617
          /* A scalar or array assignment.  */
sayle's avatar
 
sayle committed
2618
	  need_temp = gfc_check_dependency (c->expr, c->expr2, 0);
2619
          /* Temporaries due to array assignment data dependencies introduce
dnovillo's avatar
 
dnovillo committed
2620 2621
             no end of problems.  */
	  if (need_temp)
sayle's avatar
 
sayle committed
2622
            gfc_trans_assign_need_temp (c->expr, c->expr2, NULL, false,
dnovillo's avatar
 
dnovillo committed
2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637
                                        nested_forall_info, &block);
          else
            {
              /* Use the normal assignment copying routines.  */
              assign = gfc_trans_assignment (c->expr, c->expr2);

              /* Generate body and loops.  */
              tmp = gfc_trans_nested_forall_loop (nested_forall_info, assign, 1, 1);
              gfc_add_expr_to_block (&block, tmp);
            }

	  break;

        case EXEC_WHERE:
	  /* Translate WHERE or WHERE construct nested in FORALL.  */
sayle's avatar
 
sayle committed
2638
	  gfc_trans_where_2 (c, NULL, false, nested_forall_info, &block);
sayle's avatar
 
sayle committed
2639
	  break;
dnovillo's avatar
 
dnovillo committed
2640 2641 2642

        /* Pointer assignment inside FORALL.  */
	case EXEC_POINTER_ASSIGN:
sayle's avatar
 
sayle committed
2643
          need_temp = gfc_check_dependency (c->expr, c->expr2, 0);
dnovillo's avatar
 
dnovillo committed
2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663
          if (need_temp)
            gfc_trans_pointer_assign_need_temp (c->expr, c->expr2,
                                                nested_forall_info, &block);
          else
            {
              /* Use the normal assignment copying routines.  */
              assign = gfc_trans_pointer_assignment (c->expr, c->expr2);

              /* Generate body and loops.  */
              tmp = gfc_trans_nested_forall_loop (nested_forall_info, assign,
                                                  1, 1);
              gfc_add_expr_to_block (&block, tmp);
            }
          break;

	case EXEC_FORALL:
	  tmp = gfc_trans_forall_1 (c, nested_forall_info);
          gfc_add_expr_to_block (&block, tmp);
          break;

2664 2665
	/* Explicit subroutine calls are prevented by the frontend but interface
	   assignments can legitimately produce them.  */
2666 2667
	case EXEC_ASSIGN_CALL:
	  assign = gfc_trans_call (c, true);
2668 2669 2670 2671
          tmp = gfc_trans_nested_forall_loop (nested_forall_info, assign, 1, 1);
          gfc_add_expr_to_block (&block, tmp);
          break;

dnovillo's avatar
 
dnovillo committed
2672
	default:
pbrook's avatar
pbrook committed
2673
	  gcc_unreachable ();
dnovillo's avatar
 
dnovillo committed
2674 2675 2676 2677 2678
	}

      c = c->next;
    }

pbrook's avatar
pbrook committed
2679 2680 2681
  /* Restore the original index variables.  */
  for (fa = code->ext.forall_iterator, n = 0; fa; fa = fa->next, n++)
    gfc_restore_sym (fa->var->symtree->n.sym, &saved_vars[n]);
dnovillo's avatar
 
dnovillo committed
2682 2683 2684 2685 2686 2687 2688

  /* Free the space for var, start, end, step, varexpr.  */
  gfc_free (var);
  gfc_free (start);
  gfc_free (end);
  gfc_free (step);
  gfc_free (varexpr);
pbrook's avatar
pbrook committed
2689
  gfc_free (saved_vars);
dnovillo's avatar
 
dnovillo committed
2690 2691 2692 2693 2694

  if (pmask)
    {
      /* Free the temporary for the mask.  */
      tmp = gfc_chainon_list (NULL_TREE, pmask);
2695
      tmp = build_function_call_expr (gfor_fndecl_internal_free, tmp);
dnovillo's avatar
 
dnovillo committed
2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717
      gfc_add_expr_to_block (&block, tmp);
    }
  if (maskindex)
    pushdecl (maskindex);

  return gfc_finish_block (&block);
}


/* Translate the FORALL statement or construct.  */

tree gfc_trans_forall (gfc_code * code)
{
  return gfc_trans_forall_1 (code, NULL);
}


/* Evaluate the WHERE mask expression, copy its value to a temporary.
   If the WHERE construct is nested in FORALL, compute the overall temporary
   needed by the WHERE mask expression multiplied by the iterator number of
   the nested forall.
   ME is the WHERE mask expression.
sayle's avatar
 
sayle committed
2718 2719
   MASK is the current execution mask upon input, whose sense may or may
   not be inverted as specified by the INVERT argument.
sayle's avatar
 
sayle committed
2720 2721 2722
   CMASK is the updated execution mask on output, or NULL if not required.
   PMASK is the pending execution mask on output, or NULL if not required.
   BLOCK is the block in which to place the condition evaluation loops.  */
dnovillo's avatar
 
dnovillo committed
2723

sayle's avatar
 
sayle committed
2724
static void
dnovillo's avatar
 
dnovillo committed
2725
gfc_evaluate_where_mask (gfc_expr * me, forall_info * nested_forall_info,
sayle's avatar
 
sayle committed
2726
                         tree mask, bool invert, tree cmask, tree pmask,
sayle's avatar
 
sayle committed
2727
                         tree mask_type, stmtblock_t * block)
dnovillo's avatar
 
dnovillo committed
2728 2729 2730 2731
{
  tree tmp, tmp1;
  gfc_ss *lss, *rss;
  gfc_loopinfo loop;
sayle's avatar
 
sayle committed
2732 2733
  stmtblock_t body, body1;
  tree count, cond, mtmp;
dnovillo's avatar
 
dnovillo committed
2734 2735 2736 2737
  gfc_se lse, rse;

  gfc_init_loopinfo (&loop);

sayle's avatar
 
sayle committed
2738 2739
  lss = gfc_walk_expr (me);
  rss = gfc_walk_expr (me);
dnovillo's avatar
 
dnovillo committed
2740 2741 2742

  /* Variable to index the temporary.  */
  count = gfc_create_var (gfc_array_index_type, "count");
2743
  /* Initialize count.  */
2744
  gfc_add_modify_expr (block, count, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756

  gfc_start_block (&body);

  gfc_init_se (&rse, NULL);
  gfc_init_se (&lse, NULL);

  if (lss == gfc_ss_terminator)
    {
      gfc_init_block (&body1);
    }
  else
    {
2757
      /* Initialize the loop.  */
dnovillo's avatar
 
dnovillo committed
2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776
      gfc_init_loopinfo (&loop);

      /* We may need LSS to determine the shape of the expression.  */
      gfc_add_ss_to_loop (&loop, lss);
      gfc_add_ss_to_loop (&loop, rss);

      gfc_conv_ss_startstride (&loop);
      gfc_conv_loop_setup (&loop);

      gfc_mark_ss_chain_used (rss, 1);
      /* Start the loop body.  */
      gfc_start_scalarized_body (&loop, &body1);

      /* Translate the expression.  */
      gfc_copy_loopinfo_to_se (&rse, &loop);
      rse.ss = rss;
      gfc_conv_expr (&rse, me);
    }

2777
  /* Variable to evaluate mask condition.  */
sayle's avatar
 
sayle committed
2778 2779 2780 2781 2782 2783 2784
  cond = gfc_create_var (mask_type, "cond");
  if (mask && (cmask || pmask))
    mtmp = gfc_create_var (mask_type, "mask");
  else mtmp = NULL_TREE;

  gfc_add_block_to_block (&body1, &lse.pre);
  gfc_add_block_to_block (&body1, &rse.pre);
dnovillo's avatar
 
dnovillo committed
2785

sayle's avatar
 
sayle committed
2786 2787 2788
  gfc_add_modify_expr (&body1, cond, fold_convert (mask_type, rse.expr));

  if (mask && (cmask || pmask))
sayle's avatar
 
sayle committed
2789
    {
sayle's avatar
 
sayle committed
2790
      tmp = gfc_build_array_ref (mask, count);
sayle's avatar
 
sayle committed
2791 2792
      if (invert)
	tmp = fold_build1 (TRUTH_NOT_EXPR, mask_type, tmp);
sayle's avatar
 
sayle committed
2793
      gfc_add_modify_expr (&body1, mtmp, tmp);
sayle's avatar
 
sayle committed
2794
    }
dnovillo's avatar
 
dnovillo committed
2795

sayle's avatar
 
sayle committed
2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817
  if (cmask)
    {
      tmp1 = gfc_build_array_ref (cmask, count);
      tmp = cond;
      if (mask)
	tmp = build2 (TRUTH_AND_EXPR, mask_type, mtmp, tmp);
      gfc_add_modify_expr (&body1, tmp1, tmp);
    }

  if (pmask)
    {
      tmp1 = gfc_build_array_ref (pmask, count);
      tmp = build1 (TRUTH_NOT_EXPR, mask_type, cond);
      if (mask)
	tmp = build2 (TRUTH_AND_EXPR, mask_type, mtmp, tmp);
      gfc_add_modify_expr (&body1, tmp1, tmp);
    }

  gfc_add_block_to_block (&body1, &lse.post);
  gfc_add_block_to_block (&body1, &rse.post);

  if (lss == gfc_ss_terminator)
dnovillo's avatar
 
dnovillo committed
2818 2819 2820 2821 2822 2823
    {
      gfc_add_block_to_block (&body, &body1);
    }
  else
    {
      /* Increment count.  */
2824 2825
      tmp1 = fold_build2 (PLUS_EXPR, gfc_array_index_type, count,
                          gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841
      gfc_add_modify_expr (&body1, count, tmp1);

      /* Generate the copying loops.  */
      gfc_trans_scalarizing_loops (&loop, &body1);

      gfc_add_block_to_block (&body, &loop.pre);
      gfc_add_block_to_block (&body, &loop.post);

      gfc_cleanup_loop (&loop);
      /* TODO: Reuse lss and rss when copying temp->lhs.  Need to be careful
         as tree nodes in SS may not be valid in different scope.  */
    }

  tmp1 = gfc_finish_block (&body);
  /* If the WHERE construct is inside FORALL, fill the full temporary.  */
  if (nested_forall_info != NULL)
2842
    tmp1 = gfc_trans_nested_forall_loop (nested_forall_info, tmp1, 1, 1);
dnovillo's avatar
 
dnovillo committed
2843 2844 2845 2846 2847 2848 2849

  gfc_add_expr_to_block (block, tmp1);
}


/* Translate an assignment statement in a WHERE statement or construct
   statement. The MASK expression is used to control which elements
sayle's avatar
 
sayle committed
2850 2851
   of EXPR1 shall be assigned.  The sense of MASK is specified by
   INVERT.  */
dnovillo's avatar
 
dnovillo committed
2852 2853

static tree
sayle's avatar
 
sayle committed
2854 2855
gfc_trans_where_assign (gfc_expr *expr1, gfc_expr *expr2,
			tree mask, bool invert,
dnovillo's avatar
 
dnovillo committed
2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867
                        tree count1, tree count2)
{
  gfc_se lse;
  gfc_se rse;
  gfc_ss *lss;
  gfc_ss *lss_section;
  gfc_ss *rss;

  gfc_loopinfo loop;
  tree tmp;
  stmtblock_t block;
  stmtblock_t body;
sayle's avatar
 
sayle committed
2868
  tree index, maskexpr;
dnovillo's avatar
 
dnovillo committed
2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892

#if 0
  /* TODO: handle this special case.
     Special case a single function returning an array.  */
  if (expr2->expr_type == EXPR_FUNCTION && expr2->rank > 0)
    {
      tmp = gfc_trans_arrayfunc_assign (expr1, expr2);
      if (tmp)
        return tmp;
    }
#endif

 /* Assignment of the form lhs = rhs.  */
  gfc_start_block (&block);

  gfc_init_se (&lse, NULL);
  gfc_init_se (&rse, NULL);

  /* Walk the lhs.  */
  lss = gfc_walk_expr (expr1);
  rss = NULL;

  /* In each where-assign-stmt, the mask-expr and the variable being
     defined shall be arrays of the same shape.  */
pbrook's avatar
pbrook committed
2893
  gcc_assert (lss != gfc_ss_terminator);
dnovillo's avatar
 
dnovillo committed
2894 2895 2896 2897 2898 2899 2900 2901 2902

  /* The assignment needs scalarization.  */
  lss_section = lss;

  /* Find a non-scalar SS from the lhs.  */
  while (lss_section != gfc_ss_terminator
         && lss_section->type != GFC_SS_SECTION)
    lss_section = lss_section->next;

pbrook's avatar
pbrook committed
2903
  gcc_assert (lss_section != gfc_ss_terminator);
dnovillo's avatar
 
dnovillo committed
2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962

  /* Initialize the scalarizer.  */
  gfc_init_loopinfo (&loop);

  /* Walk the rhs.  */
  rss = gfc_walk_expr (expr2);
  if (rss == gfc_ss_terminator)
   {
     /* The rhs is scalar.  Add a ss for the expression.  */
     rss = gfc_get_ss ();
     rss->next = gfc_ss_terminator;
     rss->type = GFC_SS_SCALAR;
     rss->expr = expr2;
    }

  /* Associate the SS with the loop.  */
  gfc_add_ss_to_loop (&loop, lss);
  gfc_add_ss_to_loop (&loop, rss);

  /* Calculate the bounds of the scalarization.  */
  gfc_conv_ss_startstride (&loop);

  /* Resolve any data dependencies in the statement.  */
  gfc_conv_resolve_dependencies (&loop, lss_section, rss);

  /* Setup the scalarizing loops.  */
  gfc_conv_loop_setup (&loop);

  /* Setup the gfc_se structures.  */
  gfc_copy_loopinfo_to_se (&lse, &loop);
  gfc_copy_loopinfo_to_se (&rse, &loop);

  rse.ss = rss;
  gfc_mark_ss_chain_used (rss, 1);
  if (loop.temp_ss == NULL)
    {
      lse.ss = lss;
      gfc_mark_ss_chain_used (lss, 1);
    }
  else
    {
      lse.ss = loop.temp_ss;
      gfc_mark_ss_chain_used (lss, 3);
      gfc_mark_ss_chain_used (loop.temp_ss, 3);
    }

  /* Start the scalarized loop body.  */
  gfc_start_scalarized_body (&loop, &body);

  /* Translate the expression.  */
  gfc_conv_expr (&rse, expr2);
  if (lss != gfc_ss_terminator && loop.temp_ss != NULL)
    {
      gfc_conv_tmp_array_ref (&lse);
      gfc_advance_se_ss_chain (&lse);
    }
  else
    gfc_conv_expr (&lse, expr1);

sayle's avatar
 
sayle committed
2963
  /* Form the mask expression according to the mask.  */
dnovillo's avatar
 
dnovillo committed
2964
  index = count1;
sayle's avatar
 
sayle committed
2965
  maskexpr = gfc_build_array_ref (mask, index);
sayle's avatar
 
sayle committed
2966 2967
  if (invert)
    maskexpr = fold_build1 (TRUTH_NOT_EXPR, TREE_TYPE (maskexpr), maskexpr);
dnovillo's avatar
 
dnovillo committed
2968 2969 2970

  /* Use the scalar assignment as is.  */
  tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts.type);
2971
  tmp = build3_v (COND_EXPR, maskexpr, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
2972 2973 2974 2975 2976 2977

  gfc_add_expr_to_block (&body, tmp);

  if (lss == gfc_ss_terminator)
    {
      /* Increment count1.  */
2978 2979
      tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			 count1, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2980 2981 2982 2983 2984 2985 2986
      gfc_add_modify_expr (&body, count1, tmp);

      /* Use the scalar assignment as is.  */
      gfc_add_block_to_block (&block, &body);
    }
  else
    {
pbrook's avatar
pbrook committed
2987 2988
      gcc_assert (lse.ss == gfc_ss_terminator
		  && rse.ss == gfc_ss_terminator);
dnovillo's avatar
 
dnovillo committed
2989 2990 2991 2992 2993

      if (loop.temp_ss != NULL)
        {
          /* Increment count1 before finish the main body of a scalarized
             expression.  */
2994 2995
          tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			     count1, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011
          gfc_add_modify_expr (&body, count1, tmp);
          gfc_trans_scalarized_loop_boundary (&loop, &body);

          /* We need to copy the temporary to the actual lhs.  */
          gfc_init_se (&lse, NULL);
          gfc_init_se (&rse, NULL);
          gfc_copy_loopinfo_to_se (&lse, &loop);
          gfc_copy_loopinfo_to_se (&rse, &loop);

          rse.ss = loop.temp_ss;
          lse.ss = lss;

          gfc_conv_tmp_array_ref (&rse);
          gfc_advance_se_ss_chain (&rse);
          gfc_conv_expr (&lse, expr1);

pbrook's avatar
pbrook committed
3012 3013
          gcc_assert (lse.ss == gfc_ss_terminator
		      && rse.ss == gfc_ss_terminator);
dnovillo's avatar
 
dnovillo committed
3014 3015 3016

          /* Form the mask expression according to the mask tree list.  */
          index = count2;
sayle's avatar
 
sayle committed
3017
          maskexpr = gfc_build_array_ref (mask, index);
sayle's avatar
 
sayle committed
3018 3019 3020
	  if (invert)
	    maskexpr = fold_build1 (TRUTH_NOT_EXPR, TREE_TYPE (maskexpr),
				    maskexpr);
dnovillo's avatar
 
dnovillo committed
3021 3022 3023

          /* Use the scalar assignment as is.  */
          tmp = gfc_trans_scalar_assign (&lse, &rse, expr1->ts.type);
3024
          tmp = build3_v (COND_EXPR, maskexpr, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
3025
          gfc_add_expr_to_block (&body, tmp);
3026

dnovillo's avatar
 
dnovillo committed
3027
          /* Increment count2.  */
3028 3029
          tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			     count2, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
3030 3031 3032 3033 3034
          gfc_add_modify_expr (&body, count2, tmp);
        }
      else
        {
          /* Increment count1.  */
3035 3036
          tmp = fold_build2 (PLUS_EXPR, gfc_array_index_type,
			     count1, gfc_index_one_node);
dnovillo's avatar
 
dnovillo committed
3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053
          gfc_add_modify_expr (&body, count1, tmp);
        }

      /* Generate the copying loops.  */
      gfc_trans_scalarizing_loops (&loop, &body);

      /* Wrap the whole thing up.  */
      gfc_add_block_to_block (&block, &loop.pre);
      gfc_add_block_to_block (&block, &loop.post);
      gfc_cleanup_loop (&loop);
    }

  return gfc_finish_block (&block);
}


/* Translate the WHERE construct or statement.
3054
   This function can be called iteratively to translate the nested WHERE
dnovillo's avatar
 
dnovillo committed
3055
   construct or statement.
sayle's avatar
 
sayle committed
3056
   MASK is the control mask.  */
dnovillo's avatar
 
dnovillo committed
3057 3058

static void
sayle's avatar
 
sayle committed
3059
gfc_trans_where_2 (gfc_code * code, tree mask, bool invert,
sayle's avatar
 
sayle committed
3060
		   forall_info * nested_forall_info, stmtblock_t * block)
dnovillo's avatar
 
dnovillo committed
3061
{
sayle's avatar
 
sayle committed
3062 3063 3064 3065
  stmtblock_t inner_size_body;
  tree inner_size, size;
  gfc_ss *lss, *rss;
  tree mask_type;
dnovillo's avatar
 
dnovillo committed
3066 3067 3068 3069
  gfc_expr *expr1;
  gfc_expr *expr2;
  gfc_code *cblock;
  gfc_code *cnext;
sayle's avatar
 
sayle committed
3070
  tree tmp;
dnovillo's avatar
 
dnovillo committed
3071
  tree count1, count2;
sayle's avatar
 
sayle committed
3072 3073
  bool need_cmask;
  bool need_pmask;
dnovillo's avatar
 
dnovillo committed
3074
  int need_temp;
sayle's avatar
 
sayle committed
3075 3076 3077 3078
  tree pcmask = NULL_TREE;
  tree ppmask = NULL_TREE;
  tree cmask = NULL_TREE;
  tree pmask = NULL_TREE;
dnovillo's avatar
 
dnovillo committed
3079 3080 3081

  /* the WHERE statement or the WHERE construct statement.  */
  cblock = code->block;
sayle's avatar
 
sayle committed
3082 3083 3084 3085

  /* As the mask array can be very big, prefer compact boolean types.  */
  mask_type = gfc_get_logical_type (gfc_logical_kinds[0].kind);

sayle's avatar
 
sayle committed
3086 3087
  /* Determine which temporary masks are needed.  */
  if (!cblock->block)
sayle's avatar
 
sayle committed
3088
    {
sayle's avatar
 
sayle committed
3089 3090 3091
      /* One clause: No ELSEWHEREs.  */
      need_cmask = (cblock->next != 0);
      need_pmask = false;
sayle's avatar
 
sayle committed
3092
    }
sayle's avatar
 
sayle committed
3093
  else if (cblock->block->block)
sayle's avatar
 
sayle committed
3094
    {
sayle's avatar
 
sayle committed
3095 3096 3097
      /* Three or more clauses: Conditional ELSEWHEREs.  */
      need_cmask = true;
      need_pmask = true;
sayle's avatar
 
sayle committed
3098
    }
sayle's avatar
 
sayle committed
3099 3100 3101 3102 3103 3104 3105 3106
  else if (cblock->next)
    {
      /* Two clauses, the first non-empty.  */
      need_cmask = true;
      need_pmask = (mask != NULL_TREE
		    && cblock->block->next != 0);
    }
  else if (!cblock->block->next)
sayle's avatar
 
sayle committed
3107
    {
sayle's avatar
 
sayle committed
3108 3109 3110 3111 3112 3113 3114 3115 3116
      /* Two clauses, both empty.  */
      need_cmask = false;
      need_pmask = false;
    }
  /* Two clauses, the first empty, the second non-empty.  */
  else if (mask)
    {
      need_cmask = (cblock->block->expr != 0);
      need_pmask = true;
sayle's avatar
 
sayle committed
3117 3118 3119
    }
  else
    {
sayle's avatar
 
sayle committed
3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143
      need_cmask = true;
      need_pmask = false;
    }

  if (need_cmask || need_pmask)
    {
      /* Calculate the size of temporary needed by the mask-expr.  */
      gfc_init_block (&inner_size_body);
      inner_size = compute_inner_temp_size (cblock->expr, cblock->expr,
					    &inner_size_body, &lss, &rss);

      /* Calculate the total size of temporary needed.  */
      size = compute_overall_iter_number (nested_forall_info, inner_size,
					  &inner_size_body, block);

      /* Allocate temporary for WHERE mask if needed.  */
      if (need_cmask)
	cmask = allocate_temp_for_forall_nest_1 (mask_type, size, block,
						 &pcmask);

      /* Allocate temporary for !mask if needed.  */
      if (need_pmask)
	pmask = allocate_temp_for_forall_nest_1 (mask_type, size, block,
						 &ppmask);
sayle's avatar
 
sayle committed
3144 3145
    }

dnovillo's avatar
 
dnovillo committed
3146 3147
  while (cblock)
    {
sayle's avatar
 
sayle committed
3148 3149 3150 3151
      /* Each time around this loop, the where clause is conditional
	 on the value of mask and invert, which are updated at the
	 bottom of the loop.  */

dnovillo's avatar
 
dnovillo committed
3152 3153 3154
      /* Has mask-expr.  */
      if (cblock->expr)
        {
sayle's avatar
 
sayle committed
3155 3156 3157 3158
          /* Ensure that the WHERE mask will be evaluated exactly once.
	     If there are no statements in this WHERE/ELSEWHERE clause,
	     then we don't need to update the control mask (cmask).
	     If this is the last clause of the WHERE construct, then
sayle's avatar
 
sayle committed
3159
	     we don't need to update the pending control mask (pmask).  */
sayle's avatar
 
sayle committed
3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171
	  if (mask)
	    gfc_evaluate_where_mask (cblock->expr, nested_forall_info,
				     mask, invert,
				     cblock->next  ? cmask : NULL_TREE,
				     cblock->block ? pmask : NULL_TREE,
				     mask_type, block);
	  else
	    gfc_evaluate_where_mask (cblock->expr, nested_forall_info,
				     NULL_TREE, false,
				     (cblock->next || cblock->block)
				     ? cmask : NULL_TREE,
				     NULL_TREE, mask_type, block);
dnovillo's avatar
 
dnovillo committed
3172

sayle's avatar
 
sayle committed
3173
	  invert = false;
dnovillo's avatar
 
dnovillo committed
3174
        }
sayle's avatar
 
sayle committed
3175
      /* It's a final elsewhere-stmt. No mask-expr is present.  */
dnovillo's avatar
 
dnovillo committed
3176
      else
sayle's avatar
 
sayle committed
3177
        cmask = mask;
dnovillo's avatar
 
dnovillo committed
3178

sayle's avatar
 
sayle committed
3179 3180 3181
      /* The body of this where clause are controlled by cmask with
	 sense specified by invert.  */

dnovillo's avatar
 
dnovillo committed
3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194
      /* Get the assignment statement of a WHERE statement, or the first
         statement in where-body-construct of a WHERE construct.  */
      cnext = cblock->next;
      while (cnext)
        {
          switch (cnext->op)
            {
            /* WHERE assignment statement.  */
            case EXEC_ASSIGN:
              expr1 = cnext->expr;
              expr2 = cnext->expr2;
              if (nested_forall_info != NULL)
                {
sayle's avatar
 
sayle committed
3195
                  need_temp = gfc_check_dependency (expr1, expr2, 0);
dnovillo's avatar
 
dnovillo committed
3196
                  if (need_temp)
sayle's avatar
 
sayle committed
3197 3198
                    gfc_trans_assign_need_temp (expr1, expr2,
						cmask, invert,
dnovillo's avatar
 
dnovillo committed
3199 3200 3201 3202 3203 3204
                                                nested_forall_info, block);
                  else
                    {
                      /* Variables to control maskexpr.  */
                      count1 = gfc_create_var (gfc_array_index_type, "count1");
                      count2 = gfc_create_var (gfc_array_index_type, "count2");
3205 3206
                      gfc_add_modify_expr (block, count1, gfc_index_zero_node);
                      gfc_add_modify_expr (block, count2, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
3207

sayle's avatar
 
sayle committed
3208 3209
                      tmp = gfc_trans_where_assign (expr1, expr2,
						    cmask, invert,
sayle's avatar
 
sayle committed
3210
						    count1, count2);
jakub's avatar
jakub committed
3211

dnovillo's avatar
 
dnovillo committed
3212 3213 3214 3215 3216 3217 3218 3219 3220 3221
                      tmp = gfc_trans_nested_forall_loop (nested_forall_info,
                                                          tmp, 1, 1);
                      gfc_add_expr_to_block (block, tmp);
                    }
                }
              else
                {
                  /* Variables to control maskexpr.  */
                  count1 = gfc_create_var (gfc_array_index_type, "count1");
                  count2 = gfc_create_var (gfc_array_index_type, "count2");
3222 3223
                  gfc_add_modify_expr (block, count1, gfc_index_zero_node);
                  gfc_add_modify_expr (block, count2, gfc_index_zero_node);
dnovillo's avatar
 
dnovillo committed
3224

sayle's avatar
 
sayle committed
3225 3226
                  tmp = gfc_trans_where_assign (expr1, expr2,
						cmask, invert,
sayle's avatar
 
sayle committed
3227
						count1, count2);
dnovillo's avatar
 
dnovillo committed
3228 3229 3230 3231 3232 3233 3234
                  gfc_add_expr_to_block (block, tmp);

                }
              break;

            /* WHERE or WHERE construct is part of a where-body-construct.  */
            case EXEC_WHERE:
sayle's avatar
 
sayle committed
3235 3236
	      gfc_trans_where_2 (cnext, cmask, invert,
				 nested_forall_info, block);
sayle's avatar
 
sayle committed
3237
	      break;
dnovillo's avatar
 
dnovillo committed
3238 3239

            default:
pbrook's avatar
pbrook committed
3240
              gcc_unreachable ();
dnovillo's avatar
 
dnovillo committed
3241 3242 3243 3244 3245 3246 3247
            }

         /* The next statement within the same where-body-construct.  */
         cnext = cnext->next;
       }
    /* The next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt.  */
    cblock = cblock->block;
sayle's avatar
 
sayle committed
3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261
    if (mask == NULL_TREE)
      {
        /* If we're the initial WHERE, we can simply invert the sense
	   of the current mask to obtain the "mask" for the remaining
	   ELSEWHEREs.  */
	invert = true;
	mask = cmask;
      }
    else
      {
	/* Otherwise, for nested WHERE's we need to use the pending mask.  */
        invert = false;
        mask = pmask;
      }
dnovillo's avatar
 
dnovillo committed
3262
  }
sayle's avatar
 
sayle committed
3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278

  /* If we allocated a pending mask array, deallocate it now.  */
  if (ppmask)
    {
      tree args = gfc_chainon_list (NULL_TREE, ppmask);
      tmp = build_function_call_expr (gfor_fndecl_internal_free, args);
      gfc_add_expr_to_block (block, tmp);
    }

  /* If we allocated a current mask array, deallocate it now.  */
  if (pcmask)
    {
      tree args = gfc_chainon_list (NULL_TREE, pcmask);
      tmp = build_function_call_expr (gfor_fndecl_internal_free, args);
      gfc_add_expr_to_block (block, tmp);
    }
dnovillo's avatar
 
dnovillo committed
3279 3280
}

sayle's avatar
 
sayle committed
3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411
/* Translate a simple WHERE construct or statement without dependencies.
   CBLOCK is the "then" clause of the WHERE statement, where CBLOCK->EXPR
   is the mask condition, and EBLOCK if non-NULL is the "else" clause.
   Currently both CBLOCK and EBLOCK are restricted to single assignments.  */

static tree
gfc_trans_where_3 (gfc_code * cblock, gfc_code * eblock)
{
  stmtblock_t block, body;
  gfc_expr *cond, *tdst, *tsrc, *edst, *esrc;
  tree tmp, cexpr, tstmt, estmt;
  gfc_ss *css, *tdss, *tsss;
  gfc_se cse, tdse, tsse, edse, esse;
  gfc_loopinfo loop;
  gfc_ss *edss = 0;
  gfc_ss *esss = 0;

  cond = cblock->expr;
  tdst = cblock->next->expr;
  tsrc = cblock->next->expr2;
  edst = eblock ? eblock->next->expr : NULL;
  esrc = eblock ? eblock->next->expr2 : NULL;

  gfc_start_block (&block);
  gfc_init_loopinfo (&loop);

  /* Handle the condition.  */
  gfc_init_se (&cse, NULL);
  css = gfc_walk_expr (cond);
  gfc_add_ss_to_loop (&loop, css);

  /* Handle the then-clause.  */
  gfc_init_se (&tdse, NULL);
  gfc_init_se (&tsse, NULL);
  tdss = gfc_walk_expr (tdst);
  tsss = gfc_walk_expr (tsrc);
  if (tsss == gfc_ss_terminator)
    {
      tsss = gfc_get_ss ();
      tsss->next = gfc_ss_terminator;
      tsss->type = GFC_SS_SCALAR;
      tsss->expr = tsrc;
    }
  gfc_add_ss_to_loop (&loop, tdss);
  gfc_add_ss_to_loop (&loop, tsss);

  if (eblock)
    {
      /* Handle the else clause.  */
      gfc_init_se (&edse, NULL);
      gfc_init_se (&esse, NULL);
      edss = gfc_walk_expr (edst);
      esss = gfc_walk_expr (esrc);
      if (esss == gfc_ss_terminator)
	{
	  esss = gfc_get_ss ();
	  esss->next = gfc_ss_terminator;
	  esss->type = GFC_SS_SCALAR;
	  esss->expr = esrc;
	}
      gfc_add_ss_to_loop (&loop, edss);
      gfc_add_ss_to_loop (&loop, esss);
    }

  gfc_conv_ss_startstride (&loop);
  gfc_conv_loop_setup (&loop);

  gfc_mark_ss_chain_used (css, 1);
  gfc_mark_ss_chain_used (tdss, 1);
  gfc_mark_ss_chain_used (tsss, 1);
  if (eblock)
    {
      gfc_mark_ss_chain_used (edss, 1);
      gfc_mark_ss_chain_used (esss, 1);
    }

  gfc_start_scalarized_body (&loop, &body);

  gfc_copy_loopinfo_to_se (&cse, &loop);
  gfc_copy_loopinfo_to_se (&tdse, &loop);
  gfc_copy_loopinfo_to_se (&tsse, &loop);
  cse.ss = css;
  tdse.ss = tdss;
  tsse.ss = tsss;
  if (eblock)
    {
      gfc_copy_loopinfo_to_se (&edse, &loop);
      gfc_copy_loopinfo_to_se (&esse, &loop);
      edse.ss = edss;
      esse.ss = esss;
    }

  gfc_conv_expr (&cse, cond);
  gfc_add_block_to_block (&body, &cse.pre);
  cexpr = cse.expr;

  gfc_conv_expr (&tsse, tsrc);
  if (tdss != gfc_ss_terminator && loop.temp_ss != NULL)
    {
      gfc_conv_tmp_array_ref (&tdse);
      gfc_advance_se_ss_chain (&tdse);
    }
  else
    gfc_conv_expr (&tdse, tdst);

  if (eblock)
    {
      gfc_conv_expr (&esse, esrc);
      if (edss != gfc_ss_terminator && loop.temp_ss != NULL)
        {
          gfc_conv_tmp_array_ref (&edse);
          gfc_advance_se_ss_chain (&edse);
        }
      else
        gfc_conv_expr (&edse, edst);
    }

  tstmt = gfc_trans_scalar_assign (&tdse, &tsse, tdst->ts.type);
  estmt = eblock ? gfc_trans_scalar_assign (&edse, &esse, edst->ts.type)
		 : build_empty_stmt ();
  tmp = build3_v (COND_EXPR, cexpr, tstmt, estmt);
  gfc_add_expr_to_block (&body, tmp);
  gfc_add_block_to_block (&body, &cse.post);

  gfc_trans_scalarizing_loops (&loop, &body);
  gfc_add_block_to_block (&block, &loop.pre);
  gfc_add_block_to_block (&block, &loop.post);
  gfc_cleanup_loop (&loop);

  return gfc_finish_block (&block);
}
dnovillo's avatar
 
dnovillo committed
3412 3413 3414

/* As the WHERE or WHERE construct statement can be nested, we call
   gfc_trans_where_2 to do the translation, and pass the initial
3415
   NULL values for both the control mask and the pending control mask.  */
dnovillo's avatar
 
dnovillo committed
3416 3417 3418 3419 3420

tree
gfc_trans_where (gfc_code * code)
{
  stmtblock_t block;
sayle's avatar
 
sayle committed
3421 3422
  gfc_code *cblock;
  gfc_code *eblock;
dnovillo's avatar
 
dnovillo committed
3423

sayle's avatar
 
sayle committed
3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467
  cblock = code->block;
  if (cblock->next
      && cblock->next->op == EXEC_ASSIGN
      && !cblock->next->next)
    {
      eblock = cblock->block;
      if (!eblock)
	{
          /* A simple "WHERE (cond) x = y" statement or block is
	     dependence free if cond is not dependent upon writing x,
	     and the source y is unaffected by the destination x.  */
	  if (!gfc_check_dependency (cblock->next->expr,
				     cblock->expr, 0)
	      && !gfc_check_dependency (cblock->next->expr,
					cblock->next->expr2, 0))
	    return gfc_trans_where_3 (cblock, NULL);
	}
      else if (!eblock->expr
	       && !eblock->block
	       && eblock->next
	       && eblock->next->op == EXEC_ASSIGN
	       && !eblock->next->next)
	{
          /* A simple "WHERE (cond) x1 = y1 ELSEWHERE x2 = y2 ENDWHERE"
	     block is dependence free if cond is not dependent on writes
	     to x1 and x2, y1 is not dependent on writes to x2, and y2
	     is not dependent on writes to x1, and both y's are not
	     dependent upon their own x's.  */
	  if (!gfc_check_dependency(cblock->next->expr,
				    cblock->expr, 0)
	      && !gfc_check_dependency(eblock->next->expr,
				       cblock->expr, 0)
	      && !gfc_check_dependency(cblock->next->expr,
				       eblock->next->expr2, 0)
	      && !gfc_check_dependency(eblock->next->expr,
				       cblock->next->expr2, 0)
	      && !gfc_check_dependency(cblock->next->expr,
				       cblock->next->expr2, 0)
	      && !gfc_check_dependency(eblock->next->expr,
				       eblock->next->expr2, 0))
	    return gfc_trans_where_3 (cblock, eblock);
	}
    }

dnovillo's avatar
 
dnovillo committed
3468 3469
  gfc_start_block (&block);

sayle's avatar
 
sayle committed
3470
  gfc_trans_where_2 (code, NULL, false, NULL, &block);
dnovillo's avatar
 
dnovillo committed
3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490

  return gfc_finish_block (&block);
}


/* CYCLE a DO loop. The label decl has already been created by
   gfc_trans_do(), it's in TREE_PURPOSE (backend_decl) of the gfc_code
   node at the head of the loop. We must mark the label as used.  */

tree
gfc_trans_cycle (gfc_code * code)
{
  tree cycle_label;

  cycle_label = TREE_PURPOSE (code->ext.whichloop->backend_decl);
  TREE_USED (cycle_label) = 1;
  return build1_v (GOTO_EXPR, cycle_label);
}


3491
/* EXIT a DO loop. Similar to CYCLE, but now the label is in
dnovillo's avatar
 
dnovillo committed
3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527
   TREE_VALUE (backend_decl) of the gfc_code node at the head of the
   loop.  */

tree
gfc_trans_exit (gfc_code * code)
{
  tree exit_label;

  exit_label = TREE_VALUE (code->ext.whichloop->backend_decl);
  TREE_USED (exit_label) = 1;
  return build1_v (GOTO_EXPR, exit_label);
}


/* Translate the ALLOCATE statement.  */

tree
gfc_trans_allocate (gfc_code * code)
{
  gfc_alloc *al;
  gfc_expr *expr;
  gfc_se se;
  tree tmp;
  tree parm;
  tree stat;
  tree pstat;
  tree error_label;
  stmtblock_t block;

  if (!code->ext.alloc_list)
    return NULL_TREE;

  gfc_start_block (&block);

  if (code->expr)
    {
3528 3529
      tree gfc_int4_type_node = gfc_get_int_type (4);

dnovillo's avatar
 
dnovillo committed
3530
      stat = gfc_create_var (gfc_int4_type_node, "stat");
3531
      pstat = build_fold_addr_expr (stat);
dnovillo's avatar
 
dnovillo committed
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553

      error_label = gfc_build_label_decl (NULL_TREE);
      TREE_USED (error_label) = 1;
    }
  else
    {
      pstat = integer_zero_node;
      stat = error_label = NULL_TREE;
    }


  for (al = code->ext.alloc_list; al != NULL; al = al->next)
    {
      expr = al->expr;

      gfc_init_se (&se, NULL);
      gfc_start_block (&se.pre);

      se.want_pointer = 1;
      se.descriptor_only = 1;
      gfc_conv_expr (&se, expr);

3554
      if (!gfc_array_allocate (&se, expr, pstat))
dnovillo's avatar
 
dnovillo committed
3555 3556 3557 3558 3559 3560 3561 3562 3563
	{
	  /* A scalar or derived type.  */
	  tree val;

	  val = gfc_create_var (ppvoid_type_node, "ptr");
	  tmp = gfc_build_addr_expr (ppvoid_type_node, se.expr);
	  gfc_add_modify_expr (&se.pre, val, tmp);

	  tmp = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (se.expr)));
3564 3565 3566 3567

	  if (expr->ts.type == BT_CHARACTER && tmp == NULL_TREE)
	    tmp = se.string_length;

dnovillo's avatar
 
dnovillo committed
3568 3569 3570
	  parm = gfc_chainon_list (NULL_TREE, val);
	  parm = gfc_chainon_list (parm, tmp);
	  parm = gfc_chainon_list (parm, pstat);
3571
	  tmp = build_function_call_expr (gfor_fndecl_allocate, parm);
dnovillo's avatar
 
dnovillo committed
3572 3573 3574 3575 3576
	  gfc_add_expr_to_block (&se.pre, tmp);

	  if (code->expr)
	    {
	      tmp = build1_v (GOTO_EXPR, error_label);
3577 3578 3579 3580
	      parm = fold_build2 (NE_EXPR, boolean_type_node,
				  stat, build_int_cst (TREE_TYPE (stat), 0));
	      tmp = fold_build3 (COND_EXPR, void_type_node,
				 parm, tmp, build_empty_stmt ());
dnovillo's avatar
 
dnovillo committed
3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604
	      gfc_add_expr_to_block (&se.pre, tmp);
	    }
	}

      tmp = gfc_finish_block (&se.pre);
      gfc_add_expr_to_block (&block, tmp);
    }

  /* Assign the value to the status variable.  */
  if (code->expr)
    {
      tmp = build1_v (LABEL_EXPR, error_label);
      gfc_add_expr_to_block (&block, tmp);

      gfc_init_se (&se, NULL);
      gfc_conv_expr_lhs (&se, code->expr);
      tmp = convert (TREE_TYPE (se.expr), stat);
      gfc_add_modify_expr (&block, se.expr, tmp);
    }

  return gfc_finish_block (&block);
}


kargl's avatar
kargl committed
3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621
/* Translate a DEALLOCATE statement.
   There are two cases within the for loop:
   (1) deallocate(a1, a2, a3) is translated into the following sequence
       _gfortran_deallocate(a1, 0B)
       _gfortran_deallocate(a2, 0B)
       _gfortran_deallocate(a3, 0B)
       where the STAT= variable is passed a NULL pointer.
   (2) deallocate(a1, a2, a3, stat=i) is translated into the following
       astat = 0
       _gfortran_deallocate(a1, &stat)
       astat = astat + stat
       _gfortran_deallocate(a2, &stat)
       astat = astat + stat
       _gfortran_deallocate(a3, &stat)
       astat = astat + stat
    In case (1), we simply return at the end of the for loop.  In case (2)
    we set STAT= astat.  */
dnovillo's avatar
 
dnovillo committed
3622 3623 3624 3625 3626 3627
tree
gfc_trans_deallocate (gfc_code * code)
{
  gfc_se se;
  gfc_alloc *al;
  gfc_expr *expr;
kargl's avatar
kargl committed
3628
  tree apstat, astat, parm, pstat, stat, tmp, type, var;
dnovillo's avatar
 
dnovillo committed
3629 3630 3631 3632
  stmtblock_t block;

  gfc_start_block (&block);

kargl's avatar
kargl committed
3633 3634 3635 3636 3637 3638 3639
  /* Set up the optional STAT= */
  if (code->expr)
    {
      tree gfc_int4_type_node = gfc_get_int_type (4);

      /* Variable used with the library call.  */
      stat = gfc_create_var (gfc_int4_type_node, "stat");
3640
      pstat = build_fold_addr_expr (stat);
kargl's avatar
kargl committed
3641 3642 3643

      /* Running total of possible deallocation failures.  */
      astat = gfc_create_var (gfc_int4_type_node, "astat");
3644
      apstat = build_fold_addr_expr (astat);
kargl's avatar
kargl committed
3645 3646 3647 3648 3649 3650 3651 3652 3653 3654

      /* Initialize astat to 0.  */
      gfc_add_modify_expr (&block, astat, build_int_cst (TREE_TYPE (astat), 0));
    }
  else
    {
      pstat = apstat = null_pointer_node;
      stat = astat = NULL_TREE;
    }

dnovillo's avatar
 
dnovillo committed
3655 3656 3657
  for (al = code->ext.alloc_list; al != NULL; al = al->next)
    {
      expr = al->expr;
pbrook's avatar
pbrook committed
3658
      gcc_assert (expr->expr_type == EXPR_VARIABLE);
dnovillo's avatar
 
dnovillo committed
3659 3660 3661 3662 3663 3664 3665 3666

      gfc_init_se (&se, NULL);
      gfc_start_block (&se.pre);

      se.want_pointer = 1;
      se.descriptor_only = 1;
      gfc_conv_expr (&se, expr);

3667
      if (expr->rank)
kargl's avatar
kargl committed
3668
	tmp = gfc_array_deallocate (se.expr, pstat);
dnovillo's avatar
 
dnovillo committed
3669 3670 3671 3672 3673 3674 3675
      else
	{
	  type = build_pointer_type (TREE_TYPE (se.expr));
	  var = gfc_create_var (type, "ptr");
	  tmp = gfc_build_addr_expr (type, se.expr);
	  gfc_add_modify_expr (&se.pre, var, tmp);

kargl's avatar
kargl committed
3676 3677
	  parm = gfc_chainon_list (NULL_TREE, var);
	  parm = gfc_chainon_list (parm, pstat);
3678
	  tmp = build_function_call_expr (gfor_fndecl_deallocate, parm);
dnovillo's avatar
 
dnovillo committed
3679
	}
kargl's avatar
kargl committed
3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690

      gfc_add_expr_to_block (&se.pre, tmp);

      /* Keep track of the number of failed deallocations by adding stat
	 of the last deallocation to the running total.  */
      if (code->expr)
	{
	  apstat = build2 (PLUS_EXPR, TREE_TYPE (stat), astat, stat);
	  gfc_add_modify_expr (&se.pre, astat, apstat);
	}

dnovillo's avatar
 
dnovillo committed
3691 3692
      tmp = gfc_finish_block (&se.pre);
      gfc_add_expr_to_block (&block, tmp);
kargl's avatar
kargl committed
3693 3694 3695 3696 3697 3698 3699 3700 3701 3702

    }

  /* Assign the value to the status variable.  */
  if (code->expr)
    {
      gfc_init_se (&se, NULL);
      gfc_conv_expr_lhs (&se, code->expr);
      tmp = convert (TREE_TYPE (se.expr), astat);
      gfc_add_modify_expr (&block, se.expr, tmp);
dnovillo's avatar
 
dnovillo committed
3703 3704 3705 3706 3707
    }

  return gfc_finish_block (&block);
}