1 /* Conditional compare related functions
2 Copyright (C) 2014-2024 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 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
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
34 #include "stor-layout.h"
35 #include "tree-ssa-live.h"
36 #include "tree-outof-ssa.h"
37 #include "cfgexpand.h"
41 /* Check whether T is a simple boolean variable or a SSA name
42 set by a comparison operator in the same basic block. */
44 ccmp_tree_comparison_p (tree t
, basic_block bb
)
46 gimple
*g
= get_gimple_for_ssa_name (t
);
49 /* If we have a boolean variable allow it and generate a compare
50 to zero reg when expanding. */
52 return (TREE_CODE (TREE_TYPE (t
)) == BOOLEAN_TYPE
);
54 /* Check to see if SSA name is set by a comparison operator in
55 the same basic block. */
56 if (!is_gimple_assign (g
))
58 if (bb
!= gimple_bb (g
))
60 tcode
= gimple_assign_rhs_code (g
);
61 return TREE_CODE_CLASS (tcode
) == tcc_comparison
;
64 /* The following functions expand conditional compare (CCMP) instructions.
65 Here is a short description about the over all algorithm:
66 * ccmp_candidate_p is used to identify the CCMP candidate
68 * expand_ccmp_expr is the main entry, which calls expand_ccmp_expr_1
71 * expand_ccmp_expr_1 uses a recursive algorithm to expand CCMP.
72 It calls two target hooks gen_ccmp_first and gen_ccmp_next to generate
74 - gen_ccmp_first expands the first compare in CCMP.
75 - gen_ccmp_next expands the following compares.
77 Both hooks return a comparison with the CC register that is equivalent
78 to the value of the gimple comparison. This is used by the next CCMP
79 and in the final conditional store.
81 * We use cstorecc4 pattern to convert the CCmode intermediate to
82 the integer mode result that expand_normal is expecting.
84 Since the operands of the later compares might clobber CC reg, we do not
85 emit the insns during expand. We keep the insn sequences in two seq
87 * prep_seq, which includes all the insns to prepare the operands.
88 * gen_seq, which includes all the compare and conditional compares.
90 If all checks OK in expand_ccmp_expr, it emits insns in prep_seq, then
93 /* Check whether G is a potential conditional compare candidate; OUTER is true if
94 G is the outer most AND/IOR. */
96 ccmp_candidate_p (gimple
*g
, bool outer
= false)
106 tcode
= gimple_assign_rhs_code (g
);
107 if (tcode
!= BIT_AND_EXPR
&& tcode
!= BIT_IOR_EXPR
)
110 lhs
= gimple_assign_lhs (g
);
111 op0
= gimple_assign_rhs1 (g
);
112 op1
= gimple_assign_rhs2 (g
);
113 if ((TREE_CODE (op0
) != SSA_NAME
) || (TREE_CODE (op1
) != SSA_NAME
))
115 if (!outer
&& !has_single_use (lhs
))
119 gs0
= get_gimple_for_ssa_name (op0
); /* gs0 may be NULL */
120 gs1
= get_gimple_for_ssa_name (op1
); /* gs1 may be NULL */
122 if (ccmp_tree_comparison_p (op0
, bb
) && ccmp_tree_comparison_p (op1
, bb
))
124 if (ccmp_tree_comparison_p (op0
, bb
) && ccmp_candidate_p (gs1
))
126 if (ccmp_tree_comparison_p (op1
, bb
) && ccmp_candidate_p (gs0
))
128 /* We skip ccmp_candidate_p (gs1) && ccmp_candidate_p (gs0) since
129 there is no way to set and maintain the CC flag on both sides of
130 the logical operator at the same time. */
134 /* Extract the comparison we want to do from the tree. */
136 get_compare_parts (tree t
, int *up
, rtx_code
*rcode
,
137 tree
*rhs1
, tree
*rhs2
)
140 gimple
*g
= get_gimple_for_ssa_name (t
);
143 *up
= TYPE_UNSIGNED (TREE_TYPE (gimple_assign_rhs1 (g
)));
144 code
= gimple_assign_rhs_code (g
);
145 *rcode
= get_rtx_code (code
, *up
);
146 *rhs1
= gimple_assign_rhs1 (g
);
147 *rhs2
= gimple_assign_rhs2 (g
);
151 /* If g is not a comparison operator create a compare to zero. */
155 *rhs2
= build_zero_cst (TREE_TYPE (t
));
159 /* PREV is a comparison with the CC register which represents the
160 result of the previous CMP or CCMP. The function expands the
161 next compare based on G which is ANDed/ORed with the previous
162 compare depending on CODE.
163 PREP_SEQ returns all insns to prepare opearands for compare.
164 GEN_SEQ returns all compare insns. */
166 expand_ccmp_next (tree op
, tree_code code
, rtx prev
,
167 rtx_insn
**prep_seq
, rtx_insn
**gen_seq
)
173 get_compare_parts(op
, &unsignedp
, &rcode
, &rhs1
, &rhs2
);
174 return targetm
.gen_ccmp_next (prep_seq
, gen_seq
, prev
, rcode
,
175 rhs1
, rhs2
, get_rtx_code (code
, 0));
178 /* Expand conditional compare gimple G. A typical CCMP sequence is like:
181 CC1 = CCMP (NE (CC0, 0), CMP (e, f));
183 CCn = CCMP (NE (CCn-1, 0), CMP (...));
185 hook gen_ccmp_first is used to expand the first compare.
186 hook gen_ccmp_next is used to expand the following CCMP.
187 PREP_SEQ returns all insns to prepare opearand.
188 GEN_SEQ returns all compare insns. */
190 expand_ccmp_expr_1 (gimple
*g
, rtx_insn
**prep_seq
, rtx_insn
**gen_seq
)
192 tree_code code
= gimple_assign_rhs_code (g
);
193 basic_block bb
= gimple_bb (g
);
195 tree op0
= gimple_assign_rhs1 (g
);
196 tree op1
= gimple_assign_rhs2 (g
);
197 gimple
*gs0
= get_gimple_for_ssa_name (op0
);
198 gimple
*gs1
= get_gimple_for_ssa_name (op1
);
201 gcc_assert (code
== BIT_AND_EXPR
|| code
== BIT_IOR_EXPR
);
203 if (ccmp_tree_comparison_p (op0
, bb
))
205 if (ccmp_tree_comparison_p (op1
, bb
))
207 int unsignedp0
, unsignedp1
;
208 rtx_code rcode0
, rcode1
;
209 tree logical_op0_rhs1
, logical_op0_rhs2
;
210 tree logical_op1_rhs1
, logical_op1_rhs2
;
211 int speed_p
= optimize_insn_for_speed_p ();
213 rtx tmp2
= NULL_RTX
, ret
= NULL_RTX
, ret2
= NULL_RTX
;
214 unsigned cost1
= MAX_COST
;
215 unsigned cost2
= MAX_COST
;
217 get_compare_parts (op0
, &unsignedp0
, &rcode0
,
218 &logical_op0_rhs1
, &logical_op0_rhs2
);
220 get_compare_parts (op1
, &unsignedp1
, &rcode1
,
221 &logical_op1_rhs1
, &logical_op1_rhs2
);
223 rtx_insn
*prep_seq_1
, *gen_seq_1
;
224 tmp
= targetm
.gen_ccmp_first (&prep_seq_1
, &gen_seq_1
, rcode0
,
225 logical_op0_rhs1
, logical_op0_rhs2
);
228 ret
= expand_ccmp_next (op1
, code
, tmp
, &prep_seq_1
, &gen_seq_1
);
229 cost1
= seq_cost (prep_seq_1
, speed_p
);
230 cost1
+= seq_cost (gen_seq_1
, speed_p
);
233 /* FIXME: Temporary workaround for PR69619.
234 Avoid exponential compile time due to expanding gs0 and gs1 twice.
235 If gs0 and gs1 are complex, the cost will be high, so avoid
236 reevaluation if above an arbitrary threshold. */
237 rtx_insn
*prep_seq_2
, *gen_seq_2
;
238 if (tmp
== NULL
|| cost1
< COSTS_N_INSNS (25))
239 tmp2
= targetm
.gen_ccmp_first (&prep_seq_2
, &gen_seq_2
, rcode1
,
240 logical_op1_rhs1
, logical_op1_rhs2
);
245 ret2
= expand_ccmp_next (op0
, code
, tmp2
, &prep_seq_2
,
247 cost2
= seq_cost (prep_seq_2
, speed_p
);
248 cost2
+= seq_cost (gen_seq_2
, speed_p
);
251 /* It's possible that one expansion succeeds and the other
253 For example, x86 has int ccmp but not fp ccmp, and so a
254 combined fp and int comparison must be ordered such that
255 the fp comparison happens first. The costs are not
256 meaningful for failed expansions. */
258 if (ret2
&& (!ret
|| cost2
< cost1
))
260 *prep_seq
= prep_seq_2
;
261 *gen_seq
= gen_seq_2
;
264 *prep_seq
= prep_seq_1
;
265 *gen_seq
= gen_seq_1
;
270 tmp
= expand_ccmp_expr_1 (gs1
, prep_seq
, gen_seq
);
273 return expand_ccmp_next (op0
, code
, tmp
, prep_seq
, gen_seq
);
278 gcc_assert (gimple_assign_rhs_code (gs0
) == BIT_AND_EXPR
279 || gimple_assign_rhs_code (gs0
) == BIT_IOR_EXPR
);
280 gcc_assert (ccmp_tree_comparison_p (op1
, bb
));
281 tmp
= expand_ccmp_expr_1 (gs0
, prep_seq
, gen_seq
);
284 return expand_ccmp_next (op1
, code
, tmp
, prep_seq
, gen_seq
);
288 /* Main entry to expand conditional compare statement G.
289 Return NULL_RTX if G is not a legal candidate or expand fail.
290 Otherwise return the target. */
292 expand_ccmp_expr (gimple
*g
, machine_mode mode
)
297 if (!ccmp_candidate_p (g
, true))
300 last
= get_last_insn ();
302 rtx_insn
*prep_seq
= NULL
, *gen_seq
= NULL
;
303 tmp
= expand_ccmp_expr_1 (g
, &prep_seq
, &gen_seq
);
308 machine_mode cc_mode
= CCmode
;
309 rtx_code cmp_code
= GET_CODE (tmp
);
311 #ifdef SELECT_CC_MODE
312 cc_mode
= SELECT_CC_MODE (cmp_code
, XEXP (tmp
, 0), const0_rtx
);
314 icode
= optab_handler (cstore_optab
, cc_mode
);
315 if (icode
!= CODE_FOR_nothing
)
317 rtx target
= gen_reg_rtx (mode
);
319 emit_insn (prep_seq
);
322 tmp
= emit_cstore (target
, icode
, cmp_code
, cc_mode
, cc_mode
,
323 0, XEXP (tmp
, 0), const0_rtx
, 1, mode
);
329 delete_insns_since (last
);