2016-06-23 François Dumont <fdumont@gcc.gnu.org>
[official-gcc.git] / gcc / ccmp.c
blob6f95acec95b547b5efb67152d373a174b4ac092c
1 /* Conditional compare related functions
2 Copyright (C) 2014-2016 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
9 version.
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
14 for more details.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "target.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "gimple.h"
28 #include "tm_p.h"
29 #include "ssa.h"
30 #include "expmed.h"
31 #include "optabs.h"
32 #include "emit-rtl.h"
33 #include "stor-layout.h"
34 #include "tree-ssa-live.h"
35 #include "tree-outof-ssa.h"
36 #include "cfgexpand.h"
37 #include "ccmp.h"
38 #include "predict.h"
40 /* The following functions expand conditional compare (CCMP) instructions.
41 Here is a short description about the over all algorithm:
42 * ccmp_candidate_p is used to identify the CCMP candidate
44 * expand_ccmp_expr is the main entry, which calls expand_ccmp_expr_1
45 to expand CCMP.
47 * expand_ccmp_expr_1 uses a recursive algorithm to expand CCMP.
48 It calls two target hooks gen_ccmp_first and gen_ccmp_next to generate
49 CCMP instructions.
50 - gen_ccmp_first expands the first compare in CCMP.
51 - gen_ccmp_next expands the following compares.
53 Both hooks return a comparison with the CC register that is equivalent
54 to the value of the gimple comparison. This is used by the next CCMP
55 and in the final conditional store.
57 * We use cstorecc4 pattern to convert the CCmode intermediate to
58 the integer mode result that expand_normal is expecting.
60 Since the operands of the later compares might clobber CC reg, we do not
61 emit the insns during expand. We keep the insn sequences in two seq
63 * prep_seq, which includes all the insns to prepare the operands.
64 * gen_seq, which includes all the compare and conditional compares.
66 If all checks OK in expand_ccmp_expr, it emits insns in prep_seq, then
67 insns in gen_seq. */
69 /* Check whether G is a potential conditional compare candidate. */
70 static bool
71 ccmp_candidate_p (gimple *g)
73 tree rhs = gimple_assign_rhs_to_tree (g);
74 tree lhs, op0, op1;
75 gimple *gs0, *gs1;
76 tree_code tcode, tcode0, tcode1;
77 tcode = TREE_CODE (rhs);
79 if (tcode != BIT_AND_EXPR && tcode != BIT_IOR_EXPR)
80 return false;
82 lhs = gimple_assign_lhs (g);
83 op0 = TREE_OPERAND (rhs, 0);
84 op1 = TREE_OPERAND (rhs, 1);
86 if ((TREE_CODE (op0) != SSA_NAME) || (TREE_CODE (op1) != SSA_NAME)
87 || !has_single_use (lhs))
88 return false;
90 gs0 = get_gimple_for_ssa_name (op0);
91 gs1 = get_gimple_for_ssa_name (op1);
92 if (!gs0 || !gs1 || !is_gimple_assign (gs0) || !is_gimple_assign (gs1)
93 /* g, gs0 and gs1 must be in the same basic block, since current stage
94 is out-of-ssa. We can not guarantee the correctness when forwording
95 the gs0 and gs1 into g whithout DATAFLOW analysis. */
96 || gimple_bb (gs0) != gimple_bb (gs1)
97 || gimple_bb (gs0) != gimple_bb (g))
98 return false;
100 tcode0 = gimple_assign_rhs_code (gs0);
101 tcode1 = gimple_assign_rhs_code (gs1);
102 if (TREE_CODE_CLASS (tcode0) == tcc_comparison
103 && TREE_CODE_CLASS (tcode1) == tcc_comparison)
104 return true;
105 if (TREE_CODE_CLASS (tcode0) == tcc_comparison
106 && ccmp_candidate_p (gs1))
107 return true;
108 else if (TREE_CODE_CLASS (tcode1) == tcc_comparison
109 && ccmp_candidate_p (gs0))
110 return true;
111 /* We skip ccmp_candidate_p (gs1) && ccmp_candidate_p (gs0) since
112 there is no way to set the CC flag. */
113 return false;
116 /* PREV is a comparison with the CC register which represents the
117 result of the previous CMP or CCMP. The function expands the
118 next compare based on G which is ANDed/ORed with the previous
119 compare depending on CODE.
120 PREP_SEQ returns all insns to prepare opearands for compare.
121 GEN_SEQ returns all compare insns. */
122 static rtx
123 expand_ccmp_next (gimple *g, tree_code code, rtx prev,
124 rtx *prep_seq, rtx *gen_seq)
126 rtx_code rcode;
127 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (gimple_assign_rhs1 (g)));
129 gcc_assert (code == BIT_AND_EXPR || code == BIT_IOR_EXPR);
131 rcode = get_rtx_code (gimple_assign_rhs_code (g), unsignedp);
133 return targetm.gen_ccmp_next (prep_seq, gen_seq, prev, rcode,
134 gimple_assign_rhs1 (g),
135 gimple_assign_rhs2 (g),
136 get_rtx_code (code, 0));
139 /* Expand conditional compare gimple G. A typical CCMP sequence is like:
141 CC0 = CMP (a, b);
142 CC1 = CCMP (NE (CC0, 0), CMP (e, f));
144 CCn = CCMP (NE (CCn-1, 0), CMP (...));
146 hook gen_ccmp_first is used to expand the first compare.
147 hook gen_ccmp_next is used to expand the following CCMP.
148 PREP_SEQ returns all insns to prepare opearand.
149 GEN_SEQ returns all compare insns. */
150 static rtx
151 expand_ccmp_expr_1 (gimple *g, rtx *prep_seq, rtx *gen_seq)
153 rtx prep_seq_1, gen_seq_1;
154 rtx prep_seq_2, gen_seq_2;
155 tree exp = gimple_assign_rhs_to_tree (g);
156 tree_code code = TREE_CODE (exp);
157 gimple *gs0 = get_gimple_for_ssa_name (TREE_OPERAND (exp, 0));
158 gimple *gs1 = get_gimple_for_ssa_name (TREE_OPERAND (exp, 1));
159 rtx tmp;
160 tree_code code0 = gimple_assign_rhs_code (gs0);
161 tree_code code1 = gimple_assign_rhs_code (gs1);
163 gcc_assert (code == BIT_AND_EXPR || code == BIT_IOR_EXPR);
164 gcc_assert (gs0 && gs1 && is_gimple_assign (gs0) && is_gimple_assign (gs1));
166 if (TREE_CODE_CLASS (code0) == tcc_comparison)
168 if (TREE_CODE_CLASS (code1) == tcc_comparison)
170 int unsignedp0, unsignedp1;
171 rtx_code rcode0, rcode1;
172 int speed_p = optimize_insn_for_speed_p ();
173 rtx tmp2 = NULL_RTX, ret = NULL_RTX, ret2 = NULL_RTX;
174 unsigned cost1 = MAX_COST;
175 unsigned cost2 = MAX_COST;
177 unsignedp0 = TYPE_UNSIGNED (TREE_TYPE (gimple_assign_rhs1 (gs0)));
178 unsignedp1 = TYPE_UNSIGNED (TREE_TYPE (gimple_assign_rhs1 (gs1)));
179 rcode0 = get_rtx_code (code0, unsignedp0);
180 rcode1 = get_rtx_code (code1, unsignedp1);
182 tmp = targetm.gen_ccmp_first (&prep_seq_1, &gen_seq_1, rcode0,
183 gimple_assign_rhs1 (gs0),
184 gimple_assign_rhs2 (gs0));
186 if (tmp != NULL)
188 ret = expand_ccmp_next (gs1, code, tmp, &prep_seq_1, &gen_seq_1);
189 cost1 = seq_cost (safe_as_a <rtx_insn *> (prep_seq_1), speed_p);
190 cost1 += seq_cost (safe_as_a <rtx_insn *> (gen_seq_1), speed_p);
193 /* FIXME: Temporary workaround for PR69619.
194 Avoid exponential compile time due to expanding gs0 and gs1 twice.
195 If gs0 and gs1 are complex, the cost will be high, so avoid
196 reevaluation if above an arbitrary threshold. */
197 if (tmp == NULL || cost1 < COSTS_N_INSNS (25))
198 tmp2 = targetm.gen_ccmp_first (&prep_seq_2, &gen_seq_2, rcode1,
199 gimple_assign_rhs1 (gs1),
200 gimple_assign_rhs2 (gs1));
202 if (!tmp && !tmp2)
203 return NULL_RTX;
205 if (tmp2 != NULL)
207 ret2 = expand_ccmp_next (gs0, code, tmp2, &prep_seq_2,
208 &gen_seq_2);
209 cost2 = seq_cost (safe_as_a <rtx_insn *> (prep_seq_2), speed_p);
210 cost2 += seq_cost (safe_as_a <rtx_insn *> (gen_seq_2), speed_p);
213 if (cost2 < cost1)
215 *prep_seq = prep_seq_2;
216 *gen_seq = gen_seq_2;
217 return ret2;
220 *prep_seq = prep_seq_1;
221 *gen_seq = gen_seq_1;
222 return ret;
224 else
226 tmp = expand_ccmp_expr_1 (gs1, prep_seq, gen_seq);
227 if (!tmp)
228 return NULL_RTX;
230 return expand_ccmp_next (gs0, code, tmp, prep_seq, gen_seq);
233 else
235 gcc_assert (gimple_assign_rhs_code (gs0) == BIT_AND_EXPR
236 || gimple_assign_rhs_code (gs0) == BIT_IOR_EXPR);
238 if (TREE_CODE_CLASS (gimple_assign_rhs_code (gs1)) == tcc_comparison)
240 tmp = expand_ccmp_expr_1 (gs0, prep_seq, gen_seq);
241 if (!tmp)
242 return NULL_RTX;
244 return expand_ccmp_next (gs1, code, tmp, prep_seq, gen_seq);
246 else
248 gcc_assert (gimple_assign_rhs_code (gs1) == BIT_AND_EXPR
249 || gimple_assign_rhs_code (gs1) == BIT_IOR_EXPR);
253 return NULL_RTX;
256 /* Main entry to expand conditional compare statement G.
257 Return NULL_RTX if G is not a legal candidate or expand fail.
258 Otherwise return the target. */
260 expand_ccmp_expr (gimple *g)
262 rtx_insn *last;
263 rtx tmp;
264 rtx prep_seq, gen_seq;
266 prep_seq = gen_seq = NULL_RTX;
268 if (!ccmp_candidate_p (g))
269 return NULL_RTX;
271 last = get_last_insn ();
272 tmp = expand_ccmp_expr_1 (g, &prep_seq, &gen_seq);
274 if (tmp)
276 insn_code icode;
277 machine_mode cc_mode = CCmode;
278 tree lhs = gimple_assign_lhs (g);
279 rtx_code cmp_code = GET_CODE (tmp);
281 #ifdef SELECT_CC_MODE
282 cc_mode = SELECT_CC_MODE (cmp_code, XEXP (tmp, 0), const0_rtx);
283 #endif
284 icode = optab_handler (cstore_optab, cc_mode);
285 if (icode != CODE_FOR_nothing)
287 machine_mode mode = TYPE_MODE (TREE_TYPE (lhs));
288 rtx target = gen_reg_rtx (mode);
290 emit_insn (prep_seq);
291 emit_insn (gen_seq);
293 tmp = emit_cstore (target, icode, cmp_code, cc_mode, cc_mode,
294 0, XEXP (tmp, 0), const0_rtx, 1, mode);
295 if (tmp)
296 return tmp;
299 /* Clean up. */
300 delete_insns_since (last);
301 return NULL_RTX;