]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/dojump.c
New jit API entrypoint: gcc_jit_context_new_rvalue_from_long
[thirdparty/gcc.git] / gcc / dojump.c
CommitLineData
48fefb59 1/* Convert tree expression to rtl instructions, for GNU compiler.
d353bf18 2 Copyright (C) 1988-2015 Free Software Foundation, Inc.
48fefb59 3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8c4c00c1 8Software Foundation; either version 3, or (at your option) any later
48fefb59 9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
8c4c00c1 17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
48fefb59 19
20#include "config.h"
21#include "system.h"
22#include "coretypes.h"
23#include "tm.h"
24#include "rtl.h"
25#include "tree.h"
9ed99284 26#include "stor-layout.h"
48fefb59 27#include "flags.h"
a3020f2f 28#include "hashtab.h"
29#include "hash-set.h"
30#include "vec.h"
31#include "machmode.h"
32#include "hard-reg-set.h"
33#include "input.h"
48fefb59 34#include "function.h"
35#include "insn-config.h"
36#include "insn-attr.h"
37/* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
38#include "expr.h"
34517c64 39#include "insn-codes.h"
48fefb59 40#include "optabs.h"
41#include "langhooks.h"
d9e19419 42#include "ggc.h"
94ea8568 43#include "predict.h"
a5158212 44#include "basic-block.h"
285a01fc 45#include "tm_p.h"
48fefb59 46
3754d046 47static bool prefer_and_bit_test (machine_mode, int);
79ab74cc 48static void do_jump_by_parts_greater (tree, tree, int, rtx, rtx, int);
49static void do_jump_by_parts_equality (tree, tree, rtx, rtx, int);
235978c1 50static void do_compare_and_jump (tree, tree, enum rtx_code, enum rtx_code, rtx,
79ab74cc 51 rtx, int);
52
53/* Invert probability if there is any. -1 stands for unknown. */
54
55static inline int
56inv (int prob)
57{
58 return prob == -1 ? -1 : REG_BR_PROB_BASE - prob;
59}
48fefb59 60
61/* At the start of a function, record that we have no previously-pushed
62 arguments waiting to be popped. */
63
64void
8ec3a57b 65init_pending_stack_adjust (void)
48fefb59 66{
67 pending_stack_adjust = 0;
68}
69
05ae776c 70/* Discard any pending stack adjustment. This avoid relying on the
71 RTL optimizers to remove useless adjustments when we know the
72 stack pointer value is dead. */
2e2fd8fe 73void
74discard_pending_stack_adjust (void)
05ae776c 75{
76 stack_pointer_delta -= pending_stack_adjust;
77 pending_stack_adjust = 0;
78}
79
48fefb59 80/* When exiting from function, if safe, clear out any pending stack adjust
81 so the adjustment won't get done.
82
83 Note, if the current function calls alloca, then it must have a
84 frame pointer regardless of the value of flag_omit_frame_pointer. */
85
86void
8ec3a57b 87clear_pending_stack_adjust (void)
48fefb59 88{
48fefb59 89 if (optimize > 0
18d50ae6 90 && (! flag_omit_frame_pointer || cfun->calls_alloca)
8d8c4c8d 91 && EXIT_IGNORE_STACK)
05ae776c 92 discard_pending_stack_adjust ();
48fefb59 93}
94
95/* Pop any previously-pushed arguments that have not been popped yet. */
96
97void
8ec3a57b 98do_pending_stack_adjust (void)
48fefb59 99{
100 if (inhibit_defer_pop == 0)
101 {
102 if (pending_stack_adjust != 0)
103 adjust_stack (GEN_INT (pending_stack_adjust));
104 pending_stack_adjust = 0;
105 }
106}
b6d206a2 107
108/* Remember pending_stack_adjust/stack_pointer_delta.
109 To be used around code that may call do_pending_stack_adjust (),
110 but the generated code could be discarded e.g. using delete_insns_since. */
111
112void
113save_pending_stack_adjust (saved_pending_stack_adjust *save)
114{
115 save->x_pending_stack_adjust = pending_stack_adjust;
116 save->x_stack_pointer_delta = stack_pointer_delta;
117}
118
119/* Restore the saved pending_stack_adjust/stack_pointer_delta. */
120
121void
122restore_pending_stack_adjust (saved_pending_stack_adjust *save)
123{
124 if (inhibit_defer_pop == 0)
125 {
126 pending_stack_adjust = save->x_pending_stack_adjust;
127 stack_pointer_delta = save->x_stack_pointer_delta;
128 }
129}
48fefb59 130\f
131/* Expand conditional expressions. */
132
133/* Generate code to evaluate EXP and jump to LABEL if the value is zero.
134 LABEL is an rtx of code CODE_LABEL, in this function and all the
135 functions here. */
136
137void
79ab74cc 138jumpifnot (tree exp, rtx label, int prob)
48fefb59 139{
79ab74cc 140 do_jump (exp, label, NULL_RTX, inv (prob));
48fefb59 141}
142
235978c1 143void
79ab74cc 144jumpifnot_1 (enum tree_code code, tree op0, tree op1, rtx label, int prob)
235978c1 145{
79ab74cc 146 do_jump_1 (code, op0, op1, label, NULL_RTX, inv (prob));
235978c1 147}
148
48fefb59 149/* Generate code to evaluate EXP and jump to LABEL if the value is nonzero. */
150
151void
79ab74cc 152jumpif (tree exp, rtx label, int prob)
48fefb59 153{
79ab74cc 154 do_jump (exp, NULL_RTX, label, prob);
48fefb59 155}
156
235978c1 157void
79ab74cc 158jumpif_1 (enum tree_code code, tree op0, tree op1, rtx label, int prob)
235978c1 159{
79ab74cc 160 do_jump_1 (code, op0, op1, NULL_RTX, label, prob);
235978c1 161}
162
d9e19419 163/* Used internally by prefer_and_bit_test. */
164
165static GTY(()) rtx and_reg;
166static GTY(()) rtx and_test;
167static GTY(()) rtx shift_test;
168
169/* Compare the relative costs of "(X & (1 << BITNUM))" and "(X >> BITNUM) & 1",
170 where X is an arbitrary register of mode MODE. Return true if the former
171 is preferred. */
172
173static bool
3754d046 174prefer_and_bit_test (machine_mode mode, int bitnum)
d9e19419 175{
20d892d1 176 bool speed_p;
796b6678 177 wide_int mask = wi::set_bit_in_zero (bitnum, GET_MODE_PRECISION (mode));
20d892d1 178
d9e19419 179 if (and_test == 0)
180 {
181 /* Set up rtxes for the two variations. Use NULL as a placeholder
182 for the BITNUM-based constants. */
183 and_reg = gen_rtx_REG (mode, FIRST_PSEUDO_REGISTER);
184 and_test = gen_rtx_AND (mode, and_reg, NULL);
185 shift_test = gen_rtx_AND (mode, gen_rtx_ASHIFTRT (mode, and_reg, NULL),
186 const1_rtx);
187 }
188 else
189 {
190 /* Change the mode of the previously-created rtxes. */
191 PUT_MODE (and_reg, mode);
192 PUT_MODE (and_test, mode);
193 PUT_MODE (shift_test, mode);
194 PUT_MODE (XEXP (shift_test, 0), mode);
195 }
196
197 /* Fill in the integers. */
e913b5cd 198 XEXP (and_test, 1) = immed_wide_int_const (mask, mode);
d9e19419 199 XEXP (XEXP (shift_test, 0), 1) = GEN_INT (bitnum);
200
20d892d1 201 speed_p = optimize_insn_for_speed_p ();
202 return (rtx_cost (and_test, IF_THEN_ELSE, 0, speed_p)
203 <= rtx_cost (shift_test, IF_THEN_ELSE, 0, speed_p));
d9e19419 204}
205
235978c1 206/* Subroutine of do_jump, dealing with exploded comparisons of the type
79ab74cc 207 OP0 CODE OP1 . IF_FALSE_LABEL and IF_TRUE_LABEL like in do_jump.
208 PROB is probability of jump to if_true_label, or -1 if unknown. */
235978c1 209
210void
211do_jump_1 (enum tree_code code, tree op0, tree op1,
79ab74cc 212 rtx if_false_label, rtx if_true_label, int prob)
235978c1 213{
3754d046 214 machine_mode mode;
79f6a8ed 215 rtx_code_label *drop_through_label = 0;
235978c1 216
217 switch (code)
218 {
219 case EQ_EXPR:
220 {
221 tree inner_type = TREE_TYPE (op0);
222
223 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
224 != MODE_COMPLEX_FLOAT);
225 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
226 != MODE_COMPLEX_INT);
227
228 if (integer_zerop (op1))
79ab74cc 229 do_jump (op0, if_true_label, if_false_label, inv (prob));
235978c1 230 else if (GET_MODE_CLASS (TYPE_MODE (inner_type)) == MODE_INT
231 && !can_compare_p (EQ, TYPE_MODE (inner_type), ccp_jump))
79ab74cc 232 do_jump_by_parts_equality (op0, op1, if_false_label, if_true_label,
233 prob);
235978c1 234 else
79ab74cc 235 do_compare_and_jump (op0, op1, EQ, EQ, if_false_label, if_true_label,
236 prob);
235978c1 237 break;
238 }
239
240 case NE_EXPR:
241 {
242 tree inner_type = TREE_TYPE (op0);
243
244 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
245 != MODE_COMPLEX_FLOAT);
246 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type))
247 != MODE_COMPLEX_INT);
248
249 if (integer_zerop (op1))
79ab74cc 250 do_jump (op0, if_false_label, if_true_label, prob);
235978c1 251 else if (GET_MODE_CLASS (TYPE_MODE (inner_type)) == MODE_INT
252 && !can_compare_p (NE, TYPE_MODE (inner_type), ccp_jump))
79ab74cc 253 do_jump_by_parts_equality (op0, op1, if_true_label, if_false_label,
254 inv (prob));
235978c1 255 else
79ab74cc 256 do_compare_and_jump (op0, op1, NE, NE, if_false_label, if_true_label,
257 prob);
235978c1 258 break;
259 }
260
261 case LT_EXPR:
262 mode = TYPE_MODE (TREE_TYPE (op0));
263 if (GET_MODE_CLASS (mode) == MODE_INT
264 && ! can_compare_p (LT, mode, ccp_jump))
79ab74cc 265 do_jump_by_parts_greater (op0, op1, 1, if_false_label, if_true_label,
266 prob);
235978c1 267 else
79ab74cc 268 do_compare_and_jump (op0, op1, LT, LTU, if_false_label, if_true_label,
269 prob);
235978c1 270 break;
271
272 case LE_EXPR:
273 mode = TYPE_MODE (TREE_TYPE (op0));
274 if (GET_MODE_CLASS (mode) == MODE_INT
275 && ! can_compare_p (LE, mode, ccp_jump))
79ab74cc 276 do_jump_by_parts_greater (op0, op1, 0, if_true_label, if_false_label,
277 inv (prob));
235978c1 278 else
79ab74cc 279 do_compare_and_jump (op0, op1, LE, LEU, if_false_label, if_true_label,
280 prob);
235978c1 281 break;
282
283 case GT_EXPR:
284 mode = TYPE_MODE (TREE_TYPE (op0));
285 if (GET_MODE_CLASS (mode) == MODE_INT
286 && ! can_compare_p (GT, mode, ccp_jump))
79ab74cc 287 do_jump_by_parts_greater (op0, op1, 0, if_false_label, if_true_label,
288 prob);
235978c1 289 else
79ab74cc 290 do_compare_and_jump (op0, op1, GT, GTU, if_false_label, if_true_label,
291 prob);
235978c1 292 break;
293
294 case GE_EXPR:
295 mode = TYPE_MODE (TREE_TYPE (op0));
296 if (GET_MODE_CLASS (mode) == MODE_INT
297 && ! can_compare_p (GE, mode, ccp_jump))
79ab74cc 298 do_jump_by_parts_greater (op0, op1, 1, if_true_label, if_false_label,
299 inv (prob));
235978c1 300 else
79ab74cc 301 do_compare_and_jump (op0, op1, GE, GEU, if_false_label, if_true_label,
302 prob);
235978c1 303 break;
304
305 case ORDERED_EXPR:
306 do_compare_and_jump (op0, op1, ORDERED, ORDERED,
79ab74cc 307 if_false_label, if_true_label, prob);
235978c1 308 break;
309
310 case UNORDERED_EXPR:
311 do_compare_and_jump (op0, op1, UNORDERED, UNORDERED,
79ab74cc 312 if_false_label, if_true_label, prob);
235978c1 313 break;
314
315 case UNLT_EXPR:
79ab74cc 316 do_compare_and_jump (op0, op1, UNLT, UNLT, if_false_label, if_true_label,
317 prob);
235978c1 318 break;
319
320 case UNLE_EXPR:
79ab74cc 321 do_compare_and_jump (op0, op1, UNLE, UNLE, if_false_label, if_true_label,
322 prob);
235978c1 323 break;
324
325 case UNGT_EXPR:
79ab74cc 326 do_compare_and_jump (op0, op1, UNGT, UNGT, if_false_label, if_true_label,
327 prob);
235978c1 328 break;
329
330 case UNGE_EXPR:
79ab74cc 331 do_compare_and_jump (op0, op1, UNGE, UNGE, if_false_label, if_true_label,
332 prob);
235978c1 333 break;
334
335 case UNEQ_EXPR:
79ab74cc 336 do_compare_and_jump (op0, op1, UNEQ, UNEQ, if_false_label, if_true_label,
337 prob);
235978c1 338 break;
339
340 case LTGT_EXPR:
79ab74cc 341 do_compare_and_jump (op0, op1, LTGT, LTGT, if_false_label, if_true_label,
342 prob);
235978c1 343 break;
344
345 case TRUTH_ANDIF_EXPR:
262da27c 346 {
347 /* Spread the probability that the expression is false evenly between
348 the two conditions. So the first condition is false half the total
349 probability of being false. The second condition is false the other
350 half of the total probability of being false, so its jump has a false
351 probability of half the total, relative to the probability we
352 reached it (i.e. the first condition was true). */
353 int op0_prob = -1;
354 int op1_prob = -1;
355 if (prob != -1)
356 {
357 int false_prob = inv (prob);
358 int op0_false_prob = false_prob / 2;
359 int op1_false_prob = GCOV_COMPUTE_SCALE ((false_prob / 2),
360 inv (op0_false_prob));
361 /* Get the probability that each jump below is true. */
362 op0_prob = inv (op0_false_prob);
363 op1_prob = inv (op1_false_prob);
364 }
365 if (if_false_label == NULL_RTX)
366 {
367 drop_through_label = gen_label_rtx ();
368 do_jump (op0, drop_through_label, NULL_RTX, op0_prob);
369 do_jump (op1, NULL_RTX, if_true_label, op1_prob);
370 }
371 else
372 {
373 do_jump (op0, if_false_label, NULL_RTX, op0_prob);
374 do_jump (op1, if_false_label, if_true_label, op1_prob);
375 }
376 break;
377 }
235978c1 378
379 case TRUTH_ORIF_EXPR:
262da27c 380 {
381 /* Spread the probability evenly between the two conditions. So
382 the first condition has half the total probability of being true.
383 The second condition has the other half of the total probability,
384 so its jump has a probability of half the total, relative to
385 the probability we reached it (i.e. the first condition was false). */
386 int op0_prob = -1;
387 int op1_prob = -1;
388 if (prob != -1)
389 {
390 op0_prob = prob / 2;
391 op1_prob = GCOV_COMPUTE_SCALE ((prob / 2), inv (op0_prob));
392 }
393 if (if_true_label == NULL_RTX)
394 {
395 drop_through_label = gen_label_rtx ();
396 do_jump (op0, NULL_RTX, drop_through_label, op0_prob);
397 do_jump (op1, if_false_label, NULL_RTX, op1_prob);
398 }
399 else
400 {
401 do_jump (op0, NULL_RTX, if_true_label, op0_prob);
402 do_jump (op1, if_false_label, if_true_label, op1_prob);
403 }
404 break;
405 }
235978c1 406
407 default:
408 gcc_unreachable ();
409 }
410
411 if (drop_through_label)
412 {
413 do_pending_stack_adjust ();
414 emit_label (drop_through_label);
415 }
416}
417
48fefb59 418/* Generate code to evaluate EXP and jump to IF_FALSE_LABEL if
419 the result is zero, or IF_TRUE_LABEL if the result is one.
420 Either of IF_FALSE_LABEL and IF_TRUE_LABEL may be zero,
421 meaning fall through in that case.
422
423 do_jump always does any pending stack adjust except when it does not
424 actually perform a jump. An example where there is no jump
79ab74cc 425 is when EXP is `(foo (), 0)' and IF_FALSE_LABEL is null.
426
427 PROB is probability of jump to if_true_label, or -1 if unknown. */
48fefb59 428
429void
79ab74cc 430do_jump (tree exp, rtx if_false_label, rtx if_true_label, int prob)
48fefb59 431{
432 enum tree_code code = TREE_CODE (exp);
48fefb59 433 rtx temp;
434 int i;
435 tree type;
3754d046 436 machine_mode mode;
79f6a8ed 437 rtx_code_label *drop_through_label = 0;
48fefb59 438
48fefb59 439 switch (code)
440 {
441 case ERROR_MARK:
442 break;
443
444 case INTEGER_CST:
445 temp = integer_zerop (exp) ? if_false_label : if_true_label;
446 if (temp)
447 emit_jump (temp);
448 break;
449
450#if 0
451 /* This is not true with #pragma weak */
452 case ADDR_EXPR:
453 /* The address of something can never be zero. */
454 if (if_true_label)
455 emit_jump (if_true_label);
456 break;
457#endif
458
459 case NOP_EXPR:
460 if (TREE_CODE (TREE_OPERAND (exp, 0)) == COMPONENT_REF
461 || TREE_CODE (TREE_OPERAND (exp, 0)) == BIT_FIELD_REF
462 || TREE_CODE (TREE_OPERAND (exp, 0)) == ARRAY_REF
463 || TREE_CODE (TREE_OPERAND (exp, 0)) == ARRAY_RANGE_REF)
464 goto normal;
465 case CONVERT_EXPR:
466 /* If we are narrowing the operand, we have to do the compare in the
467 narrower mode. */
468 if ((TYPE_PRECISION (TREE_TYPE (exp))
469 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp, 0)))))
470 goto normal;
471 case NON_LVALUE_EXPR:
48fefb59 472 case ABS_EXPR:
473 case NEGATE_EXPR:
474 case LROTATE_EXPR:
475 case RROTATE_EXPR:
476 /* These cannot change zero->nonzero or vice versa. */
79ab74cc 477 do_jump (TREE_OPERAND (exp, 0), if_false_label, if_true_label, prob);
48fefb59 478 break;
479
48fefb59 480 case TRUTH_NOT_EXPR:
efa5aca5 481 do_jump (TREE_OPERAND (exp, 0), if_true_label, if_false_label,
482 inv (prob));
48fefb59 483 break;
484
90b35651 485 case COND_EXPR:
486 {
79f6a8ed 487 rtx_code_label *label1 = gen_label_rtx ();
90b35651 488 if (!if_true_label || !if_false_label)
489 {
490 drop_through_label = gen_label_rtx ();
491 if (!if_true_label)
492 if_true_label = drop_through_label;
493 if (!if_false_label)
494 if_false_label = drop_through_label;
495 }
496
497 do_pending_stack_adjust ();
79ab74cc 498 do_jump (TREE_OPERAND (exp, 0), label1, NULL_RTX, -1);
499 do_jump (TREE_OPERAND (exp, 1), if_false_label, if_true_label, prob);
90b35651 500 emit_label (label1);
79ab74cc 501 do_jump (TREE_OPERAND (exp, 2), if_false_label, if_true_label, prob);
90b35651 502 break;
503 }
504
48fefb59 505 case COMPOUND_EXPR:
a1ad7483 506 /* Lowered by gimplify.c. */
7bd4f6b6 507 gcc_unreachable ();
48fefb59 508
ff9e4fb2 509 case MINUS_EXPR:
510 /* Nonzero iff operands of minus differ. */
235978c1 511 code = NE_EXPR;
512
ff9e4fb2 513 /* FALLTHRU */
235978c1 514 case EQ_EXPR:
48fefb59 515 case NE_EXPR:
48fefb59 516 case LT_EXPR:
48fefb59 517 case LE_EXPR:
48fefb59 518 case GT_EXPR:
48fefb59 519 case GE_EXPR:
48fefb59 520 case ORDERED_EXPR:
3fcf767f 521 case UNORDERED_EXPR:
3fcf767f 522 case UNLT_EXPR:
3fcf767f 523 case UNLE_EXPR:
3fcf767f 524 case UNGT_EXPR:
3fcf767f 525 case UNGE_EXPR:
3fcf767f 526 case UNEQ_EXPR:
3fcf767f 527 case LTGT_EXPR:
235978c1 528 case TRUTH_ANDIF_EXPR:
529 case TRUTH_ORIF_EXPR:
8414b150 530 other_code:
235978c1 531 do_jump_1 (code, TREE_OPERAND (exp, 0), TREE_OPERAND (exp, 1),
79ab74cc 532 if_false_label, if_true_label, prob);
48fefb59 533 break;
e31161b3 534
535 case BIT_AND_EXPR:
536 /* fold_single_bit_test() converts (X & (1 << C)) into (X >> C) & 1.
537 See if the former is preferred for jump tests and restore it
538 if so. */
539 if (integer_onep (TREE_OPERAND (exp, 1)))
540 {
541 tree exp0 = TREE_OPERAND (exp, 0);
542 rtx set_label, clr_label;
79ab74cc 543 int setclr_prob = prob;
e31161b3 544
545 /* Strip narrowing integral type conversions. */
546 while (CONVERT_EXPR_P (exp0)
547 && TREE_OPERAND (exp0, 0) != error_mark_node
548 && TYPE_PRECISION (TREE_TYPE (exp0))
549 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp0, 0))))
550 exp0 = TREE_OPERAND (exp0, 0);
551
552 /* "exp0 ^ 1" inverts the sense of the single bit test. */
553 if (TREE_CODE (exp0) == BIT_XOR_EXPR
554 && integer_onep (TREE_OPERAND (exp0, 1)))
555 {
556 exp0 = TREE_OPERAND (exp0, 0);
557 clr_label = if_true_label;
558 set_label = if_false_label;
79ab74cc 559 setclr_prob = inv (prob);
e31161b3 560 }
561 else
562 {
563 clr_label = if_false_label;
564 set_label = if_true_label;
565 }
566
567 if (TREE_CODE (exp0) == RSHIFT_EXPR)
568 {
569 tree arg = TREE_OPERAND (exp0, 0);
570 tree shift = TREE_OPERAND (exp0, 1);
571 tree argtype = TREE_TYPE (arg);
572 if (TREE_CODE (shift) == INTEGER_CST
573 && compare_tree_int (shift, 0) >= 0
574 && compare_tree_int (shift, HOST_BITS_PER_WIDE_INT) < 0
575 && prefer_and_bit_test (TYPE_MODE (argtype),
f9ae6f95 576 TREE_INT_CST_LOW (shift)))
e31161b3 577 {
7ad40ea1 578 unsigned HOST_WIDE_INT mask
f9ae6f95 579 = (unsigned HOST_WIDE_INT) 1 << TREE_INT_CST_LOW (shift);
e31161b3 580 do_jump (build2 (BIT_AND_EXPR, argtype, arg,
c5083e8b 581 build_int_cstu (argtype, mask)),
79ab74cc 582 clr_label, set_label, setclr_prob);
e31161b3 583 break;
584 }
585 }
586 }
587
588 /* If we are AND'ing with a small constant, do this comparison in the
589 smallest type that fits. If the machine doesn't have comparisons
590 that small, it will be converted back to the wider comparison.
591 This helps if we are testing the sign bit of a narrower object.
592 combine can't do this for us because it can't know whether a
593 ZERO_EXTRACT or a compare in a smaller mode exists, but we do. */
594
595 if (! SLOW_BYTE_ACCESS
596 && TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST
597 && TYPE_PRECISION (TREE_TYPE (exp)) <= HOST_BITS_PER_WIDE_INT
598 && (i = tree_floor_log2 (TREE_OPERAND (exp, 1))) >= 0
599 && (mode = mode_for_size (i + 1, MODE_INT, 0)) != BLKmode
600 && (type = lang_hooks.types.type_for_mode (mode, 1)) != 0
601 && TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (exp))
0d79facf 602 && have_insn_for (COMPARE, TYPE_MODE (type)))
e31161b3 603 {
79ab74cc 604 do_jump (fold_convert (type, exp), if_false_label, if_true_label,
605 prob);
e31161b3 606 break;
607 }
608
609 if (TYPE_PRECISION (TREE_TYPE (exp)) > 1
610 || TREE_CODE (TREE_OPERAND (exp, 1)) == INTEGER_CST)
611 goto normal;
612
613 /* Boolean comparisons can be compiled as TRUTH_AND_EXPR. */
48fefb59 614
0ff20612 615 case TRUTH_AND_EXPR:
57bf1c08 616 /* High branch cost, expand as the bitwise AND of the conditions.
617 Do the same if the RHS has side effects, because we're effectively
618 turning a TRUTH_AND_EXPR into a TRUTH_ANDIF_EXPR. */
4a9d7ef7 619 if (BRANCH_COST (optimize_insn_for_speed_p (),
620 false) >= 4
621 || TREE_SIDE_EFFECTS (TREE_OPERAND (exp, 1)))
0ff20612 622 goto normal;
8414b150 623 code = TRUTH_ANDIF_EXPR;
624 goto other_code;
0ff20612 625
e31161b3 626 case BIT_IOR_EXPR:
0ff20612 627 case TRUTH_OR_EXPR:
57bf1c08 628 /* High branch cost, expand as the bitwise OR of the conditions.
629 Do the same if the RHS has side effects, because we're effectively
630 turning a TRUTH_OR_EXPR into a TRUTH_ORIF_EXPR. */
79ab74cc 631 if (BRANCH_COST (optimize_insn_for_speed_p (), false) >= 4
4a9d7ef7 632 || TREE_SIDE_EFFECTS (TREE_OPERAND (exp, 1)))
0ff20612 633 goto normal;
8414b150 634 code = TRUTH_ORIF_EXPR;
635 goto other_code;
0ff20612 636
b4b174c3 637 /* Fall through and generate the normal code. */
48fefb59 638 default:
639 normal:
8ec3c5c2 640 temp = expand_normal (exp);
48fefb59 641 do_pending_stack_adjust ();
85afca2d 642 /* The RTL optimizers prefer comparisons against pseudos. */
643 if (GET_CODE (temp) == SUBREG)
6cd6518b 644 {
85afca2d 645 /* Compare promoted variables in their promoted mode. */
646 if (SUBREG_PROMOTED_VAR_P (temp)
647 && REG_P (XEXP (temp, 0)))
648 temp = XEXP (temp, 0);
649 else
650 temp = copy_to_reg (temp);
6cd6518b 651 }
85afca2d 652 do_compare_rtx_and_jump (temp, CONST0_RTX (GET_MODE (temp)),
653 NE, TYPE_UNSIGNED (TREE_TYPE (exp)),
654 GET_MODE (temp), NULL_RTX,
79ab74cc 655 if_false_label, if_true_label, prob);
48fefb59 656 }
90b35651 657
658 if (drop_through_label)
659 {
660 do_pending_stack_adjust ();
661 emit_label (drop_through_label);
662 }
48fefb59 663}
664\f
48fefb59 665/* Compare OP0 with OP1, word at a time, in mode MODE.
666 UNSIGNEDP says to do unsigned comparison.
667 Jump to IF_TRUE_LABEL if OP0 is greater, IF_FALSE_LABEL otherwise. */
668
c071a2df 669static void
3754d046 670do_jump_by_parts_greater_rtx (machine_mode mode, int unsignedp, rtx op0,
79ab74cc 671 rtx op1, rtx if_false_label, rtx if_true_label,
672 int prob)
48fefb59 673{
674 int nwords = (GET_MODE_SIZE (mode) / UNITS_PER_WORD);
675 rtx drop_through_label = 0;
3064d0d2 676 bool drop_through_if_true = false, drop_through_if_false = false;
677 enum rtx_code code = GT;
48fefb59 678 int i;
679
680 if (! if_true_label || ! if_false_label)
681 drop_through_label = gen_label_rtx ();
682 if (! if_true_label)
3064d0d2 683 {
684 if_true_label = drop_through_label;
685 drop_through_if_true = true;
686 }
48fefb59 687 if (! if_false_label)
3064d0d2 688 {
689 if_false_label = drop_through_label;
690 drop_through_if_false = true;
691 }
692
693 /* Deal with the special case 0 > x: only one comparison is necessary and
694 we reverse it to avoid jumping to the drop-through label. */
695 if (op0 == const0_rtx && drop_through_if_true && !drop_through_if_false)
696 {
697 code = LE;
698 if_true_label = if_false_label;
699 if_false_label = drop_through_label;
700 drop_through_if_true = false;
701 drop_through_if_false = true;
702 }
48fefb59 703
704 /* Compare a word at a time, high order first. */
705 for (i = 0; i < nwords; i++)
706 {
707 rtx op0_word, op1_word;
708
709 if (WORDS_BIG_ENDIAN)
710 {
711 op0_word = operand_subword_force (op0, i, mode);
712 op1_word = operand_subword_force (op1, i, mode);
713 }
714 else
715 {
716 op0_word = operand_subword_force (op0, nwords - 1 - i, mode);
717 op1_word = operand_subword_force (op1, nwords - 1 - i, mode);
718 }
719
720 /* All but high-order word must be compared as unsigned. */
3064d0d2 721 do_compare_rtx_and_jump (op0_word, op1_word, code, (unsignedp || i > 0),
722 word_mode, NULL_RTX, NULL_RTX, if_true_label,
723 prob);
724
725 /* Emit only one comparison for 0. Do not emit the last cond jump. */
726 if (op0 == const0_rtx || i == nwords - 1)
727 break;
48fefb59 728
729 /* Consider lower words only if these are equal. */
730 do_compare_rtx_and_jump (op0_word, op1_word, NE, unsignedp, word_mode,
3064d0d2 731 NULL_RTX, NULL_RTX, if_false_label, inv (prob));
48fefb59 732 }
733
3064d0d2 734 if (!drop_through_if_false)
48fefb59 735 emit_jump (if_false_label);
736 if (drop_through_label)
737 emit_label (drop_through_label);
738}
c071a2df 739
740/* Given a comparison expression EXP for values too wide to be compared
741 with one insn, test the comparison and jump to the appropriate label.
742 The code of EXP is ignored; we always test GT if SWAP is 0,
743 and LT if SWAP is 1. */
744
745static void
235978c1 746do_jump_by_parts_greater (tree treeop0, tree treeop1, int swap,
79ab74cc 747 rtx if_false_label, rtx if_true_label, int prob)
c071a2df 748{
235978c1 749 rtx op0 = expand_normal (swap ? treeop1 : treeop0);
750 rtx op1 = expand_normal (swap ? treeop0 : treeop1);
3754d046 751 machine_mode mode = TYPE_MODE (TREE_TYPE (treeop0));
235978c1 752 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (treeop0));
c071a2df 753
754 do_jump_by_parts_greater_rtx (mode, unsignedp, op0, op1, if_false_label,
79ab74cc 755 if_true_label, prob);
c071a2df 756}
48fefb59 757\f
85afca2d 758/* Jump according to whether OP0 is 0. We assume that OP0 has an integer
759 mode, MODE, that is too wide for the available compare insns. Either
760 Either (but not both) of IF_TRUE_LABEL and IF_FALSE_LABEL may be NULL_RTX
761 to indicate drop through. */
48fefb59 762
85afca2d 763static void
3754d046 764do_jump_by_parts_zero_rtx (machine_mode mode, rtx op0,
79ab74cc 765 rtx if_false_label, rtx if_true_label, int prob)
48fefb59 766{
85afca2d 767 int nwords = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
48fefb59 768 rtx part;
769 int i;
770 rtx drop_through_label = 0;
771
772 /* The fastest way of doing this comparison on almost any machine is to
773 "or" all the words and compare the result. If all have to be loaded
774 from memory and this is a very wide item, it's possible this may
775 be slower, but that's highly unlikely. */
776
777 part = gen_reg_rtx (word_mode);
70b6a6e8 778 emit_move_insn (part, operand_subword_force (op0, 0, mode));
48fefb59 779 for (i = 1; i < nwords && part != 0; i++)
780 part = expand_binop (word_mode, ior_optab, part,
70b6a6e8 781 operand_subword_force (op0, i, mode),
48fefb59 782 part, 1, OPTAB_WIDEN);
783
784 if (part != 0)
785 {
786 do_compare_rtx_and_jump (part, const0_rtx, EQ, 1, word_mode,
79ab74cc 787 NULL_RTX, if_false_label, if_true_label, prob);
48fefb59 788 return;
789 }
790
791 /* If we couldn't do the "or" simply, do this with a series of compares. */
792 if (! if_false_label)
793 drop_through_label = if_false_label = gen_label_rtx ();
794
795 for (i = 0; i < nwords; i++)
70b6a6e8 796 do_compare_rtx_and_jump (operand_subword_force (op0, i, mode),
48fefb59 797 const0_rtx, EQ, 1, word_mode, NULL_RTX,
79ab74cc 798 if_false_label, NULL_RTX, prob);
48fefb59 799
800 if (if_true_label)
801 emit_jump (if_true_label);
802
803 if (drop_through_label)
804 emit_label (drop_through_label);
805}
85afca2d 806
807/* Test for the equality of two RTX expressions OP0 and OP1 in mode MODE,
808 where MODE is an integer mode too wide to be compared with one insn.
809 Either (but not both) of IF_TRUE_LABEL and IF_FALSE_LABEL may be NULL_RTX
810 to indicate drop through. */
811
812static void
3754d046 813do_jump_by_parts_equality_rtx (machine_mode mode, rtx op0, rtx op1,
79ab74cc 814 rtx if_false_label, rtx if_true_label, int prob)
85afca2d 815{
816 int nwords = (GET_MODE_SIZE (mode) / UNITS_PER_WORD);
817 rtx drop_through_label = 0;
818 int i;
819
820 if (op1 == const0_rtx)
821 {
79ab74cc 822 do_jump_by_parts_zero_rtx (mode, op0, if_false_label, if_true_label,
823 prob);
85afca2d 824 return;
825 }
826 else if (op0 == const0_rtx)
827 {
79ab74cc 828 do_jump_by_parts_zero_rtx (mode, op1, if_false_label, if_true_label,
829 prob);
85afca2d 830 return;
831 }
832
833 if (! if_false_label)
834 drop_through_label = if_false_label = gen_label_rtx ();
835
836 for (i = 0; i < nwords; i++)
837 do_compare_rtx_and_jump (operand_subword_force (op0, i, mode),
838 operand_subword_force (op1, i, mode),
839 EQ, 0, word_mode, NULL_RTX,
79ab74cc 840 if_false_label, NULL_RTX, prob);
85afca2d 841
842 if (if_true_label)
843 emit_jump (if_true_label);
844 if (drop_through_label)
845 emit_label (drop_through_label);
846}
847
848/* Given an EQ_EXPR expression EXP for values too wide to be compared
849 with one insn, test the comparison and jump to the appropriate label. */
850
851static void
235978c1 852do_jump_by_parts_equality (tree treeop0, tree treeop1, rtx if_false_label,
79ab74cc 853 rtx if_true_label, int prob)
85afca2d 854{
235978c1 855 rtx op0 = expand_normal (treeop0);
856 rtx op1 = expand_normal (treeop1);
3754d046 857 machine_mode mode = TYPE_MODE (TREE_TYPE (treeop0));
85afca2d 858 do_jump_by_parts_equality_rtx (mode, op0, op1, if_false_label,
79ab74cc 859 if_true_label, prob);
85afca2d 860}
48fefb59 861\f
3fcf767f 862/* Split a comparison into two others, the second of which has the other
863 "orderedness". The first is always ORDERED or UNORDERED if MODE
864 does not honor NaNs (which means that it can be skipped in that case;
865 see do_compare_rtx_and_jump).
866
867 The two conditions are written in *CODE1 and *CODE2. Return true if
868 the conditions must be ANDed, false if they must be ORed. */
869
870bool
3754d046 871split_comparison (enum rtx_code code, machine_mode mode,
3fcf767f 872 enum rtx_code *code1, enum rtx_code *code2)
873{
874 switch (code)
875 {
876 case LT:
877 *code1 = ORDERED;
878 *code2 = UNLT;
879 return true;
880 case LE:
881 *code1 = ORDERED;
882 *code2 = UNLE;
883 return true;
884 case GT:
885 *code1 = ORDERED;
886 *code2 = UNGT;
887 return true;
888 case GE:
889 *code1 = ORDERED;
890 *code2 = UNGE;
891 return true;
892 case EQ:
893 *code1 = ORDERED;
894 *code2 = UNEQ;
895 return true;
896 case NE:
897 *code1 = UNORDERED;
898 *code2 = LTGT;
899 return false;
900 case UNLT:
901 *code1 = UNORDERED;
902 *code2 = LT;
903 return false;
904 case UNLE:
905 *code1 = UNORDERED;
906 *code2 = LE;
907 return false;
908 case UNGT:
909 *code1 = UNORDERED;
910 *code2 = GT;
911 return false;
912 case UNGE:
913 *code1 = UNORDERED;
914 *code2 = GE;
915 return false;
916 case UNEQ:
917 *code1 = UNORDERED;
918 *code2 = EQ;
919 return false;
920 case LTGT:
921 /* Do not turn a trapping comparison into a non-trapping one. */
922 if (HONOR_SNANS (mode))
923 {
924 *code1 = LT;
925 *code2 = GT;
926 return false;
927 }
928 else
929 {
930 *code1 = ORDERED;
931 *code2 = NE;
932 return true;
933 }
934 default:
935 gcc_unreachable ();
936 }
937}
938
939
48fefb59 940/* Like do_compare_and_jump but expects the values to compare as two rtx's.
941 The decision as to signed or unsigned comparison must be made by the caller.
942
943 If MODE is BLKmode, SIZE is an RTX giving the size of the objects being
944 compared. */
945
946void
8ec3a57b 947do_compare_rtx_and_jump (rtx op0, rtx op1, enum rtx_code code, int unsignedp,
3754d046 948 machine_mode mode, rtx size, rtx if_false_label,
79ab74cc 949 rtx if_true_label, int prob)
48fefb59 950{
48fefb59 951 rtx tem;
79f6a8ed 952 rtx dummy_label = NULL;
48fefb59 953
954 /* Reverse the comparison if that is safe and we want to jump if it is
3fcf767f 955 false. Also convert to the reverse comparison if the target can
956 implement it. */
957 if ((! if_true_label
958 || ! can_compare_p (code, mode, ccp_jump))
959 && (! FLOAT_MODE_P (mode)
960 || code == ORDERED || code == UNORDERED
961 || (! HONOR_NANS (mode) && (code == LTGT || code == UNEQ))
962 || (! HONOR_SNANS (mode) && (code == EQ || code == NE))))
48fefb59 963 {
3fcf767f 964 enum rtx_code rcode;
965 if (FLOAT_MODE_P (mode))
966 rcode = reverse_condition_maybe_unordered (code);
967 else
968 rcode = reverse_condition (code);
969
970 /* Canonicalize to UNORDERED for the libcall. */
971 if (can_compare_p (rcode, mode, ccp_jump)
972 || (code == ORDERED && ! can_compare_p (ORDERED, mode, ccp_jump)))
973 {
974 tem = if_true_label;
975 if_true_label = if_false_label;
976 if_false_label = tem;
977 code = rcode;
79ab74cc 978 prob = inv (prob);
3fcf767f 979 }
48fefb59 980 }
981
982 /* If one operand is constant, make it the second one. Only do this
983 if the other operand is not constant as well. */
984
985 if (swap_commutative_operands_p (op0, op1))
986 {
987 tem = op0;
988 op0 = op1;
989 op1 = tem;
990 code = swap_condition (code);
991 }
992
48fefb59 993 do_pending_stack_adjust ();
994
ac503e50 995 code = unsignedp ? unsigned_condition (code) : code;
996 if (0 != (tem = simplify_relational_operation (code, mode, VOIDmode,
997 op0, op1)))
48fefb59 998 {
ac503e50 999 if (CONSTANT_P (tem))
1000 {
1001 rtx label = (tem == const0_rtx || tem == CONST0_RTX (mode))
1002 ? if_false_label : if_true_label;
1003 if (label)
1004 emit_jump (label);
1005 return;
1006 }
48fefb59 1007
ac503e50 1008 code = GET_CODE (tem);
1009 mode = GET_MODE (tem);
1010 op0 = XEXP (tem, 0);
1011 op1 = XEXP (tem, 1);
1012 unsignedp = (code == GTU || code == LTU || code == GEU || code == LEU);
48fefb59 1013 }
48fefb59 1014
1015 if (! if_true_label)
3fcf767f 1016 dummy_label = if_true_label = gen_label_rtx ();
48fefb59 1017
85afca2d 1018 if (GET_MODE_CLASS (mode) == MODE_INT
1019 && ! can_compare_p (code, mode, ccp_jump))
1020 {
1021 switch (code)
1022 {
1023 case LTU:
1024 do_jump_by_parts_greater_rtx (mode, 1, op1, op0,
79ab74cc 1025 if_false_label, if_true_label, prob);
85afca2d 1026 break;
1027
1028 case LEU:
1029 do_jump_by_parts_greater_rtx (mode, 1, op0, op1,
79ab74cc 1030 if_true_label, if_false_label,
1031 inv (prob));
85afca2d 1032 break;
1033
9f596ec0 1034 case GTU:
1035 do_jump_by_parts_greater_rtx (mode, 1, op0, op1,
79ab74cc 1036 if_false_label, if_true_label, prob);
9f596ec0 1037 break;
1038
1039 case GEU:
1040 do_jump_by_parts_greater_rtx (mode, 1, op1, op0,
79ab74cc 1041 if_true_label, if_false_label,
1042 inv (prob));
9f596ec0 1043 break;
1044
85afca2d 1045 case LT:
1046 do_jump_by_parts_greater_rtx (mode, 0, op1, op0,
79ab74cc 1047 if_false_label, if_true_label, prob);
85afca2d 1048 break;
1049
2244ee93 1050 case LE:
1051 do_jump_by_parts_greater_rtx (mode, 0, op0, op1,
79ab74cc 1052 if_true_label, if_false_label,
1053 inv (prob));
2244ee93 1054 break;
1055
85afca2d 1056 case GT:
1057 do_jump_by_parts_greater_rtx (mode, 0, op0, op1,
79ab74cc 1058 if_false_label, if_true_label, prob);
85afca2d 1059 break;
1060
1061 case GE:
1062 do_jump_by_parts_greater_rtx (mode, 0, op1, op0,
79ab74cc 1063 if_true_label, if_false_label,
1064 inv (prob));
85afca2d 1065 break;
1066
1067 case EQ:
1068 do_jump_by_parts_equality_rtx (mode, op0, op1, if_false_label,
79ab74cc 1069 if_true_label, prob);
85afca2d 1070 break;
1071
1072 case NE:
1073 do_jump_by_parts_equality_rtx (mode, op0, op1, if_true_label,
79ab74cc 1074 if_false_label, inv (prob));
85afca2d 1075 break;
1076
1077 default:
1078 gcc_unreachable ();
1079 }
1080 }
1081 else
3fcf767f 1082 {
670fc240 1083 if (SCALAR_FLOAT_MODE_P (mode)
3fcf767f 1084 && ! can_compare_p (code, mode, ccp_jump)
fb425e71 1085 && can_compare_p (swap_condition (code), mode, ccp_jump))
1086 {
1087 rtx tmp;
1088 code = swap_condition (code);
1089 tmp = op0;
1090 op0 = op1;
1091 op1 = tmp;
1092 }
670fc240 1093 else if (SCALAR_FLOAT_MODE_P (mode)
fb425e71 1094 && ! can_compare_p (code, mode, ccp_jump)
6cdd383a 1095 /* Never split ORDERED and UNORDERED.
1096 These must be implemented. */
fb425e71 1097 && (code != ORDERED && code != UNORDERED)
6cdd383a 1098 /* Split a floating-point comparison if
1099 we can jump on other conditions... */
fb425e71 1100 && (have_insn_for (COMPARE, mode)
fb425e71 1101 /* ... or if there is no libcall for it. */
ebb6e3c1 1102 || code_to_optab (code) == unknown_optab))
3fcf767f 1103 {
1104 enum rtx_code first_code;
1105 bool and_them = split_comparison (code, mode, &first_code, &code);
1106
1107 /* If there are no NaNs, the first comparison should always fall
1108 through. */
1109 if (!HONOR_NANS (mode))
1110 gcc_assert (first_code == (and_them ? ORDERED : UNORDERED));
1111
1112 else
1113 {
bb0803fb 1114 int first_prob = prob;
1115 if (first_code == UNORDERED)
1116 first_prob = REG_BR_PROB_BASE / 100;
1117 else if (first_code == ORDERED)
1118 first_prob = REG_BR_PROB_BASE - REG_BR_PROB_BASE / 100;
3fcf767f 1119 if (and_them)
1120 {
1121 rtx dest_label;
1122 /* If we only jump if true, just bypass the second jump. */
1123 if (! if_false_label)
1124 {
1125 if (! dummy_label)
1126 dummy_label = gen_label_rtx ();
1127 dest_label = dummy_label;
1128 }
1129 else
1130 dest_label = if_false_label;
1131 do_compare_rtx_and_jump (op0, op1, first_code, unsignedp, mode,
bb0803fb 1132 size, dest_label, NULL_RTX,
1133 first_prob);
3fcf767f 1134 }
1135 else
1136 do_compare_rtx_and_jump (op0, op1, first_code, unsignedp, mode,
bb0803fb 1137 size, NULL_RTX, if_true_label,
1138 first_prob);
3fcf767f 1139 }
1140 }
1141
1142 emit_cmp_and_jump_insns (op0, op1, code, size, mode, unsignedp,
584abc98 1143 if_true_label, prob);
3fcf767f 1144 }
48fefb59 1145
1146 if (if_false_label)
1147 emit_jump (if_false_label);
3fcf767f 1148 if (dummy_label)
1149 emit_label (dummy_label);
48fefb59 1150}
1151
1152/* Generate code for a comparison expression EXP (including code to compute
1153 the values to be compared) and a conditional jump to IF_FALSE_LABEL and/or
1154 IF_TRUE_LABEL. One of the labels can be NULL_RTX, in which case the
1155 generated code will drop through.
1156 SIGNED_CODE should be the rtx operation for this comparison for
1157 signed data; UNSIGNED_CODE, likewise for use if data is unsigned.
1158
1159 We force a stack adjustment unless there are currently
1160 things pushed on the stack that aren't yet used. */
1161
1162static void
235978c1 1163do_compare_and_jump (tree treeop0, tree treeop1, enum rtx_code signed_code,
8ec3a57b 1164 enum rtx_code unsigned_code, rtx if_false_label,
79ab74cc 1165 rtx if_true_label, int prob)
48fefb59 1166{
1167 rtx op0, op1;
1168 tree type;
3754d046 1169 machine_mode mode;
48fefb59 1170 int unsignedp;
1171 enum rtx_code code;
1172
1173 /* Don't crash if the comparison was erroneous. */
235978c1 1174 op0 = expand_normal (treeop0);
1175 if (TREE_CODE (treeop0) == ERROR_MARK)
48fefb59 1176 return;
1177
235978c1 1178 op1 = expand_normal (treeop1);
1179 if (TREE_CODE (treeop1) == ERROR_MARK)
48fefb59 1180 return;
1181
235978c1 1182 type = TREE_TYPE (treeop0);
48fefb59 1183 mode = TYPE_MODE (type);
235978c1 1184 if (TREE_CODE (treeop0) == INTEGER_CST
1185 && (TREE_CODE (treeop1) != INTEGER_CST
48fefb59 1186 || (GET_MODE_BITSIZE (mode)
235978c1 1187 > GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (treeop1))))))
48fefb59 1188 {
1189 /* op0 might have been replaced by promoted constant, in which
1190 case the type of second argument should be used. */
235978c1 1191 type = TREE_TYPE (treeop1);
48fefb59 1192 mode = TYPE_MODE (type);
1193 }
78a8ed03 1194 unsignedp = TYPE_UNSIGNED (type);
48fefb59 1195 code = unsignedp ? unsigned_code : signed_code;
1196
1197#ifdef HAVE_canonicalize_funcptr_for_compare
1198 /* If function pointers need to be "canonicalized" before they can
dce9431b 1199 be reliably compared, then canonicalize them.
1200 Only do this if *both* sides of the comparison are function pointers.
1201 If one side isn't, we want a noncanonicalized comparison. See PR
f7f07c95 1202 middle-end/17564. */
48fefb59 1203 if (HAVE_canonicalize_funcptr_for_compare
235978c1 1204 && TREE_CODE (TREE_TYPE (treeop0)) == POINTER_TYPE
1205 && TREE_CODE (TREE_TYPE (TREE_TYPE (treeop0)))
dce9431b 1206 == FUNCTION_TYPE
235978c1 1207 && TREE_CODE (TREE_TYPE (treeop1)) == POINTER_TYPE
1208 && TREE_CODE (TREE_TYPE (TREE_TYPE (treeop1)))
dce9431b 1209 == FUNCTION_TYPE)
48fefb59 1210 {
1211 rtx new_op0 = gen_reg_rtx (mode);
dce9431b 1212 rtx new_op1 = gen_reg_rtx (mode);
48fefb59 1213
1214 emit_insn (gen_canonicalize_funcptr_for_compare (new_op0, op0));
1215 op0 = new_op0;
48fefb59 1216
1217 emit_insn (gen_canonicalize_funcptr_for_compare (new_op1, op1));
1218 op1 = new_op1;
1219 }
1220#endif
1221
48fefb59 1222 do_compare_rtx_and_jump (op0, op1, code, unsignedp, mode,
1223 ((mode == BLKmode)
235978c1 1224 ? expr_size (treeop0) : NULL_RTX),
79ab74cc 1225 if_false_label, if_true_label, prob);
48fefb59 1226}
d9e19419 1227
1228#include "gt-dojump.h"