1 /* Convert tree expression to rtl instructions, for GNU compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
30 #include "insn-config.h"
31 #include "insn-attr.h"
32 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
35 #include "langhooks.h"
37 #include "basic-block.h"
40 static bool prefer_and_bit_test (enum machine_mode
, int);
41 static void do_jump_by_parts_greater (tree
, tree
, int, rtx
, rtx
, int);
42 static void do_jump_by_parts_equality (tree
, tree
, rtx
, rtx
, int);
43 static void do_compare_and_jump (tree
, tree
, enum rtx_code
, enum rtx_code
, rtx
,
46 /* Invert probability if there is any. -1 stands for unknown. */
51 return prob
== -1 ? -1 : REG_BR_PROB_BASE
- prob
;
54 /* At the start of a function, record that we have no previously-pushed
55 arguments waiting to be popped. */
58 init_pending_stack_adjust (void)
60 pending_stack_adjust
= 0;
63 /* Discard any pending stack adjustment. This avoid relying on the
64 RTL optimizers to remove useless adjustments when we know the
65 stack pointer value is dead. */
67 discard_pending_stack_adjust (void)
69 stack_pointer_delta
-= pending_stack_adjust
;
70 pending_stack_adjust
= 0;
73 /* When exiting from function, if safe, clear out any pending stack adjust
74 so the adjustment won't get done.
76 Note, if the current function calls alloca, then it must have a
77 frame pointer regardless of the value of flag_omit_frame_pointer. */
80 clear_pending_stack_adjust (void)
83 && (! flag_omit_frame_pointer
|| cfun
->calls_alloca
)
85 discard_pending_stack_adjust ();
88 /* Pop any previously-pushed arguments that have not been popped yet. */
91 do_pending_stack_adjust (void)
93 if (inhibit_defer_pop
== 0)
95 if (pending_stack_adjust
!= 0)
96 adjust_stack (GEN_INT (pending_stack_adjust
));
97 pending_stack_adjust
= 0;
101 /* Expand conditional expressions. */
103 /* Generate code to evaluate EXP and jump to LABEL if the value is zero.
104 LABEL is an rtx of code CODE_LABEL, in this function and all the
108 jumpifnot (tree exp
, rtx label
, int prob
)
110 do_jump (exp
, label
, NULL_RTX
, inv (prob
));
114 jumpifnot_1 (enum tree_code code
, tree op0
, tree op1
, rtx label
, int prob
)
116 do_jump_1 (code
, op0
, op1
, label
, NULL_RTX
, inv (prob
));
119 /* Generate code to evaluate EXP and jump to LABEL if the value is nonzero. */
122 jumpif (tree exp
, rtx label
, int prob
)
124 do_jump (exp
, NULL_RTX
, label
, prob
);
128 jumpif_1 (enum tree_code code
, tree op0
, tree op1
, rtx label
, int prob
)
130 do_jump_1 (code
, op0
, op1
, NULL_RTX
, label
, prob
);
133 /* Used internally by prefer_and_bit_test. */
135 static GTY(()) rtx and_reg
;
136 static GTY(()) rtx and_test
;
137 static GTY(()) rtx shift_test
;
139 /* Compare the relative costs of "(X & (1 << BITNUM))" and "(X >> BITNUM) & 1",
140 where X is an arbitrary register of mode MODE. Return true if the former
144 prefer_and_bit_test (enum machine_mode mode
, int bitnum
)
150 /* Set up rtxes for the two variations. Use NULL as a placeholder
151 for the BITNUM-based constants. */
152 and_reg
= gen_rtx_REG (mode
, FIRST_PSEUDO_REGISTER
);
153 and_test
= gen_rtx_AND (mode
, and_reg
, NULL
);
154 shift_test
= gen_rtx_AND (mode
, gen_rtx_ASHIFTRT (mode
, and_reg
, NULL
),
159 /* Change the mode of the previously-created rtxes. */
160 PUT_MODE (and_reg
, mode
);
161 PUT_MODE (and_test
, mode
);
162 PUT_MODE (shift_test
, mode
);
163 PUT_MODE (XEXP (shift_test
, 0), mode
);
166 /* Fill in the integers. */
168 = immed_double_int_const (double_int_setbit (double_int_zero
, bitnum
),
170 XEXP (XEXP (shift_test
, 0), 1) = GEN_INT (bitnum
);
172 speed_p
= optimize_insn_for_speed_p ();
173 return (rtx_cost (and_test
, IF_THEN_ELSE
, 0, speed_p
)
174 <= rtx_cost (shift_test
, IF_THEN_ELSE
, 0, speed_p
));
177 /* Subroutine of do_jump, dealing with exploded comparisons of the type
178 OP0 CODE OP1 . IF_FALSE_LABEL and IF_TRUE_LABEL like in do_jump.
179 PROB is probability of jump to if_true_label, or -1 if unknown. */
182 do_jump_1 (enum tree_code code
, tree op0
, tree op1
,
183 rtx if_false_label
, rtx if_true_label
, int prob
)
185 enum machine_mode mode
;
186 rtx drop_through_label
= 0;
192 tree inner_type
= TREE_TYPE (op0
);
194 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type
))
195 != MODE_COMPLEX_FLOAT
);
196 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type
))
197 != MODE_COMPLEX_INT
);
199 if (integer_zerop (op1
))
200 do_jump (op0
, if_true_label
, if_false_label
, inv (prob
));
201 else if (GET_MODE_CLASS (TYPE_MODE (inner_type
)) == MODE_INT
202 && !can_compare_p (EQ
, TYPE_MODE (inner_type
), ccp_jump
))
203 do_jump_by_parts_equality (op0
, op1
, if_false_label
, if_true_label
,
206 do_compare_and_jump (op0
, op1
, EQ
, EQ
, if_false_label
, if_true_label
,
213 tree inner_type
= TREE_TYPE (op0
);
215 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type
))
216 != MODE_COMPLEX_FLOAT
);
217 gcc_assert (GET_MODE_CLASS (TYPE_MODE (inner_type
))
218 != MODE_COMPLEX_INT
);
220 if (integer_zerop (op1
))
221 do_jump (op0
, if_false_label
, if_true_label
, prob
);
222 else if (GET_MODE_CLASS (TYPE_MODE (inner_type
)) == MODE_INT
223 && !can_compare_p (NE
, TYPE_MODE (inner_type
), ccp_jump
))
224 do_jump_by_parts_equality (op0
, op1
, if_true_label
, if_false_label
,
227 do_compare_and_jump (op0
, op1
, NE
, NE
, if_false_label
, if_true_label
,
233 mode
= TYPE_MODE (TREE_TYPE (op0
));
234 if (GET_MODE_CLASS (mode
) == MODE_INT
235 && ! can_compare_p (LT
, mode
, ccp_jump
))
236 do_jump_by_parts_greater (op0
, op1
, 1, if_false_label
, if_true_label
,
239 do_compare_and_jump (op0
, op1
, LT
, LTU
, if_false_label
, if_true_label
,
244 mode
= TYPE_MODE (TREE_TYPE (op0
));
245 if (GET_MODE_CLASS (mode
) == MODE_INT
246 && ! can_compare_p (LE
, mode
, ccp_jump
))
247 do_jump_by_parts_greater (op0
, op1
, 0, if_true_label
, if_false_label
,
250 do_compare_and_jump (op0
, op1
, LE
, LEU
, if_false_label
, if_true_label
,
255 mode
= TYPE_MODE (TREE_TYPE (op0
));
256 if (GET_MODE_CLASS (mode
) == MODE_INT
257 && ! can_compare_p (GT
, mode
, ccp_jump
))
258 do_jump_by_parts_greater (op0
, op1
, 0, if_false_label
, if_true_label
,
261 do_compare_and_jump (op0
, op1
, GT
, GTU
, if_false_label
, if_true_label
,
266 mode
= TYPE_MODE (TREE_TYPE (op0
));
267 if (GET_MODE_CLASS (mode
) == MODE_INT
268 && ! can_compare_p (GE
, mode
, ccp_jump
))
269 do_jump_by_parts_greater (op0
, op1
, 1, if_true_label
, if_false_label
,
272 do_compare_and_jump (op0
, op1
, GE
, GEU
, if_false_label
, if_true_label
,
277 do_compare_and_jump (op0
, op1
, ORDERED
, ORDERED
,
278 if_false_label
, if_true_label
, prob
);
282 do_compare_and_jump (op0
, op1
, UNORDERED
, UNORDERED
,
283 if_false_label
, if_true_label
, prob
);
287 do_compare_and_jump (op0
, op1
, UNLT
, UNLT
, if_false_label
, if_true_label
,
292 do_compare_and_jump (op0
, op1
, UNLE
, UNLE
, if_false_label
, if_true_label
,
297 do_compare_and_jump (op0
, op1
, UNGT
, UNGT
, if_false_label
, if_true_label
,
302 do_compare_and_jump (op0
, op1
, UNGE
, UNGE
, if_false_label
, if_true_label
,
307 do_compare_and_jump (op0
, op1
, UNEQ
, UNEQ
, if_false_label
, if_true_label
,
312 do_compare_and_jump (op0
, op1
, LTGT
, LTGT
, if_false_label
, if_true_label
,
316 case TRUTH_ANDIF_EXPR
:
317 if (if_false_label
== NULL_RTX
)
319 drop_through_label
= gen_label_rtx ();
320 do_jump (op0
, drop_through_label
, NULL_RTX
, prob
);
321 do_jump (op1
, NULL_RTX
, if_true_label
, prob
);
325 do_jump (op0
, if_false_label
, NULL_RTX
, prob
);
326 do_jump (op1
, if_false_label
, if_true_label
, prob
);
330 case TRUTH_ORIF_EXPR
:
331 if (if_true_label
== NULL_RTX
)
333 drop_through_label
= gen_label_rtx ();
334 do_jump (op0
, NULL_RTX
, drop_through_label
, prob
);
335 do_jump (op1
, if_false_label
, NULL_RTX
, prob
);
339 do_jump (op0
, NULL_RTX
, if_true_label
, prob
);
340 do_jump (op1
, if_false_label
, if_true_label
, prob
);
348 if (drop_through_label
)
350 do_pending_stack_adjust ();
351 emit_label (drop_through_label
);
355 /* Generate code to evaluate EXP and jump to IF_FALSE_LABEL if
356 the result is zero, or IF_TRUE_LABEL if the result is one.
357 Either of IF_FALSE_LABEL and IF_TRUE_LABEL may be zero,
358 meaning fall through in that case.
360 do_jump always does any pending stack adjust except when it does not
361 actually perform a jump. An example where there is no jump
362 is when EXP is `(foo (), 0)' and IF_FALSE_LABEL is null.
364 PROB is probability of jump to if_true_label, or -1 if unknown. */
367 do_jump (tree exp
, rtx if_false_label
, rtx if_true_label
, int prob
)
369 enum tree_code code
= TREE_CODE (exp
);
373 enum machine_mode mode
;
374 rtx drop_through_label
= 0;
382 temp
= integer_zerop (exp
) ? if_false_label
: if_true_label
;
388 /* This is not true with #pragma weak */
390 /* The address of something can never be zero. */
392 emit_jump (if_true_label
);
397 if (TREE_CODE (TREE_OPERAND (exp
, 0)) == COMPONENT_REF
398 || TREE_CODE (TREE_OPERAND (exp
, 0)) == BIT_FIELD_REF
399 || TREE_CODE (TREE_OPERAND (exp
, 0)) == ARRAY_REF
400 || TREE_CODE (TREE_OPERAND (exp
, 0)) == ARRAY_RANGE_REF
)
403 /* If we are narrowing the operand, we have to do the compare in the
405 if ((TYPE_PRECISION (TREE_TYPE (exp
))
406 < TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp
, 0)))))
408 case NON_LVALUE_EXPR
:
409 /* if a shared pointer conversion that will change representation,
410 then we have to compare in the result type. */
411 if (upc_pts_cvt_op_p (exp
))
417 /* These cannot change zero->nonzero or vice versa. */
418 do_jump (TREE_OPERAND (exp
, 0), if_false_label
, if_true_label
, prob
);
422 do_jump (TREE_OPERAND (exp
, 0), if_true_label
, if_false_label
,
428 rtx label1
= gen_label_rtx ();
429 if (!if_true_label
|| !if_false_label
)
431 drop_through_label
= gen_label_rtx ();
433 if_true_label
= drop_through_label
;
435 if_false_label
= drop_through_label
;
438 do_pending_stack_adjust ();
439 do_jump (TREE_OPERAND (exp
, 0), label1
, NULL_RTX
, -1);
440 do_jump (TREE_OPERAND (exp
, 1), if_false_label
, if_true_label
, prob
);
442 do_jump (TREE_OPERAND (exp
, 2), if_false_label
, if_true_label
, prob
);
447 /* Lowered by gimplify.c. */
451 /* Nonzero iff operands of minus differ. */
469 case TRUTH_ANDIF_EXPR
:
470 case TRUTH_ORIF_EXPR
:
472 do_jump_1 (code
, TREE_OPERAND (exp
, 0), TREE_OPERAND (exp
, 1),
473 if_false_label
, if_true_label
, prob
);
477 /* fold_single_bit_test() converts (X & (1 << C)) into (X >> C) & 1.
478 See if the former is preferred for jump tests and restore it
480 if (integer_onep (TREE_OPERAND (exp
, 1)))
482 tree exp0
= TREE_OPERAND (exp
, 0);
483 rtx set_label
, clr_label
;
484 int setclr_prob
= prob
;
486 /* Strip narrowing integral type conversions. */
487 while (CONVERT_EXPR_P (exp0
)
488 && TREE_OPERAND (exp0
, 0) != error_mark_node
489 && TYPE_PRECISION (TREE_TYPE (exp0
))
490 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (exp0
, 0))))
491 exp0
= TREE_OPERAND (exp0
, 0);
493 /* "exp0 ^ 1" inverts the sense of the single bit test. */
494 if (TREE_CODE (exp0
) == BIT_XOR_EXPR
495 && integer_onep (TREE_OPERAND (exp0
, 1)))
497 exp0
= TREE_OPERAND (exp0
, 0);
498 clr_label
= if_true_label
;
499 set_label
= if_false_label
;
500 setclr_prob
= inv (prob
);
504 clr_label
= if_false_label
;
505 set_label
= if_true_label
;
508 if (TREE_CODE (exp0
) == RSHIFT_EXPR
)
510 tree arg
= TREE_OPERAND (exp0
, 0);
511 tree shift
= TREE_OPERAND (exp0
, 1);
512 tree argtype
= TREE_TYPE (arg
);
513 if (TREE_CODE (shift
) == INTEGER_CST
514 && compare_tree_int (shift
, 0) >= 0
515 && compare_tree_int (shift
, HOST_BITS_PER_WIDE_INT
) < 0
516 && prefer_and_bit_test (TYPE_MODE (argtype
),
517 TREE_INT_CST_LOW (shift
)))
519 unsigned HOST_WIDE_INT mask
520 = (unsigned HOST_WIDE_INT
) 1 << TREE_INT_CST_LOW (shift
);
521 do_jump (build2 (BIT_AND_EXPR
, argtype
, arg
,
522 build_int_cstu (argtype
, mask
)),
523 clr_label
, set_label
, setclr_prob
);
529 /* If we are AND'ing with a small constant, do this comparison in the
530 smallest type that fits. If the machine doesn't have comparisons
531 that small, it will be converted back to the wider comparison.
532 This helps if we are testing the sign bit of a narrower object.
533 combine can't do this for us because it can't know whether a
534 ZERO_EXTRACT or a compare in a smaller mode exists, but we do. */
536 if (! SLOW_BYTE_ACCESS
537 && TREE_CODE (TREE_OPERAND (exp
, 1)) == INTEGER_CST
538 && TYPE_PRECISION (TREE_TYPE (exp
)) <= HOST_BITS_PER_WIDE_INT
539 && (i
= tree_floor_log2 (TREE_OPERAND (exp
, 1))) >= 0
540 && (mode
= mode_for_size (i
+ 1, MODE_INT
, 0)) != BLKmode
541 && (type
= lang_hooks
.types
.type_for_mode (mode
, 1)) != 0
542 && TYPE_PRECISION (type
) < TYPE_PRECISION (TREE_TYPE (exp
))
543 && have_insn_for (COMPARE
, TYPE_MODE (type
)))
545 do_jump (fold_convert (type
, exp
), if_false_label
, if_true_label
,
550 if (TYPE_PRECISION (TREE_TYPE (exp
)) > 1
551 || TREE_CODE (TREE_OPERAND (exp
, 1)) == INTEGER_CST
)
554 /* Boolean comparisons can be compiled as TRUTH_AND_EXPR. */
557 /* High branch cost, expand as the bitwise AND of the conditions.
558 Do the same if the RHS has side effects, because we're effectively
559 turning a TRUTH_AND_EXPR into a TRUTH_ANDIF_EXPR. */
560 if (BRANCH_COST (optimize_insn_for_speed_p (),
562 || TREE_SIDE_EFFECTS (TREE_OPERAND (exp
, 1)))
564 code
= TRUTH_ANDIF_EXPR
;
569 /* High branch cost, expand as the bitwise OR of the conditions.
570 Do the same if the RHS has side effects, because we're effectively
571 turning a TRUTH_OR_EXPR into a TRUTH_ORIF_EXPR. */
572 if (BRANCH_COST (optimize_insn_for_speed_p (), false) >= 4
573 || TREE_SIDE_EFFECTS (TREE_OPERAND (exp
, 1)))
575 code
= TRUTH_ORIF_EXPR
;
578 /* Fall through and generate the normal code. */
581 temp
= expand_normal (exp
);
582 do_pending_stack_adjust ();
583 /* The RTL optimizers prefer comparisons against pseudos. */
584 if (GET_CODE (temp
) == SUBREG
)
586 /* Compare promoted variables in their promoted mode. */
587 if (SUBREG_PROMOTED_VAR_P (temp
)
588 && REG_P (XEXP (temp
, 0)))
589 temp
= XEXP (temp
, 0);
591 temp
= copy_to_reg (temp
);
593 do_compare_rtx_and_jump (temp
, CONST0_RTX (GET_MODE (temp
)),
594 NE
, TYPE_UNSIGNED (TREE_TYPE (exp
)),
595 GET_MODE (temp
), NULL_RTX
,
596 if_false_label
, if_true_label
, prob
);
599 if (drop_through_label
)
601 do_pending_stack_adjust ();
602 emit_label (drop_through_label
);
606 /* Compare OP0 with OP1, word at a time, in mode MODE.
607 UNSIGNEDP says to do unsigned comparison.
608 Jump to IF_TRUE_LABEL if OP0 is greater, IF_FALSE_LABEL otherwise. */
611 do_jump_by_parts_greater_rtx (enum machine_mode mode
, int unsignedp
, rtx op0
,
612 rtx op1
, rtx if_false_label
, rtx if_true_label
,
615 int nwords
= (GET_MODE_SIZE (mode
) / UNITS_PER_WORD
);
616 rtx drop_through_label
= 0;
617 bool drop_through_if_true
= false, drop_through_if_false
= false;
618 enum rtx_code code
= GT
;
621 if (! if_true_label
|| ! if_false_label
)
622 drop_through_label
= gen_label_rtx ();
625 if_true_label
= drop_through_label
;
626 drop_through_if_true
= true;
628 if (! if_false_label
)
630 if_false_label
= drop_through_label
;
631 drop_through_if_false
= true;
634 /* Deal with the special case 0 > x: only one comparison is necessary and
635 we reverse it to avoid jumping to the drop-through label. */
636 if (op0
== const0_rtx
&& drop_through_if_true
&& !drop_through_if_false
)
639 if_true_label
= if_false_label
;
640 if_false_label
= drop_through_label
;
641 drop_through_if_true
= false;
642 drop_through_if_false
= true;
645 /* Compare a word at a time, high order first. */
646 for (i
= 0; i
< nwords
; i
++)
648 rtx op0_word
, op1_word
;
650 if (WORDS_BIG_ENDIAN
)
652 op0_word
= operand_subword_force (op0
, i
, mode
);
653 op1_word
= operand_subword_force (op1
, i
, mode
);
657 op0_word
= operand_subword_force (op0
, nwords
- 1 - i
, mode
);
658 op1_word
= operand_subword_force (op1
, nwords
- 1 - i
, mode
);
661 /* All but high-order word must be compared as unsigned. */
662 do_compare_rtx_and_jump (op0_word
, op1_word
, code
, (unsignedp
|| i
> 0),
663 word_mode
, NULL_RTX
, NULL_RTX
, if_true_label
,
666 /* Emit only one comparison for 0. Do not emit the last cond jump. */
667 if (op0
== const0_rtx
|| i
== nwords
- 1)
670 /* Consider lower words only if these are equal. */
671 do_compare_rtx_and_jump (op0_word
, op1_word
, NE
, unsignedp
, word_mode
,
672 NULL_RTX
, NULL_RTX
, if_false_label
, inv (prob
));
675 if (!drop_through_if_false
)
676 emit_jump (if_false_label
);
677 if (drop_through_label
)
678 emit_label (drop_through_label
);
681 /* Given a comparison expression EXP for values too wide to be compared
682 with one insn, test the comparison and jump to the appropriate label.
683 The code of EXP is ignored; we always test GT if SWAP is 0,
684 and LT if SWAP is 1. */
687 do_jump_by_parts_greater (tree treeop0
, tree treeop1
, int swap
,
688 rtx if_false_label
, rtx if_true_label
, int prob
)
690 rtx op0
= expand_normal (swap
? treeop1
: treeop0
);
691 rtx op1
= expand_normal (swap
? treeop0
: treeop1
);
692 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (treeop0
));
693 int unsignedp
= TYPE_UNSIGNED (TREE_TYPE (treeop0
));
695 do_jump_by_parts_greater_rtx (mode
, unsignedp
, op0
, op1
, if_false_label
,
696 if_true_label
, prob
);
699 /* Jump according to whether OP0 is 0. We assume that OP0 has an integer
700 mode, MODE, that is too wide for the available compare insns. Either
701 Either (but not both) of IF_TRUE_LABEL and IF_FALSE_LABEL may be NULL_RTX
702 to indicate drop through. */
705 do_jump_by_parts_zero_rtx (enum machine_mode mode
, rtx op0
,
706 rtx if_false_label
, rtx if_true_label
, int prob
)
708 int nwords
= GET_MODE_SIZE (mode
) / UNITS_PER_WORD
;
711 rtx drop_through_label
= 0;
713 /* The fastest way of doing this comparison on almost any machine is to
714 "or" all the words and compare the result. If all have to be loaded
715 from memory and this is a very wide item, it's possible this may
716 be slower, but that's highly unlikely. */
718 part
= gen_reg_rtx (word_mode
);
719 emit_move_insn (part
, operand_subword_force (op0
, 0, mode
));
720 for (i
= 1; i
< nwords
&& part
!= 0; i
++)
721 part
= expand_binop (word_mode
, ior_optab
, part
,
722 operand_subword_force (op0
, i
, mode
),
723 part
, 1, OPTAB_WIDEN
);
727 do_compare_rtx_and_jump (part
, const0_rtx
, EQ
, 1, word_mode
,
728 NULL_RTX
, if_false_label
, if_true_label
, prob
);
732 /* If we couldn't do the "or" simply, do this with a series of compares. */
733 if (! if_false_label
)
734 drop_through_label
= if_false_label
= gen_label_rtx ();
736 for (i
= 0; i
< nwords
; i
++)
737 do_compare_rtx_and_jump (operand_subword_force (op0
, i
, mode
),
738 const0_rtx
, EQ
, 1, word_mode
, NULL_RTX
,
739 if_false_label
, NULL_RTX
, prob
);
742 emit_jump (if_true_label
);
744 if (drop_through_label
)
745 emit_label (drop_through_label
);
748 /* Test for the equality of two RTX expressions OP0 and OP1 in mode MODE,
749 where MODE is an integer mode too wide to be compared with one insn.
750 Either (but not both) of IF_TRUE_LABEL and IF_FALSE_LABEL may be NULL_RTX
751 to indicate drop through. */
754 do_jump_by_parts_equality_rtx (enum machine_mode mode
, rtx op0
, rtx op1
,
755 rtx if_false_label
, rtx if_true_label
, int prob
)
757 int nwords
= (GET_MODE_SIZE (mode
) / UNITS_PER_WORD
);
758 rtx drop_through_label
= 0;
761 if (op1
== const0_rtx
)
763 do_jump_by_parts_zero_rtx (mode
, op0
, if_false_label
, if_true_label
,
767 else if (op0
== const0_rtx
)
769 do_jump_by_parts_zero_rtx (mode
, op1
, if_false_label
, if_true_label
,
774 if (! if_false_label
)
775 drop_through_label
= if_false_label
= gen_label_rtx ();
777 for (i
= 0; i
< nwords
; i
++)
778 do_compare_rtx_and_jump (operand_subword_force (op0
, i
, mode
),
779 operand_subword_force (op1
, i
, mode
),
780 EQ
, 0, word_mode
, NULL_RTX
,
781 if_false_label
, NULL_RTX
, prob
);
784 emit_jump (if_true_label
);
785 if (drop_through_label
)
786 emit_label (drop_through_label
);
789 /* Given an EQ_EXPR expression EXP for values too wide to be compared
790 with one insn, test the comparison and jump to the appropriate label. */
793 do_jump_by_parts_equality (tree treeop0
, tree treeop1
, rtx if_false_label
,
794 rtx if_true_label
, int prob
)
796 rtx op0
= expand_normal (treeop0
);
797 rtx op1
= expand_normal (treeop1
);
798 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (treeop0
));
799 do_jump_by_parts_equality_rtx (mode
, op0
, op1
, if_false_label
,
800 if_true_label
, prob
);
803 /* Split a comparison into two others, the second of which has the other
804 "orderedness". The first is always ORDERED or UNORDERED if MODE
805 does not honor NaNs (which means that it can be skipped in that case;
806 see do_compare_rtx_and_jump).
808 The two conditions are written in *CODE1 and *CODE2. Return true if
809 the conditions must be ANDed, false if they must be ORed. */
812 split_comparison (enum rtx_code code
, enum machine_mode mode
,
813 enum rtx_code
*code1
, enum rtx_code
*code2
)
862 /* Do not turn a trapping comparison into a non-trapping one. */
863 if (HONOR_SNANS (mode
))
881 /* Like do_compare_and_jump but expects the values to compare as two rtx's.
882 The decision as to signed or unsigned comparison must be made by the caller.
884 If MODE is BLKmode, SIZE is an RTX giving the size of the objects being
888 do_compare_rtx_and_jump (rtx op0
, rtx op1
, enum rtx_code code
, int unsignedp
,
889 enum machine_mode mode
, rtx size
, rtx if_false_label
,
890 rtx if_true_label
, int prob
)
893 rtx dummy_label
= NULL_RTX
;
896 /* Reverse the comparison if that is safe and we want to jump if it is
897 false. Also convert to the reverse comparison if the target can
900 || ! can_compare_p (code
, mode
, ccp_jump
))
901 && (! FLOAT_MODE_P (mode
)
902 || code
== ORDERED
|| code
== UNORDERED
903 || (! HONOR_NANS (mode
) && (code
== LTGT
|| code
== UNEQ
))
904 || (! HONOR_SNANS (mode
) && (code
== EQ
|| code
== NE
))))
907 if (FLOAT_MODE_P (mode
))
908 rcode
= reverse_condition_maybe_unordered (code
);
910 rcode
= reverse_condition (code
);
912 /* Canonicalize to UNORDERED for the libcall. */
913 if (can_compare_p (rcode
, mode
, ccp_jump
)
914 || (code
== ORDERED
&& ! can_compare_p (ORDERED
, mode
, ccp_jump
)))
917 if_true_label
= if_false_label
;
918 if_false_label
= tem
;
924 /* If one operand is constant, make it the second one. Only do this
925 if the other operand is not constant as well. */
927 if (swap_commutative_operands_p (op0
, op1
))
932 code
= swap_condition (code
);
935 do_pending_stack_adjust ();
937 code
= unsignedp
? unsigned_condition (code
) : code
;
938 if (0 != (tem
= simplify_relational_operation (code
, mode
, VOIDmode
,
941 if (CONSTANT_P (tem
))
943 rtx label
= (tem
== const0_rtx
|| tem
== CONST0_RTX (mode
))
944 ? if_false_label
: if_true_label
;
950 code
= GET_CODE (tem
);
951 mode
= GET_MODE (tem
);
954 unsignedp
= (code
== GTU
|| code
== LTU
|| code
== GEU
|| code
== LEU
);
958 dummy_label
= if_true_label
= gen_label_rtx ();
960 if (GET_MODE_CLASS (mode
) == MODE_INT
961 && ! can_compare_p (code
, mode
, ccp_jump
))
966 do_jump_by_parts_greater_rtx (mode
, 1, op1
, op0
,
967 if_false_label
, if_true_label
, prob
);
971 do_jump_by_parts_greater_rtx (mode
, 1, op0
, op1
,
972 if_true_label
, if_false_label
,
977 do_jump_by_parts_greater_rtx (mode
, 1, op0
, op1
,
978 if_false_label
, if_true_label
, prob
);
982 do_jump_by_parts_greater_rtx (mode
, 1, op1
, op0
,
983 if_true_label
, if_false_label
,
988 do_jump_by_parts_greater_rtx (mode
, 0, op1
, op0
,
989 if_false_label
, if_true_label
, prob
);
993 do_jump_by_parts_greater_rtx (mode
, 0, op0
, op1
,
994 if_true_label
, if_false_label
,
999 do_jump_by_parts_greater_rtx (mode
, 0, op0
, op1
,
1000 if_false_label
, if_true_label
, prob
);
1004 do_jump_by_parts_greater_rtx (mode
, 0, op1
, op0
,
1005 if_true_label
, if_false_label
,
1010 do_jump_by_parts_equality_rtx (mode
, op0
, op1
, if_false_label
,
1011 if_true_label
, prob
);
1015 do_jump_by_parts_equality_rtx (mode
, op0
, op1
, if_true_label
,
1016 if_false_label
, inv (prob
));
1025 if (SCALAR_FLOAT_MODE_P (mode
)
1026 && ! can_compare_p (code
, mode
, ccp_jump
)
1027 && can_compare_p (swap_condition (code
), mode
, ccp_jump
))
1030 code
= swap_condition (code
);
1035 else if (SCALAR_FLOAT_MODE_P (mode
)
1036 && ! can_compare_p (code
, mode
, ccp_jump
)
1037 /* Never split ORDERED and UNORDERED.
1038 These must be implemented. */
1039 && (code
!= ORDERED
&& code
!= UNORDERED
)
1040 /* Split a floating-point comparison if
1041 we can jump on other conditions... */
1042 && (have_insn_for (COMPARE
, mode
)
1043 /* ... or if there is no libcall for it. */
1044 || code_to_optab (code
) == unknown_optab
))
1046 enum rtx_code first_code
;
1047 bool and_them
= split_comparison (code
, mode
, &first_code
, &code
);
1049 /* If there are no NaNs, the first comparison should always fall
1051 if (!HONOR_NANS (mode
))
1052 gcc_assert (first_code
== (and_them
? ORDERED
: UNORDERED
));
1059 /* If we only jump if true, just bypass the second jump. */
1060 if (! if_false_label
)
1063 dummy_label
= gen_label_rtx ();
1064 dest_label
= dummy_label
;
1067 dest_label
= if_false_label
;
1068 do_compare_rtx_and_jump (op0
, op1
, first_code
, unsignedp
, mode
,
1069 size
, dest_label
, NULL_RTX
, prob
);
1072 do_compare_rtx_and_jump (op0
, op1
, first_code
, unsignedp
, mode
,
1073 size
, NULL_RTX
, if_true_label
, prob
);
1077 last
= get_last_insn ();
1078 emit_cmp_and_jump_insns (op0
, op1
, code
, size
, mode
, unsignedp
,
1080 if (prob
!= -1 && profile_status
!= PROFILE_ABSENT
)
1082 for (last
= NEXT_INSN (last
);
1083 last
&& NEXT_INSN (last
);
1084 last
= NEXT_INSN (last
))
1089 && ! NEXT_INSN (last
)
1090 && any_condjump_p (last
))
1092 gcc_assert (!find_reg_note (last
, REG_BR_PROB
, 0));
1093 add_reg_note (last
, REG_BR_PROB
, GEN_INT (prob
));
1099 emit_jump (if_false_label
);
1101 emit_label (dummy_label
);
1104 /* Generate code for a comparison expression EXP (including code to compute
1105 the values to be compared) and a conditional jump to IF_FALSE_LABEL and/or
1106 IF_TRUE_LABEL. One of the labels can be NULL_RTX, in which case the
1107 generated code will drop through.
1108 SIGNED_CODE should be the rtx operation for this comparison for
1109 signed data; UNSIGNED_CODE, likewise for use if data is unsigned.
1111 We force a stack adjustment unless there are currently
1112 things pushed on the stack that aren't yet used. */
1115 do_compare_and_jump (tree treeop0
, tree treeop1
, enum rtx_code signed_code
,
1116 enum rtx_code unsigned_code
, rtx if_false_label
,
1117 rtx if_true_label
, int prob
)
1121 enum machine_mode mode
;
1125 /* Don't crash if the comparison was erroneous. */
1126 op0
= expand_normal (treeop0
);
1127 if (TREE_CODE (treeop0
) == ERROR_MARK
)
1130 op1
= expand_normal (treeop1
);
1131 if (TREE_CODE (treeop1
) == ERROR_MARK
)
1134 type
= TREE_TYPE (treeop0
);
1135 mode
= TYPE_MODE (type
);
1136 if (TREE_CODE (treeop0
) == INTEGER_CST
1137 && (TREE_CODE (treeop1
) != INTEGER_CST
1138 || (GET_MODE_BITSIZE (mode
)
1139 > GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (treeop1
))))))
1141 /* op0 might have been replaced by promoted constant, in which
1142 case the type of second argument should be used. */
1143 type
= TREE_TYPE (treeop1
);
1144 mode
= TYPE_MODE (type
);
1146 unsignedp
= TYPE_UNSIGNED (type
);
1147 code
= unsignedp
? unsigned_code
: signed_code
;
1149 #ifdef HAVE_canonicalize_funcptr_for_compare
1150 /* If function pointers need to be "canonicalized" before they can
1151 be reliably compared, then canonicalize them.
1152 Only do this if *both* sides of the comparison are function pointers.
1153 If one side isn't, we want a noncanonicalized comparison. See PR
1154 middle-end/17564. */
1155 if (HAVE_canonicalize_funcptr_for_compare
1156 && TREE_CODE (TREE_TYPE (treeop0
)) == POINTER_TYPE
1157 && TREE_CODE (TREE_TYPE (TREE_TYPE (treeop0
)))
1159 && TREE_CODE (TREE_TYPE (treeop1
)) == POINTER_TYPE
1160 && TREE_CODE (TREE_TYPE (TREE_TYPE (treeop1
)))
1163 rtx new_op0
= gen_reg_rtx (mode
);
1164 rtx new_op1
= gen_reg_rtx (mode
);
1166 emit_insn (gen_canonicalize_funcptr_for_compare (new_op0
, op0
));
1169 emit_insn (gen_canonicalize_funcptr_for_compare (new_op1
, op1
));
1174 do_compare_rtx_and_jump (op0
, op1
, code
, unsignedp
, mode
,
1176 ? expr_size (treeop0
) : NULL_RTX
),
1177 if_false_label
, if_true_label
, prob
);
1180 #include "gt-dojump.h"