dojump.c 35.2 KB
Newer Older
1
/* Convert tree expression to rtl instructions, for GNU compiler.
2
   Copyright (C) 1988-2013 Free Software Foundation, Inc.
3 4 5 6 7

This file is part of GCC.

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

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.

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

#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "tm.h"
#include "rtl.h"
#include "tree.h"
#include "flags.h"
#include "function.h"
#include "insn-config.h"
#include "insn-attr.h"
/* Include expr.h after insn-config.h so we get HAVE_conditional_move.  */
#include "expr.h"
#include "optabs.h"
#include "langhooks.h"
34
#include "ggc.h"
35
#include "basic-block.h"
36
#include "tm_p.h"
37

38
static bool prefer_and_bit_test (enum machine_mode, int);
39 40
static void do_jump_by_parts_greater (tree, tree, int, rtx, rtx, int);
static void do_jump_by_parts_equality (tree, tree, rtx, rtx, int);
41
static void do_compare_and_jump	(tree, tree, enum rtx_code, enum rtx_code, rtx,
42 43 44 45 46 47 48 49 50
				 rtx, int);

/* Invert probability if there is any.  -1 stands for unknown.  */

static inline int
inv (int prob)
{
  return prob == -1 ? -1 : REG_BR_PROB_BASE - prob;
}
51 52 53 54 55

/* At the start of a function, record that we have no previously-pushed
   arguments waiting to be popped.  */

void
56
init_pending_stack_adjust (void)
57 58 59 60
{
  pending_stack_adjust = 0;
}

61 62 63
/* Discard any pending stack adjustment.  This avoid relying on the
   RTL optimizers to remove useless adjustments when we know the
   stack pointer value is dead.  */
64 65
void
discard_pending_stack_adjust (void)
66 67 68 69 70
{
  stack_pointer_delta -= pending_stack_adjust;
  pending_stack_adjust = 0;
}

71 72 73 74 75 76 77
/* When exiting from function, if safe, clear out any pending stack adjust
   so the adjustment won't get done.

   Note, if the current function calls alloca, then it must have a
   frame pointer regardless of the value of flag_omit_frame_pointer.  */

void
78
clear_pending_stack_adjust (void)
79 80
{
  if (optimize > 0
81
      && (! flag_omit_frame_pointer || cfun->calls_alloca)
82
      && EXIT_IGNORE_STACK)
83
    discard_pending_stack_adjust ();
84 85 86 87 88
}

/* Pop any previously-pushed arguments that have not been popped yet.  */

void
89
do_pending_stack_adjust (void)
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
{
  if (inhibit_defer_pop == 0)
    {
      if (pending_stack_adjust != 0)
        adjust_stack (GEN_INT (pending_stack_adjust));
      pending_stack_adjust = 0;
    }
}

/* Expand conditional expressions.  */

/* Generate code to evaluate EXP and jump to LABEL if the value is zero.
   LABEL is an rtx of code CODE_LABEL, in this function and all the
   functions here.  */

void
106
jumpifnot (tree exp, rtx label, int prob)
107
{
108
  do_jump (exp, label, NULL_RTX, inv (prob));
109 110
}

111
void
112
jumpifnot_1 (enum tree_code code, tree op0, tree op1, rtx label, int prob)
113
{
114
  do_jump_1 (code, op0, op1, label, NULL_RTX, inv (prob));
115 116
}

117 118 119
/* Generate code to evaluate EXP and jump to LABEL if the value is nonzero.  */

void
120
jumpif (tree exp, rtx label, int prob)
121
{
122
  do_jump (exp, NULL_RTX, label, prob);
123 124
}

125
void
126
jumpif_1 (enum tree_code code, tree op0, tree op1, rtx label, int prob)
127
{
128
  do_jump_1 (code, op0, op1, NULL_RTX, label, prob);
129 130
}

131 132 133 134 135 136 137 138 139 140 141 142 143
/* Used internally by prefer_and_bit_test.  */

static GTY(()) rtx and_reg;
static GTY(()) rtx and_test;
static GTY(()) rtx shift_test;

/* Compare the relative costs of "(X & (1 << BITNUM))" and "(X >> BITNUM) & 1",
   where X is an arbitrary register of mode MODE.  Return true if the former
   is preferred.  */

static bool
prefer_and_bit_test (enum machine_mode mode, int bitnum)
{
144 145
  bool speed_p;

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
  if (and_test == 0)
    {
      /* Set up rtxes for the two variations.  Use NULL as a placeholder
	 for the BITNUM-based constants.  */
      and_reg = gen_rtx_REG (mode, FIRST_PSEUDO_REGISTER);
      and_test = gen_rtx_AND (mode, and_reg, NULL);
      shift_test = gen_rtx_AND (mode, gen_rtx_ASHIFTRT (mode, and_reg, NULL),
				const1_rtx);
    }
  else
    {
      /* Change the mode of the previously-created rtxes.  */
      PUT_MODE (and_reg, mode);
      PUT_MODE (and_test, mode);
      PUT_MODE (shift_test, mode);
      PUT_MODE (XEXP (shift_test, 0), mode);
    }

  /* Fill in the integers.  */
165
  XEXP (and_test, 1)
166
    = immed_double_int_const (double_int_zero.set_bit (bitnum), mode);
167 168
  XEXP (XEXP (shift_test, 0), 1) = GEN_INT (bitnum);

169 170 171
  speed_p = optimize_insn_for_speed_p ();
  return (rtx_cost (and_test, IF_THEN_ELSE, 0, speed_p)
	  <= rtx_cost (shift_test, IF_THEN_ELSE, 0, speed_p));
172 173
}

174
/* Subroutine of do_jump, dealing with exploded comparisons of the type
175 176
   OP0 CODE OP1 .  IF_FALSE_LABEL and IF_TRUE_LABEL like in do_jump.
   PROB is probability of jump to if_true_label, or -1 if unknown.  */
177 178 179

void
do_jump_1 (enum tree_code code, tree op0, tree op1,
180
	   rtx if_false_label, rtx if_true_label, int prob)
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
{
  enum machine_mode mode;
  rtx drop_through_label = 0;

  switch (code)
    {
    case EQ_EXPR:
      {
        tree inner_type = TREE_TYPE (op0);

        gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
		    != MODE_COMPLEX_FLOAT);
	gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
		    != MODE_COMPLEX_INT);

        if (integer_zerop (op1))
197
	  do_jump (op0, if_true_label, if_false_label, inv (prob));
198 199
        else if (GET_MODE_CLASS (TYPE_MODE (inner_type)) == MODE_INT
                 && !can_compare_p (EQ, TYPE_MODE (inner_type), ccp_jump))
200 201
	  do_jump_by_parts_equality (op0, op1, if_false_label, if_true_label,
				     prob);
202
        else
203 204
	  do_compare_and_jump (op0, op1, EQ, EQ, if_false_label, if_true_label,
			       prob);
205 206 207 208 209 210 211 212 213 214 215 216 217
        break;
      }

    case NE_EXPR:
      {
        tree inner_type = TREE_TYPE (op0);

        gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
		    != MODE_COMPLEX_FLOAT);
	gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
		    != MODE_COMPLEX_INT);

        if (integer_zerop (op1))
218
	  do_jump (op0, if_false_label, if_true_label, prob);
219 220
        else if (GET_MODE_CLASS (TYPE_MODE (inner_type)) == MODE_INT
           && !can_compare_p (NE, TYPE_MODE (inner_type), ccp_jump))
221 222
	  do_jump_by_parts_equality (op0, op1, if_true_label, if_false_label,
				     inv (prob));
223
        else
224 225
	  do_compare_and_jump (op0, op1, NE, NE, if_false_label, if_true_label,
			       prob);
226 227 228 229 230 231 232
        break;
      }

    case LT_EXPR:
      mode = TYPE_MODE (TREE_TYPE (op0));
      if (GET_MODE_CLASS (mode) == MODE_INT
          && ! can_compare_p (LT, mode, ccp_jump))
233 234
	do_jump_by_parts_greater (op0, op1, 1, if_false_label, if_true_label,
				  prob);
235
      else
236 237
	do_compare_and_jump (op0, op1, LT, LTU, if_false_label, if_true_label,
			     prob);
238 239 240 241 242 243
      break;

    case LE_EXPR:
      mode = TYPE_MODE (TREE_TYPE (op0));
      if (GET_MODE_CLASS (mode) == MODE_INT
          && ! can_compare_p (LE, mode, ccp_jump))
244 245
	do_jump_by_parts_greater (op0, op1, 0, if_true_label, if_false_label,
				  inv (prob));
246
      else
247 248
	do_compare_and_jump (op0, op1, LE, LEU, if_false_label, if_true_label,
			     prob);
249 250 251 252 253 254
      break;

    case GT_EXPR:
      mode = TYPE_MODE (TREE_TYPE (op0));
      if (GET_MODE_CLASS (mode) == MODE_INT
          && ! can_compare_p (GT, mode, ccp_jump))
255 256
	do_jump_by_parts_greater (op0, op1, 0, if_false_label, if_true_label,
				  prob);
257
      else
258 259
	do_compare_and_jump (op0, op1, GT, GTU, if_false_label, if_true_label,
			     prob);
260 261 262 263 264 265
      break;

    case GE_EXPR:
      mode = TYPE_MODE (TREE_TYPE (op0));
      if (GET_MODE_CLASS (mode) == MODE_INT
          && ! can_compare_p (GE, mode, ccp_jump))
266 267
	do_jump_by_parts_greater (op0, op1, 1, if_true_label, if_false_label,
				  inv (prob));
268
      else
269 270
	do_compare_and_jump (op0, op1, GE, GEU, if_false_label, if_true_label,
			     prob);
271 272 273 274
      break;

    case ORDERED_EXPR:
      do_compare_and_jump (op0, op1, ORDERED, ORDERED,
275
			   if_false_label, if_true_label, prob);
276 277 278 279
      break;

    case UNORDERED_EXPR:
      do_compare_and_jump (op0, op1, UNORDERED, UNORDERED,
280
			   if_false_label, if_true_label, prob);
281 282 283
      break;

    case UNLT_EXPR:
284 285
      do_compare_and_jump (op0, op1, UNLT, UNLT, if_false_label, if_true_label,
			   prob);
286 287 288
      break;

    case UNLE_EXPR:
289 290
      do_compare_and_jump (op0, op1, UNLE, UNLE, if_false_label, if_true_label,
			   prob);
291 292 293
      break;

    case UNGT_EXPR:
294 295
      do_compare_and_jump (op0, op1, UNGT, UNGT, if_false_label, if_true_label,
			   prob);
296 297 298
      break;

    case UNGE_EXPR:
299 300
      do_compare_and_jump (op0, op1, UNGE, UNGE, if_false_label, if_true_label,
			   prob);
301 302 303
      break;

    case UNEQ_EXPR:
304 305
      do_compare_and_jump (op0, op1, UNEQ, UNEQ, if_false_label, if_true_label,
			   prob);
306 307 308
      break;

    case LTGT_EXPR:
309 310
      do_compare_and_jump (op0, op1, LTGT, LTGT, if_false_label, if_true_label,
			   prob);
311 312 313
      break;

    case TRUTH_ANDIF_EXPR:
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
      {
        /* Spread the probability that the expression is false evenly between
           the two conditions. So the first condition is false half the total
           probability of being false. The second condition is false the other
           half of the total probability of being false, so its jump has a false
           probability of half the total, relative to the probability we
           reached it (i.e. the first condition was true).  */
        int op0_prob = -1;
        int op1_prob = -1;
        if (prob != -1)
          {
            int false_prob = inv (prob);
            int op0_false_prob = false_prob / 2;
            int op1_false_prob = GCOV_COMPUTE_SCALE ((false_prob / 2),
                                                     inv (op0_false_prob));
            /* Get the probability that each jump below is true.  */
            op0_prob = inv (op0_false_prob);
            op1_prob = inv (op1_false_prob);
          }
        if (if_false_label == NULL_RTX)
          {
            drop_through_label = gen_label_rtx ();
            do_jump (op0, drop_through_label, NULL_RTX, op0_prob);
            do_jump (op1, NULL_RTX, if_true_label, op1_prob);
          }
        else
          {
            do_jump (op0, if_false_label, NULL_RTX, op0_prob);
            do_jump (op1, if_false_label, if_true_label, op1_prob);
          }
        break;
      }
346 347

    case TRUTH_ORIF_EXPR:
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
      {
        /* Spread the probability evenly between the two conditions. So
           the first condition has half the total probability of being true.
           The second condition has the other half of the total probability,
           so its jump has a probability of half the total, relative to
           the probability we reached it (i.e. the first condition was false).  */
        int op0_prob = -1;
        int op1_prob = -1;
        if (prob != -1)
          {
            op0_prob = prob / 2;
            op1_prob = GCOV_COMPUTE_SCALE ((prob / 2), inv (op0_prob));
          }
        if (if_true_label == NULL_RTX)
          {
            drop_through_label = gen_label_rtx ();
            do_jump (op0, NULL_RTX, drop_through_label, op0_prob);
            do_jump (op1, if_false_label, NULL_RTX, op1_prob);
          }
        else
          {
            do_jump (op0, NULL_RTX, if_true_label, op0_prob);
            do_jump (op1, if_false_label, if_true_label, op1_prob);
          }
        break;
      }
374 375 376 377 378 379 380 381 382 383 384 385

    default:
      gcc_unreachable ();
    }

  if (drop_through_label)
    {
      do_pending_stack_adjust ();
      emit_label (drop_through_label);
    }
}

386 387 388 389 390 391 392
/* Generate code to evaluate EXP and jump to IF_FALSE_LABEL if
   the result is zero, or IF_TRUE_LABEL if the result is one.
   Either of IF_FALSE_LABEL and IF_TRUE_LABEL may be zero,
   meaning fall through in that case.

   do_jump always does any pending stack adjust except when it does not
   actually perform a jump.  An example where there is no jump
393 394 395
   is when EXP is `(foo (), 0)' and IF_FALSE_LABEL is null.

   PROB is probability of jump to if_true_label, or -1 if unknown.  */
396 397

void
398
do_jump (tree exp, rtx if_false_label, rtx if_true_label, int prob)
399 400 401 402 403 404
{
  enum tree_code code = TREE_CODE (exp);
  rtx temp;
  int i;
  tree type;
  enum machine_mode mode;
405
  rtx drop_through_label = 0;
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444

  switch (code)
    {
    case ERROR_MARK:
      break;

    case INTEGER_CST:
      temp = integer_zerop (exp) ? if_false_label : if_true_label;
      if (temp)
        emit_jump (temp);
      break;

#if 0
      /* This is not true with #pragma weak  */
    case ADDR_EXPR:
      /* The address of something can never be zero.  */
      if (if_true_label)
        emit_jump (if_true_label);
      break;
#endif

    case NOP_EXPR:
      if (TREE_CODE (TREE_OPERAND (exp, 0)) == COMPONENT_REF
          || TREE_CODE (TREE_OPERAND (exp, 0)) == BIT_FIELD_REF
          || TREE_CODE (TREE_OPERAND (exp, 0)) == ARRAY_REF
          || TREE_CODE (TREE_OPERAND (exp, 0)) == ARRAY_RANGE_REF)
        goto normal;
    case CONVERT_EXPR:
      /* If we are narrowing the operand, we have to do the compare in the
         narrower mode.  */
      if ((TYPE_PRECISION (TREE_TYPE (exp))
           < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0)))))
        goto normal;
    case NON_LVALUE_EXPR:
    case ABS_EXPR:
    case NEGATE_EXPR:
    case LROTATE_EXPR:
    case RROTATE_EXPR:
      /* These cannot change zero->nonzero or vice versa.  */
445
      do_jump (TREE_OPERAND (exp, 0), if_false_label, if_true_label, prob);
446 447 448
      break;

    case TRUTH_NOT_EXPR:
449 450
      do_jump (TREE_OPERAND (exp, 0), if_true_label, if_false_label,
	       inv (prob));
451 452
      break;

453 454 455 456 457 458 459 460 461 462 463 464 465
    case COND_EXPR:
      {
	rtx label1 = gen_label_rtx ();
	if (!if_true_label || !if_false_label)
	  {
	    drop_through_label = gen_label_rtx ();
	    if (!if_true_label)
	      if_true_label = drop_through_label;
	    if (!if_false_label)
	      if_false_label = drop_through_label;
	  }

        do_pending_stack_adjust ();
466 467
	do_jump (TREE_OPERAND (exp, 0), label1, NULL_RTX, -1);
	do_jump (TREE_OPERAND (exp, 1), if_false_label, if_true_label, prob);
468
        emit_label (label1);
469
	do_jump (TREE_OPERAND (exp, 2), if_false_label, if_true_label, prob);
470 471 472
	break;
      }

473
    case COMPOUND_EXPR:
Paolo Bonzini committed
474
      /* Lowered by gimplify.c.  */
475
      gcc_unreachable ();
476

477 478
    case MINUS_EXPR:
      /* Nonzero iff operands of minus differ.  */
479 480
      code = NE_EXPR;

481
      /* FALLTHRU */
482
    case EQ_EXPR:
483 484 485 486 487 488
    case NE_EXPR:
    case LT_EXPR:
    case LE_EXPR:
    case GT_EXPR:
    case GE_EXPR:
    case ORDERED_EXPR:
489 490 491 492 493 494 495
    case UNORDERED_EXPR:
    case UNLT_EXPR:
    case UNLE_EXPR:
    case UNGT_EXPR:
    case UNGE_EXPR:
    case UNEQ_EXPR:
    case LTGT_EXPR:
496 497
    case TRUTH_ANDIF_EXPR:
    case TRUTH_ORIF_EXPR:
498
    other_code:
499
      do_jump_1 (code, TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
500
		 if_false_label, if_true_label, prob);
501
      break;
502 503 504 505 506 507 508 509 510

    case BIT_AND_EXPR:
      /* fold_single_bit_test() converts (X & (1 << C)) into (X >> C) & 1.
	 See if the former is preferred for jump tests and restore it
	 if so.  */
      if (integer_onep (TREE_OPERAND (exp, 1)))
	{
	  tree exp0 = TREE_OPERAND (exp, 0);
	  rtx set_label, clr_label;
511
	  int setclr_prob = prob;
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526

	  /* Strip narrowing integral type conversions.  */
	  while (CONVERT_EXPR_P (exp0)
		 && TREE_OPERAND (exp0, 0) != error_mark_node
		 && TYPE_PRECISION (TREE_TYPE (exp0))
		    <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp0, 0))))
	    exp0 = TREE_OPERAND (exp0, 0);

	  /* "exp0 ^ 1" inverts the sense of the single bit test.  */
	  if (TREE_CODE (exp0) == BIT_XOR_EXPR
	      && integer_onep (TREE_OPERAND (exp0, 1)))
	    {
	      exp0 = TREE_OPERAND (exp0, 0);
	      clr_label = if_true_label;
	      set_label = if_false_label;
527
	      setclr_prob = inv (prob);
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	    }
	  else
	    {
	      clr_label = if_false_label;
	      set_label = if_true_label;
	    }

	  if (TREE_CODE (exp0) == RSHIFT_EXPR)
	    {
	      tree arg = TREE_OPERAND (exp0, 0);
	      tree shift = TREE_OPERAND (exp0, 1);
	      tree argtype = TREE_TYPE (arg);
	      if (TREE_CODE (shift) == INTEGER_CST
		  && compare_tree_int (shift, 0) >= 0
		  && compare_tree_int (shift, HOST_BITS_PER_WIDE_INT) < 0
		  && prefer_and_bit_test (TYPE_MODE (argtype),
					  TREE_INT_CST_LOW (shift)))
		{
546 547
		  unsigned HOST_WIDE_INT mask
		    = (unsigned HOST_WIDE_INT) 1 << TREE_INT_CST_LOW (shift);
548
		  do_jump (build2 (BIT_AND_EXPR, argtype, arg,
549
				   build_int_cstu (argtype, mask)),
550
			   clr_label, set_label, setclr_prob);
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
		  break;
		}
	    }
	}

      /* If we are AND'ing with a small constant, do this comparison in the
         smallest type that fits.  If the machine doesn't have comparisons
         that small, it will be converted back to the wider comparison.
         This helps if we are testing the sign bit of a narrower object.
         combine can't do this for us because it can't know whether a
         ZERO_EXTRACT or a compare in a smaller mode exists, but we do.  */

      if (! SLOW_BYTE_ACCESS
          && TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
          && TYPE_PRECISION (TREE_TYPE (exp)) <= HOST_BITS_PER_WIDE_INT
          && (i = tree_floor_log2 (TREE_OPERAND (exp, 1))) >= 0
          && (mode = mode_for_size (i + 1, MODE_INT, 0)) != BLKmode
          && (type = lang_hooks.types.type_for_mode (mode, 1)) != 0
          && TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (exp))
570
          && have_insn_for (COMPARE, TYPE_MODE (type)))
571
        {
572 573
	  do_jump (fold_convert (type, exp), if_false_label, if_true_label,
		   prob);
574 575 576 577 578 579 580 581
          break;
        }

      if (TYPE_PRECISION (TREE_TYPE (exp)) > 1
	  || TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
	goto normal;

      /* Boolean comparisons can be compiled as TRUTH_AND_EXPR.  */
582

583
    case TRUTH_AND_EXPR:
584 585 586
      /* High branch cost, expand as the bitwise AND of the conditions.
	 Do the same if the RHS has side effects, because we're effectively
	 turning a TRUTH_AND_EXPR into a TRUTH_ANDIF_EXPR.  */
587 588 589
      if (BRANCH_COST (optimize_insn_for_speed_p (),
		       false) >= 4
	  || TREE_SIDE_EFFECTS (TREE_OPERAND (exp, 1)))
590
	goto normal;
591 592
      code = TRUTH_ANDIF_EXPR;
      goto other_code;
593

594
    case BIT_IOR_EXPR:
595
    case TRUTH_OR_EXPR:
596 597 598
      /* High branch cost, expand as the bitwise OR of the conditions.
	 Do the same if the RHS has side effects, because we're effectively
	 turning a TRUTH_OR_EXPR into a TRUTH_ORIF_EXPR.  */
599
      if (BRANCH_COST (optimize_insn_for_speed_p (), false) >= 4
600
	  || TREE_SIDE_EFFECTS (TREE_OPERAND (exp, 1)))
601
	goto normal;
602 603
      code = TRUTH_ORIF_EXPR;
      goto other_code;
604

605
      /* Fall through and generate the normal code.  */
606 607
    default:
    normal:
608
      temp = expand_normal (exp);
609
      do_pending_stack_adjust ();
610 611
      /* The RTL optimizers prefer comparisons against pseudos.  */
      if (GET_CODE (temp) == SUBREG)
612
	{
613 614 615 616 617 618
	  /* Compare promoted variables in their promoted mode.  */
	  if (SUBREG_PROMOTED_VAR_P (temp)
	      && REG_P (XEXP (temp, 0)))
	    temp = XEXP (temp, 0);
	  else
	    temp = copy_to_reg (temp);
619
	}
620 621 622
      do_compare_rtx_and_jump (temp, CONST0_RTX (GET_MODE (temp)),
			       NE, TYPE_UNSIGNED (TREE_TYPE (exp)),
			       GET_MODE (temp), NULL_RTX,
623
			       if_false_label, if_true_label, prob);
624
    }
625 626 627 628 629 630

  if (drop_through_label)
    {
      do_pending_stack_adjust ();
      emit_label (drop_through_label);
    }
631 632 633 634 635 636
}

/* Compare OP0 with OP1, word at a time, in mode MODE.
   UNSIGNEDP says to do unsigned comparison.
   Jump to IF_TRUE_LABEL if OP0 is greater, IF_FALSE_LABEL otherwise.  */

637
static void
638
do_jump_by_parts_greater_rtx (enum machine_mode mode, int unsignedp, rtx op0,
639 640
			      rtx op1, rtx if_false_label, rtx if_true_label,
			      int prob)
641 642 643
{
  int nwords = (GET_MODE_SIZE (mode) / UNITS_PER_WORD);
  rtx drop_through_label = 0;
644 645
  bool drop_through_if_true = false, drop_through_if_false = false;
  enum rtx_code code = GT;
646 647 648 649 650
  int i;

  if (! if_true_label || ! if_false_label)
    drop_through_label = gen_label_rtx ();
  if (! if_true_label)
651 652 653 654
    {
      if_true_label = drop_through_label;
      drop_through_if_true = true;
    }
655
  if (! if_false_label)
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
    {
      if_false_label = drop_through_label;
      drop_through_if_false = true;
    }

  /* Deal with the special case 0 > x: only one comparison is necessary and
     we reverse it to avoid jumping to the drop-through label.  */
  if (op0 == const0_rtx && drop_through_if_true && !drop_through_if_false)
    {
      code = LE;
      if_true_label = if_false_label;
      if_false_label = drop_through_label;
      drop_through_if_true = false;
      drop_through_if_false = true;
    }
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688

  /* Compare a word at a time, high order first.  */
  for (i = 0; i < nwords; i++)
    {
      rtx op0_word, op1_word;

      if (WORDS_BIG_ENDIAN)
        {
          op0_word = operand_subword_force (op0, i, mode);
          op1_word = operand_subword_force (op1, i, mode);
        }
      else
        {
          op0_word = operand_subword_force (op0, nwords - 1 - i, mode);
          op1_word = operand_subword_force (op1, nwords - 1 - i, mode);
        }

      /* All but high-order word must be compared as unsigned.  */
689 690 691 692 693 694 695
      do_compare_rtx_and_jump (op0_word, op1_word, code, (unsignedp || i > 0),
			       word_mode, NULL_RTX, NULL_RTX, if_true_label,
			       prob);

      /* Emit only one comparison for 0.  Do not emit the last cond jump.  */
      if (op0 == const0_rtx || i == nwords - 1)
	break;
696 697 698

      /* Consider lower words only if these are equal.  */
      do_compare_rtx_and_jump (op0_word, op1_word, NE, unsignedp, word_mode,
699
			       NULL_RTX, NULL_RTX, if_false_label, inv (prob));
700 701
    }

702
  if (!drop_through_if_false)
703 704 705 706
    emit_jump (if_false_label);
  if (drop_through_label)
    emit_label (drop_through_label);
}
707 708 709 710 711 712 713

/* Given a comparison expression EXP for values too wide to be compared
   with one insn, test the comparison and jump to the appropriate label.
   The code of EXP is ignored; we always test GT if SWAP is 0,
   and LT if SWAP is 1.  */

static void
714
do_jump_by_parts_greater (tree treeop0, tree treeop1, int swap,
715
			  rtx if_false_label, rtx if_true_label, int prob)
716
{
717 718 719 720
  rtx op0 = expand_normal (swap ? treeop1 : treeop0);
  rtx op1 = expand_normal (swap ? treeop0 : treeop1);
  enum machine_mode mode = TYPE_MODE (TREE_TYPE (treeop0));
  int unsignedp = TYPE_UNSIGNED (TREE_TYPE (treeop0));
721 722

  do_jump_by_parts_greater_rtx (mode, unsignedp, op0, op1, if_false_label,
723
				if_true_label, prob);
724
}
725

726 727 728 729
/* Jump according to whether OP0 is 0.  We assume that OP0 has an integer
   mode, MODE, that is too wide for the available compare insns.  Either
   Either (but not both) of IF_TRUE_LABEL and IF_FALSE_LABEL may be NULL_RTX
   to indicate drop through.  */
730

731 732
static void
do_jump_by_parts_zero_rtx (enum machine_mode mode, rtx op0,
733
			   rtx if_false_label, rtx if_true_label, int prob)
734
{
735
  int nwords = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
736 737 738 739 740 741 742 743 744 745
  rtx part;
  int i;
  rtx drop_through_label = 0;

  /* The fastest way of doing this comparison on almost any machine is to
     "or" all the words and compare the result.  If all have to be loaded
     from memory and this is a very wide item, it's possible this may
     be slower, but that's highly unlikely.  */

  part = gen_reg_rtx (word_mode);
746
  emit_move_insn (part, operand_subword_force (op0, 0, mode));
747 748
  for (i = 1; i < nwords && part != 0; i++)
    part = expand_binop (word_mode, ior_optab, part,
749
                         operand_subword_force (op0, i, mode),
750 751 752 753 754
                         part, 1, OPTAB_WIDEN);

  if (part != 0)
    {
      do_compare_rtx_and_jump (part, const0_rtx, EQ, 1, word_mode,
755
			       NULL_RTX, if_false_label, if_true_label, prob);
756 757 758 759 760 761 762 763
      return;
    }

  /* If we couldn't do the "or" simply, do this with a series of compares.  */
  if (! if_false_label)
    drop_through_label = if_false_label = gen_label_rtx ();

  for (i = 0; i < nwords; i++)
764
    do_compare_rtx_and_jump (operand_subword_force (op0, i, mode),
765
                             const0_rtx, EQ, 1, word_mode, NULL_RTX,
766
			     if_false_label, NULL_RTX, prob);
767 768 769 770 771 772 773

  if (if_true_label)
    emit_jump (if_true_label);

  if (drop_through_label)
    emit_label (drop_through_label);
}
774 775 776 777 778 779 780 781

/* Test for the equality of two RTX expressions OP0 and OP1 in mode MODE,
   where MODE is an integer mode too wide to be compared with one insn.
   Either (but not both) of IF_TRUE_LABEL and IF_FALSE_LABEL may be NULL_RTX
   to indicate drop through.  */

static void
do_jump_by_parts_equality_rtx (enum machine_mode mode, rtx op0, rtx op1,
782
			       rtx if_false_label, rtx if_true_label, int prob)
783 784 785 786 787 788 789
{
  int nwords = (GET_MODE_SIZE (mode) / UNITS_PER_WORD);
  rtx drop_through_label = 0;
  int i;

  if (op1 == const0_rtx)
    {
790 791
      do_jump_by_parts_zero_rtx (mode, op0, if_false_label, if_true_label,
				 prob);
792 793 794 795
      return;
    }
  else if (op0 == const0_rtx)
    {
796 797
      do_jump_by_parts_zero_rtx (mode, op1, if_false_label, if_true_label,
				 prob);
798 799 800 801 802 803 804 805 806 807
      return;
    }

  if (! if_false_label)
    drop_through_label = if_false_label = gen_label_rtx ();

  for (i = 0; i < nwords; i++)
    do_compare_rtx_and_jump (operand_subword_force (op0, i, mode),
                             operand_subword_force (op1, i, mode),
                             EQ, 0, word_mode, NULL_RTX,
808
			     if_false_label, NULL_RTX, prob);
809 810 811 812 813 814 815 816 817 818 819

  if (if_true_label)
    emit_jump (if_true_label);
  if (drop_through_label)
    emit_label (drop_through_label);
}

/* Given an EQ_EXPR expression EXP for values too wide to be compared
   with one insn, test the comparison and jump to the appropriate label.  */

static void
820
do_jump_by_parts_equality (tree treeop0, tree treeop1, rtx if_false_label,
821
			   rtx if_true_label, int prob)
822
{
823 824 825
  rtx op0 = expand_normal (treeop0);
  rtx op1 = expand_normal (treeop1);
  enum machine_mode mode = TYPE_MODE (TREE_TYPE (treeop0));
826
  do_jump_by_parts_equality_rtx (mode, op0, op1, if_false_label,
827
				 if_true_label, prob);
828
}
829

830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
/* Split a comparison into two others, the second of which has the other
   "orderedness".  The first is always ORDERED or UNORDERED if MODE
   does not honor NaNs (which means that it can be skipped in that case;
   see do_compare_rtx_and_jump).

   The two conditions are written in *CODE1 and *CODE2.  Return true if
   the conditions must be ANDed, false if they must be ORed.  */

bool
split_comparison (enum rtx_code code, enum machine_mode mode,
		  enum rtx_code *code1, enum rtx_code *code2)
{
  switch (code)
    {
    case LT:
      *code1 = ORDERED;
      *code2 = UNLT;
      return true;
    case LE:
      *code1 = ORDERED;
      *code2 = UNLE;
      return true;
    case GT:
      *code1 = ORDERED;
      *code2 = UNGT;
      return true;
    case GE:
      *code1 = ORDERED;
      *code2 = UNGE;
      return true;
    case EQ:
      *code1 = ORDERED;
      *code2 = UNEQ;
      return true;
    case NE:
      *code1 = UNORDERED;
      *code2 = LTGT;
      return false;
    case UNLT:
      *code1 = UNORDERED;
      *code2 = LT;
      return false;
    case UNLE:
      *code1 = UNORDERED;
      *code2 = LE;
      return false;
    case UNGT:
      *code1 = UNORDERED;
      *code2 = GT;
      return false;
    case UNGE:
      *code1 = UNORDERED;
      *code2 = GE;
      return false;
    case UNEQ:
      *code1 = UNORDERED;
      *code2 = EQ;
      return false;
    case LTGT:
      /* Do not turn a trapping comparison into a non-trapping one.  */
      if (HONOR_SNANS (mode))
	{
          *code1 = LT;
          *code2 = GT;
          return false;
	}
      else
	{
	  *code1 = ORDERED;
	  *code2 = NE;
	  return true;
	}
    default:
      gcc_unreachable ();
    }
}


908 909 910 911 912 913 914
/* Like do_compare_and_jump but expects the values to compare as two rtx's.
   The decision as to signed or unsigned comparison must be made by the caller.

   If MODE is BLKmode, SIZE is an RTX giving the size of the objects being
   compared.  */

void
915 916
do_compare_rtx_and_jump (rtx op0, rtx op1, enum rtx_code code, int unsignedp,
			 enum machine_mode mode, rtx size, rtx if_false_label,
917
			 rtx if_true_label, int prob)
918 919
{
  rtx tem;
920
  rtx dummy_label = NULL_RTX;
921 922

  /* Reverse the comparison if that is safe and we want to jump if it is
923 924 925 926 927 928 929 930
     false.  Also convert to the reverse comparison if the target can
     implement it.  */
  if ((! if_true_label
       || ! can_compare_p (code, mode, ccp_jump))
      && (! FLOAT_MODE_P (mode)
	  || code == ORDERED || code == UNORDERED
	  || (! HONOR_NANS (mode) && (code == LTGT || code == UNEQ))
	  || (! HONOR_SNANS (mode) && (code == EQ || code == NE))))
931
    {
932 933 934 935 936 937 938 939 940 941 942 943 944 945
      enum rtx_code rcode;
      if (FLOAT_MODE_P (mode))
        rcode = reverse_condition_maybe_unordered (code);
      else
        rcode = reverse_condition (code);

      /* Canonicalize to UNORDERED for the libcall.  */
      if (can_compare_p (rcode, mode, ccp_jump)
	  || (code == ORDERED && ! can_compare_p (ORDERED, mode, ccp_jump)))
	{
          tem = if_true_label;
          if_true_label = if_false_label;
          if_false_label = tem;
	  code = rcode;
946
	  prob = inv (prob);
947
	}
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962
    }

  /* If one operand is constant, make it the second one.  Only do this
     if the other operand is not constant as well.  */

  if (swap_commutative_operands_p (op0, op1))
    {
      tem = op0;
      op0 = op1;
      op1 = tem;
      code = swap_condition (code);
    }

  do_pending_stack_adjust ();

963 964 965
  code = unsignedp ? unsigned_condition (code) : code;
  if (0 != (tem = simplify_relational_operation (code, mode, VOIDmode,
						 op0, op1)))
966
    {
967 968 969 970 971 972 973 974
      if (CONSTANT_P (tem))
	{
	  rtx label = (tem == const0_rtx || tem == CONST0_RTX (mode))
		      ? if_false_label : if_true_label;
	  if (label)
	    emit_jump (label);
	  return;
	}
975

976 977 978 979 980
      code = GET_CODE (tem);
      mode = GET_MODE (tem);
      op0 = XEXP (tem, 0);
      op1 = XEXP (tem, 1);
      unsignedp = (code == GTU || code == LTU || code == GEU || code == LEU);
981 982 983
    }

  if (! if_true_label)
984
    dummy_label = if_true_label = gen_label_rtx ();
985

986 987 988 989 990 991 992
  if (GET_MODE_CLASS (mode) == MODE_INT
      && ! can_compare_p (code, mode, ccp_jump))
    {
      switch (code)
	{
	case LTU:
	  do_jump_by_parts_greater_rtx (mode, 1, op1, op0,
993
					if_false_label, if_true_label, prob);
994 995 996 997
	  break;

	case LEU:
	  do_jump_by_parts_greater_rtx (mode, 1, op0, op1,
998 999
					if_true_label, if_false_label,
					inv (prob));
1000 1001
	  break;

1002 1003
	case GTU:
	  do_jump_by_parts_greater_rtx (mode, 1, op0, op1,
1004
					if_false_label, if_true_label, prob);
1005 1006 1007 1008
	  break;

	case GEU:
	  do_jump_by_parts_greater_rtx (mode, 1, op1, op0,
1009 1010
					if_true_label, if_false_label,
					inv (prob));
1011 1012
	  break;

1013 1014
	case LT:
	  do_jump_by_parts_greater_rtx (mode, 0, op1, op0,
1015
					if_false_label, if_true_label, prob);
1016 1017
	  break;

1018 1019
	case LE:
	  do_jump_by_parts_greater_rtx (mode, 0, op0, op1,
1020 1021
					if_true_label, if_false_label,
					inv (prob));
1022 1023
	  break;

1024 1025
	case GT:
	  do_jump_by_parts_greater_rtx (mode, 0, op0, op1,
1026
					if_false_label, if_true_label, prob);
1027 1028 1029 1030
	  break;

	case GE:
	  do_jump_by_parts_greater_rtx (mode, 0, op1, op0,
1031 1032
					if_true_label, if_false_label,
					inv (prob));
1033 1034 1035 1036
	  break;

	case EQ:
	  do_jump_by_parts_equality_rtx (mode, op0, op1, if_false_label,
1037
					 if_true_label, prob);
1038 1039 1040 1041
	  break;

	case NE:
	  do_jump_by_parts_equality_rtx (mode, op0, op1, if_true_label,
1042
					 if_false_label, inv (prob));
1043 1044 1045 1046 1047 1048 1049
	  break;

	default:
	  gcc_unreachable ();
	}
    }
  else
1050
    {
1051
      if (SCALAR_FLOAT_MODE_P (mode)
1052
	  && ! can_compare_p (code, mode, ccp_jump)
1053 1054 1055 1056 1057 1058 1059 1060
	  && can_compare_p (swap_condition (code), mode, ccp_jump))
	{
	  rtx tmp;
	  code = swap_condition (code);
	  tmp = op0;
	  op0 = op1;
	  op1 = tmp;
	}
1061
      else if (SCALAR_FLOAT_MODE_P (mode)
1062
	       && ! can_compare_p (code, mode, ccp_jump)
1063 1064
	       /* Never split ORDERED and UNORDERED.
		  These must be implemented.  */
1065
	       && (code != ORDERED && code != UNORDERED)
1066 1067
               /* Split a floating-point comparison if
		  we can jump on other conditions...  */
1068 1069
	       && (have_insn_for (COMPARE, mode)
	           /* ... or if there is no libcall for it.  */
1070
	           || code_to_optab (code) == unknown_optab))
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
        {
	  enum rtx_code first_code;
	  bool and_them = split_comparison (code, mode, &first_code, &code);

	  /* If there are no NaNs, the first comparison should always fall
	     through.  */
	  if (!HONOR_NANS (mode))
	    gcc_assert (first_code == (and_them ? ORDERED : UNORDERED));

	  else
	    {
	      if (and_them)
		{
		  rtx dest_label;
		  /* If we only jump if true, just bypass the second jump.  */
		  if (! if_false_label)
		    {
		      if (! dummy_label)
		        dummy_label = gen_label_rtx ();
		      dest_label = dummy_label;
		    }
		  else
		    dest_label = if_false_label;
                  do_compare_rtx_and_jump (op0, op1, first_code, unsignedp, mode,
1095
					   size, dest_label, NULL_RTX, prob);
1096 1097 1098
		}
              else
                do_compare_rtx_and_jump (op0, op1, first_code, unsignedp, mode,
1099
					 size, NULL_RTX, if_true_label, prob);
1100 1101 1102 1103
	    }
	}

      emit_cmp_and_jump_insns (op0, op1, code, size, mode, unsignedp,
Easwaran Raman committed
1104
			       if_true_label, prob);
1105
    }
1106 1107 1108

  if (if_false_label)
    emit_jump (if_false_label);
1109 1110
  if (dummy_label)
    emit_label (dummy_label);
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
}

/* Generate code for a comparison expression EXP (including code to compute
   the values to be compared) and a conditional jump to IF_FALSE_LABEL and/or
   IF_TRUE_LABEL.  One of the labels can be NULL_RTX, in which case the
   generated code will drop through.
   SIGNED_CODE should be the rtx operation for this comparison for
   signed data; UNSIGNED_CODE, likewise for use if data is unsigned.

   We force a stack adjustment unless there are currently
   things pushed on the stack that aren't yet used.  */

static void
1124
do_compare_and_jump (tree treeop0, tree treeop1, enum rtx_code signed_code,
1125
		     enum rtx_code unsigned_code, rtx if_false_label,
1126
		     rtx if_true_label, int prob)
1127 1128 1129 1130 1131 1132 1133 1134
{
  rtx op0, op1;
  tree type;
  enum machine_mode mode;
  int unsignedp;
  enum rtx_code code;

  /* Don't crash if the comparison was erroneous.  */
1135 1136
  op0 = expand_normal (treeop0);
  if (TREE_CODE (treeop0) == ERROR_MARK)
1137 1138
    return;

1139 1140
  op1 = expand_normal (treeop1);
  if (TREE_CODE (treeop1) == ERROR_MARK)
1141 1142
    return;

1143
  type = TREE_TYPE (treeop0);
1144
  mode = TYPE_MODE (type);
1145 1146
  if (TREE_CODE (treeop0) == INTEGER_CST
      && (TREE_CODE (treeop1) != INTEGER_CST
1147
          || (GET_MODE_BITSIZE (mode)
1148
              > GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (treeop1))))))
1149 1150 1151
    {
      /* op0 might have been replaced by promoted constant, in which
         case the type of second argument should be used.  */
1152
      type = TREE_TYPE (treeop1);
1153 1154
      mode = TYPE_MODE (type);
    }
1155
  unsignedp = TYPE_UNSIGNED (type);
1156 1157 1158 1159
  code = unsignedp ? unsigned_code : signed_code;

#ifdef HAVE_canonicalize_funcptr_for_compare
  /* If function pointers need to be "canonicalized" before they can
1160 1161 1162
     be reliably compared, then canonicalize them.
     Only do this if *both* sides of the comparison are function pointers.
     If one side isn't, we want a noncanonicalized comparison.  See PR
1163
     middle-end/17564.  */
1164
  if (HAVE_canonicalize_funcptr_for_compare
1165 1166
      && TREE_CODE (TREE_TYPE (treeop0)) == POINTER_TYPE
      && TREE_CODE (TREE_TYPE (TREE_TYPE (treeop0)))
1167
          == FUNCTION_TYPE
1168 1169
      && TREE_CODE (TREE_TYPE (treeop1)) == POINTER_TYPE
      && TREE_CODE (TREE_TYPE (TREE_TYPE (treeop1)))
1170
          == FUNCTION_TYPE)
1171 1172
    {
      rtx new_op0 = gen_reg_rtx (mode);
1173
      rtx new_op1 = gen_reg_rtx (mode);
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184

      emit_insn (gen_canonicalize_funcptr_for_compare (new_op0, op0));
      op0 = new_op0;

      emit_insn (gen_canonicalize_funcptr_for_compare (new_op1, op1));
      op1 = new_op1;
    }
#endif

  do_compare_rtx_and_jump (op0, op1, code, unsignedp, mode,
                           ((mode == BLKmode)
1185
                            ? expr_size (treeop0) : NULL_RTX),
1186
			   if_false_label, if_true_label, prob);
1187
}
1188 1189

#include "gt-dojump.h"