]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-ssa-ccp.c
15-04-14 Christian Bruel <christian.bruel@st.com>
[thirdparty/gcc.git] / gcc / tree-ssa-ccp.c
CommitLineData
4ee9c684 1/* Conditional constant propagation pass for the GNU compiler.
d353bf18 2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
4ee9c684 3 Adapted from original RTL SSA-CCP by Daniel Berlin <dberlin@dberlin.org>
4 Adapted to GIMPLE trees by Diego Novillo <dnovillo@redhat.com>
5
6This file is part of GCC.
48e1416a 7
4ee9c684 8GCC is free software; you can redistribute it and/or modify it
9under the terms of the GNU General Public License as published by the
8c4c00c1 10Free Software Foundation; either version 3, or (at your option) any
4ee9c684 11later version.
48e1416a 12
4ee9c684 13GCC is distributed in the hope that it will be useful, but WITHOUT
14ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
48e1416a 17
4ee9c684 18You should have received a copy of the GNU General Public License
8c4c00c1 19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
4ee9c684 21
88dbf20f 22/* Conditional constant propagation (CCP) is based on the SSA
23 propagation engine (tree-ssa-propagate.c). Constant assignments of
24 the form VAR = CST are propagated from the assignments into uses of
25 VAR, which in turn may generate new constants. The simulation uses
26 a four level lattice to keep track of constant values associated
27 with SSA names. Given an SSA name V_i, it may take one of the
28 following values:
29
bfa30570 30 UNINITIALIZED -> the initial state of the value. This value
31 is replaced with a correct initial value
32 the first time the value is used, so the
33 rest of the pass does not need to care about
34 it. Using this value simplifies initialization
35 of the pass, and prevents us from needlessly
36 scanning statements that are never reached.
88dbf20f 37
38 UNDEFINED -> V_i is a local variable whose definition
39 has not been processed yet. Therefore we
40 don't yet know if its value is a constant
41 or not.
42
43 CONSTANT -> V_i has been found to hold a constant
44 value C.
45
46 VARYING -> V_i cannot take a constant value, or if it
47 does, it is not possible to determine it
48 at compile time.
49
50 The core of SSA-CCP is in ccp_visit_stmt and ccp_visit_phi_node:
51
52 1- In ccp_visit_stmt, we are interested in assignments whose RHS
53 evaluates into a constant and conditional jumps whose predicate
54 evaluates into a boolean true or false. When an assignment of
55 the form V_i = CONST is found, V_i's lattice value is set to
56 CONSTANT and CONST is associated with it. This causes the
57 propagation engine to add all the SSA edges coming out the
58 assignment into the worklists, so that statements that use V_i
59 can be visited.
60
61 If the statement is a conditional with a constant predicate, we
62 mark the outgoing edges as executable or not executable
63 depending on the predicate's value. This is then used when
64 visiting PHI nodes to know when a PHI argument can be ignored.
48e1416a 65
88dbf20f 66
67 2- In ccp_visit_phi_node, if all the PHI arguments evaluate to the
68 same constant C, then the LHS of the PHI is set to C. This
69 evaluation is known as the "meet operation". Since one of the
70 goals of this evaluation is to optimistically return constant
71 values as often as possible, it uses two main short cuts:
72
73 - If an argument is flowing in through a non-executable edge, it
74 is ignored. This is useful in cases like this:
75
76 if (PRED)
77 a_9 = 3;
78 else
79 a_10 = 100;
80 a_11 = PHI (a_9, a_10)
81
82 If PRED is known to always evaluate to false, then we can
83 assume that a_11 will always take its value from a_10, meaning
84 that instead of consider it VARYING (a_9 and a_10 have
85 different values), we can consider it CONSTANT 100.
86
87 - If an argument has an UNDEFINED value, then it does not affect
88 the outcome of the meet operation. If a variable V_i has an
89 UNDEFINED value, it means that either its defining statement
90 hasn't been visited yet or V_i has no defining statement, in
91 which case the original symbol 'V' is being used
92 uninitialized. Since 'V' is a local variable, the compiler
93 may assume any initial value for it.
94
95
96 After propagation, every variable V_i that ends up with a lattice
97 value of CONSTANT will have the associated constant value in the
98 array CONST_VAL[i].VALUE. That is fed into substitute_and_fold for
99 final substitution and folding.
100
e913b5cd 101 This algorithm uses wide-ints at the max precision of the target.
102 This means that, with one uninteresting exception, variables with
103 UNSIGNED types never go to VARYING because the bits above the
104 precision of the type of the variable are always zero. The
105 uninteresting case is a variable of UNSIGNED type that has the
106 maximum precision of the target. Such variables can go to VARYING,
107 but this causes no loss of infomation since these variables will
108 never be extended.
109
4ee9c684 110 References:
111
112 Constant propagation with conditional branches,
113 Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
114
115 Building an Optimizing Compiler,
116 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
117
118 Advanced Compiler Design and Implementation,
119 Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6 */
120
121#include "config.h"
122#include "system.h"
123#include "coretypes.h"
124#include "tm.h"
b20a8bb4 125#include "hash-set.h"
126#include "machmode.h"
127#include "vec.h"
128#include "double-int.h"
129#include "input.h"
130#include "alias.h"
131#include "symtab.h"
132#include "wide-int.h"
133#include "inchash.h"
134#include "real.h"
4ee9c684 135#include "tree.h"
b20a8bb4 136#include "fold-const.h"
9ed99284 137#include "stor-layout.h"
41511585 138#include "flags.h"
4ee9c684 139#include "tm_p.h"
94ea8568 140#include "predict.h"
a3020f2f 141#include "hard-reg-set.h"
142#include "input.h"
41511585 143#include "function.h"
94ea8568 144#include "dominance.h"
145#include "cfg.h"
146#include "basic-block.h"
ce084dfc 147#include "gimple-pretty-print.h"
bc61cadb 148#include "hash-table.h"
149#include "tree-ssa-alias.h"
150#include "internal-fn.h"
151#include "gimple-fold.h"
152#include "tree-eh.h"
153#include "gimple-expr.h"
154#include "is-a.h"
073c1fd5 155#include "gimple.h"
a8783bee 156#include "gimplify.h"
dcf1a1ec 157#include "gimple-iterator.h"
073c1fd5 158#include "gimple-ssa.h"
159#include "tree-cfg.h"
160#include "tree-phinodes.h"
161#include "ssa-iterators.h"
9ed99284 162#include "stringpool.h"
073c1fd5 163#include "tree-ssanames.h"
4ee9c684 164#include "tree-pass.h"
41511585 165#include "tree-ssa-propagate.h"
5a4b7e1e 166#include "value-prof.h"
41511585 167#include "langhooks.h"
8782adcf 168#include "target.h"
0b205f4c 169#include "diagnostic-core.h"
43fb76c1 170#include "dbgcnt.h"
9a65cc0a 171#include "params.h"
e913b5cd 172#include "wide-int-print.h"
f7715905 173#include "builtins.h"
058a1b7a 174#include "tree-chkp.h"
4ee9c684 175
2dc10fae 176
4ee9c684 177/* Possible lattice values. */
178typedef enum
179{
bfa30570 180 UNINITIALIZED,
4ee9c684 181 UNDEFINED,
182 CONSTANT,
183 VARYING
88dbf20f 184} ccp_lattice_t;
4ee9c684 185
9908fe4d 186struct ccp_prop_value_t {
14f101cf 187 /* Lattice value. */
188 ccp_lattice_t lattice_val;
189
190 /* Propagated value. */
191 tree value;
b7e55469 192
e913b5cd 193 /* Mask that applies to the propagated value during CCP. For X
194 with a CONSTANT lattice value X & ~mask == value & ~mask. The
195 zero bits in the mask cover constant values. The ones mean no
196 information. */
5de9d3ed 197 widest_int mask;
14f101cf 198};
199
88dbf20f 200/* Array of propagated constant values. After propagation,
201 CONST_VAL[I].VALUE holds the constant value for SSA_NAME(I). If
202 the constant is held in an SSA name representing a memory store
4fb5e5ca 203 (i.e., a VDEF), CONST_VAL[I].MEM_REF will contain the actual
204 memory reference used to store (i.e., the LHS of the assignment
205 doing the store). */
9908fe4d 206static ccp_prop_value_t *const_val;
285df01b 207static unsigned n_const_val;
4ee9c684 208
9908fe4d 209static void canonicalize_value (ccp_prop_value_t *);
6688f8ec 210static bool ccp_fold_stmt (gimple_stmt_iterator *);
4af351a8 211
88dbf20f 212/* Dump constant propagation value VAL to file OUTF prefixed by PREFIX. */
01406fc0 213
214static void
9908fe4d 215dump_lattice_value (FILE *outf, const char *prefix, ccp_prop_value_t val)
01406fc0 216{
41511585 217 switch (val.lattice_val)
01406fc0 218 {
88dbf20f 219 case UNINITIALIZED:
220 fprintf (outf, "%sUNINITIALIZED", prefix);
221 break;
41511585 222 case UNDEFINED:
223 fprintf (outf, "%sUNDEFINED", prefix);
224 break;
225 case VARYING:
226 fprintf (outf, "%sVARYING", prefix);
227 break;
41511585 228 case CONSTANT:
b7e55469 229 if (TREE_CODE (val.value) != INTEGER_CST
796b6678 230 || val.mask == 0)
16ab4e97 231 {
232 fprintf (outf, "%sCONSTANT ", prefix);
233 print_generic_expr (outf, val.value, dump_flags);
234 }
b7e55469 235 else
236 {
28e557ef 237 widest_int cval = wi::bit_and_not (wi::to_widest (val.value),
238 val.mask);
e913b5cd 239 fprintf (outf, "%sCONSTANT ", prefix);
240 print_hex (cval, outf);
241 fprintf (outf, " (");
242 print_hex (val.mask, outf);
243 fprintf (outf, ")");
b7e55469 244 }
41511585 245 break;
246 default:
8c0963c4 247 gcc_unreachable ();
41511585 248 }
01406fc0 249}
4ee9c684 250
4ee9c684 251
88dbf20f 252/* Print lattice value VAL to stderr. */
253
9908fe4d 254void debug_lattice_value (ccp_prop_value_t val);
88dbf20f 255
4b987fac 256DEBUG_FUNCTION void
9908fe4d 257debug_lattice_value (ccp_prop_value_t val)
88dbf20f 258{
259 dump_lattice_value (stderr, "", val);
260 fprintf (stderr, "\n");
261}
4ee9c684 262
9c1be15e 263/* Extend NONZERO_BITS to a full mask, with the upper bits being set. */
264
265static widest_int
266extend_mask (const wide_int &nonzero_bits)
267{
268 return (wi::mask <widest_int> (wi::get_precision (nonzero_bits), true)
269 | widest_int::from (nonzero_bits, UNSIGNED));
270}
4ee9c684 271
88dbf20f 272/* Compute a default value for variable VAR and store it in the
273 CONST_VAL array. The following rules are used to get default
274 values:
01406fc0 275
88dbf20f 276 1- Global and static variables that are declared constant are
277 considered CONSTANT.
278
279 2- Any other value is considered UNDEFINED. This is useful when
41511585 280 considering PHI nodes. PHI arguments that are undefined do not
281 change the constant value of the PHI node, which allows for more
88dbf20f 282 constants to be propagated.
4ee9c684 283
8883e700 284 3- Variables defined by statements other than assignments and PHI
88dbf20f 285 nodes are considered VARYING.
4ee9c684 286
8883e700 287 4- Initial values of variables that are not GIMPLE registers are
bfa30570 288 considered VARYING. */
4ee9c684 289
9908fe4d 290static ccp_prop_value_t
88dbf20f 291get_default_value (tree var)
292{
9908fe4d 293 ccp_prop_value_t val = { UNINITIALIZED, NULL_TREE, 0 };
8edeb88b 294 gimple stmt;
295
296 stmt = SSA_NAME_DEF_STMT (var);
297
298 if (gimple_nop_p (stmt))
4ee9c684 299 {
8edeb88b 300 /* Variables defined by an empty statement are those used
301 before being initialized. If VAR is a local variable, we
302 can assume initially that it is UNDEFINED, otherwise we must
303 consider it VARYING. */
7c782c9b 304 if (!virtual_operand_p (var)
305 && TREE_CODE (SSA_NAME_VAR (var)) == VAR_DECL)
8edeb88b 306 val.lattice_val = UNDEFINED;
307 else
b7e55469 308 {
309 val.lattice_val = VARYING;
e913b5cd 310 val.mask = -1;
fc08b993 311 if (flag_tree_bit_ccp)
312 {
9c1be15e 313 wide_int nonzero_bits = get_nonzero_bits (var);
314 if (nonzero_bits != -1)
fc08b993 315 {
316 val.lattice_val = CONSTANT;
317 val.value = build_zero_cst (TREE_TYPE (var));
9c1be15e 318 val.mask = extend_mask (nonzero_bits);
fc08b993 319 }
320 }
b7e55469 321 }
4ee9c684 322 }
b45b214a 323 else if (is_gimple_assign (stmt))
41511585 324 {
8edeb88b 325 tree cst;
326 if (gimple_assign_single_p (stmt)
327 && DECL_P (gimple_assign_rhs1 (stmt))
328 && (cst = get_symbol_constant_value (gimple_assign_rhs1 (stmt))))
88dbf20f 329 {
8edeb88b 330 val.lattice_val = CONSTANT;
331 val.value = cst;
88dbf20f 332 }
333 else
b45b214a 334 {
335 /* Any other variable defined by an assignment is considered
336 UNDEFINED. */
337 val.lattice_val = UNDEFINED;
338 }
339 }
340 else if ((is_gimple_call (stmt)
341 && gimple_call_lhs (stmt) != NULL_TREE)
342 || gimple_code (stmt) == GIMPLE_PHI)
343 {
344 /* A variable defined by a call or a PHI node is considered
345 UNDEFINED. */
346 val.lattice_val = UNDEFINED;
8edeb88b 347 }
348 else
349 {
350 /* Otherwise, VAR will never take on a constant value. */
351 val.lattice_val = VARYING;
e913b5cd 352 val.mask = -1;
41511585 353 }
4ee9c684 354
41511585 355 return val;
356}
4ee9c684 357
4ee9c684 358
bfa30570 359/* Get the constant value associated with variable VAR. */
4ee9c684 360
9908fe4d 361static inline ccp_prop_value_t *
bfa30570 362get_value (tree var)
88dbf20f 363{
9908fe4d 364 ccp_prop_value_t *val;
bfa30570 365
285df01b 366 if (const_val == NULL
367 || SSA_NAME_VERSION (var) >= n_const_val)
e004838d 368 return NULL;
369
370 val = &const_val[SSA_NAME_VERSION (var)];
bfa30570 371 if (val->lattice_val == UNINITIALIZED)
4ee9c684 372 *val = get_default_value (var);
373
f5faab84 374 canonicalize_value (val);
4af351a8 375
4ee9c684 376 return val;
377}
378
15d138c9 379/* Return the constant tree value associated with VAR. */
380
381static inline tree
382get_constant_value (tree var)
383{
9908fe4d 384 ccp_prop_value_t *val;
98d92e3c 385 if (TREE_CODE (var) != SSA_NAME)
386 {
387 if (is_gimple_min_invariant (var))
388 return var;
389 return NULL_TREE;
390 }
391 val = get_value (var);
b7e55469 392 if (val
393 && val->lattice_val == CONSTANT
394 && (TREE_CODE (val->value) != INTEGER_CST
796b6678 395 || val->mask == 0))
15d138c9 396 return val->value;
397 return NULL_TREE;
398}
399
bfa30570 400/* Sets the value associated with VAR to VARYING. */
401
402static inline void
403set_value_varying (tree var)
404{
9908fe4d 405 ccp_prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
bfa30570 406
407 val->lattice_val = VARYING;
408 val->value = NULL_TREE;
e913b5cd 409 val->mask = -1;
bfa30570 410}
4ee9c684 411
0001b944 412/* For integer constants, make sure to drop TREE_OVERFLOW. */
b31eb493 413
414static void
9908fe4d 415canonicalize_value (ccp_prop_value_t *val)
b31eb493 416{
f5faab84 417 if (val->lattice_val != CONSTANT)
418 return;
419
420 if (TREE_OVERFLOW_P (val->value))
421 val->value = drop_tree_overflow (val->value);
b31eb493 422}
423
b7e55469 424/* Return whether the lattice transition is valid. */
425
426static bool
9908fe4d 427valid_lattice_transition (ccp_prop_value_t old_val, ccp_prop_value_t new_val)
b7e55469 428{
429 /* Lattice transitions must always be monotonically increasing in
430 value. */
431 if (old_val.lattice_val < new_val.lattice_val)
432 return true;
433
434 if (old_val.lattice_val != new_val.lattice_val)
435 return false;
436
437 if (!old_val.value && !new_val.value)
438 return true;
439
440 /* Now both lattice values are CONSTANT. */
441
43c92e0a 442 /* Allow transitioning from PHI <&x, not executable> == &x
443 to PHI <&x, &y> == common alignment. */
b7e55469 444 if (TREE_CODE (old_val.value) != INTEGER_CST
445 && TREE_CODE (new_val.value) == INTEGER_CST)
446 return true;
447
448 /* Bit-lattices have to agree in the still valid bits. */
449 if (TREE_CODE (old_val.value) == INTEGER_CST
450 && TREE_CODE (new_val.value) == INTEGER_CST)
5de9d3ed 451 return (wi::bit_and_not (wi::to_widest (old_val.value), new_val.mask)
452 == wi::bit_and_not (wi::to_widest (new_val.value), new_val.mask));
b7e55469 453
454 /* Otherwise constant values have to agree. */
0001b944 455 if (operand_equal_p (old_val.value, new_val.value, 0))
456 return true;
457
458 /* At least the kinds and types should agree now. */
459 if (TREE_CODE (old_val.value) != TREE_CODE (new_val.value)
460 || !types_compatible_p (TREE_TYPE (old_val.value),
461 TREE_TYPE (new_val.value)))
462 return false;
463
464 /* For floats and !HONOR_NANS allow transitions from (partial) NaN
465 to non-NaN. */
466 tree type = TREE_TYPE (new_val.value);
467 if (SCALAR_FLOAT_TYPE_P (type)
93633022 468 && !HONOR_NANS (type))
0001b944 469 {
470 if (REAL_VALUE_ISNAN (TREE_REAL_CST (old_val.value)))
471 return true;
472 }
473 else if (VECTOR_FLOAT_TYPE_P (type)
93633022 474 && !HONOR_NANS (type))
0001b944 475 {
476 for (unsigned i = 0; i < VECTOR_CST_NELTS (old_val.value); ++i)
477 if (!REAL_VALUE_ISNAN
478 (TREE_REAL_CST (VECTOR_CST_ELT (old_val.value, i)))
479 && !operand_equal_p (VECTOR_CST_ELT (old_val.value, i),
480 VECTOR_CST_ELT (new_val.value, i), 0))
481 return false;
482 return true;
483 }
484 else if (COMPLEX_FLOAT_TYPE_P (type)
93633022 485 && !HONOR_NANS (type))
0001b944 486 {
487 if (!REAL_VALUE_ISNAN (TREE_REAL_CST (TREE_REALPART (old_val.value)))
488 && !operand_equal_p (TREE_REALPART (old_val.value),
489 TREE_REALPART (new_val.value), 0))
490 return false;
491 if (!REAL_VALUE_ISNAN (TREE_REAL_CST (TREE_IMAGPART (old_val.value)))
492 && !operand_equal_p (TREE_IMAGPART (old_val.value),
493 TREE_IMAGPART (new_val.value), 0))
494 return false;
495 return true;
496 }
497 return false;
b7e55469 498}
499
88dbf20f 500/* Set the value for variable VAR to NEW_VAL. Return true if the new
501 value is different from VAR's previous value. */
4ee9c684 502
41511585 503static bool
9908fe4d 504set_lattice_value (tree var, ccp_prop_value_t new_val)
4ee9c684 505{
6d0bf6d6 506 /* We can deal with old UNINITIALIZED values just fine here. */
9908fe4d 507 ccp_prop_value_t *old_val = &const_val[SSA_NAME_VERSION (var)];
88dbf20f 508
f5faab84 509 canonicalize_value (&new_val);
b31eb493 510
b7e55469 511 /* We have to be careful to not go up the bitwise lattice
512 represented by the mask.
513 ??? This doesn't seem to be the best place to enforce this. */
514 if (new_val.lattice_val == CONSTANT
515 && old_val->lattice_val == CONSTANT
516 && TREE_CODE (new_val.value) == INTEGER_CST
517 && TREE_CODE (old_val->value) == INTEGER_CST)
518 {
5de9d3ed 519 widest_int diff = (wi::to_widest (new_val.value)
520 ^ wi::to_widest (old_val->value));
cf8f0e63 521 new_val.mask = new_val.mask | old_val->mask | diff;
b7e55469 522 }
bfa30570 523
0001b944 524 gcc_checking_assert (valid_lattice_transition (*old_val, new_val));
88dbf20f 525
b7e55469 526 /* If *OLD_VAL and NEW_VAL are the same, return false to inform the
527 caller that this was a non-transition. */
528 if (old_val->lattice_val != new_val.lattice_val
529 || (new_val.lattice_val == CONSTANT
530 && TREE_CODE (new_val.value) == INTEGER_CST
531 && (TREE_CODE (old_val->value) != INTEGER_CST
3a54beaf 532 || new_val.mask != old_val->mask)))
4ee9c684 533 {
b7e55469 534 /* ??? We would like to delay creation of INTEGER_CSTs from
535 partially constants here. */
536
41511585 537 if (dump_file && (dump_flags & TDF_DETAILS))
538 {
88dbf20f 539 dump_lattice_value (dump_file, "Lattice value changed to ", new_val);
bfa30570 540 fprintf (dump_file, ". Adding SSA edges to worklist.\n");
41511585 541 }
542
88dbf20f 543 *old_val = new_val;
544
6d0bf6d6 545 gcc_assert (new_val.lattice_val != UNINITIALIZED);
bfa30570 546 return true;
4ee9c684 547 }
41511585 548
549 return false;
4ee9c684 550}
551
9908fe4d 552static ccp_prop_value_t get_value_for_expr (tree, bool);
553static ccp_prop_value_t bit_value_binop (enum tree_code, tree, tree, tree);
5de9d3ed 554static void bit_value_binop_1 (enum tree_code, tree, widest_int *, widest_int *,
10c3fe8d 555 tree, const widest_int &, const widest_int &,
556 tree, const widest_int &, const widest_int &);
b7e55469 557
5de9d3ed 558/* Return a widest_int that can be used for bitwise simplifications
b7e55469 559 from VAL. */
560
5de9d3ed 561static widest_int
9908fe4d 562value_to_wide_int (ccp_prop_value_t val)
b7e55469 563{
564 if (val.value
565 && TREE_CODE (val.value) == INTEGER_CST)
5de9d3ed 566 return wi::to_widest (val.value);
e913b5cd 567
568 return 0;
b7e55469 569}
570
571/* Return the value for the address expression EXPR based on alignment
572 information. */
6d0bf6d6 573
9908fe4d 574static ccp_prop_value_t
b7e55469 575get_value_from_alignment (tree expr)
576{
f8abb542 577 tree type = TREE_TYPE (expr);
9908fe4d 578 ccp_prop_value_t val;
f8abb542 579 unsigned HOST_WIDE_INT bitpos;
580 unsigned int align;
b7e55469 581
582 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
583
59da1bcd 584 get_pointer_alignment_1 (expr, &align, &bitpos);
cf8f0e63 585 val.mask = (POINTER_TYPE_P (type) || TYPE_UNSIGNED (type)
5de9d3ed 586 ? wi::mask <widest_int> (TYPE_PRECISION (type), false)
e913b5cd 587 : -1).and_not (align / BITS_PER_UNIT - 1);
796b6678 588 val.lattice_val = val.mask == -1 ? VARYING : CONSTANT;
f8abb542 589 if (val.lattice_val == CONSTANT)
796b6678 590 val.value = build_int_cstu (type, bitpos / BITS_PER_UNIT);
b7e55469 591 else
f8abb542 592 val.value = NULL_TREE;
b7e55469 593
594 return val;
595}
596
597/* Return the value for the tree operand EXPR. If FOR_BITS_P is true
598 return constant bits extracted from alignment information for
599 invariant addresses. */
600
9908fe4d 601static ccp_prop_value_t
b7e55469 602get_value_for_expr (tree expr, bool for_bits_p)
6d0bf6d6 603{
9908fe4d 604 ccp_prop_value_t val;
6d0bf6d6 605
606 if (TREE_CODE (expr) == SSA_NAME)
b7e55469 607 {
608 val = *get_value (expr);
609 if (for_bits_p
610 && val.lattice_val == CONSTANT
611 && TREE_CODE (val.value) == ADDR_EXPR)
612 val = get_value_from_alignment (val.value);
613 }
614 else if (is_gimple_min_invariant (expr)
615 && (!for_bits_p || TREE_CODE (expr) != ADDR_EXPR))
6d0bf6d6 616 {
617 val.lattice_val = CONSTANT;
618 val.value = expr;
e913b5cd 619 val.mask = 0;
f5faab84 620 canonicalize_value (&val);
6d0bf6d6 621 }
b7e55469 622 else if (TREE_CODE (expr) == ADDR_EXPR)
623 val = get_value_from_alignment (expr);
6d0bf6d6 624 else
625 {
626 val.lattice_val = VARYING;
09b2913a 627 val.mask = -1;
6d0bf6d6 628 val.value = NULL_TREE;
629 }
6d0bf6d6 630 return val;
631}
632
88dbf20f 633/* Return the likely CCP lattice value for STMT.
4ee9c684 634
41511585 635 If STMT has no operands, then return CONSTANT.
4ee9c684 636
d61b9af3 637 Else if undefinedness of operands of STMT cause its value to be
638 undefined, then return UNDEFINED.
4ee9c684 639
41511585 640 Else if any operands of STMT are constants, then return CONSTANT.
4ee9c684 641
41511585 642 Else return VARYING. */
4ee9c684 643
88dbf20f 644static ccp_lattice_t
75a70cf9 645likely_value (gimple stmt)
41511585 646{
d61b9af3 647 bool has_constant_operand, has_undefined_operand, all_undefined_operands;
41511585 648 tree use;
649 ssa_op_iter iter;
8edeb88b 650 unsigned i;
4ee9c684 651
590c3166 652 enum gimple_code code = gimple_code (stmt);
75a70cf9 653
654 /* This function appears to be called only for assignments, calls,
655 conditionals, and switches, due to the logic in visit_stmt. */
656 gcc_assert (code == GIMPLE_ASSIGN
657 || code == GIMPLE_CALL
658 || code == GIMPLE_COND
659 || code == GIMPLE_SWITCH);
88dbf20f 660
661 /* If the statement has volatile operands, it won't fold to a
662 constant value. */
75a70cf9 663 if (gimple_has_volatile_ops (stmt))
88dbf20f 664 return VARYING;
665
75a70cf9 666 /* Arrive here for more complex cases. */
bfa30570 667 has_constant_operand = false;
d61b9af3 668 has_undefined_operand = false;
669 all_undefined_operands = true;
8edeb88b 670 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
41511585 671 {
9908fe4d 672 ccp_prop_value_t *val = get_value (use);
41511585 673
bfa30570 674 if (val->lattice_val == UNDEFINED)
d61b9af3 675 has_undefined_operand = true;
676 else
677 all_undefined_operands = false;
88dbf20f 678
41511585 679 if (val->lattice_val == CONSTANT)
bfa30570 680 has_constant_operand = true;
4ee9c684 681 }
41511585 682
dd277d48 683 /* There may be constants in regular rhs operands. For calls we
684 have to ignore lhs, fndecl and static chain, otherwise only
685 the lhs. */
686 for (i = (is_gimple_call (stmt) ? 2 : 0) + gimple_has_lhs (stmt);
8edeb88b 687 i < gimple_num_ops (stmt); ++i)
688 {
689 tree op = gimple_op (stmt, i);
690 if (!op || TREE_CODE (op) == SSA_NAME)
691 continue;
692 if (is_gimple_min_invariant (op))
693 has_constant_operand = true;
694 }
695
87c0a9fc 696 if (has_constant_operand)
697 all_undefined_operands = false;
698
3d483a94 699 if (has_undefined_operand
700 && code == GIMPLE_CALL
701 && gimple_call_internal_p (stmt))
702 switch (gimple_call_internal_fn (stmt))
703 {
704 /* These 3 builtins use the first argument just as a magic
705 way how to find out a decl uid. */
706 case IFN_GOMP_SIMD_LANE:
707 case IFN_GOMP_SIMD_VF:
708 case IFN_GOMP_SIMD_LAST_LANE:
709 has_undefined_operand = false;
710 break;
711 default:
712 break;
713 }
714
d61b9af3 715 /* If the operation combines operands like COMPLEX_EXPR make sure to
716 not mark the result UNDEFINED if only one part of the result is
717 undefined. */
75a70cf9 718 if (has_undefined_operand && all_undefined_operands)
d61b9af3 719 return UNDEFINED;
75a70cf9 720 else if (code == GIMPLE_ASSIGN && has_undefined_operand)
d61b9af3 721 {
75a70cf9 722 switch (gimple_assign_rhs_code (stmt))
d61b9af3 723 {
724 /* Unary operators are handled with all_undefined_operands. */
725 case PLUS_EXPR:
726 case MINUS_EXPR:
d61b9af3 727 case POINTER_PLUS_EXPR:
d61b9af3 728 /* Not MIN_EXPR, MAX_EXPR. One VARYING operand may be selected.
729 Not bitwise operators, one VARYING operand may specify the
730 result completely. Not logical operators for the same reason.
05a936a0 731 Not COMPLEX_EXPR as one VARYING operand makes the result partly
732 not UNDEFINED. Not *DIV_EXPR, comparisons and shifts because
733 the undefined operand may be promoted. */
d61b9af3 734 return UNDEFINED;
735
43c92e0a 736 case ADDR_EXPR:
737 /* If any part of an address is UNDEFINED, like the index
738 of an ARRAY_EXPR, then treat the result as UNDEFINED. */
739 return UNDEFINED;
740
d61b9af3 741 default:
742 ;
743 }
744 }
745 /* If there was an UNDEFINED operand but the result may be not UNDEFINED
c91fedc5 746 fall back to CONSTANT. During iteration UNDEFINED may still drop
747 to CONSTANT. */
d61b9af3 748 if (has_undefined_operand)
c91fedc5 749 return CONSTANT;
d61b9af3 750
8edeb88b 751 /* We do not consider virtual operands here -- load from read-only
752 memory may have only VARYING virtual operands, but still be
753 constant. */
bfa30570 754 if (has_constant_operand
8edeb88b 755 || gimple_references_memory_p (stmt))
88dbf20f 756 return CONSTANT;
757
bfa30570 758 return VARYING;
4ee9c684 759}
760
bfa30570 761/* Returns true if STMT cannot be constant. */
762
763static bool
75a70cf9 764surely_varying_stmt_p (gimple stmt)
bfa30570 765{
766 /* If the statement has operands that we cannot handle, it cannot be
767 constant. */
75a70cf9 768 if (gimple_has_volatile_ops (stmt))
bfa30570 769 return true;
770
f257af64 771 /* If it is a call and does not return a value or is not a
237e78b1 772 builtin and not an indirect call or a call to function with
773 assume_aligned/alloc_align attribute, it is varying. */
75a70cf9 774 if (is_gimple_call (stmt))
f257af64 775 {
237e78b1 776 tree fndecl, fntype = gimple_call_fntype (stmt);
f257af64 777 if (!gimple_call_lhs (stmt)
778 || ((fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
237e78b1 779 && !DECL_BUILT_IN (fndecl)
780 && !lookup_attribute ("assume_aligned",
781 TYPE_ATTRIBUTES (fntype))
782 && !lookup_attribute ("alloc_align",
783 TYPE_ATTRIBUTES (fntype))))
f257af64 784 return true;
785 }
bfa30570 786
8edeb88b 787 /* Any other store operation is not interesting. */
dd277d48 788 else if (gimple_vdef (stmt))
8edeb88b 789 return true;
790
bfa30570 791 /* Anything other than assignments and conditional jumps are not
792 interesting for CCP. */
75a70cf9 793 if (gimple_code (stmt) != GIMPLE_ASSIGN
f257af64 794 && gimple_code (stmt) != GIMPLE_COND
795 && gimple_code (stmt) != GIMPLE_SWITCH
796 && gimple_code (stmt) != GIMPLE_CALL)
bfa30570 797 return true;
798
799 return false;
800}
4ee9c684 801
41511585 802/* Initialize local data structures for CCP. */
4ee9c684 803
804static void
41511585 805ccp_initialize (void)
4ee9c684 806{
41511585 807 basic_block bb;
4ee9c684 808
285df01b 809 n_const_val = num_ssa_names;
9908fe4d 810 const_val = XCNEWVEC (ccp_prop_value_t, n_const_val);
4ee9c684 811
41511585 812 /* Initialize simulation flags for PHI nodes and statements. */
fc00614f 813 FOR_EACH_BB_FN (bb, cfun)
4ee9c684 814 {
75a70cf9 815 gimple_stmt_iterator i;
4ee9c684 816
75a70cf9 817 for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
41511585 818 {
75a70cf9 819 gimple stmt = gsi_stmt (i);
2193544e 820 bool is_varying;
821
822 /* If the statement is a control insn, then we do not
823 want to avoid simulating the statement once. Failure
824 to do so means that those edges will never get added. */
825 if (stmt_ends_bb_p (stmt))
826 is_varying = false;
827 else
828 is_varying = surely_varying_stmt_p (stmt);
4ee9c684 829
bfa30570 830 if (is_varying)
41511585 831 {
88dbf20f 832 tree def;
833 ssa_op_iter iter;
834
835 /* If the statement will not produce a constant, mark
836 all its outputs VARYING. */
837 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
8edeb88b 838 set_value_varying (def);
41511585 839 }
75a70cf9 840 prop_set_simulate_again (stmt, !is_varying);
41511585 841 }
4ee9c684 842 }
843
75a70cf9 844 /* Now process PHI nodes. We never clear the simulate_again flag on
845 phi nodes, since we do not know which edges are executable yet,
846 except for phi nodes for virtual operands when we do not do store ccp. */
fc00614f 847 FOR_EACH_BB_FN (bb, cfun)
4ee9c684 848 {
1a91d914 849 gphi_iterator i;
41511585 850
75a70cf9 851 for (i = gsi_start_phis (bb); !gsi_end_p (i); gsi_next (&i))
852 {
1a91d914 853 gphi *phi = i.phi ();
75a70cf9 854
7c782c9b 855 if (virtual_operand_p (gimple_phi_result (phi)))
75a70cf9 856 prop_set_simulate_again (phi, false);
bfa30570 857 else
75a70cf9 858 prop_set_simulate_again (phi, true);
41511585 859 }
4ee9c684 860 }
41511585 861}
4ee9c684 862
43fb76c1 863/* Debug count support. Reset the values of ssa names
864 VARYING when the total number ssa names analyzed is
865 beyond the debug count specified. */
866
867static void
868do_dbg_cnt (void)
869{
870 unsigned i;
871 for (i = 0; i < num_ssa_names; i++)
872 {
873 if (!dbg_cnt (ccp))
874 {
875 const_val[i].lattice_val = VARYING;
e913b5cd 876 const_val[i].mask = -1;
43fb76c1 877 const_val[i].value = NULL_TREE;
878 }
879 }
880}
881
4ee9c684 882
88dbf20f 883/* Do final substitution of propagated values, cleanup the flowgraph and
48e1416a 884 free allocated storage.
4ee9c684 885
33a34f1e 886 Return TRUE when something was optimized. */
887
888static bool
88dbf20f 889ccp_finalize (void)
4ee9c684 890{
43fb76c1 891 bool something_changed;
153c3b50 892 unsigned i;
43fb76c1 893
894 do_dbg_cnt ();
153c3b50 895
896 /* Derive alignment and misalignment information from partially
fc08b993 897 constant pointers in the lattice or nonzero bits from partially
898 constant integers. */
153c3b50 899 for (i = 1; i < num_ssa_names; ++i)
900 {
901 tree name = ssa_name (i);
9908fe4d 902 ccp_prop_value_t *val;
153c3b50 903 unsigned int tem, align;
904
905 if (!name
fc08b993 906 || (!POINTER_TYPE_P (TREE_TYPE (name))
907 && (!INTEGRAL_TYPE_P (TREE_TYPE (name))
908 /* Don't record nonzero bits before IPA to avoid
909 using too much memory. */
910 || first_pass_instance)))
153c3b50 911 continue;
912
913 val = get_value (name);
914 if (val->lattice_val != CONSTANT
915 || TREE_CODE (val->value) != INTEGER_CST)
916 continue;
917
fc08b993 918 if (POINTER_TYPE_P (TREE_TYPE (name)))
919 {
920 /* Trailing mask bits specify the alignment, trailing value
921 bits the misalignment. */
aeb682a2 922 tem = val->mask.to_uhwi ();
fc08b993 923 align = (tem & -tem);
924 if (align > 1)
925 set_ptr_info_alignment (get_ptr_info (name), align,
f9ae6f95 926 (TREE_INT_CST_LOW (val->value)
fc08b993 927 & (align - 1)));
928 }
929 else
930 {
9c1be15e 931 unsigned int precision = TYPE_PRECISION (TREE_TYPE (val->value));
932 wide_int nonzero_bits = wide_int::from (val->mask, precision,
933 UNSIGNED) | val->value;
fc08b993 934 nonzero_bits &= get_nonzero_bits (name);
935 set_nonzero_bits (name, nonzero_bits);
936 }
153c3b50 937 }
938
88dbf20f 939 /* Perform substitutions based on the known constant values. */
14f101cf 940 something_changed = substitute_and_fold (get_constant_value,
941 ccp_fold_stmt, true);
4ee9c684 942
88dbf20f 943 free (const_val);
e004838d 944 const_val = NULL;
33a34f1e 945 return something_changed;;
4ee9c684 946}
947
948
88dbf20f 949/* Compute the meet operator between *VAL1 and *VAL2. Store the result
950 in VAL1.
951
952 any M UNDEFINED = any
88dbf20f 953 any M VARYING = VARYING
954 Ci M Cj = Ci if (i == j)
955 Ci M Cj = VARYING if (i != j)
bfa30570 956 */
4ee9c684 957
958static void
9908fe4d 959ccp_lattice_meet (ccp_prop_value_t *val1, ccp_prop_value_t *val2)
4ee9c684 960{
88dbf20f 961 if (val1->lattice_val == UNDEFINED)
4ee9c684 962 {
88dbf20f 963 /* UNDEFINED M any = any */
964 *val1 = *val2;
41511585 965 }
88dbf20f 966 else if (val2->lattice_val == UNDEFINED)
92481a4d 967 {
88dbf20f 968 /* any M UNDEFINED = any
969 Nothing to do. VAL1 already contains the value we want. */
970 ;
92481a4d 971 }
88dbf20f 972 else if (val1->lattice_val == VARYING
973 || val2->lattice_val == VARYING)
41511585 974 {
88dbf20f 975 /* any M VARYING = VARYING. */
976 val1->lattice_val = VARYING;
e913b5cd 977 val1->mask = -1;
88dbf20f 978 val1->value = NULL_TREE;
41511585 979 }
b7e55469 980 else if (val1->lattice_val == CONSTANT
981 && val2->lattice_val == CONSTANT
982 && TREE_CODE (val1->value) == INTEGER_CST
983 && TREE_CODE (val2->value) == INTEGER_CST)
984 {
985 /* Ci M Cj = Ci if (i == j)
986 Ci M Cj = VARYING if (i != j)
987
988 For INTEGER_CSTs mask unequal bits. If no equal bits remain,
989 drop to varying. */
e913b5cd 990 val1->mask = (val1->mask | val2->mask
5de9d3ed 991 | (wi::to_widest (val1->value)
992 ^ wi::to_widest (val2->value)));
796b6678 993 if (val1->mask == -1)
b7e55469 994 {
995 val1->lattice_val = VARYING;
996 val1->value = NULL_TREE;
997 }
998 }
88dbf20f 999 else if (val1->lattice_val == CONSTANT
1000 && val2->lattice_val == CONSTANT
61207d43 1001 && simple_cst_equal (val1->value, val2->value) == 1)
41511585 1002 {
88dbf20f 1003 /* Ci M Cj = Ci if (i == j)
1004 Ci M Cj = VARYING if (i != j)
1005
b7e55469 1006 VAL1 already contains the value we want for equivalent values. */
1007 }
1008 else if (val1->lattice_val == CONSTANT
1009 && val2->lattice_val == CONSTANT
1010 && (TREE_CODE (val1->value) == ADDR_EXPR
1011 || TREE_CODE (val2->value) == ADDR_EXPR))
1012 {
1013 /* When not equal addresses are involved try meeting for
1014 alignment. */
9908fe4d 1015 ccp_prop_value_t tem = *val2;
b7e55469 1016 if (TREE_CODE (val1->value) == ADDR_EXPR)
1017 *val1 = get_value_for_expr (val1->value, true);
1018 if (TREE_CODE (val2->value) == ADDR_EXPR)
1019 tem = get_value_for_expr (val2->value, true);
1020 ccp_lattice_meet (val1, &tem);
41511585 1021 }
1022 else
1023 {
88dbf20f 1024 /* Any other combination is VARYING. */
1025 val1->lattice_val = VARYING;
e913b5cd 1026 val1->mask = -1;
88dbf20f 1027 val1->value = NULL_TREE;
41511585 1028 }
4ee9c684 1029}
1030
1031
41511585 1032/* Loop through the PHI_NODE's parameters for BLOCK and compare their
1033 lattice values to determine PHI_NODE's lattice value. The value of a
88dbf20f 1034 PHI node is determined calling ccp_lattice_meet with all the arguments
41511585 1035 of the PHI node that are incoming via executable edges. */
4ee9c684 1036
41511585 1037static enum ssa_prop_result
1a91d914 1038ccp_visit_phi_node (gphi *phi)
4ee9c684 1039{
75a70cf9 1040 unsigned i;
9908fe4d 1041 ccp_prop_value_t *old_val, new_val;
4ee9c684 1042
41511585 1043 if (dump_file && (dump_flags & TDF_DETAILS))
4ee9c684 1044 {
41511585 1045 fprintf (dump_file, "\nVisiting PHI node: ");
75a70cf9 1046 print_gimple_stmt (dump_file, phi, 0, dump_flags);
4ee9c684 1047 }
4ee9c684 1048
75a70cf9 1049 old_val = get_value (gimple_phi_result (phi));
41511585 1050 switch (old_val->lattice_val)
1051 {
1052 case VARYING:
88dbf20f 1053 return SSA_PROP_VARYING;
4ee9c684 1054
41511585 1055 case CONSTANT:
1056 new_val = *old_val;
1057 break;
4ee9c684 1058
41511585 1059 case UNDEFINED:
41511585 1060 new_val.lattice_val = UNDEFINED;
88dbf20f 1061 new_val.value = NULL_TREE;
41511585 1062 break;
4ee9c684 1063
41511585 1064 default:
8c0963c4 1065 gcc_unreachable ();
41511585 1066 }
4ee9c684 1067
75a70cf9 1068 for (i = 0; i < gimple_phi_num_args (phi); i++)
41511585 1069 {
88dbf20f 1070 /* Compute the meet operator over all the PHI arguments flowing
1071 through executable edges. */
75a70cf9 1072 edge e = gimple_phi_arg_edge (phi, i);
4ee9c684 1073
41511585 1074 if (dump_file && (dump_flags & TDF_DETAILS))
1075 {
1076 fprintf (dump_file,
1077 "\n Argument #%d (%d -> %d %sexecutable)\n",
1078 i, e->src->index, e->dest->index,
1079 (e->flags & EDGE_EXECUTABLE) ? "" : "not ");
1080 }
1081
1082 /* If the incoming edge is executable, Compute the meet operator for
1083 the existing value of the PHI node and the current PHI argument. */
1084 if (e->flags & EDGE_EXECUTABLE)
1085 {
75a70cf9 1086 tree arg = gimple_phi_arg (phi, i)->def;
9908fe4d 1087 ccp_prop_value_t arg_val = get_value_for_expr (arg, false);
4ee9c684 1088
88dbf20f 1089 ccp_lattice_meet (&new_val, &arg_val);
4ee9c684 1090
41511585 1091 if (dump_file && (dump_flags & TDF_DETAILS))
1092 {
1093 fprintf (dump_file, "\t");
88dbf20f 1094 print_generic_expr (dump_file, arg, dump_flags);
1095 dump_lattice_value (dump_file, "\tValue: ", arg_val);
41511585 1096 fprintf (dump_file, "\n");
1097 }
4ee9c684 1098
41511585 1099 if (new_val.lattice_val == VARYING)
1100 break;
1101 }
1102 }
4ee9c684 1103
1104 if (dump_file && (dump_flags & TDF_DETAILS))
41511585 1105 {
1106 dump_lattice_value (dump_file, "\n PHI node value: ", new_val);
1107 fprintf (dump_file, "\n\n");
1108 }
1109
bfa30570 1110 /* Make the transition to the new value. */
75a70cf9 1111 if (set_lattice_value (gimple_phi_result (phi), new_val))
41511585 1112 {
1113 if (new_val.lattice_val == VARYING)
1114 return SSA_PROP_VARYING;
1115 else
1116 return SSA_PROP_INTERESTING;
1117 }
1118 else
1119 return SSA_PROP_NOT_INTERESTING;
4ee9c684 1120}
1121
15d138c9 1122/* Return the constant value for OP or OP otherwise. */
00f4f705 1123
1124static tree
15d138c9 1125valueize_op (tree op)
00f4f705 1126{
00f4f705 1127 if (TREE_CODE (op) == SSA_NAME)
1128 {
15d138c9 1129 tree tem = get_constant_value (op);
1130 if (tem)
1131 return tem;
00f4f705 1132 }
1133 return op;
1134}
1135
4e1b3545 1136/* Return the constant value for OP, but signal to not follow SSA
1137 edges if the definition may be simulated again. */
1138
1139static tree
1140valueize_op_1 (tree op)
1141{
1142 if (TREE_CODE (op) == SSA_NAME)
1143 {
4e1b3545 1144 /* If the definition may be simulated again we cannot follow
1145 this SSA edge as the SSA propagator does not necessarily
1146 re-visit the use. */
1147 gimple def_stmt = SSA_NAME_DEF_STMT (op);
2160d5ba 1148 if (!gimple_nop_p (def_stmt)
1149 && prop_simulate_again_p (def_stmt))
4e1b3545 1150 return NULL_TREE;
bc8fa068 1151 tree tem = get_constant_value (op);
1152 if (tem)
1153 return tem;
4e1b3545 1154 }
1155 return op;
1156}
1157
41511585 1158/* CCP specific front-end to the non-destructive constant folding
1159 routines.
4ee9c684 1160
1161 Attempt to simplify the RHS of STMT knowing that one or more
1162 operands are constants.
1163
1164 If simplification is possible, return the simplified RHS,
75a70cf9 1165 otherwise return the original RHS or NULL_TREE. */
4ee9c684 1166
1167static tree
75a70cf9 1168ccp_fold (gimple stmt)
4ee9c684 1169{
389dd41b 1170 location_t loc = gimple_location (stmt);
75a70cf9 1171 switch (gimple_code (stmt))
88dbf20f 1172 {
75a70cf9 1173 case GIMPLE_COND:
1174 {
1175 /* Handle comparison operators that can appear in GIMPLE form. */
15d138c9 1176 tree op0 = valueize_op (gimple_cond_lhs (stmt));
1177 tree op1 = valueize_op (gimple_cond_rhs (stmt));
75a70cf9 1178 enum tree_code code = gimple_cond_code (stmt);
389dd41b 1179 return fold_binary_loc (loc, code, boolean_type_node, op0, op1);
75a70cf9 1180 }
4ee9c684 1181
75a70cf9 1182 case GIMPLE_SWITCH:
1183 {
15d138c9 1184 /* Return the constant switch index. */
1a91d914 1185 return valueize_op (gimple_switch_index (as_a <gswitch *> (stmt)));
75a70cf9 1186 }
912f109f 1187
1d0b727d 1188 case GIMPLE_ASSIGN:
1189 case GIMPLE_CALL:
4e1b3545 1190 return gimple_fold_stmt_to_constant_1 (stmt,
1191 valueize_op, valueize_op_1);
04236c3a 1192
8782adcf 1193 default:
1d0b727d 1194 gcc_unreachable ();
8782adcf 1195 }
8782adcf 1196}
75a70cf9 1197
b7e55469 1198/* Apply the operation CODE in type TYPE to the value, mask pair
1199 RVAL and RMASK representing a value of type RTYPE and set
1200 the value, mask pair *VAL and *MASK to the result. */
1201
1202static void
1203bit_value_unop_1 (enum tree_code code, tree type,
5de9d3ed 1204 widest_int *val, widest_int *mask,
1205 tree rtype, const widest_int &rval, const widest_int &rmask)
b7e55469 1206{
1207 switch (code)
1208 {
1209 case BIT_NOT_EXPR:
1210 *mask = rmask;
cf8f0e63 1211 *val = ~rval;
b7e55469 1212 break;
1213
1214 case NEGATE_EXPR:
1215 {
5de9d3ed 1216 widest_int temv, temm;
b7e55469 1217 /* Return ~rval + 1. */
1218 bit_value_unop_1 (BIT_NOT_EXPR, type, &temv, &temm, type, rval, rmask);
1219 bit_value_binop_1 (PLUS_EXPR, type, val, mask,
e913b5cd 1220 type, temv, temm, type, 1, 0);
b7e55469 1221 break;
1222 }
1223
1224 CASE_CONVERT:
1225 {
e913b5cd 1226 signop sgn;
b7e55469 1227
1228 /* First extend mask and value according to the original type. */
e913b5cd 1229 sgn = TYPE_SIGN (rtype);
796b6678 1230 *mask = wi::ext (rmask, TYPE_PRECISION (rtype), sgn);
1231 *val = wi::ext (rval, TYPE_PRECISION (rtype), sgn);
b7e55469 1232
1233 /* Then extend mask and value according to the target type. */
e913b5cd 1234 sgn = TYPE_SIGN (type);
796b6678 1235 *mask = wi::ext (*mask, TYPE_PRECISION (type), sgn);
1236 *val = wi::ext (*val, TYPE_PRECISION (type), sgn);
b7e55469 1237 break;
1238 }
1239
1240 default:
e913b5cd 1241 *mask = -1;
b7e55469 1242 break;
1243 }
1244}
1245
1246/* Apply the operation CODE in type TYPE to the value, mask pairs
1247 R1VAL, R1MASK and R2VAL, R2MASK representing a values of type R1TYPE
1248 and R2TYPE and set the value, mask pair *VAL and *MASK to the result. */
1249
1250static void
1251bit_value_binop_1 (enum tree_code code, tree type,
5de9d3ed 1252 widest_int *val, widest_int *mask,
10c3fe8d 1253 tree r1type, const widest_int &r1val,
1254 const widest_int &r1mask, tree r2type,
1255 const widest_int &r2val, const widest_int &r2mask)
b7e55469 1256{
e913b5cd 1257 signop sgn = TYPE_SIGN (type);
1258 int width = TYPE_PRECISION (type);
10c3fe8d 1259 bool swap_p = false;
e913b5cd 1260
1261 /* Assume we'll get a constant result. Use an initial non varying
1262 value, we fall back to varying in the end if necessary. */
1263 *mask = -1;
1264
b7e55469 1265 switch (code)
1266 {
1267 case BIT_AND_EXPR:
1268 /* The mask is constant where there is a known not
1269 set bit, (m1 | m2) & ((v1 | m1) & (v2 | m2)) */
cf8f0e63 1270 *mask = (r1mask | r2mask) & (r1val | r1mask) & (r2val | r2mask);
1271 *val = r1val & r2val;
b7e55469 1272 break;
1273
1274 case BIT_IOR_EXPR:
1275 /* The mask is constant where there is a known
1276 set bit, (m1 | m2) & ~((v1 & ~m1) | (v2 & ~m2)). */
cf8f0e63 1277 *mask = (r1mask | r2mask)
1278 .and_not (r1val.and_not (r1mask) | r2val.and_not (r2mask));
1279 *val = r1val | r2val;
b7e55469 1280 break;
1281
1282 case BIT_XOR_EXPR:
1283 /* m1 | m2 */
cf8f0e63 1284 *mask = r1mask | r2mask;
1285 *val = r1val ^ r2val;
b7e55469 1286 break;
1287
1288 case LROTATE_EXPR:
1289 case RROTATE_EXPR:
796b6678 1290 if (r2mask == 0)
b7e55469 1291 {
28e557ef 1292 widest_int shift = r2val;
796b6678 1293 if (shift == 0)
e913b5cd 1294 {
1295 *mask = r1mask;
1296 *val = r1val;
1297 }
ddb1be65 1298 else
e913b5cd 1299 {
796b6678 1300 if (wi::neg_p (shift))
e913b5cd 1301 {
1302 shift = -shift;
1303 if (code == RROTATE_EXPR)
1304 code = LROTATE_EXPR;
1305 else
1306 code = RROTATE_EXPR;
1307 }
1308 if (code == RROTATE_EXPR)
1309 {
796b6678 1310 *mask = wi::rrotate (r1mask, shift, width);
1311 *val = wi::rrotate (r1val, shift, width);
e913b5cd 1312 }
1313 else
1314 {
796b6678 1315 *mask = wi::lrotate (r1mask, shift, width);
1316 *val = wi::lrotate (r1val, shift, width);
e913b5cd 1317 }
1318 }
b7e55469 1319 }
1320 break;
1321
1322 case LSHIFT_EXPR:
1323 case RSHIFT_EXPR:
1324 /* ??? We can handle partially known shift counts if we know
1325 its sign. That way we can tell that (x << (y | 8)) & 255
1326 is zero. */
796b6678 1327 if (r2mask == 0)
b7e55469 1328 {
28e557ef 1329 widest_int shift = r2val;
796b6678 1330 if (shift == 0)
b7e55469 1331 {
1332 *mask = r1mask;
1333 *val = r1val;
1334 }
ddb1be65 1335 else
e913b5cd 1336 {
796b6678 1337 if (wi::neg_p (shift))
e913b5cd 1338 {
1339 shift = -shift;
1340 if (code == RSHIFT_EXPR)
1341 code = LSHIFT_EXPR;
1342 else
1343 code = RSHIFT_EXPR;
1344 }
1345 if (code == RSHIFT_EXPR)
1346 {
45639915 1347 *mask = wi::rshift (wi::ext (r1mask, width, sgn), shift, sgn);
1348 *val = wi::rshift (wi::ext (r1val, width, sgn), shift, sgn);
e913b5cd 1349 }
1350 else
1351 {
45639915 1352 *mask = wi::ext (wi::lshift (r1mask, shift), width, sgn);
1353 *val = wi::ext (wi::lshift (r1val, shift), width, sgn);
e913b5cd 1354 }
1355 }
b7e55469 1356 }
1357 break;
1358
1359 case PLUS_EXPR:
1360 case POINTER_PLUS_EXPR:
1361 {
b7e55469 1362 /* Do the addition with unknown bits set to zero, to give carry-ins of
1363 zero wherever possible. */
ab2c1de8 1364 widest_int lo = r1val.and_not (r1mask) + r2val.and_not (r2mask);
796b6678 1365 lo = wi::ext (lo, width, sgn);
b7e55469 1366 /* Do the addition with unknown bits set to one, to give carry-ins of
1367 one wherever possible. */
ab2c1de8 1368 widest_int hi = (r1val | r1mask) + (r2val | r2mask);
796b6678 1369 hi = wi::ext (hi, width, sgn);
b7e55469 1370 /* Each bit in the result is known if (a) the corresponding bits in
1371 both inputs are known, and (b) the carry-in to that bit position
1372 is known. We can check condition (b) by seeing if we got the same
1373 result with minimised carries as with maximised carries. */
cf8f0e63 1374 *mask = r1mask | r2mask | (lo ^ hi);
796b6678 1375 *mask = wi::ext (*mask, width, sgn);
b7e55469 1376 /* It shouldn't matter whether we choose lo or hi here. */
1377 *val = lo;
1378 break;
1379 }
1380
1381 case MINUS_EXPR:
1382 {
5de9d3ed 1383 widest_int temv, temm;
b7e55469 1384 bit_value_unop_1 (NEGATE_EXPR, r2type, &temv, &temm,
1385 r2type, r2val, r2mask);
1386 bit_value_binop_1 (PLUS_EXPR, type, val, mask,
1387 r1type, r1val, r1mask,
1388 r2type, temv, temm);
1389 break;
1390 }
1391
1392 case MULT_EXPR:
1393 {
1394 /* Just track trailing zeros in both operands and transfer
1395 them to the other. */
796b6678 1396 int r1tz = wi::ctz (r1val | r1mask);
1397 int r2tz = wi::ctz (r2val | r2mask);
e913b5cd 1398 if (r1tz + r2tz >= width)
b7e55469 1399 {
e913b5cd 1400 *mask = 0;
1401 *val = 0;
b7e55469 1402 }
1403 else if (r1tz + r2tz > 0)
1404 {
5de9d3ed 1405 *mask = wi::ext (wi::mask <widest_int> (r1tz + r2tz, true),
796b6678 1406 width, sgn);
e913b5cd 1407 *val = 0;
b7e55469 1408 }
1409 break;
1410 }
1411
1412 case EQ_EXPR:
1413 case NE_EXPR:
1414 {
5de9d3ed 1415 widest_int m = r1mask | r2mask;
cf8f0e63 1416 if (r1val.and_not (m) != r2val.and_not (m))
b7e55469 1417 {
e913b5cd 1418 *mask = 0;
1419 *val = ((code == EQ_EXPR) ? 0 : 1);
b7e55469 1420 }
1421 else
1422 {
1423 /* We know the result of a comparison is always one or zero. */
e913b5cd 1424 *mask = 1;
1425 *val = 0;
b7e55469 1426 }
1427 break;
1428 }
1429
1430 case GE_EXPR:
1431 case GT_EXPR:
10c3fe8d 1432 swap_p = true;
1433 code = swap_tree_comparison (code);
1434 /* Fall through. */
b7e55469 1435 case LT_EXPR:
1436 case LE_EXPR:
1437 {
1438 int minmax, maxmin;
e913b5cd 1439
10c3fe8d 1440 const widest_int &o1val = swap_p ? r2val : r1val;
1441 const widest_int &o1mask = swap_p ? r2mask : r1mask;
1442 const widest_int &o2val = swap_p ? r1val : r2val;
1443 const widest_int &o2mask = swap_p ? r1mask : r2mask;
1444
b7e55469 1445 /* If the most significant bits are not known we know nothing. */
796b6678 1446 if (wi::neg_p (o1mask) || wi::neg_p (o2mask))
b7e55469 1447 break;
1448
90c0f5b7 1449 /* For comparisons the signedness is in the comparison operands. */
e913b5cd 1450 sgn = TYPE_SIGN (r1type);
90c0f5b7 1451
b7e55469 1452 /* If we know the most significant bits we know the values
1453 value ranges by means of treating varying bits as zero
1454 or one. Do a cross comparison of the max/min pairs. */
796b6678 1455 maxmin = wi::cmp (o1val | o1mask, o2val.and_not (o2mask), sgn);
1456 minmax = wi::cmp (o1val.and_not (o1mask), o2val | o2mask, sgn);
e913b5cd 1457 if (maxmin < 0) /* o1 is less than o2. */
b7e55469 1458 {
e913b5cd 1459 *mask = 0;
1460 *val = 1;
b7e55469 1461 }
e913b5cd 1462 else if (minmax > 0) /* o1 is not less or equal to o2. */
b7e55469 1463 {
e913b5cd 1464 *mask = 0;
1465 *val = 0;
b7e55469 1466 }
e913b5cd 1467 else if (maxmin == minmax) /* o1 and o2 are equal. */
b7e55469 1468 {
1469 /* This probably should never happen as we'd have
1470 folded the thing during fully constant value folding. */
e913b5cd 1471 *mask = 0;
1472 *val = (code == LE_EXPR ? 1 : 0);
b7e55469 1473 }
1474 else
1475 {
1476 /* We know the result of a comparison is always one or zero. */
e913b5cd 1477 *mask = 1;
1478 *val = 0;
b7e55469 1479 }
1480 break;
1481 }
1482
1483 default:;
1484 }
1485}
1486
1487/* Return the propagation value when applying the operation CODE to
1488 the value RHS yielding type TYPE. */
1489
9908fe4d 1490static ccp_prop_value_t
b7e55469 1491bit_value_unop (enum tree_code code, tree type, tree rhs)
1492{
9908fe4d 1493 ccp_prop_value_t rval = get_value_for_expr (rhs, true);
5de9d3ed 1494 widest_int value, mask;
9908fe4d 1495 ccp_prop_value_t val;
c91fedc5 1496
1497 if (rval.lattice_val == UNDEFINED)
1498 return rval;
1499
b7e55469 1500 gcc_assert ((rval.lattice_val == CONSTANT
1501 && TREE_CODE (rval.value) == INTEGER_CST)
796b6678 1502 || rval.mask == -1);
b7e55469 1503 bit_value_unop_1 (code, type, &value, &mask,
e913b5cd 1504 TREE_TYPE (rhs), value_to_wide_int (rval), rval.mask);
796b6678 1505 if (mask != -1)
b7e55469 1506 {
1507 val.lattice_val = CONSTANT;
1508 val.mask = mask;
1509 /* ??? Delay building trees here. */
e913b5cd 1510 val.value = wide_int_to_tree (type, value);
b7e55469 1511 }
1512 else
1513 {
1514 val.lattice_val = VARYING;
1515 val.value = NULL_TREE;
e913b5cd 1516 val.mask = -1;
b7e55469 1517 }
1518 return val;
1519}
1520
1521/* Return the propagation value when applying the operation CODE to
1522 the values RHS1 and RHS2 yielding type TYPE. */
1523
9908fe4d 1524static ccp_prop_value_t
b7e55469 1525bit_value_binop (enum tree_code code, tree type, tree rhs1, tree rhs2)
1526{
9908fe4d 1527 ccp_prop_value_t r1val = get_value_for_expr (rhs1, true);
1528 ccp_prop_value_t r2val = get_value_for_expr (rhs2, true);
5de9d3ed 1529 widest_int value, mask;
9908fe4d 1530 ccp_prop_value_t val;
c91fedc5 1531
1532 if (r1val.lattice_val == UNDEFINED
1533 || r2val.lattice_val == UNDEFINED)
1534 {
1535 val.lattice_val = VARYING;
1536 val.value = NULL_TREE;
e913b5cd 1537 val.mask = -1;
c91fedc5 1538 return val;
1539 }
1540
b7e55469 1541 gcc_assert ((r1val.lattice_val == CONSTANT
1542 && TREE_CODE (r1val.value) == INTEGER_CST)
796b6678 1543 || r1val.mask == -1);
b7e55469 1544 gcc_assert ((r2val.lattice_val == CONSTANT
1545 && TREE_CODE (r2val.value) == INTEGER_CST)
796b6678 1546 || r2val.mask == -1);
b7e55469 1547 bit_value_binop_1 (code, type, &value, &mask,
e913b5cd 1548 TREE_TYPE (rhs1), value_to_wide_int (r1val), r1val.mask,
1549 TREE_TYPE (rhs2), value_to_wide_int (r2val), r2val.mask);
1550 if (mask != -1)
b7e55469 1551 {
1552 val.lattice_val = CONSTANT;
1553 val.mask = mask;
1554 /* ??? Delay building trees here. */
e913b5cd 1555 val.value = wide_int_to_tree (type, value);
b7e55469 1556 }
1557 else
1558 {
1559 val.lattice_val = VARYING;
1560 val.value = NULL_TREE;
e913b5cd 1561 val.mask = -1;
b7e55469 1562 }
1563 return val;
1564}
1565
237e78b1 1566/* Return the propagation value for __builtin_assume_aligned
1567 and functions with assume_aligned or alloc_aligned attribute.
1568 For __builtin_assume_aligned, ATTR is NULL_TREE,
1569 for assume_aligned attribute ATTR is non-NULL and ALLOC_ALIGNED
1570 is false, for alloc_aligned attribute ATTR is non-NULL and
1571 ALLOC_ALIGNED is true. */
fca0886c 1572
9908fe4d 1573static ccp_prop_value_t
1574bit_value_assume_aligned (gimple stmt, tree attr, ccp_prop_value_t ptrval,
237e78b1 1575 bool alloc_aligned)
fca0886c 1576{
237e78b1 1577 tree align, misalign = NULL_TREE, type;
fca0886c 1578 unsigned HOST_WIDE_INT aligni, misaligni = 0;
9908fe4d 1579 ccp_prop_value_t alignval;
5de9d3ed 1580 widest_int value, mask;
9908fe4d 1581 ccp_prop_value_t val;
e913b5cd 1582
237e78b1 1583 if (attr == NULL_TREE)
1584 {
1585 tree ptr = gimple_call_arg (stmt, 0);
1586 type = TREE_TYPE (ptr);
1587 ptrval = get_value_for_expr (ptr, true);
1588 }
1589 else
1590 {
1591 tree lhs = gimple_call_lhs (stmt);
1592 type = TREE_TYPE (lhs);
1593 }
1594
fca0886c 1595 if (ptrval.lattice_val == UNDEFINED)
1596 return ptrval;
1597 gcc_assert ((ptrval.lattice_val == CONSTANT
1598 && TREE_CODE (ptrval.value) == INTEGER_CST)
796b6678 1599 || ptrval.mask == -1);
237e78b1 1600 if (attr == NULL_TREE)
fca0886c 1601 {
237e78b1 1602 /* Get aligni and misaligni from __builtin_assume_aligned. */
1603 align = gimple_call_arg (stmt, 1);
1604 if (!tree_fits_uhwi_p (align))
fca0886c 1605 return ptrval;
237e78b1 1606 aligni = tree_to_uhwi (align);
1607 if (gimple_call_num_args (stmt) > 2)
1608 {
1609 misalign = gimple_call_arg (stmt, 2);
1610 if (!tree_fits_uhwi_p (misalign))
1611 return ptrval;
1612 misaligni = tree_to_uhwi (misalign);
1613 }
1614 }
1615 else
fca0886c 1616 {
237e78b1 1617 /* Get aligni and misaligni from assume_aligned or
1618 alloc_align attributes. */
1619 if (TREE_VALUE (attr) == NULL_TREE)
fca0886c 1620 return ptrval;
237e78b1 1621 attr = TREE_VALUE (attr);
1622 align = TREE_VALUE (attr);
1623 if (!tree_fits_uhwi_p (align))
fca0886c 1624 return ptrval;
237e78b1 1625 aligni = tree_to_uhwi (align);
1626 if (alloc_aligned)
1627 {
1628 if (aligni == 0 || aligni > gimple_call_num_args (stmt))
1629 return ptrval;
1630 align = gimple_call_arg (stmt, aligni - 1);
1631 if (!tree_fits_uhwi_p (align))
1632 return ptrval;
1633 aligni = tree_to_uhwi (align);
1634 }
1635 else if (TREE_CHAIN (attr) && TREE_VALUE (TREE_CHAIN (attr)))
1636 {
1637 misalign = TREE_VALUE (TREE_CHAIN (attr));
1638 if (!tree_fits_uhwi_p (misalign))
1639 return ptrval;
1640 misaligni = tree_to_uhwi (misalign);
1641 }
fca0886c 1642 }
237e78b1 1643 if (aligni <= 1 || (aligni & (aligni - 1)) != 0 || misaligni >= aligni)
1644 return ptrval;
1645
fca0886c 1646 align = build_int_cst_type (type, -aligni);
1647 alignval = get_value_for_expr (align, true);
1648 bit_value_binop_1 (BIT_AND_EXPR, type, &value, &mask,
e913b5cd 1649 type, value_to_wide_int (ptrval), ptrval.mask,
1650 type, value_to_wide_int (alignval), alignval.mask);
796b6678 1651 if (mask != -1)
fca0886c 1652 {
1653 val.lattice_val = CONSTANT;
1654 val.mask = mask;
e913b5cd 1655 gcc_assert ((mask.to_uhwi () & (aligni - 1)) == 0);
1656 gcc_assert ((value.to_uhwi () & (aligni - 1)) == 0);
1657 value |= misaligni;
fca0886c 1658 /* ??? Delay building trees here. */
e913b5cd 1659 val.value = wide_int_to_tree (type, value);
fca0886c 1660 }
1661 else
1662 {
1663 val.lattice_val = VARYING;
1664 val.value = NULL_TREE;
e913b5cd 1665 val.mask = -1;
fca0886c 1666 }
1667 return val;
1668}
1669
75a70cf9 1670/* Evaluate statement STMT.
1671 Valid only for assignments, calls, conditionals, and switches. */
4ee9c684 1672
9908fe4d 1673static ccp_prop_value_t
75a70cf9 1674evaluate_stmt (gimple stmt)
4ee9c684 1675{
9908fe4d 1676 ccp_prop_value_t val;
4f61cce6 1677 tree simplified = NULL_TREE;
88dbf20f 1678 ccp_lattice_t likelyvalue = likely_value (stmt);
b7e55469 1679 bool is_constant = false;
581bf1c2 1680 unsigned int align;
88dbf20f 1681
b7e55469 1682 if (dump_file && (dump_flags & TDF_DETAILS))
1683 {
1684 fprintf (dump_file, "which is likely ");
1685 switch (likelyvalue)
1686 {
1687 case CONSTANT:
1688 fprintf (dump_file, "CONSTANT");
1689 break;
1690 case UNDEFINED:
1691 fprintf (dump_file, "UNDEFINED");
1692 break;
1693 case VARYING:
1694 fprintf (dump_file, "VARYING");
1695 break;
1696 default:;
1697 }
1698 fprintf (dump_file, "\n");
1699 }
add6ee5e 1700
4ee9c684 1701 /* If the statement is likely to have a CONSTANT result, then try
1702 to fold the statement to determine the constant value. */
75a70cf9 1703 /* FIXME. This is the only place that we call ccp_fold.
1704 Since likely_value never returns CONSTANT for calls, we will
1705 not attempt to fold them, including builtins that may profit. */
4ee9c684 1706 if (likelyvalue == CONSTANT)
b7e55469 1707 {
1708 fold_defer_overflow_warnings ();
1709 simplified = ccp_fold (stmt);
1710 is_constant = simplified && is_gimple_min_invariant (simplified);
1711 fold_undefer_overflow_warnings (is_constant, stmt, 0);
1712 if (is_constant)
1713 {
1714 /* The statement produced a constant value. */
1715 val.lattice_val = CONSTANT;
1716 val.value = simplified;
e913b5cd 1717 val.mask = 0;
b7e55469 1718 }
1719 }
4ee9c684 1720 /* If the statement is likely to have a VARYING result, then do not
1721 bother folding the statement. */
04236c3a 1722 else if (likelyvalue == VARYING)
75a70cf9 1723 {
590c3166 1724 enum gimple_code code = gimple_code (stmt);
75a70cf9 1725 if (code == GIMPLE_ASSIGN)
1726 {
1727 enum tree_code subcode = gimple_assign_rhs_code (stmt);
48e1416a 1728
75a70cf9 1729 /* Other cases cannot satisfy is_gimple_min_invariant
1730 without folding. */
1731 if (get_gimple_rhs_class (subcode) == GIMPLE_SINGLE_RHS)
1732 simplified = gimple_assign_rhs1 (stmt);
1733 }
1734 else if (code == GIMPLE_SWITCH)
1a91d914 1735 simplified = gimple_switch_index (as_a <gswitch *> (stmt));
75a70cf9 1736 else
a65c4d64 1737 /* These cannot satisfy is_gimple_min_invariant without folding. */
1738 gcc_assert (code == GIMPLE_CALL || code == GIMPLE_COND);
b7e55469 1739 is_constant = simplified && is_gimple_min_invariant (simplified);
1740 if (is_constant)
1741 {
1742 /* The statement produced a constant value. */
1743 val.lattice_val = CONSTANT;
1744 val.value = simplified;
e913b5cd 1745 val.mask = 0;
b7e55469 1746 }
75a70cf9 1747 }
4ee9c684 1748
b7e55469 1749 /* Resort to simplification for bitwise tracking. */
1750 if (flag_tree_bit_ccp
db48deb0 1751 && (likelyvalue == CONSTANT || is_gimple_call (stmt)
1752 || (gimple_assign_single_p (stmt)
1753 && gimple_assign_rhs_code (stmt) == ADDR_EXPR))
b7e55469 1754 && !is_constant)
912f109f 1755 {
b7e55469 1756 enum gimple_code code = gimple_code (stmt);
1757 val.lattice_val = VARYING;
1758 val.value = NULL_TREE;
e913b5cd 1759 val.mask = -1;
b7e55469 1760 if (code == GIMPLE_ASSIGN)
912f109f 1761 {
b7e55469 1762 enum tree_code subcode = gimple_assign_rhs_code (stmt);
1763 tree rhs1 = gimple_assign_rhs1 (stmt);
1764 switch (get_gimple_rhs_class (subcode))
1765 {
1766 case GIMPLE_SINGLE_RHS:
1767 if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
1768 || POINTER_TYPE_P (TREE_TYPE (rhs1)))
1769 val = get_value_for_expr (rhs1, true);
1770 break;
1771
1772 case GIMPLE_UNARY_RHS:
1773 if ((INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
1774 || POINTER_TYPE_P (TREE_TYPE (rhs1)))
1775 && (INTEGRAL_TYPE_P (gimple_expr_type (stmt))
1776 || POINTER_TYPE_P (gimple_expr_type (stmt))))
1777 val = bit_value_unop (subcode, gimple_expr_type (stmt), rhs1);
1778 break;
1779
1780 case GIMPLE_BINARY_RHS:
1781 if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
1782 || POINTER_TYPE_P (TREE_TYPE (rhs1)))
1783 {
e47d81e0 1784 tree lhs = gimple_assign_lhs (stmt);
b7e55469 1785 tree rhs2 = gimple_assign_rhs2 (stmt);
1786 val = bit_value_binop (subcode,
e47d81e0 1787 TREE_TYPE (lhs), rhs1, rhs2);
b7e55469 1788 }
1789 break;
1790
1791 default:;
1792 }
912f109f 1793 }
b7e55469 1794 else if (code == GIMPLE_COND)
1795 {
1796 enum tree_code code = gimple_cond_code (stmt);
1797 tree rhs1 = gimple_cond_lhs (stmt);
1798 tree rhs2 = gimple_cond_rhs (stmt);
1799 if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
1800 || POINTER_TYPE_P (TREE_TYPE (rhs1)))
1801 val = bit_value_binop (code, TREE_TYPE (rhs1), rhs1, rhs2);
1802 }
0b4f0116 1803 else if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
153c3b50 1804 {
0b4f0116 1805 tree fndecl = gimple_call_fndecl (stmt);
153c3b50 1806 switch (DECL_FUNCTION_CODE (fndecl))
1807 {
1808 case BUILT_IN_MALLOC:
1809 case BUILT_IN_REALLOC:
1810 case BUILT_IN_CALLOC:
939514e9 1811 case BUILT_IN_STRDUP:
1812 case BUILT_IN_STRNDUP:
153c3b50 1813 val.lattice_val = CONSTANT;
1814 val.value = build_int_cst (TREE_TYPE (gimple_get_lhs (stmt)), 0);
796b6678 1815 val.mask = ~((HOST_WIDE_INT) MALLOC_ABI_ALIGNMENT
1816 / BITS_PER_UNIT - 1);
153c3b50 1817 break;
1818
1819 case BUILT_IN_ALLOCA:
581bf1c2 1820 case BUILT_IN_ALLOCA_WITH_ALIGN:
1821 align = (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_ALLOCA_WITH_ALIGN
f9ae6f95 1822 ? TREE_INT_CST_LOW (gimple_call_arg (stmt, 1))
581bf1c2 1823 : BIGGEST_ALIGNMENT);
153c3b50 1824 val.lattice_val = CONSTANT;
1825 val.value = build_int_cst (TREE_TYPE (gimple_get_lhs (stmt)), 0);
796b6678 1826 val.mask = ~((HOST_WIDE_INT) align / BITS_PER_UNIT - 1);
153c3b50 1827 break;
1828
939514e9 1829 /* These builtins return their first argument, unmodified. */
1830 case BUILT_IN_MEMCPY:
1831 case BUILT_IN_MEMMOVE:
1832 case BUILT_IN_MEMSET:
1833 case BUILT_IN_STRCPY:
1834 case BUILT_IN_STRNCPY:
1835 case BUILT_IN_MEMCPY_CHK:
1836 case BUILT_IN_MEMMOVE_CHK:
1837 case BUILT_IN_MEMSET_CHK:
1838 case BUILT_IN_STRCPY_CHK:
1839 case BUILT_IN_STRNCPY_CHK:
1840 val = get_value_for_expr (gimple_call_arg (stmt, 0), true);
1841 break;
1842
fca0886c 1843 case BUILT_IN_ASSUME_ALIGNED:
237e78b1 1844 val = bit_value_assume_aligned (stmt, NULL_TREE, val, false);
fca0886c 1845 break;
1846
060fc206 1847 case BUILT_IN_ALIGNED_ALLOC:
1848 {
1849 tree align = get_constant_value (gimple_call_arg (stmt, 0));
1850 if (align
1851 && tree_fits_uhwi_p (align))
1852 {
1853 unsigned HOST_WIDE_INT aligni = tree_to_uhwi (align);
1854 if (aligni > 1
1855 /* align must be power-of-two */
1856 && (aligni & (aligni - 1)) == 0)
1857 {
1858 val.lattice_val = CONSTANT;
1859 val.value = build_int_cst (ptr_type_node, 0);
cd89b631 1860 val.mask = -aligni;
060fc206 1861 }
1862 }
1863 break;
1864 }
1865
153c3b50 1866 default:;
1867 }
1868 }
237e78b1 1869 if (is_gimple_call (stmt) && gimple_call_lhs (stmt))
1870 {
1871 tree fntype = gimple_call_fntype (stmt);
1872 if (fntype)
1873 {
1874 tree attrs = lookup_attribute ("assume_aligned",
1875 TYPE_ATTRIBUTES (fntype));
1876 if (attrs)
1877 val = bit_value_assume_aligned (stmt, attrs, val, false);
1878 attrs = lookup_attribute ("alloc_align",
1879 TYPE_ATTRIBUTES (fntype));
1880 if (attrs)
1881 val = bit_value_assume_aligned (stmt, attrs, val, true);
1882 }
1883 }
b7e55469 1884 is_constant = (val.lattice_val == CONSTANT);
912f109f 1885 }
1886
fc08b993 1887 if (flag_tree_bit_ccp
1888 && ((is_constant && TREE_CODE (val.value) == INTEGER_CST)
1889 || (!is_constant && likelyvalue != UNDEFINED))
1890 && gimple_get_lhs (stmt)
1891 && TREE_CODE (gimple_get_lhs (stmt)) == SSA_NAME)
1892 {
1893 tree lhs = gimple_get_lhs (stmt);
9c1be15e 1894 wide_int nonzero_bits = get_nonzero_bits (lhs);
1895 if (nonzero_bits != -1)
fc08b993 1896 {
1897 if (!is_constant)
1898 {
1899 val.lattice_val = CONSTANT;
1900 val.value = build_zero_cst (TREE_TYPE (lhs));
9c1be15e 1901 val.mask = extend_mask (nonzero_bits);
fc08b993 1902 is_constant = true;
1903 }
1904 else
1905 {
9c1be15e 1906 if (wi::bit_and_not (val.value, nonzero_bits) != 0)
aeb682a2 1907 val.value = wide_int_to_tree (TREE_TYPE (lhs),
9c1be15e 1908 nonzero_bits & val.value);
aeb682a2 1909 if (nonzero_bits == 0)
1910 val.mask = 0;
fc08b993 1911 else
09b2913a 1912 val.mask = val.mask & extend_mask (nonzero_bits);
fc08b993 1913 }
1914 }
1915 }
1916
b7e55469 1917 if (!is_constant)
4ee9c684 1918 {
1919 /* The statement produced a nonconstant value. If the statement
88dbf20f 1920 had UNDEFINED operands, then the result of the statement
1921 should be UNDEFINED. Otherwise, the statement is VARYING. */
bfa30570 1922 if (likelyvalue == UNDEFINED)
b7e55469 1923 {
1924 val.lattice_val = likelyvalue;
e913b5cd 1925 val.mask = 0;
b7e55469 1926 }
b765fa12 1927 else
b7e55469 1928 {
1929 val.lattice_val = VARYING;
e913b5cd 1930 val.mask = -1;
b7e55469 1931 }
b765fa12 1932
88dbf20f 1933 val.value = NULL_TREE;
4ee9c684 1934 }
41511585 1935
1936 return val;
4ee9c684 1937}
1938
c1f445d2 1939typedef hash_table<pointer_hash<gimple_statement_base> > gimple_htab;
2b15d2ba 1940
582a80ed 1941/* Given a BUILT_IN_STACK_SAVE value SAVED_VAL, insert a clobber of VAR before
1942 each matching BUILT_IN_STACK_RESTORE. Mark visited phis in VISITED. */
1943
1944static void
2b15d2ba 1945insert_clobber_before_stack_restore (tree saved_val, tree var,
c1f445d2 1946 gimple_htab **visited)
582a80ed 1947{
1a91d914 1948 gimple stmt;
1949 gassign *clobber_stmt;
582a80ed 1950 tree clobber;
1951 imm_use_iterator iter;
1952 gimple_stmt_iterator i;
1953 gimple *slot;
1954
1955 FOR_EACH_IMM_USE_STMT (stmt, iter, saved_val)
1956 if (gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
1957 {
f1f41a6c 1958 clobber = build_constructor (TREE_TYPE (var),
1959 NULL);
582a80ed 1960 TREE_THIS_VOLATILE (clobber) = 1;
1961 clobber_stmt = gimple_build_assign (var, clobber);
1962
1963 i = gsi_for_stmt (stmt);
1964 gsi_insert_before (&i, clobber_stmt, GSI_SAME_STMT);
1965 }
1966 else if (gimple_code (stmt) == GIMPLE_PHI)
1967 {
c1f445d2 1968 if (!*visited)
1969 *visited = new gimple_htab (10);
582a80ed 1970
c1f445d2 1971 slot = (*visited)->find_slot (stmt, INSERT);
582a80ed 1972 if (*slot != NULL)
1973 continue;
1974
1975 *slot = stmt;
1976 insert_clobber_before_stack_restore (gimple_phi_result (stmt), var,
1977 visited);
1978 }
42eed683 1979 else if (gimple_assign_ssa_name_copy_p (stmt))
1980 insert_clobber_before_stack_restore (gimple_assign_lhs (stmt), var,
1981 visited);
058a1b7a 1982 else if (chkp_gimple_call_builtin_p (stmt, BUILT_IN_CHKP_BNDRET))
1983 continue;
582a80ed 1984 else
1985 gcc_assert (is_gimple_debug (stmt));
1986}
1987
1988/* Advance the iterator to the previous non-debug gimple statement in the same
1989 or dominating basic block. */
1990
1991static inline void
1992gsi_prev_dom_bb_nondebug (gimple_stmt_iterator *i)
1993{
1994 basic_block dom;
1995
1996 gsi_prev_nondebug (i);
1997 while (gsi_end_p (*i))
1998 {
1999 dom = get_immediate_dominator (CDI_DOMINATORS, i->bb);
34154e27 2000 if (dom == NULL || dom == ENTRY_BLOCK_PTR_FOR_FN (cfun))
582a80ed 2001 return;
2002
2003 *i = gsi_last_bb (dom);
2004 }
2005}
2006
2007/* Find a BUILT_IN_STACK_SAVE dominating gsi_stmt (I), and insert
1543f720 2008 a clobber of VAR before each matching BUILT_IN_STACK_RESTORE.
2009
2010 It is possible that BUILT_IN_STACK_SAVE cannot be find in a dominator when a
2011 previous pass (such as DOM) duplicated it along multiple paths to a BB. In
2012 that case the function gives up without inserting the clobbers. */
582a80ed 2013
2014static void
2015insert_clobbers_for_var (gimple_stmt_iterator i, tree var)
2016{
582a80ed 2017 gimple stmt;
2018 tree saved_val;
c1f445d2 2019 gimple_htab *visited = NULL;
582a80ed 2020
1543f720 2021 for (; !gsi_end_p (i); gsi_prev_dom_bb_nondebug (&i))
582a80ed 2022 {
2023 stmt = gsi_stmt (i);
2024
2025 if (!gimple_call_builtin_p (stmt, BUILT_IN_STACK_SAVE))
2026 continue;
582a80ed 2027
2028 saved_val = gimple_call_lhs (stmt);
2029 if (saved_val == NULL_TREE)
2030 continue;
2031
2032 insert_clobber_before_stack_restore (saved_val, var, &visited);
2033 break;
2034 }
2035
c1f445d2 2036 delete visited;
582a80ed 2037}
2038
581bf1c2 2039/* Detects a __builtin_alloca_with_align with constant size argument. Declares
2040 fixed-size array and returns the address, if found, otherwise returns
2041 NULL_TREE. */
9a65cc0a 2042
2043static tree
581bf1c2 2044fold_builtin_alloca_with_align (gimple stmt)
9a65cc0a 2045{
2046 unsigned HOST_WIDE_INT size, threshold, n_elem;
2047 tree lhs, arg, block, var, elem_type, array_type;
9a65cc0a 2048
2049 /* Get lhs. */
2050 lhs = gimple_call_lhs (stmt);
2051 if (lhs == NULL_TREE)
2052 return NULL_TREE;
2053
2054 /* Detect constant argument. */
2055 arg = get_constant_value (gimple_call_arg (stmt, 0));
6e93d308 2056 if (arg == NULL_TREE
2057 || TREE_CODE (arg) != INTEGER_CST
e913b5cd 2058 || !tree_fits_uhwi_p (arg))
9a65cc0a 2059 return NULL_TREE;
6e93d308 2060
8c53c46c 2061 size = tree_to_uhwi (arg);
9a65cc0a 2062
581bf1c2 2063 /* Heuristic: don't fold large allocas. */
9a65cc0a 2064 threshold = (unsigned HOST_WIDE_INT)PARAM_VALUE (PARAM_LARGE_STACK_FRAME);
581bf1c2 2065 /* In case the alloca is located at function entry, it has the same lifetime
2066 as a declared array, so we allow a larger size. */
9a65cc0a 2067 block = gimple_block (stmt);
2068 if (!(cfun->after_inlining
2069 && TREE_CODE (BLOCK_SUPERCONTEXT (block)) == FUNCTION_DECL))
2070 threshold /= 10;
2071 if (size > threshold)
2072 return NULL_TREE;
2073
2074 /* Declare array. */
2075 elem_type = build_nonstandard_integer_type (BITS_PER_UNIT, 1);
2076 n_elem = size * 8 / BITS_PER_UNIT;
9a65cc0a 2077 array_type = build_array_type_nelts (elem_type, n_elem);
f9e245b2 2078 var = create_tmp_var (array_type);
f9ae6f95 2079 DECL_ALIGN (var) = TREE_INT_CST_LOW (gimple_call_arg (stmt, 1));
3d4a0a4b 2080 {
2081 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (lhs);
2082 if (pi != NULL && !pi->pt.anything)
2083 {
2084 bool singleton_p;
2085 unsigned uid;
2086 singleton_p = pt_solution_singleton_p (&pi->pt, &uid);
2087 gcc_assert (singleton_p);
2088 SET_DECL_PT_UID (var, uid);
2089 }
2090 }
9a65cc0a 2091
2092 /* Fold alloca to the address of the array. */
2093 return fold_convert (TREE_TYPE (lhs), build_fold_addr_expr (var));
2094}
2095
6688f8ec 2096/* Fold the stmt at *GSI with CCP specific information that propagating
2097 and regular folding does not catch. */
2098
2099static bool
2100ccp_fold_stmt (gimple_stmt_iterator *gsi)
2101{
2102 gimple stmt = gsi_stmt (*gsi);
6688f8ec 2103
94144e68 2104 switch (gimple_code (stmt))
2105 {
2106 case GIMPLE_COND:
2107 {
1a91d914 2108 gcond *cond_stmt = as_a <gcond *> (stmt);
9908fe4d 2109 ccp_prop_value_t val;
94144e68 2110 /* Statement evaluation will handle type mismatches in constants
2111 more gracefully than the final propagation. This allows us to
2112 fold more conditionals here. */
2113 val = evaluate_stmt (stmt);
2114 if (val.lattice_val != CONSTANT
796b6678 2115 || val.mask != 0)
94144e68 2116 return false;
2117
b7e55469 2118 if (dump_file)
2119 {
2120 fprintf (dump_file, "Folding predicate ");
2121 print_gimple_expr (dump_file, stmt, 0, 0);
2122 fprintf (dump_file, " to ");
2123 print_generic_expr (dump_file, val.value, 0);
2124 fprintf (dump_file, "\n");
2125 }
2126
94144e68 2127 if (integer_zerop (val.value))
1a91d914 2128 gimple_cond_make_false (cond_stmt);
94144e68 2129 else
1a91d914 2130 gimple_cond_make_true (cond_stmt);
6688f8ec 2131
94144e68 2132 return true;
2133 }
6688f8ec 2134
94144e68 2135 case GIMPLE_CALL:
2136 {
2137 tree lhs = gimple_call_lhs (stmt);
3064bb7b 2138 int flags = gimple_call_flags (stmt);
15d138c9 2139 tree val;
94144e68 2140 tree argt;
2141 bool changed = false;
2142 unsigned i;
2143
2144 /* If the call was folded into a constant make sure it goes
2145 away even if we cannot propagate into all uses because of
2146 type issues. */
2147 if (lhs
2148 && TREE_CODE (lhs) == SSA_NAME
3064bb7b 2149 && (val = get_constant_value (lhs))
2150 /* Don't optimize away calls that have side-effects. */
2151 && (flags & (ECF_CONST|ECF_PURE)) != 0
2152 && (flags & ECF_LOOPING_CONST_OR_PURE) == 0)
94144e68 2153 {
15d138c9 2154 tree new_rhs = unshare_expr (val);
338cce8f 2155 bool res;
94144e68 2156 if (!useless_type_conversion_p (TREE_TYPE (lhs),
2157 TREE_TYPE (new_rhs)))
2158 new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs);
338cce8f 2159 res = update_call_from_tree (gsi, new_rhs);
2160 gcc_assert (res);
94144e68 2161 return true;
2162 }
2163
fb049fba 2164 /* Internal calls provide no argument types, so the extra laxity
2165 for normal calls does not apply. */
2166 if (gimple_call_internal_p (stmt))
2167 return false;
2168
581bf1c2 2169 /* The heuristic of fold_builtin_alloca_with_align differs before and
2170 after inlining, so we don't require the arg to be changed into a
2171 constant for folding, but just to be constant. */
2172 if (gimple_call_builtin_p (stmt, BUILT_IN_ALLOCA_WITH_ALIGN))
9a65cc0a 2173 {
581bf1c2 2174 tree new_rhs = fold_builtin_alloca_with_align (stmt);
6e93d308 2175 if (new_rhs)
2176 {
2177 bool res = update_call_from_tree (gsi, new_rhs);
582a80ed 2178 tree var = TREE_OPERAND (TREE_OPERAND (new_rhs, 0),0);
6e93d308 2179 gcc_assert (res);
582a80ed 2180 insert_clobbers_for_var (*gsi, var);
6e93d308 2181 return true;
2182 }
9a65cc0a 2183 }
2184
94144e68 2185 /* Propagate into the call arguments. Compared to replace_uses_in
2186 this can use the argument slot types for type verification
2187 instead of the current argument type. We also can safely
2188 drop qualifiers here as we are dealing with constants anyway. */
2de00a2d 2189 argt = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
94144e68 2190 for (i = 0; i < gimple_call_num_args (stmt) && argt;
2191 ++i, argt = TREE_CHAIN (argt))
2192 {
2193 tree arg = gimple_call_arg (stmt, i);
2194 if (TREE_CODE (arg) == SSA_NAME
15d138c9 2195 && (val = get_constant_value (arg))
94144e68 2196 && useless_type_conversion_p
2197 (TYPE_MAIN_VARIANT (TREE_VALUE (argt)),
15d138c9 2198 TYPE_MAIN_VARIANT (TREE_TYPE (val))))
94144e68 2199 {
15d138c9 2200 gimple_call_set_arg (stmt, i, unshare_expr (val));
94144e68 2201 changed = true;
2202 }
2203 }
e16f4c39 2204
94144e68 2205 return changed;
2206 }
6688f8ec 2207
6872bf3c 2208 case GIMPLE_ASSIGN:
2209 {
2210 tree lhs = gimple_assign_lhs (stmt);
15d138c9 2211 tree val;
6872bf3c 2212
2213 /* If we have a load that turned out to be constant replace it
2214 as we cannot propagate into all uses in all cases. */
2215 if (gimple_assign_single_p (stmt)
2216 && TREE_CODE (lhs) == SSA_NAME
15d138c9 2217 && (val = get_constant_value (lhs)))
6872bf3c 2218 {
15d138c9 2219 tree rhs = unshare_expr (val);
6872bf3c 2220 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
182cf5a9 2221 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (lhs), rhs);
6872bf3c 2222 gimple_assign_set_rhs_from_tree (gsi, rhs);
2223 return true;
2224 }
2225
2226 return false;
2227 }
2228
94144e68 2229 default:
2230 return false;
2231 }
6688f8ec 2232}
2233
41511585 2234/* Visit the assignment statement STMT. Set the value of its LHS to the
88dbf20f 2235 value computed by the RHS and store LHS in *OUTPUT_P. If STMT
2236 creates virtual definitions, set the value of each new name to that
75a70cf9 2237 of the RHS (if we can derive a constant out of the RHS).
2238 Value-returning call statements also perform an assignment, and
2239 are handled here. */
4ee9c684 2240
41511585 2241static enum ssa_prop_result
75a70cf9 2242visit_assignment (gimple stmt, tree *output_p)
4ee9c684 2243{
9908fe4d 2244 ccp_prop_value_t val;
88dbf20f 2245 enum ssa_prop_result retval;
4ee9c684 2246
75a70cf9 2247 tree lhs = gimple_get_lhs (stmt);
4ee9c684 2248
75a70cf9 2249 gcc_assert (gimple_code (stmt) != GIMPLE_CALL
2250 || gimple_call_lhs (stmt) != NULL_TREE);
2251
15d138c9 2252 if (gimple_assign_single_p (stmt)
2253 && gimple_assign_rhs_code (stmt) == SSA_NAME)
2254 /* For a simple copy operation, we copy the lattice values. */
2255 val = *get_value (gimple_assign_rhs1 (stmt));
41511585 2256 else
75a70cf9 2257 /* Evaluate the statement, which could be
2258 either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
04236c3a 2259 val = evaluate_stmt (stmt);
4ee9c684 2260
88dbf20f 2261 retval = SSA_PROP_NOT_INTERESTING;
4ee9c684 2262
41511585 2263 /* Set the lattice value of the statement's output. */
88dbf20f 2264 if (TREE_CODE (lhs) == SSA_NAME)
4ee9c684 2265 {
88dbf20f 2266 /* If STMT is an assignment to an SSA_NAME, we only have one
2267 value to set. */
2268 if (set_lattice_value (lhs, val))
2269 {
2270 *output_p = lhs;
2271 if (val.lattice_val == VARYING)
2272 retval = SSA_PROP_VARYING;
2273 else
2274 retval = SSA_PROP_INTERESTING;
2275 }
4ee9c684 2276 }
88dbf20f 2277
2278 return retval;
4ee9c684 2279}
2280
4ee9c684 2281
41511585 2282/* Visit the conditional statement STMT. Return SSA_PROP_INTERESTING
2283 if it can determine which edge will be taken. Otherwise, return
2284 SSA_PROP_VARYING. */
2285
2286static enum ssa_prop_result
75a70cf9 2287visit_cond_stmt (gimple stmt, edge *taken_edge_p)
4ee9c684 2288{
9908fe4d 2289 ccp_prop_value_t val;
41511585 2290 basic_block block;
2291
75a70cf9 2292 block = gimple_bb (stmt);
41511585 2293 val = evaluate_stmt (stmt);
b7e55469 2294 if (val.lattice_val != CONSTANT
796b6678 2295 || val.mask != 0)
b7e55469 2296 return SSA_PROP_VARYING;
41511585 2297
2298 /* Find which edge out of the conditional block will be taken and add it
2299 to the worklist. If no single edge can be determined statically,
2300 return SSA_PROP_VARYING to feed all the outgoing edges to the
2301 propagation engine. */
b7e55469 2302 *taken_edge_p = find_taken_edge (block, val.value);
41511585 2303 if (*taken_edge_p)
2304 return SSA_PROP_INTERESTING;
2305 else
2306 return SSA_PROP_VARYING;
4ee9c684 2307}
2308
4ee9c684 2309
41511585 2310/* Evaluate statement STMT. If the statement produces an output value and
2311 its evaluation changes the lattice value of its output, return
2312 SSA_PROP_INTERESTING and set *OUTPUT_P to the SSA_NAME holding the
2313 output value.
48e1416a 2314
41511585 2315 If STMT is a conditional branch and we can determine its truth
2316 value, set *TAKEN_EDGE_P accordingly. If STMT produces a varying
2317 value, return SSA_PROP_VARYING. */
4ee9c684 2318
41511585 2319static enum ssa_prop_result
75a70cf9 2320ccp_visit_stmt (gimple stmt, edge *taken_edge_p, tree *output_p)
41511585 2321{
41511585 2322 tree def;
2323 ssa_op_iter iter;
4ee9c684 2324
41511585 2325 if (dump_file && (dump_flags & TDF_DETAILS))
4ee9c684 2326 {
88dbf20f 2327 fprintf (dump_file, "\nVisiting statement:\n");
75a70cf9 2328 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
4ee9c684 2329 }
4ee9c684 2330
75a70cf9 2331 switch (gimple_code (stmt))
4ee9c684 2332 {
75a70cf9 2333 case GIMPLE_ASSIGN:
2334 /* If the statement is an assignment that produces a single
2335 output value, evaluate its RHS to see if the lattice value of
2336 its output has changed. */
2337 return visit_assignment (stmt, output_p);
2338
2339 case GIMPLE_CALL:
2340 /* A value-returning call also performs an assignment. */
2341 if (gimple_call_lhs (stmt) != NULL_TREE)
2342 return visit_assignment (stmt, output_p);
2343 break;
2344
2345 case GIMPLE_COND:
2346 case GIMPLE_SWITCH:
2347 /* If STMT is a conditional branch, see if we can determine
2348 which branch will be taken. */
2349 /* FIXME. It appears that we should be able to optimize
2350 computed GOTOs here as well. */
2351 return visit_cond_stmt (stmt, taken_edge_p);
2352
2353 default:
2354 break;
4ee9c684 2355 }
4ee9c684 2356
41511585 2357 /* Any other kind of statement is not interesting for constant
2358 propagation and, therefore, not worth simulating. */
41511585 2359 if (dump_file && (dump_flags & TDF_DETAILS))
2360 fprintf (dump_file, "No interesting values produced. Marked VARYING.\n");
4ee9c684 2361
41511585 2362 /* Definitions made by statements other than assignments to
2363 SSA_NAMEs represent unknown modifications to their outputs.
2364 Mark them VARYING. */
88dbf20f 2365 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
2366 {
9908fe4d 2367 ccp_prop_value_t v = { VARYING, NULL_TREE, -1 };
88dbf20f 2368 set_lattice_value (def, v);
2369 }
4ee9c684 2370
41511585 2371 return SSA_PROP_VARYING;
2372}
4ee9c684 2373
4ee9c684 2374
88dbf20f 2375/* Main entry point for SSA Conditional Constant Propagation. */
41511585 2376
33a34f1e 2377static unsigned int
61207d43 2378do_ssa_ccp (void)
41511585 2379{
582a80ed 2380 unsigned int todo = 0;
2381 calculate_dominance_info (CDI_DOMINATORS);
41511585 2382 ccp_initialize ();
2383 ssa_propagate (ccp_visit_stmt, ccp_visit_phi_node);
33a34f1e 2384 if (ccp_finalize ())
560965e9 2385 todo = (TODO_cleanup_cfg | TODO_update_ssa);
582a80ed 2386 free_dominance_info (CDI_DOMINATORS);
2387 return todo;
4ee9c684 2388}
2389
5664499b 2390
cbe8bda8 2391namespace {
2392
2393const pass_data pass_data_ccp =
41511585 2394{
cbe8bda8 2395 GIMPLE_PASS, /* type */
2396 "ccp", /* name */
2397 OPTGROUP_NONE, /* optinfo_flags */
cbe8bda8 2398 TV_TREE_CCP, /* tv_id */
2399 ( PROP_cfg | PROP_ssa ), /* properties_required */
2400 0, /* properties_provided */
2401 0, /* properties_destroyed */
2402 0, /* todo_flags_start */
8b88439e 2403 TODO_update_address_taken, /* todo_flags_finish */
41511585 2404};
4ee9c684 2405
cbe8bda8 2406class pass_ccp : public gimple_opt_pass
2407{
2408public:
9af5ce0c 2409 pass_ccp (gcc::context *ctxt)
2410 : gimple_opt_pass (pass_data_ccp, ctxt)
cbe8bda8 2411 {}
2412
2413 /* opt_pass methods: */
ae84f584 2414 opt_pass * clone () { return new pass_ccp (m_ctxt); }
31315c24 2415 virtual bool gate (function *) { return flag_tree_ccp != 0; }
65b0537f 2416 virtual unsigned int execute (function *) { return do_ssa_ccp (); }
cbe8bda8 2417
2418}; // class pass_ccp
2419
2420} // anon namespace
2421
2422gimple_opt_pass *
2423make_pass_ccp (gcc::context *ctxt)
2424{
2425 return new pass_ccp (ctxt);
2426}
2427
4ee9c684 2428
75a70cf9 2429
bdd0e199 2430/* Try to optimize out __builtin_stack_restore. Optimize it out
2431 if there is another __builtin_stack_restore in the same basic
2432 block and no calls or ASM_EXPRs are in between, or if this block's
2433 only outgoing edge is to EXIT_BLOCK and there are no calls or
2434 ASM_EXPRs after this __builtin_stack_restore. */
2435
2436static tree
75a70cf9 2437optimize_stack_restore (gimple_stmt_iterator i)
bdd0e199 2438{
6ea999da 2439 tree callee;
2440 gimple stmt;
75a70cf9 2441
2442 basic_block bb = gsi_bb (i);
2443 gimple call = gsi_stmt (i);
bdd0e199 2444
75a70cf9 2445 if (gimple_code (call) != GIMPLE_CALL
2446 || gimple_call_num_args (call) != 1
2447 || TREE_CODE (gimple_call_arg (call, 0)) != SSA_NAME
2448 || !POINTER_TYPE_P (TREE_TYPE (gimple_call_arg (call, 0))))
bdd0e199 2449 return NULL_TREE;
2450
75a70cf9 2451 for (gsi_next (&i); !gsi_end_p (i); gsi_next (&i))
bdd0e199 2452 {
75a70cf9 2453 stmt = gsi_stmt (i);
2454 if (gimple_code (stmt) == GIMPLE_ASM)
bdd0e199 2455 return NULL_TREE;
75a70cf9 2456 if (gimple_code (stmt) != GIMPLE_CALL)
bdd0e199 2457 continue;
2458
75a70cf9 2459 callee = gimple_call_fndecl (stmt);
c40a6f90 2460 if (!callee
2461 || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2462 /* All regular builtins are ok, just obviously not alloca. */
581bf1c2 2463 || DECL_FUNCTION_CODE (callee) == BUILT_IN_ALLOCA
2464 || DECL_FUNCTION_CODE (callee) == BUILT_IN_ALLOCA_WITH_ALIGN)
bdd0e199 2465 return NULL_TREE;
2466
2467 if (DECL_FUNCTION_CODE (callee) == BUILT_IN_STACK_RESTORE)
6ea999da 2468 goto second_stack_restore;
bdd0e199 2469 }
2470
6ea999da 2471 if (!gsi_end_p (i))
bdd0e199 2472 return NULL_TREE;
2473
6ea999da 2474 /* Allow one successor of the exit block, or zero successors. */
2475 switch (EDGE_COUNT (bb->succs))
2476 {
2477 case 0:
2478 break;
2479 case 1:
34154e27 2480 if (single_succ_edge (bb)->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
6ea999da 2481 return NULL_TREE;
2482 break;
2483 default:
2484 return NULL_TREE;
2485 }
2486 second_stack_restore:
bdd0e199 2487
6ea999da 2488 /* If there's exactly one use, then zap the call to __builtin_stack_save.
2489 If there are multiple uses, then the last one should remove the call.
2490 In any case, whether the call to __builtin_stack_save can be removed
2491 or not is irrelevant to removing the call to __builtin_stack_restore. */
2492 if (has_single_use (gimple_call_arg (call, 0)))
2493 {
2494 gimple stack_save = SSA_NAME_DEF_STMT (gimple_call_arg (call, 0));
2495 if (is_gimple_call (stack_save))
2496 {
2497 callee = gimple_call_fndecl (stack_save);
2498 if (callee
2499 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL
2500 && DECL_FUNCTION_CODE (callee) == BUILT_IN_STACK_SAVE)
2501 {
2502 gimple_stmt_iterator stack_save_gsi;
2503 tree rhs;
bdd0e199 2504
6ea999da 2505 stack_save_gsi = gsi_for_stmt (stack_save);
2506 rhs = build_int_cst (TREE_TYPE (gimple_call_arg (call, 0)), 0);
2507 update_call_from_tree (&stack_save_gsi, rhs);
2508 }
2509 }
2510 }
bdd0e199 2511
75a70cf9 2512 /* No effect, so the statement will be deleted. */
bdd0e199 2513 return integer_zero_node;
2514}
75a70cf9 2515
8a58ed0a 2516/* If va_list type is a simple pointer and nothing special is needed,
2517 optimize __builtin_va_start (&ap, 0) into ap = __builtin_next_arg (0),
2518 __builtin_va_end (&ap) out as NOP and __builtin_va_copy into a simple
2519 pointer assignment. */
2520
2521static tree
75a70cf9 2522optimize_stdarg_builtin (gimple call)
8a58ed0a 2523{
5f57a8b1 2524 tree callee, lhs, rhs, cfun_va_list;
8a58ed0a 2525 bool va_list_simple_ptr;
389dd41b 2526 location_t loc = gimple_location (call);
8a58ed0a 2527
75a70cf9 2528 if (gimple_code (call) != GIMPLE_CALL)
8a58ed0a 2529 return NULL_TREE;
2530
75a70cf9 2531 callee = gimple_call_fndecl (call);
5f57a8b1 2532
2533 cfun_va_list = targetm.fn_abi_va_list (callee);
2534 va_list_simple_ptr = POINTER_TYPE_P (cfun_va_list)
2535 && (TREE_TYPE (cfun_va_list) == void_type_node
2536 || TREE_TYPE (cfun_va_list) == char_type_node);
2537
8a58ed0a 2538 switch (DECL_FUNCTION_CODE (callee))
2539 {
2540 case BUILT_IN_VA_START:
2541 if (!va_list_simple_ptr
2542 || targetm.expand_builtin_va_start != NULL
e7ed5dd7 2543 || !builtin_decl_explicit_p (BUILT_IN_NEXT_ARG))
8a58ed0a 2544 return NULL_TREE;
2545
75a70cf9 2546 if (gimple_call_num_args (call) != 2)
8a58ed0a 2547 return NULL_TREE;
2548
75a70cf9 2549 lhs = gimple_call_arg (call, 0);
8a58ed0a 2550 if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2551 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
5f57a8b1 2552 != TYPE_MAIN_VARIANT (cfun_va_list))
8a58ed0a 2553 return NULL_TREE;
48e1416a 2554
389dd41b 2555 lhs = build_fold_indirect_ref_loc (loc, lhs);
b9a16870 2556 rhs = build_call_expr_loc (loc, builtin_decl_explicit (BUILT_IN_NEXT_ARG),
75a70cf9 2557 1, integer_zero_node);
389dd41b 2558 rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
8a58ed0a 2559 return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2560
2561 case BUILT_IN_VA_COPY:
2562 if (!va_list_simple_ptr)
2563 return NULL_TREE;
2564
75a70cf9 2565 if (gimple_call_num_args (call) != 2)
8a58ed0a 2566 return NULL_TREE;
2567
75a70cf9 2568 lhs = gimple_call_arg (call, 0);
8a58ed0a 2569 if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2570 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
5f57a8b1 2571 != TYPE_MAIN_VARIANT (cfun_va_list))
8a58ed0a 2572 return NULL_TREE;
2573
389dd41b 2574 lhs = build_fold_indirect_ref_loc (loc, lhs);
75a70cf9 2575 rhs = gimple_call_arg (call, 1);
8a58ed0a 2576 if (TYPE_MAIN_VARIANT (TREE_TYPE (rhs))
5f57a8b1 2577 != TYPE_MAIN_VARIANT (cfun_va_list))
8a58ed0a 2578 return NULL_TREE;
2579
389dd41b 2580 rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
8a58ed0a 2581 return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2582
2583 case BUILT_IN_VA_END:
75a70cf9 2584 /* No effect, so the statement will be deleted. */
8a58ed0a 2585 return integer_zero_node;
2586
2587 default:
2588 gcc_unreachable ();
2589 }
2590}
75a70cf9 2591
f87df69a 2592/* Attemp to make the block of __builtin_unreachable I unreachable by changing
2593 the incoming jumps. Return true if at least one jump was changed. */
2594
2595static bool
2596optimize_unreachable (gimple_stmt_iterator i)
2597{
2598 basic_block bb = gsi_bb (i);
2599 gimple_stmt_iterator gsi;
2600 gimple stmt;
2601 edge_iterator ei;
2602 edge e;
2603 bool ret;
2604
f6b540af 2605 if (flag_sanitize & SANITIZE_UNREACHABLE)
2606 return false;
2607
f87df69a 2608 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2609 {
2610 stmt = gsi_stmt (gsi);
2611
2612 if (is_gimple_debug (stmt))
2613 continue;
2614
1a91d914 2615 if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
f87df69a 2616 {
2617 /* Verify we do not need to preserve the label. */
1a91d914 2618 if (FORCED_LABEL (gimple_label_label (label_stmt)))
f87df69a 2619 return false;
2620
2621 continue;
2622 }
2623
2624 /* Only handle the case that __builtin_unreachable is the first statement
2625 in the block. We rely on DCE to remove stmts without side-effects
2626 before __builtin_unreachable. */
2627 if (gsi_stmt (gsi) != gsi_stmt (i))
2628 return false;
2629 }
2630
2631 ret = false;
2632 FOR_EACH_EDGE (e, ei, bb->preds)
2633 {
2634 gsi = gsi_last_bb (e->src);
522f73a1 2635 if (gsi_end_p (gsi))
2636 continue;
f87df69a 2637
522f73a1 2638 stmt = gsi_stmt (gsi);
1a91d914 2639 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
f87df69a 2640 {
2641 if (e->flags & EDGE_TRUE_VALUE)
1a91d914 2642 gimple_cond_make_false (cond_stmt);
f87df69a 2643 else if (e->flags & EDGE_FALSE_VALUE)
1a91d914 2644 gimple_cond_make_true (cond_stmt);
f87df69a 2645 else
2646 gcc_unreachable ();
1a91d914 2647 update_stmt (cond_stmt);
f87df69a 2648 }
2649 else
2650 {
2651 /* Todo: handle other cases, f.i. switch statement. */
2652 continue;
2653 }
2654
2655 ret = true;
2656 }
2657
2658 return ret;
2659}
2660
4ee9c684 2661/* A simple pass that attempts to fold all builtin functions. This pass
2662 is run after we've propagated as many constants as we can. */
2663
65b0537f 2664namespace {
2665
2666const pass_data pass_data_fold_builtins =
2667{
2668 GIMPLE_PASS, /* type */
2669 "fab", /* name */
2670 OPTGROUP_NONE, /* optinfo_flags */
65b0537f 2671 TV_NONE, /* tv_id */
2672 ( PROP_cfg | PROP_ssa ), /* properties_required */
2673 0, /* properties_provided */
2674 0, /* properties_destroyed */
2675 0, /* todo_flags_start */
8b88439e 2676 TODO_update_ssa, /* todo_flags_finish */
65b0537f 2677};
2678
2679class pass_fold_builtins : public gimple_opt_pass
2680{
2681public:
2682 pass_fold_builtins (gcc::context *ctxt)
2683 : gimple_opt_pass (pass_data_fold_builtins, ctxt)
2684 {}
2685
2686 /* opt_pass methods: */
2687 opt_pass * clone () { return new pass_fold_builtins (m_ctxt); }
2688 virtual unsigned int execute (function *);
2689
2690}; // class pass_fold_builtins
2691
2692unsigned int
2693pass_fold_builtins::execute (function *fun)
4ee9c684 2694{
b36237eb 2695 bool cfg_changed = false;
4ee9c684 2696 basic_block bb;
b1b7c0c4 2697 unsigned int todoflags = 0;
48e1416a 2698
65b0537f 2699 FOR_EACH_BB_FN (bb, fun)
4ee9c684 2700 {
75a70cf9 2701 gimple_stmt_iterator i;
2702 for (i = gsi_start_bb (bb); !gsi_end_p (i); )
4ee9c684 2703 {
75a70cf9 2704 gimple stmt, old_stmt;
40a3eb84 2705 tree callee;
0a39fd54 2706 enum built_in_function fcode;
4ee9c684 2707
75a70cf9 2708 stmt = gsi_stmt (i);
2709
2710 if (gimple_code (stmt) != GIMPLE_CALL)
0a39fd54 2711 {
896a0c42 2712 /* Remove all *ssaname_N ={v} {CLOBBER}; stmts,
2713 after the last GIMPLE DSE they aren't needed and might
2714 unnecessarily keep the SSA_NAMEs live. */
2715 if (gimple_clobber_p (stmt))
2716 {
2717 tree lhs = gimple_assign_lhs (stmt);
2718 if (TREE_CODE (lhs) == MEM_REF
2719 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME)
2720 {
2721 unlink_stmt_vdef (stmt);
2722 gsi_remove (&i, true);
2723 release_defs (stmt);
2724 continue;
2725 }
2726 }
75a70cf9 2727 gsi_next (&i);
0a39fd54 2728 continue;
2729 }
40a3eb84 2730
75a70cf9 2731 callee = gimple_call_fndecl (stmt);
4ee9c684 2732 if (!callee || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
0a39fd54 2733 {
75a70cf9 2734 gsi_next (&i);
0a39fd54 2735 continue;
2736 }
5a4b7e1e 2737
40a3eb84 2738 fcode = DECL_FUNCTION_CODE (callee);
2739 if (fold_stmt (&i))
2740 ;
2741 else
2742 {
2743 tree result = NULL_TREE;
2744 switch (DECL_FUNCTION_CODE (callee))
2745 {
2746 case BUILT_IN_CONSTANT_P:
2747 /* Resolve __builtin_constant_p. If it hasn't been
2748 folded to integer_one_node by now, it's fairly
2749 certain that the value simply isn't constant. */
2750 result = integer_zero_node;
2751 break;
5a4b7e1e 2752
40a3eb84 2753 case BUILT_IN_ASSUME_ALIGNED:
2754 /* Remove __builtin_assume_aligned. */
2755 result = gimple_call_arg (stmt, 0);
2756 break;
4ee9c684 2757
40a3eb84 2758 case BUILT_IN_STACK_RESTORE:
2759 result = optimize_stack_restore (i);
2760 if (result)
2761 break;
2762 gsi_next (&i);
2763 continue;
fca0886c 2764
40a3eb84 2765 case BUILT_IN_UNREACHABLE:
2766 if (optimize_unreachable (i))
2767 cfg_changed = true;
8a58ed0a 2768 break;
8a58ed0a 2769
40a3eb84 2770 case BUILT_IN_VA_START:
2771 case BUILT_IN_VA_END:
2772 case BUILT_IN_VA_COPY:
2773 /* These shouldn't be folded before pass_stdarg. */
2774 result = optimize_stdarg_builtin (stmt);
2775 if (result)
2776 break;
2777 /* FALLTHRU */
f87df69a 2778
40a3eb84 2779 default:;
2780 }
bdd0e199 2781
40a3eb84 2782 if (!result)
2783 {
2784 gsi_next (&i);
2785 continue;
2786 }
4ee9c684 2787
40a3eb84 2788 if (!update_call_from_tree (&i, result))
2789 gimplify_and_update_call_from_tree (&i, result);
2790 }
2791
2792 todoflags |= TODO_update_address_taken;
f87df69a 2793
4ee9c684 2794 if (dump_file && (dump_flags & TDF_DETAILS))
2795 {
2796 fprintf (dump_file, "Simplified\n ");
75a70cf9 2797 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
4ee9c684 2798 }
2799
75a70cf9 2800 old_stmt = stmt;
75a70cf9 2801 stmt = gsi_stmt (i);
4c5fd53c 2802 update_stmt (stmt);
de6ed584 2803
75a70cf9 2804 if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt)
2805 && gimple_purge_dead_eh_edges (bb))
b36237eb 2806 cfg_changed = true;
4ee9c684 2807
2808 if (dump_file && (dump_flags & TDF_DETAILS))
2809 {
2810 fprintf (dump_file, "to\n ");
75a70cf9 2811 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
4ee9c684 2812 fprintf (dump_file, "\n");
2813 }
0a39fd54 2814
2815 /* Retry the same statement if it changed into another
2816 builtin, there might be new opportunities now. */
75a70cf9 2817 if (gimple_code (stmt) != GIMPLE_CALL)
0a39fd54 2818 {
75a70cf9 2819 gsi_next (&i);
0a39fd54 2820 continue;
2821 }
75a70cf9 2822 callee = gimple_call_fndecl (stmt);
0a39fd54 2823 if (!callee
75a70cf9 2824 || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
0a39fd54 2825 || DECL_FUNCTION_CODE (callee) == fcode)
75a70cf9 2826 gsi_next (&i);
4ee9c684 2827 }
2828 }
48e1416a 2829
b36237eb 2830 /* Delete unreachable blocks. */
b1b7c0c4 2831 if (cfg_changed)
2832 todoflags |= TODO_cleanup_cfg;
48e1416a 2833
b1b7c0c4 2834 return todoflags;
4ee9c684 2835}
2836
cbe8bda8 2837} // anon namespace
2838
2839gimple_opt_pass *
2840make_pass_fold_builtins (gcc::context *ctxt)
2841{
2842 return new pass_fold_builtins (ctxt);
2843}