]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-ssa-ccp.c
Allow automatics in equivalences
[thirdparty/gcc.git] / gcc / tree-ssa-ccp.c
CommitLineData
4ee9c684 1/* Conditional constant propagation pass for the GNU compiler.
fbd26352 2 Copyright (C) 2000-2019 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"
9ef16211 124#include "backend.h"
7c29e30e 125#include "target.h"
4ee9c684 126#include "tree.h"
9ef16211 127#include "gimple.h"
7c29e30e 128#include "tree-pass.h"
9ef16211 129#include "ssa.h"
7c29e30e 130#include "gimple-pretty-print.h"
b20a8bb4 131#include "fold-const.h"
bc61cadb 132#include "gimple-fold.h"
133#include "tree-eh.h"
a8783bee 134#include "gimplify.h"
dcf1a1ec 135#include "gimple-iterator.h"
073c1fd5 136#include "tree-cfg.h"
41511585 137#include "tree-ssa-propagate.h"
43fb76c1 138#include "dbgcnt.h"
9a65cc0a 139#include "params.h"
f7715905 140#include "builtins.h"
e2588447 141#include "cfgloop.h"
9c1a31e4 142#include "stor-layout.h"
143#include "optabs-query.h"
a54071b2 144#include "tree-ssa-ccp.h"
82193434 145#include "tree-dfa.h"
184fac50 146#include "diagnostic-core.h"
30a86690 147#include "stringpool.h"
148#include "attribs.h"
0a2b1323 149#include "tree-vector-builder.h"
2dc10fae 150
4ee9c684 151/* Possible lattice values. */
152typedef enum
153{
bfa30570 154 UNINITIALIZED,
4ee9c684 155 UNDEFINED,
156 CONSTANT,
157 VARYING
88dbf20f 158} ccp_lattice_t;
4ee9c684 159
251317e4 160class ccp_prop_value_t {
161public:
14f101cf 162 /* Lattice value. */
163 ccp_lattice_t lattice_val;
164
165 /* Propagated value. */
166 tree value;
b7e55469 167
e913b5cd 168 /* Mask that applies to the propagated value during CCP. For X
169 with a CONSTANT lattice value X & ~mask == value & ~mask. The
170 zero bits in the mask cover constant values. The ones mean no
171 information. */
5de9d3ed 172 widest_int mask;
14f101cf 173};
174
6bd87d95 175class ccp_propagate : public ssa_propagation_engine
176{
177 public:
178 enum ssa_prop_result visit_stmt (gimple *, edge *, tree *) FINAL OVERRIDE;
179 enum ssa_prop_result visit_phi (gphi *) FINAL OVERRIDE;
180};
181
88dbf20f 182/* Array of propagated constant values. After propagation,
183 CONST_VAL[I].VALUE holds the constant value for SSA_NAME(I). If
184 the constant is held in an SSA name representing a memory store
4fb5e5ca 185 (i.e., a VDEF), CONST_VAL[I].MEM_REF will contain the actual
186 memory reference used to store (i.e., the LHS of the assignment
187 doing the store). */
9908fe4d 188static ccp_prop_value_t *const_val;
285df01b 189static unsigned n_const_val;
4ee9c684 190
9908fe4d 191static void canonicalize_value (ccp_prop_value_t *);
27de3d43 192static void ccp_lattice_meet (ccp_prop_value_t *, ccp_prop_value_t *);
4af351a8 193
88dbf20f 194/* Dump constant propagation value VAL to file OUTF prefixed by PREFIX. */
01406fc0 195
196static void
9908fe4d 197dump_lattice_value (FILE *outf, const char *prefix, ccp_prop_value_t val)
01406fc0 198{
41511585 199 switch (val.lattice_val)
01406fc0 200 {
88dbf20f 201 case UNINITIALIZED:
202 fprintf (outf, "%sUNINITIALIZED", prefix);
203 break;
41511585 204 case UNDEFINED:
205 fprintf (outf, "%sUNDEFINED", prefix);
206 break;
207 case VARYING:
208 fprintf (outf, "%sVARYING", prefix);
209 break;
41511585 210 case CONSTANT:
b7e55469 211 if (TREE_CODE (val.value) != INTEGER_CST
796b6678 212 || val.mask == 0)
16ab4e97 213 {
214 fprintf (outf, "%sCONSTANT ", prefix);
215 print_generic_expr (outf, val.value, dump_flags);
216 }
b7e55469 217 else
218 {
28e557ef 219 widest_int cval = wi::bit_and_not (wi::to_widest (val.value),
220 val.mask);
e913b5cd 221 fprintf (outf, "%sCONSTANT ", prefix);
222 print_hex (cval, outf);
223 fprintf (outf, " (");
224 print_hex (val.mask, outf);
225 fprintf (outf, ")");
b7e55469 226 }
41511585 227 break;
228 default:
8c0963c4 229 gcc_unreachable ();
41511585 230 }
01406fc0 231}
4ee9c684 232
4ee9c684 233
88dbf20f 234/* Print lattice value VAL to stderr. */
235
9908fe4d 236void debug_lattice_value (ccp_prop_value_t val);
88dbf20f 237
4b987fac 238DEBUG_FUNCTION void
9908fe4d 239debug_lattice_value (ccp_prop_value_t val)
88dbf20f 240{
241 dump_lattice_value (stderr, "", val);
242 fprintf (stderr, "\n");
243}
4ee9c684 244
9a93e2f7 245/* Extend NONZERO_BITS to a full mask, based on sgn. */
9c1be15e 246
247static widest_int
9a93e2f7 248extend_mask (const wide_int &nonzero_bits, signop sgn)
9c1be15e 249{
9a93e2f7 250 return widest_int::from (nonzero_bits, sgn);
9c1be15e 251}
4ee9c684 252
88dbf20f 253/* Compute a default value for variable VAR and store it in the
254 CONST_VAL array. The following rules are used to get default
255 values:
01406fc0 256
88dbf20f 257 1- Global and static variables that are declared constant are
258 considered CONSTANT.
259
260 2- Any other value is considered UNDEFINED. This is useful when
41511585 261 considering PHI nodes. PHI arguments that are undefined do not
262 change the constant value of the PHI node, which allows for more
88dbf20f 263 constants to be propagated.
4ee9c684 264
8883e700 265 3- Variables defined by statements other than assignments and PHI
88dbf20f 266 nodes are considered VARYING.
4ee9c684 267
8883e700 268 4- Initial values of variables that are not GIMPLE registers are
bfa30570 269 considered VARYING. */
4ee9c684 270
9908fe4d 271static ccp_prop_value_t
88dbf20f 272get_default_value (tree var)
273{
9908fe4d 274 ccp_prop_value_t val = { UNINITIALIZED, NULL_TREE, 0 };
42acab1c 275 gimple *stmt;
8edeb88b 276
277 stmt = SSA_NAME_DEF_STMT (var);
278
279 if (gimple_nop_p (stmt))
4ee9c684 280 {
8edeb88b 281 /* Variables defined by an empty statement are those used
282 before being initialized. If VAR is a local variable, we
283 can assume initially that it is UNDEFINED, otherwise we must
284 consider it VARYING. */
7c782c9b 285 if (!virtual_operand_p (var)
9ae1b28a 286 && SSA_NAME_VAR (var)
7c782c9b 287 && TREE_CODE (SSA_NAME_VAR (var)) == VAR_DECL)
8edeb88b 288 val.lattice_val = UNDEFINED;
289 else
b7e55469 290 {
291 val.lattice_val = VARYING;
e913b5cd 292 val.mask = -1;
fc08b993 293 if (flag_tree_bit_ccp)
294 {
9c1be15e 295 wide_int nonzero_bits = get_nonzero_bits (var);
296 if (nonzero_bits != -1)
fc08b993 297 {
298 val.lattice_val = CONSTANT;
299 val.value = build_zero_cst (TREE_TYPE (var));
9a93e2f7 300 val.mask = extend_mask (nonzero_bits, TYPE_SIGN (TREE_TYPE (var)));
fc08b993 301 }
302 }
b7e55469 303 }
4ee9c684 304 }
b45b214a 305 else if (is_gimple_assign (stmt))
41511585 306 {
8edeb88b 307 tree cst;
308 if (gimple_assign_single_p (stmt)
309 && DECL_P (gimple_assign_rhs1 (stmt))
310 && (cst = get_symbol_constant_value (gimple_assign_rhs1 (stmt))))
88dbf20f 311 {
8edeb88b 312 val.lattice_val = CONSTANT;
313 val.value = cst;
88dbf20f 314 }
315 else
b45b214a 316 {
317 /* Any other variable defined by an assignment is considered
318 UNDEFINED. */
319 val.lattice_val = UNDEFINED;
320 }
321 }
322 else if ((is_gimple_call (stmt)
323 && gimple_call_lhs (stmt) != NULL_TREE)
324 || gimple_code (stmt) == GIMPLE_PHI)
325 {
326 /* A variable defined by a call or a PHI node is considered
327 UNDEFINED. */
328 val.lattice_val = UNDEFINED;
8edeb88b 329 }
330 else
331 {
332 /* Otherwise, VAR will never take on a constant value. */
333 val.lattice_val = VARYING;
e913b5cd 334 val.mask = -1;
41511585 335 }
4ee9c684 336
41511585 337 return val;
338}
4ee9c684 339
4ee9c684 340
bfa30570 341/* Get the constant value associated with variable VAR. */
4ee9c684 342
9908fe4d 343static inline ccp_prop_value_t *
bfa30570 344get_value (tree var)
88dbf20f 345{
9908fe4d 346 ccp_prop_value_t *val;
bfa30570 347
285df01b 348 if (const_val == NULL
349 || SSA_NAME_VERSION (var) >= n_const_val)
e004838d 350 return NULL;
351
352 val = &const_val[SSA_NAME_VERSION (var)];
bfa30570 353 if (val->lattice_val == UNINITIALIZED)
4ee9c684 354 *val = get_default_value (var);
355
f5faab84 356 canonicalize_value (val);
4af351a8 357
4ee9c684 358 return val;
359}
360
15d138c9 361/* Return the constant tree value associated with VAR. */
362
363static inline tree
364get_constant_value (tree var)
365{
9908fe4d 366 ccp_prop_value_t *val;
98d92e3c 367 if (TREE_CODE (var) != SSA_NAME)
368 {
369 if (is_gimple_min_invariant (var))
370 return var;
371 return NULL_TREE;
372 }
373 val = get_value (var);
b7e55469 374 if (val
375 && val->lattice_val == CONSTANT
376 && (TREE_CODE (val->value) != INTEGER_CST
796b6678 377 || val->mask == 0))
15d138c9 378 return val->value;
379 return NULL_TREE;
380}
381
bfa30570 382/* Sets the value associated with VAR to VARYING. */
383
384static inline void
385set_value_varying (tree var)
386{
9908fe4d 387 ccp_prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
bfa30570 388
389 val->lattice_val = VARYING;
390 val->value = NULL_TREE;
e913b5cd 391 val->mask = -1;
bfa30570 392}
4ee9c684 393
0001b944 394/* For integer constants, make sure to drop TREE_OVERFLOW. */
b31eb493 395
396static void
9908fe4d 397canonicalize_value (ccp_prop_value_t *val)
b31eb493 398{
f5faab84 399 if (val->lattice_val != CONSTANT)
400 return;
401
402 if (TREE_OVERFLOW_P (val->value))
403 val->value = drop_tree_overflow (val->value);
b31eb493 404}
405
b7e55469 406/* Return whether the lattice transition is valid. */
407
408static bool
9908fe4d 409valid_lattice_transition (ccp_prop_value_t old_val, ccp_prop_value_t new_val)
b7e55469 410{
411 /* Lattice transitions must always be monotonically increasing in
412 value. */
413 if (old_val.lattice_val < new_val.lattice_val)
414 return true;
415
416 if (old_val.lattice_val != new_val.lattice_val)
417 return false;
418
419 if (!old_val.value && !new_val.value)
420 return true;
421
422 /* Now both lattice values are CONSTANT. */
423
fc6cc27b 424 /* Allow arbitrary copy changes as we might look through PHI <a_1, ...>
425 when only a single copy edge is executable. */
426 if (TREE_CODE (old_val.value) == SSA_NAME
427 && TREE_CODE (new_val.value) == SSA_NAME)
428 return true;
429
430 /* Allow transitioning from a constant to a copy. */
431 if (is_gimple_min_invariant (old_val.value)
432 && TREE_CODE (new_val.value) == SSA_NAME)
433 return true;
434
43c92e0a 435 /* Allow transitioning from PHI <&x, not executable> == &x
436 to PHI <&x, &y> == common alignment. */
b7e55469 437 if (TREE_CODE (old_val.value) != INTEGER_CST
438 && TREE_CODE (new_val.value) == INTEGER_CST)
439 return true;
440
441 /* Bit-lattices have to agree in the still valid bits. */
442 if (TREE_CODE (old_val.value) == INTEGER_CST
443 && TREE_CODE (new_val.value) == INTEGER_CST)
5de9d3ed 444 return (wi::bit_and_not (wi::to_widest (old_val.value), new_val.mask)
445 == wi::bit_and_not (wi::to_widest (new_val.value), new_val.mask));
b7e55469 446
447 /* Otherwise constant values have to agree. */
0001b944 448 if (operand_equal_p (old_val.value, new_val.value, 0))
449 return true;
450
451 /* At least the kinds and types should agree now. */
452 if (TREE_CODE (old_val.value) != TREE_CODE (new_val.value)
453 || !types_compatible_p (TREE_TYPE (old_val.value),
454 TREE_TYPE (new_val.value)))
455 return false;
456
457 /* For floats and !HONOR_NANS allow transitions from (partial) NaN
458 to non-NaN. */
459 tree type = TREE_TYPE (new_val.value);
460 if (SCALAR_FLOAT_TYPE_P (type)
93633022 461 && !HONOR_NANS (type))
0001b944 462 {
463 if (REAL_VALUE_ISNAN (TREE_REAL_CST (old_val.value)))
464 return true;
465 }
466 else if (VECTOR_FLOAT_TYPE_P (type)
93633022 467 && !HONOR_NANS (type))
0001b944 468 {
0a2b1323 469 unsigned int count
470 = tree_vector_builder::binary_encoded_nelts (old_val.value,
471 new_val.value);
472 for (unsigned int i = 0; i < count; ++i)
0001b944 473 if (!REAL_VALUE_ISNAN
0a2b1323 474 (TREE_REAL_CST (VECTOR_CST_ENCODED_ELT (old_val.value, i)))
475 && !operand_equal_p (VECTOR_CST_ENCODED_ELT (old_val.value, i),
476 VECTOR_CST_ENCODED_ELT (new_val.value, i), 0))
0001b944 477 return false;
478 return true;
479 }
480 else if (COMPLEX_FLOAT_TYPE_P (type)
93633022 481 && !HONOR_NANS (type))
0001b944 482 {
483 if (!REAL_VALUE_ISNAN (TREE_REAL_CST (TREE_REALPART (old_val.value)))
484 && !operand_equal_p (TREE_REALPART (old_val.value),
485 TREE_REALPART (new_val.value), 0))
486 return false;
487 if (!REAL_VALUE_ISNAN (TREE_REAL_CST (TREE_IMAGPART (old_val.value)))
488 && !operand_equal_p (TREE_IMAGPART (old_val.value),
489 TREE_IMAGPART (new_val.value), 0))
490 return false;
491 return true;
492 }
493 return false;
b7e55469 494}
495
88dbf20f 496/* Set the value for variable VAR to NEW_VAL. Return true if the new
497 value is different from VAR's previous value. */
4ee9c684 498
41511585 499static bool
27de3d43 500set_lattice_value (tree var, ccp_prop_value_t *new_val)
4ee9c684 501{
6d0bf6d6 502 /* We can deal with old UNINITIALIZED values just fine here. */
9908fe4d 503 ccp_prop_value_t *old_val = &const_val[SSA_NAME_VERSION (var)];
88dbf20f 504
27de3d43 505 canonicalize_value (new_val);
b31eb493 506
b7e55469 507 /* We have to be careful to not go up the bitwise lattice
27de3d43 508 represented by the mask. Instead of dropping to VARYING
509 use the meet operator to retain a conservative value.
510 Missed optimizations like PR65851 makes this necessary.
511 It also ensures we converge to a stable lattice solution. */
d637695e 512 if (old_val->lattice_val != UNINITIALIZED)
27de3d43 513 ccp_lattice_meet (new_val, old_val);
bfa30570 514
27de3d43 515 gcc_checking_assert (valid_lattice_transition (*old_val, *new_val));
88dbf20f 516
b7e55469 517 /* If *OLD_VAL and NEW_VAL are the same, return false to inform the
518 caller that this was a non-transition. */
27de3d43 519 if (old_val->lattice_val != new_val->lattice_val
520 || (new_val->lattice_val == CONSTANT
521 && (TREE_CODE (new_val->value) != TREE_CODE (old_val->value)
522 || (TREE_CODE (new_val->value) == INTEGER_CST
523 && (new_val->mask != old_val->mask
bc1d3d97 524 || (wi::bit_and_not (wi::to_widest (old_val->value),
27de3d43 525 new_val->mask)
526 != wi::bit_and_not (wi::to_widest (new_val->value),
527 new_val->mask))))
528 || (TREE_CODE (new_val->value) != INTEGER_CST
529 && !operand_equal_p (new_val->value, old_val->value, 0)))))
4ee9c684 530 {
b7e55469 531 /* ??? We would like to delay creation of INTEGER_CSTs from
532 partially constants here. */
533
41511585 534 if (dump_file && (dump_flags & TDF_DETAILS))
535 {
27de3d43 536 dump_lattice_value (dump_file, "Lattice value changed to ", *new_val);
bfa30570 537 fprintf (dump_file, ". Adding SSA edges to worklist.\n");
41511585 538 }
539
27de3d43 540 *old_val = *new_val;
88dbf20f 541
27de3d43 542 gcc_assert (new_val->lattice_val != UNINITIALIZED);
bfa30570 543 return true;
4ee9c684 544 }
41511585 545
546 return false;
4ee9c684 547}
548
9908fe4d 549static ccp_prop_value_t get_value_for_expr (tree, bool);
550static ccp_prop_value_t bit_value_binop (enum tree_code, tree, tree, tree);
a54071b2 551void bit_value_binop (enum tree_code, signop, int, widest_int *, widest_int *,
552 signop, int, const widest_int &, const widest_int &,
553 signop, int, const widest_int &, const widest_int &);
b7e55469 554
5de9d3ed 555/* Return a widest_int that can be used for bitwise simplifications
b7e55469 556 from VAL. */
557
5de9d3ed 558static widest_int
9908fe4d 559value_to_wide_int (ccp_prop_value_t val)
b7e55469 560{
561 if (val.value
562 && TREE_CODE (val.value) == INTEGER_CST)
5de9d3ed 563 return wi::to_widest (val.value);
e913b5cd 564
565 return 0;
b7e55469 566}
567
568/* Return the value for the address expression EXPR based on alignment
569 information. */
6d0bf6d6 570
9908fe4d 571static ccp_prop_value_t
b7e55469 572get_value_from_alignment (tree expr)
573{
f8abb542 574 tree type = TREE_TYPE (expr);
9908fe4d 575 ccp_prop_value_t val;
f8abb542 576 unsigned HOST_WIDE_INT bitpos;
577 unsigned int align;
b7e55469 578
579 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
580
59da1bcd 581 get_pointer_alignment_1 (expr, &align, &bitpos);
1c8ecf8d 582 val.mask = wi::bit_and_not
583 (POINTER_TYPE_P (type) || TYPE_UNSIGNED (type)
584 ? wi::mask <widest_int> (TYPE_PRECISION (type), false)
585 : -1,
586 align / BITS_PER_UNIT - 1);
c90d2c17 587 val.lattice_val
588 = wi::sext (val.mask, TYPE_PRECISION (type)) == -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 {
1941149a 608 ccp_prop_value_t *val_ = get_value (expr);
609 if (val_)
610 val = *val_;
611 else
612 {
613 val.lattice_val = VARYING;
614 val.value = NULL_TREE;
615 val.mask = -1;
616 }
b7e55469 617 if (for_bits_p
618 && val.lattice_val == CONSTANT
619 && TREE_CODE (val.value) == ADDR_EXPR)
620 val = get_value_from_alignment (val.value);
bc1d3d97 621 /* Fall back to a copy value. */
622 if (!for_bits_p
623 && val.lattice_val == VARYING
624 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (expr))
625 {
626 val.lattice_val = CONSTANT;
627 val.value = expr;
628 val.mask = -1;
629 }
b7e55469 630 }
631 else if (is_gimple_min_invariant (expr)
131a1c2f 632 && (!for_bits_p || TREE_CODE (expr) == INTEGER_CST))
6d0bf6d6 633 {
634 val.lattice_val = CONSTANT;
635 val.value = expr;
e913b5cd 636 val.mask = 0;
f5faab84 637 canonicalize_value (&val);
6d0bf6d6 638 }
b7e55469 639 else if (TREE_CODE (expr) == ADDR_EXPR)
640 val = get_value_from_alignment (expr);
6d0bf6d6 641 else
642 {
643 val.lattice_val = VARYING;
09b2913a 644 val.mask = -1;
6d0bf6d6 645 val.value = NULL_TREE;
646 }
911a6ef1 647
648 if (val.lattice_val == VARYING
649 && TYPE_UNSIGNED (TREE_TYPE (expr)))
650 val.mask = wi::zext (val.mask, TYPE_PRECISION (TREE_TYPE (expr)));
651
6d0bf6d6 652 return val;
653}
654
88dbf20f 655/* Return the likely CCP lattice value for STMT.
4ee9c684 656
41511585 657 If STMT has no operands, then return CONSTANT.
4ee9c684 658
d61b9af3 659 Else if undefinedness of operands of STMT cause its value to be
660 undefined, then return UNDEFINED.
4ee9c684 661
41511585 662 Else if any operands of STMT are constants, then return CONSTANT.
4ee9c684 663
41511585 664 Else return VARYING. */
4ee9c684 665
88dbf20f 666static ccp_lattice_t
42acab1c 667likely_value (gimple *stmt)
41511585 668{
d61b9af3 669 bool has_constant_operand, has_undefined_operand, all_undefined_operands;
a8a0d56e 670 bool has_nsa_operand;
41511585 671 tree use;
672 ssa_op_iter iter;
8edeb88b 673 unsigned i;
4ee9c684 674
590c3166 675 enum gimple_code code = gimple_code (stmt);
75a70cf9 676
677 /* This function appears to be called only for assignments, calls,
678 conditionals, and switches, due to the logic in visit_stmt. */
679 gcc_assert (code == GIMPLE_ASSIGN
680 || code == GIMPLE_CALL
681 || code == GIMPLE_COND
682 || code == GIMPLE_SWITCH);
88dbf20f 683
684 /* If the statement has volatile operands, it won't fold to a
685 constant value. */
75a70cf9 686 if (gimple_has_volatile_ops (stmt))
88dbf20f 687 return VARYING;
688
75a70cf9 689 /* Arrive here for more complex cases. */
bfa30570 690 has_constant_operand = false;
d61b9af3 691 has_undefined_operand = false;
692 all_undefined_operands = true;
a8a0d56e 693 has_nsa_operand = false;
8edeb88b 694 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
41511585 695 {
9908fe4d 696 ccp_prop_value_t *val = get_value (use);
41511585 697
1941149a 698 if (val && val->lattice_val == UNDEFINED)
d61b9af3 699 has_undefined_operand = true;
700 else
701 all_undefined_operands = false;
88dbf20f 702
1941149a 703 if (val && val->lattice_val == CONSTANT)
bfa30570 704 has_constant_operand = true;
a8a0d56e 705
706 if (SSA_NAME_IS_DEFAULT_DEF (use)
707 || !prop_simulate_again_p (SSA_NAME_DEF_STMT (use)))
708 has_nsa_operand = true;
4ee9c684 709 }
41511585 710
dd277d48 711 /* There may be constants in regular rhs operands. For calls we
712 have to ignore lhs, fndecl and static chain, otherwise only
713 the lhs. */
714 for (i = (is_gimple_call (stmt) ? 2 : 0) + gimple_has_lhs (stmt);
8edeb88b 715 i < gimple_num_ops (stmt); ++i)
716 {
717 tree op = gimple_op (stmt, i);
718 if (!op || TREE_CODE (op) == SSA_NAME)
719 continue;
720 if (is_gimple_min_invariant (op))
721 has_constant_operand = true;
722 }
723
87c0a9fc 724 if (has_constant_operand)
725 all_undefined_operands = false;
726
3d483a94 727 if (has_undefined_operand
728 && code == GIMPLE_CALL
729 && gimple_call_internal_p (stmt))
730 switch (gimple_call_internal_fn (stmt))
731 {
732 /* These 3 builtins use the first argument just as a magic
733 way how to find out a decl uid. */
734 case IFN_GOMP_SIMD_LANE:
735 case IFN_GOMP_SIMD_VF:
736 case IFN_GOMP_SIMD_LAST_LANE:
737 has_undefined_operand = false;
738 break;
739 default:
740 break;
741 }
742
d61b9af3 743 /* If the operation combines operands like COMPLEX_EXPR make sure to
744 not mark the result UNDEFINED if only one part of the result is
745 undefined. */
75a70cf9 746 if (has_undefined_operand && all_undefined_operands)
d61b9af3 747 return UNDEFINED;
75a70cf9 748 else if (code == GIMPLE_ASSIGN && has_undefined_operand)
d61b9af3 749 {
75a70cf9 750 switch (gimple_assign_rhs_code (stmt))
d61b9af3 751 {
752 /* Unary operators are handled with all_undefined_operands. */
753 case PLUS_EXPR:
754 case MINUS_EXPR:
d61b9af3 755 case POINTER_PLUS_EXPR:
c00c8b9a 756 case BIT_XOR_EXPR:
d61b9af3 757 /* Not MIN_EXPR, MAX_EXPR. One VARYING operand may be selected.
758 Not bitwise operators, one VARYING operand may specify the
c00c8b9a 759 result completely.
760 Not logical operators for the same reason, apart from XOR.
05a936a0 761 Not COMPLEX_EXPR as one VARYING operand makes the result partly
762 not UNDEFINED. Not *DIV_EXPR, comparisons and shifts because
763 the undefined operand may be promoted. */
d61b9af3 764 return UNDEFINED;
765
43c92e0a 766 case ADDR_EXPR:
767 /* If any part of an address is UNDEFINED, like the index
768 of an ARRAY_EXPR, then treat the result as UNDEFINED. */
769 return UNDEFINED;
770
d61b9af3 771 default:
772 ;
773 }
774 }
775 /* If there was an UNDEFINED operand but the result may be not UNDEFINED
c91fedc5 776 fall back to CONSTANT. During iteration UNDEFINED may still drop
777 to CONSTANT. */
d61b9af3 778 if (has_undefined_operand)
c91fedc5 779 return CONSTANT;
d61b9af3 780
8edeb88b 781 /* We do not consider virtual operands here -- load from read-only
782 memory may have only VARYING virtual operands, but still be
a8a0d56e 783 constant. Also we can combine the stmt with definitions from
784 operands whose definitions are not simulated again. */
bfa30570 785 if (has_constant_operand
a8a0d56e 786 || has_nsa_operand
8edeb88b 787 || gimple_references_memory_p (stmt))
88dbf20f 788 return CONSTANT;
789
bfa30570 790 return VARYING;
4ee9c684 791}
792
bfa30570 793/* Returns true if STMT cannot be constant. */
794
795static bool
42acab1c 796surely_varying_stmt_p (gimple *stmt)
bfa30570 797{
798 /* If the statement has operands that we cannot handle, it cannot be
799 constant. */
75a70cf9 800 if (gimple_has_volatile_ops (stmt))
bfa30570 801 return true;
802
f257af64 803 /* If it is a call and does not return a value or is not a
237e78b1 804 builtin and not an indirect call or a call to function with
805 assume_aligned/alloc_align attribute, it is varying. */
75a70cf9 806 if (is_gimple_call (stmt))
f257af64 807 {
237e78b1 808 tree fndecl, fntype = gimple_call_fntype (stmt);
f257af64 809 if (!gimple_call_lhs (stmt)
810 || ((fndecl = gimple_call_fndecl (stmt)) != NULL_TREE
a0e9bfbb 811 && !fndecl_built_in_p (fndecl)
237e78b1 812 && !lookup_attribute ("assume_aligned",
813 TYPE_ATTRIBUTES (fntype))
814 && !lookup_attribute ("alloc_align",
815 TYPE_ATTRIBUTES (fntype))))
f257af64 816 return true;
817 }
bfa30570 818
8edeb88b 819 /* Any other store operation is not interesting. */
dd277d48 820 else if (gimple_vdef (stmt))
8edeb88b 821 return true;
822
bfa30570 823 /* Anything other than assignments and conditional jumps are not
824 interesting for CCP. */
75a70cf9 825 if (gimple_code (stmt) != GIMPLE_ASSIGN
f257af64 826 && gimple_code (stmt) != GIMPLE_COND
827 && gimple_code (stmt) != GIMPLE_SWITCH
828 && gimple_code (stmt) != GIMPLE_CALL)
bfa30570 829 return true;
830
831 return false;
832}
4ee9c684 833
41511585 834/* Initialize local data structures for CCP. */
4ee9c684 835
836static void
41511585 837ccp_initialize (void)
4ee9c684 838{
41511585 839 basic_block bb;
4ee9c684 840
285df01b 841 n_const_val = num_ssa_names;
9908fe4d 842 const_val = XCNEWVEC (ccp_prop_value_t, n_const_val);
4ee9c684 843
41511585 844 /* Initialize simulation flags for PHI nodes and statements. */
fc00614f 845 FOR_EACH_BB_FN (bb, cfun)
4ee9c684 846 {
75a70cf9 847 gimple_stmt_iterator i;
4ee9c684 848
75a70cf9 849 for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
41511585 850 {
42acab1c 851 gimple *stmt = gsi_stmt (i);
2193544e 852 bool is_varying;
853
854 /* If the statement is a control insn, then we do not
855 want to avoid simulating the statement once. Failure
856 to do so means that those edges will never get added. */
857 if (stmt_ends_bb_p (stmt))
858 is_varying = false;
859 else
860 is_varying = surely_varying_stmt_p (stmt);
4ee9c684 861
bfa30570 862 if (is_varying)
41511585 863 {
88dbf20f 864 tree def;
865 ssa_op_iter iter;
866
867 /* If the statement will not produce a constant, mark
868 all its outputs VARYING. */
869 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
8edeb88b 870 set_value_varying (def);
41511585 871 }
75a70cf9 872 prop_set_simulate_again (stmt, !is_varying);
41511585 873 }
4ee9c684 874 }
875
75a70cf9 876 /* Now process PHI nodes. We never clear the simulate_again flag on
877 phi nodes, since we do not know which edges are executable yet,
878 except for phi nodes for virtual operands when we do not do store ccp. */
fc00614f 879 FOR_EACH_BB_FN (bb, cfun)
4ee9c684 880 {
1a91d914 881 gphi_iterator i;
41511585 882
75a70cf9 883 for (i = gsi_start_phis (bb); !gsi_end_p (i); gsi_next (&i))
884 {
1a91d914 885 gphi *phi = i.phi ();
75a70cf9 886
7c782c9b 887 if (virtual_operand_p (gimple_phi_result (phi)))
75a70cf9 888 prop_set_simulate_again (phi, false);
bfa30570 889 else
75a70cf9 890 prop_set_simulate_again (phi, true);
41511585 891 }
4ee9c684 892 }
41511585 893}
4ee9c684 894
43fb76c1 895/* Debug count support. Reset the values of ssa names
896 VARYING when the total number ssa names analyzed is
897 beyond the debug count specified. */
898
899static void
900do_dbg_cnt (void)
901{
902 unsigned i;
903 for (i = 0; i < num_ssa_names; i++)
904 {
905 if (!dbg_cnt (ccp))
906 {
907 const_val[i].lattice_val = VARYING;
e913b5cd 908 const_val[i].mask = -1;
43fb76c1 909 const_val[i].value = NULL_TREE;
910 }
911 }
912}
913
4ee9c684 914
b08e7364 915/* We want to provide our own GET_VALUE and FOLD_STMT virtual methods. */
916class ccp_folder : public substitute_and_fold_engine
917{
918 public:
919 tree get_value (tree) FINAL OVERRIDE;
920 bool fold_stmt (gimple_stmt_iterator *) FINAL OVERRIDE;
921};
922
923/* This method just wraps GET_CONSTANT_VALUE for now. Over time
924 naked calls to GET_CONSTANT_VALUE should be eliminated in favor
925 of calling member functions. */
926
927tree
928ccp_folder::get_value (tree op)
929{
930 return get_constant_value (op);
931}
932
88dbf20f 933/* Do final substitution of propagated values, cleanup the flowgraph and
d0322b7d 934 free allocated storage. If NONZERO_P, record nonzero bits.
4ee9c684 935
33a34f1e 936 Return TRUE when something was optimized. */
937
938static bool
a54071b2 939ccp_finalize (bool nonzero_p)
4ee9c684 940{
43fb76c1 941 bool something_changed;
153c3b50 942 unsigned i;
f211616e 943 tree name;
43fb76c1 944
945 do_dbg_cnt ();
153c3b50 946
947 /* Derive alignment and misalignment information from partially
fc08b993 948 constant pointers in the lattice or nonzero bits from partially
949 constant integers. */
f211616e 950 FOR_EACH_SSA_NAME (i, name, cfun)
153c3b50 951 {
9908fe4d 952 ccp_prop_value_t *val;
153c3b50 953 unsigned int tem, align;
954
f211616e 955 if (!POINTER_TYPE_P (TREE_TYPE (name))
956 && (!INTEGRAL_TYPE_P (TREE_TYPE (name))
957 /* Don't record nonzero bits before IPA to avoid
958 using too much memory. */
959 || !nonzero_p))
153c3b50 960 continue;
961
962 val = get_value (name);
963 if (val->lattice_val != CONSTANT
a54071b2 964 || TREE_CODE (val->value) != INTEGER_CST
965 || val->mask == 0)
153c3b50 966 continue;
967
fc08b993 968 if (POINTER_TYPE_P (TREE_TYPE (name)))
969 {
970 /* Trailing mask bits specify the alignment, trailing value
971 bits the misalignment. */
aeb682a2 972 tem = val->mask.to_uhwi ();
ac29ece2 973 align = least_bit_hwi (tem);
fc08b993 974 if (align > 1)
975 set_ptr_info_alignment (get_ptr_info (name), align,
f9ae6f95 976 (TREE_INT_CST_LOW (val->value)
fc08b993 977 & (align - 1)));
978 }
979 else
980 {
9c1be15e 981 unsigned int precision = TYPE_PRECISION (TREE_TYPE (val->value));
e3d0f65c 982 wide_int nonzero_bits
983 = (wide_int::from (val->mask, precision, UNSIGNED)
984 | wi::to_wide (val->value));
fc08b993 985 nonzero_bits &= get_nonzero_bits (name);
986 set_nonzero_bits (name, nonzero_bits);
987 }
153c3b50 988 }
989
88dbf20f 990 /* Perform substitutions based on the known constant values. */
b08e7364 991 class ccp_folder ccp_folder;
992 something_changed = ccp_folder.substitute_and_fold ();
4ee9c684 993
88dbf20f 994 free (const_val);
e004838d 995 const_val = NULL;
7f38a6aa 996 return something_changed;
4ee9c684 997}
998
999
88dbf20f 1000/* Compute the meet operator between *VAL1 and *VAL2. Store the result
1001 in VAL1.
1002
1003 any M UNDEFINED = any
88dbf20f 1004 any M VARYING = VARYING
1005 Ci M Cj = Ci if (i == j)
1006 Ci M Cj = VARYING if (i != j)
bfa30570 1007 */
4ee9c684 1008
1009static void
27de3d43 1010ccp_lattice_meet (ccp_prop_value_t *val1, ccp_prop_value_t *val2)
4ee9c684 1011{
fc6cc27b 1012 if (val1->lattice_val == UNDEFINED
1013 /* For UNDEFINED M SSA we can't always SSA because its definition
1014 may not dominate the PHI node. Doing optimistic copy propagation
1015 also causes a lot of gcc.dg/uninit-pred*.c FAILs. */
1016 && (val2->lattice_val != CONSTANT
1017 || TREE_CODE (val2->value) != SSA_NAME))
4ee9c684 1018 {
88dbf20f 1019 /* UNDEFINED M any = any */
1020 *val1 = *val2;
41511585 1021 }
fc6cc27b 1022 else if (val2->lattice_val == UNDEFINED
1023 /* See above. */
1024 && (val1->lattice_val != CONSTANT
1025 || TREE_CODE (val1->value) != SSA_NAME))
92481a4d 1026 {
88dbf20f 1027 /* any M UNDEFINED = any
1028 Nothing to do. VAL1 already contains the value we want. */
1029 ;
92481a4d 1030 }
88dbf20f 1031 else if (val1->lattice_val == VARYING
1032 || val2->lattice_val == VARYING)
41511585 1033 {
88dbf20f 1034 /* any M VARYING = VARYING. */
1035 val1->lattice_val = VARYING;
e913b5cd 1036 val1->mask = -1;
88dbf20f 1037 val1->value = NULL_TREE;
41511585 1038 }
b7e55469 1039 else if (val1->lattice_val == CONSTANT
1040 && val2->lattice_val == CONSTANT
1041 && TREE_CODE (val1->value) == INTEGER_CST
1042 && TREE_CODE (val2->value) == INTEGER_CST)
1043 {
1044 /* Ci M Cj = Ci if (i == j)
1045 Ci M Cj = VARYING if (i != j)
1046
1047 For INTEGER_CSTs mask unequal bits. If no equal bits remain,
1048 drop to varying. */
e913b5cd 1049 val1->mask = (val1->mask | val2->mask
5de9d3ed 1050 | (wi::to_widest (val1->value)
1051 ^ wi::to_widest (val2->value)));
c90d2c17 1052 if (wi::sext (val1->mask, TYPE_PRECISION (TREE_TYPE (val1->value))) == -1)
b7e55469 1053 {
1054 val1->lattice_val = VARYING;
1055 val1->value = NULL_TREE;
1056 }
1057 }
88dbf20f 1058 else if (val1->lattice_val == CONSTANT
1059 && val2->lattice_val == CONSTANT
27de3d43 1060 && operand_equal_p (val1->value, val2->value, 0))
41511585 1061 {
88dbf20f 1062 /* Ci M Cj = Ci if (i == j)
1063 Ci M Cj = VARYING if (i != j)
1064
b7e55469 1065 VAL1 already contains the value we want for equivalent values. */
1066 }
1067 else if (val1->lattice_val == CONSTANT
1068 && val2->lattice_val == CONSTANT
1069 && (TREE_CODE (val1->value) == ADDR_EXPR
1070 || TREE_CODE (val2->value) == ADDR_EXPR))
1071 {
1072 /* When not equal addresses are involved try meeting for
1073 alignment. */
9908fe4d 1074 ccp_prop_value_t tem = *val2;
b7e55469 1075 if (TREE_CODE (val1->value) == ADDR_EXPR)
1076 *val1 = get_value_for_expr (val1->value, true);
1077 if (TREE_CODE (val2->value) == ADDR_EXPR)
1078 tem = get_value_for_expr (val2->value, true);
27de3d43 1079 ccp_lattice_meet (val1, &tem);
41511585 1080 }
1081 else
1082 {
88dbf20f 1083 /* Any other combination is VARYING. */
1084 val1->lattice_val = VARYING;
e913b5cd 1085 val1->mask = -1;
88dbf20f 1086 val1->value = NULL_TREE;
41511585 1087 }
4ee9c684 1088}
1089
1090
41511585 1091/* Loop through the PHI_NODE's parameters for BLOCK and compare their
1092 lattice values to determine PHI_NODE's lattice value. The value of a
88dbf20f 1093 PHI node is determined calling ccp_lattice_meet with all the arguments
41511585 1094 of the PHI node that are incoming via executable edges. */
4ee9c684 1095
6bd87d95 1096enum ssa_prop_result
1097ccp_propagate::visit_phi (gphi *phi)
4ee9c684 1098{
75a70cf9 1099 unsigned i;
bc1d3d97 1100 ccp_prop_value_t new_val;
4ee9c684 1101
41511585 1102 if (dump_file && (dump_flags & TDF_DETAILS))
4ee9c684 1103 {
41511585 1104 fprintf (dump_file, "\nVisiting PHI node: ");
75a70cf9 1105 print_gimple_stmt (dump_file, phi, 0, dump_flags);
4ee9c684 1106 }
4ee9c684 1107
bc1d3d97 1108 new_val.lattice_val = UNDEFINED;
1109 new_val.value = NULL_TREE;
1110 new_val.mask = 0;
4ee9c684 1111
bc1d3d97 1112 bool first = true;
83c60000 1113 bool non_exec_edge = false;
75a70cf9 1114 for (i = 0; i < gimple_phi_num_args (phi); i++)
41511585 1115 {
88dbf20f 1116 /* Compute the meet operator over all the PHI arguments flowing
1117 through executable edges. */
75a70cf9 1118 edge e = gimple_phi_arg_edge (phi, i);
4ee9c684 1119
41511585 1120 if (dump_file && (dump_flags & TDF_DETAILS))
1121 {
1122 fprintf (dump_file,
fa31eb45 1123 "\tArgument #%d (%d -> %d %sexecutable)\n",
41511585 1124 i, e->src->index, e->dest->index,
1125 (e->flags & EDGE_EXECUTABLE) ? "" : "not ");
1126 }
1127
1128 /* If the incoming edge is executable, Compute the meet operator for
1129 the existing value of the PHI node and the current PHI argument. */
1130 if (e->flags & EDGE_EXECUTABLE)
1131 {
75a70cf9 1132 tree arg = gimple_phi_arg (phi, i)->def;
9908fe4d 1133 ccp_prop_value_t arg_val = get_value_for_expr (arg, false);
4ee9c684 1134
bc1d3d97 1135 if (first)
1136 {
1137 new_val = arg_val;
1138 first = false;
1139 }
1140 else
27de3d43 1141 ccp_lattice_meet (&new_val, &arg_val);
4ee9c684 1142
41511585 1143 if (dump_file && (dump_flags & TDF_DETAILS))
1144 {
1145 fprintf (dump_file, "\t");
88dbf20f 1146 print_generic_expr (dump_file, arg, dump_flags);
1147 dump_lattice_value (dump_file, "\tValue: ", arg_val);
41511585 1148 fprintf (dump_file, "\n");
1149 }
4ee9c684 1150
41511585 1151 if (new_val.lattice_val == VARYING)
1152 break;
1153 }
83c60000 1154 else
1155 non_exec_edge = true;
1156 }
1157
1158 /* In case there were non-executable edges and the value is a copy
1159 make sure its definition dominates the PHI node. */
1160 if (non_exec_edge
1161 && new_val.lattice_val == CONSTANT
1162 && TREE_CODE (new_val.value) == SSA_NAME
1163 && ! SSA_NAME_IS_DEFAULT_DEF (new_val.value)
1164 && ! dominated_by_p (CDI_DOMINATORS, gimple_bb (phi),
1165 gimple_bb (SSA_NAME_DEF_STMT (new_val.value))))
1166 {
1167 new_val.lattice_val = VARYING;
1168 new_val.value = NULL_TREE;
1169 new_val.mask = -1;
41511585 1170 }
4ee9c684 1171
1172 if (dump_file && (dump_flags & TDF_DETAILS))
41511585 1173 {
1174 dump_lattice_value (dump_file, "\n PHI node value: ", new_val);
1175 fprintf (dump_file, "\n\n");
1176 }
1177
bfa30570 1178 /* Make the transition to the new value. */
27de3d43 1179 if (set_lattice_value (gimple_phi_result (phi), &new_val))
41511585 1180 {
1181 if (new_val.lattice_val == VARYING)
1182 return SSA_PROP_VARYING;
1183 else
1184 return SSA_PROP_INTERESTING;
1185 }
1186 else
1187 return SSA_PROP_NOT_INTERESTING;
4ee9c684 1188}
1189
15d138c9 1190/* Return the constant value for OP or OP otherwise. */
00f4f705 1191
1192static tree
15d138c9 1193valueize_op (tree op)
00f4f705 1194{
00f4f705 1195 if (TREE_CODE (op) == SSA_NAME)
1196 {
15d138c9 1197 tree tem = get_constant_value (op);
1198 if (tem)
1199 return tem;
00f4f705 1200 }
1201 return op;
1202}
1203
4e1b3545 1204/* Return the constant value for OP, but signal to not follow SSA
1205 edges if the definition may be simulated again. */
1206
1207static tree
1208valueize_op_1 (tree op)
1209{
1210 if (TREE_CODE (op) == SSA_NAME)
1211 {
4e1b3545 1212 /* If the definition may be simulated again we cannot follow
1213 this SSA edge as the SSA propagator does not necessarily
1214 re-visit the use. */
42acab1c 1215 gimple *def_stmt = SSA_NAME_DEF_STMT (op);
2160d5ba 1216 if (!gimple_nop_p (def_stmt)
1217 && prop_simulate_again_p (def_stmt))
4e1b3545 1218 return NULL_TREE;
bc8fa068 1219 tree tem = get_constant_value (op);
1220 if (tem)
1221 return tem;
4e1b3545 1222 }
1223 return op;
1224}
1225
41511585 1226/* CCP specific front-end to the non-destructive constant folding
1227 routines.
4ee9c684 1228
1229 Attempt to simplify the RHS of STMT knowing that one or more
1230 operands are constants.
1231
1232 If simplification is possible, return the simplified RHS,
75a70cf9 1233 otherwise return the original RHS or NULL_TREE. */
4ee9c684 1234
1235static tree
42acab1c 1236ccp_fold (gimple *stmt)
4ee9c684 1237{
389dd41b 1238 location_t loc = gimple_location (stmt);
75a70cf9 1239 switch (gimple_code (stmt))
88dbf20f 1240 {
75a70cf9 1241 case GIMPLE_COND:
1242 {
1243 /* Handle comparison operators that can appear in GIMPLE form. */
15d138c9 1244 tree op0 = valueize_op (gimple_cond_lhs (stmt));
1245 tree op1 = valueize_op (gimple_cond_rhs (stmt));
75a70cf9 1246 enum tree_code code = gimple_cond_code (stmt);
389dd41b 1247 return fold_binary_loc (loc, code, boolean_type_node, op0, op1);
75a70cf9 1248 }
4ee9c684 1249
75a70cf9 1250 case GIMPLE_SWITCH:
1251 {
15d138c9 1252 /* Return the constant switch index. */
1a91d914 1253 return valueize_op (gimple_switch_index (as_a <gswitch *> (stmt)));
75a70cf9 1254 }
912f109f 1255
1d0b727d 1256 case GIMPLE_ASSIGN:
1257 case GIMPLE_CALL:
4e1b3545 1258 return gimple_fold_stmt_to_constant_1 (stmt,
1259 valueize_op, valueize_op_1);
04236c3a 1260
8782adcf 1261 default:
1d0b727d 1262 gcc_unreachable ();
8782adcf 1263 }
8782adcf 1264}
75a70cf9 1265
b7e55469 1266/* Apply the operation CODE in type TYPE to the value, mask pair
1267 RVAL and RMASK representing a value of type RTYPE and set
1268 the value, mask pair *VAL and *MASK to the result. */
1269
a54071b2 1270void
1271bit_value_unop (enum tree_code code, signop type_sgn, int type_precision,
1272 widest_int *val, widest_int *mask,
1273 signop rtype_sgn, int rtype_precision,
1274 const widest_int &rval, const widest_int &rmask)
b7e55469 1275{
1276 switch (code)
1277 {
1278 case BIT_NOT_EXPR:
1279 *mask = rmask;
cf8f0e63 1280 *val = ~rval;
b7e55469 1281 break;
1282
1283 case NEGATE_EXPR:
1284 {
5de9d3ed 1285 widest_int temv, temm;
b7e55469 1286 /* Return ~rval + 1. */
a54071b2 1287 bit_value_unop (BIT_NOT_EXPR, type_sgn, type_precision, &temv, &temm,
1288 type_sgn, type_precision, rval, rmask);
1289 bit_value_binop (PLUS_EXPR, type_sgn, type_precision, val, mask,
1290 type_sgn, type_precision, temv, temm,
1291 type_sgn, type_precision, 1, 0);
b7e55469 1292 break;
1293 }
1294
1295 CASE_CONVERT:
1296 {
b7e55469 1297 /* First extend mask and value according to the original type. */
a54071b2 1298 *mask = wi::ext (rmask, rtype_precision, rtype_sgn);
1299 *val = wi::ext (rval, rtype_precision, rtype_sgn);
b7e55469 1300
1301 /* Then extend mask and value according to the target type. */
a54071b2 1302 *mask = wi::ext (*mask, type_precision, type_sgn);
1303 *val = wi::ext (*val, type_precision, type_sgn);
b7e55469 1304 break;
1305 }
1306
1307 default:
e913b5cd 1308 *mask = -1;
b7e55469 1309 break;
1310 }
1311}
1312
1313/* Apply the operation CODE in type TYPE to the value, mask pairs
1314 R1VAL, R1MASK and R2VAL, R2MASK representing a values of type R1TYPE
1315 and R2TYPE and set the value, mask pair *VAL and *MASK to the result. */
1316
a54071b2 1317void
1318bit_value_binop (enum tree_code code, signop sgn, int width,
1319 widest_int *val, widest_int *mask,
1320 signop r1type_sgn, int r1type_precision,
1321 const widest_int &r1val, const widest_int &r1mask,
1322 signop r2type_sgn, int r2type_precision,
1323 const widest_int &r2val, const widest_int &r2mask)
b7e55469 1324{
10c3fe8d 1325 bool swap_p = false;
e913b5cd 1326
1327 /* Assume we'll get a constant result. Use an initial non varying
1328 value, we fall back to varying in the end if necessary. */
1329 *mask = -1;
1330
b7e55469 1331 switch (code)
1332 {
1333 case BIT_AND_EXPR:
1334 /* The mask is constant where there is a known not
1335 set bit, (m1 | m2) & ((v1 | m1) & (v2 | m2)) */
cf8f0e63 1336 *mask = (r1mask | r2mask) & (r1val | r1mask) & (r2val | r2mask);
1337 *val = r1val & r2val;
b7e55469 1338 break;
1339
1340 case BIT_IOR_EXPR:
1341 /* The mask is constant where there is a known
1342 set bit, (m1 | m2) & ~((v1 & ~m1) | (v2 & ~m2)). */
1c8ecf8d 1343 *mask = wi::bit_and_not (r1mask | r2mask,
1344 wi::bit_and_not (r1val, r1mask)
1345 | wi::bit_and_not (r2val, r2mask));
cf8f0e63 1346 *val = r1val | r2val;
b7e55469 1347 break;
1348
1349 case BIT_XOR_EXPR:
1350 /* m1 | m2 */
cf8f0e63 1351 *mask = r1mask | r2mask;
1352 *val = r1val ^ r2val;
b7e55469 1353 break;
1354
1355 case LROTATE_EXPR:
1356 case RROTATE_EXPR:
796b6678 1357 if (r2mask == 0)
b7e55469 1358 {
28e557ef 1359 widest_int shift = r2val;
796b6678 1360 if (shift == 0)
e913b5cd 1361 {
1362 *mask = r1mask;
1363 *val = r1val;
1364 }
ddb1be65 1365 else
e913b5cd 1366 {
796b6678 1367 if (wi::neg_p (shift))
e913b5cd 1368 {
1369 shift = -shift;
1370 if (code == RROTATE_EXPR)
1371 code = LROTATE_EXPR;
1372 else
1373 code = RROTATE_EXPR;
1374 }
1375 if (code == RROTATE_EXPR)
1376 {
796b6678 1377 *mask = wi::rrotate (r1mask, shift, width);
1378 *val = wi::rrotate (r1val, shift, width);
e913b5cd 1379 }
1380 else
1381 {
796b6678 1382 *mask = wi::lrotate (r1mask, shift, width);
1383 *val = wi::lrotate (r1val, shift, width);
e913b5cd 1384 }
1385 }
b7e55469 1386 }
1387 break;
1388
1389 case LSHIFT_EXPR:
1390 case RSHIFT_EXPR:
1391 /* ??? We can handle partially known shift counts if we know
1392 its sign. That way we can tell that (x << (y | 8)) & 255
1393 is zero. */
796b6678 1394 if (r2mask == 0)
b7e55469 1395 {
28e557ef 1396 widest_int shift = r2val;
796b6678 1397 if (shift == 0)
b7e55469 1398 {
1399 *mask = r1mask;
1400 *val = r1val;
1401 }
ddb1be65 1402 else
e913b5cd 1403 {
796b6678 1404 if (wi::neg_p (shift))
e913b5cd 1405 {
1406 shift = -shift;
1407 if (code == RSHIFT_EXPR)
1408 code = LSHIFT_EXPR;
1409 else
1410 code = RSHIFT_EXPR;
1411 }
1412 if (code == RSHIFT_EXPR)
1413 {
45639915 1414 *mask = wi::rshift (wi::ext (r1mask, width, sgn), shift, sgn);
1415 *val = wi::rshift (wi::ext (r1val, width, sgn), shift, sgn);
e913b5cd 1416 }
1417 else
1418 {
9fdc1ed4 1419 *mask = wi::ext (r1mask << shift, width, sgn);
1420 *val = wi::ext (r1val << shift, width, sgn);
e913b5cd 1421 }
1422 }
b7e55469 1423 }
1424 break;
1425
1426 case PLUS_EXPR:
1427 case POINTER_PLUS_EXPR:
1428 {
b7e55469 1429 /* Do the addition with unknown bits set to zero, to give carry-ins of
1430 zero wherever possible. */
1c8ecf8d 1431 widest_int lo = (wi::bit_and_not (r1val, r1mask)
1432 + wi::bit_and_not (r2val, r2mask));
796b6678 1433 lo = wi::ext (lo, width, sgn);
b7e55469 1434 /* Do the addition with unknown bits set to one, to give carry-ins of
1435 one wherever possible. */
ab2c1de8 1436 widest_int hi = (r1val | r1mask) + (r2val | r2mask);
796b6678 1437 hi = wi::ext (hi, width, sgn);
b7e55469 1438 /* Each bit in the result is known if (a) the corresponding bits in
1439 both inputs are known, and (b) the carry-in to that bit position
1440 is known. We can check condition (b) by seeing if we got the same
1441 result with minimised carries as with maximised carries. */
cf8f0e63 1442 *mask = r1mask | r2mask | (lo ^ hi);
796b6678 1443 *mask = wi::ext (*mask, width, sgn);
b7e55469 1444 /* It shouldn't matter whether we choose lo or hi here. */
1445 *val = lo;
1446 break;
1447 }
1448
1449 case MINUS_EXPR:
1450 {
5de9d3ed 1451 widest_int temv, temm;
a54071b2 1452 bit_value_unop (NEGATE_EXPR, r2type_sgn, r2type_precision, &temv, &temm,
1453 r2type_sgn, r2type_precision, r2val, r2mask);
1454 bit_value_binop (PLUS_EXPR, sgn, width, val, mask,
1455 r1type_sgn, r1type_precision, r1val, r1mask,
1456 r2type_sgn, r2type_precision, temv, temm);
b7e55469 1457 break;
1458 }
1459
1460 case MULT_EXPR:
1461 {
1462 /* Just track trailing zeros in both operands and transfer
1463 them to the other. */
796b6678 1464 int r1tz = wi::ctz (r1val | r1mask);
1465 int r2tz = wi::ctz (r2val | r2mask);
e913b5cd 1466 if (r1tz + r2tz >= width)
b7e55469 1467 {
e913b5cd 1468 *mask = 0;
1469 *val = 0;
b7e55469 1470 }
1471 else if (r1tz + r2tz > 0)
1472 {
5de9d3ed 1473 *mask = wi::ext (wi::mask <widest_int> (r1tz + r2tz, true),
796b6678 1474 width, sgn);
e913b5cd 1475 *val = 0;
b7e55469 1476 }
1477 break;
1478 }
1479
1480 case EQ_EXPR:
1481 case NE_EXPR:
1482 {
5de9d3ed 1483 widest_int m = r1mask | r2mask;
1c8ecf8d 1484 if (wi::bit_and_not (r1val, m) != wi::bit_and_not (r2val, m))
b7e55469 1485 {
e913b5cd 1486 *mask = 0;
1487 *val = ((code == EQ_EXPR) ? 0 : 1);
b7e55469 1488 }
1489 else
1490 {
1491 /* We know the result of a comparison is always one or zero. */
e913b5cd 1492 *mask = 1;
1493 *val = 0;
b7e55469 1494 }
1495 break;
1496 }
1497
1498 case GE_EXPR:
1499 case GT_EXPR:
10c3fe8d 1500 swap_p = true;
1501 code = swap_tree_comparison (code);
1502 /* Fall through. */
b7e55469 1503 case LT_EXPR:
1504 case LE_EXPR:
1505 {
1506 int minmax, maxmin;
e913b5cd 1507
10c3fe8d 1508 const widest_int &o1val = swap_p ? r2val : r1val;
1509 const widest_int &o1mask = swap_p ? r2mask : r1mask;
1510 const widest_int &o2val = swap_p ? r1val : r2val;
1511 const widest_int &o2mask = swap_p ? r1mask : r2mask;
1512
b7e55469 1513 /* If the most significant bits are not known we know nothing. */
796b6678 1514 if (wi::neg_p (o1mask) || wi::neg_p (o2mask))
b7e55469 1515 break;
1516
90c0f5b7 1517 /* For comparisons the signedness is in the comparison operands. */
a54071b2 1518 sgn = r1type_sgn;
90c0f5b7 1519
b7e55469 1520 /* If we know the most significant bits we know the values
1521 value ranges by means of treating varying bits as zero
1522 or one. Do a cross comparison of the max/min pairs. */
1c8ecf8d 1523 maxmin = wi::cmp (o1val | o1mask,
1524 wi::bit_and_not (o2val, o2mask), sgn);
1525 minmax = wi::cmp (wi::bit_and_not (o1val, o1mask),
1526 o2val | o2mask, sgn);
e913b5cd 1527 if (maxmin < 0) /* o1 is less than o2. */
b7e55469 1528 {
e913b5cd 1529 *mask = 0;
1530 *val = 1;
b7e55469 1531 }
e913b5cd 1532 else if (minmax > 0) /* o1 is not less or equal to o2. */
b7e55469 1533 {
e913b5cd 1534 *mask = 0;
1535 *val = 0;
b7e55469 1536 }
e913b5cd 1537 else if (maxmin == minmax) /* o1 and o2 are equal. */
b7e55469 1538 {
1539 /* This probably should never happen as we'd have
1540 folded the thing during fully constant value folding. */
e913b5cd 1541 *mask = 0;
1542 *val = (code == LE_EXPR ? 1 : 0);
b7e55469 1543 }
1544 else
1545 {
1546 /* We know the result of a comparison is always one or zero. */
e913b5cd 1547 *mask = 1;
1548 *val = 0;
b7e55469 1549 }
1550 break;
1551 }
1552
1553 default:;
1554 }
1555}
1556
1557/* Return the propagation value when applying the operation CODE to
1558 the value RHS yielding type TYPE. */
1559
9908fe4d 1560static ccp_prop_value_t
b7e55469 1561bit_value_unop (enum tree_code code, tree type, tree rhs)
1562{
9908fe4d 1563 ccp_prop_value_t rval = get_value_for_expr (rhs, true);
5de9d3ed 1564 widest_int value, mask;
9908fe4d 1565 ccp_prop_value_t val;
c91fedc5 1566
1567 if (rval.lattice_val == UNDEFINED)
1568 return rval;
1569
b7e55469 1570 gcc_assert ((rval.lattice_val == CONSTANT
1571 && TREE_CODE (rval.value) == INTEGER_CST)
c90d2c17 1572 || wi::sext (rval.mask, TYPE_PRECISION (TREE_TYPE (rhs))) == -1);
a54071b2 1573 bit_value_unop (code, TYPE_SIGN (type), TYPE_PRECISION (type), &value, &mask,
1574 TYPE_SIGN (TREE_TYPE (rhs)), TYPE_PRECISION (TREE_TYPE (rhs)),
1575 value_to_wide_int (rval), rval.mask);
c90d2c17 1576 if (wi::sext (mask, TYPE_PRECISION (type)) != -1)
b7e55469 1577 {
1578 val.lattice_val = CONSTANT;
1579 val.mask = mask;
1580 /* ??? Delay building trees here. */
e913b5cd 1581 val.value = wide_int_to_tree (type, value);
b7e55469 1582 }
1583 else
1584 {
1585 val.lattice_val = VARYING;
1586 val.value = NULL_TREE;
e913b5cd 1587 val.mask = -1;
b7e55469 1588 }
1589 return val;
1590}
1591
1592/* Return the propagation value when applying the operation CODE to
1593 the values RHS1 and RHS2 yielding type TYPE. */
1594
9908fe4d 1595static ccp_prop_value_t
b7e55469 1596bit_value_binop (enum tree_code code, tree type, tree rhs1, tree rhs2)
1597{
9908fe4d 1598 ccp_prop_value_t r1val = get_value_for_expr (rhs1, true);
1599 ccp_prop_value_t r2val = get_value_for_expr (rhs2, true);
5de9d3ed 1600 widest_int value, mask;
9908fe4d 1601 ccp_prop_value_t val;
c91fedc5 1602
1603 if (r1val.lattice_val == UNDEFINED
1604 || r2val.lattice_val == UNDEFINED)
1605 {
1606 val.lattice_val = VARYING;
1607 val.value = NULL_TREE;
e913b5cd 1608 val.mask = -1;
c91fedc5 1609 return val;
1610 }
1611
b7e55469 1612 gcc_assert ((r1val.lattice_val == CONSTANT
1613 && TREE_CODE (r1val.value) == INTEGER_CST)
c90d2c17 1614 || wi::sext (r1val.mask,
1615 TYPE_PRECISION (TREE_TYPE (rhs1))) == -1);
b7e55469 1616 gcc_assert ((r2val.lattice_val == CONSTANT
1617 && TREE_CODE (r2val.value) == INTEGER_CST)
c90d2c17 1618 || wi::sext (r2val.mask,
1619 TYPE_PRECISION (TREE_TYPE (rhs2))) == -1);
a54071b2 1620 bit_value_binop (code, TYPE_SIGN (type), TYPE_PRECISION (type), &value, &mask,
1621 TYPE_SIGN (TREE_TYPE (rhs1)), TYPE_PRECISION (TREE_TYPE (rhs1)),
1622 value_to_wide_int (r1val), r1val.mask,
1623 TYPE_SIGN (TREE_TYPE (rhs2)), TYPE_PRECISION (TREE_TYPE (rhs2)),
1624 value_to_wide_int (r2val), r2val.mask);
1625
c90d2c17 1626 if (wi::sext (mask, TYPE_PRECISION (type)) != -1)
b7e55469 1627 {
1628 val.lattice_val = CONSTANT;
1629 val.mask = mask;
1630 /* ??? Delay building trees here. */
e913b5cd 1631 val.value = wide_int_to_tree (type, value);
b7e55469 1632 }
1633 else
1634 {
1635 val.lattice_val = VARYING;
1636 val.value = NULL_TREE;
e913b5cd 1637 val.mask = -1;
b7e55469 1638 }
1639 return val;
1640}
1641
237e78b1 1642/* Return the propagation value for __builtin_assume_aligned
1643 and functions with assume_aligned or alloc_aligned attribute.
1644 For __builtin_assume_aligned, ATTR is NULL_TREE,
1645 for assume_aligned attribute ATTR is non-NULL and ALLOC_ALIGNED
1646 is false, for alloc_aligned attribute ATTR is non-NULL and
1647 ALLOC_ALIGNED is true. */
fca0886c 1648
9908fe4d 1649static ccp_prop_value_t
42acab1c 1650bit_value_assume_aligned (gimple *stmt, tree attr, ccp_prop_value_t ptrval,
237e78b1 1651 bool alloc_aligned)
fca0886c 1652{
237e78b1 1653 tree align, misalign = NULL_TREE, type;
fca0886c 1654 unsigned HOST_WIDE_INT aligni, misaligni = 0;
9908fe4d 1655 ccp_prop_value_t alignval;
5de9d3ed 1656 widest_int value, mask;
9908fe4d 1657 ccp_prop_value_t val;
e913b5cd 1658
237e78b1 1659 if (attr == NULL_TREE)
1660 {
1661 tree ptr = gimple_call_arg (stmt, 0);
1662 type = TREE_TYPE (ptr);
1663 ptrval = get_value_for_expr (ptr, true);
1664 }
1665 else
1666 {
1667 tree lhs = gimple_call_lhs (stmt);
1668 type = TREE_TYPE (lhs);
1669 }
1670
fca0886c 1671 if (ptrval.lattice_val == UNDEFINED)
1672 return ptrval;
1673 gcc_assert ((ptrval.lattice_val == CONSTANT
1674 && TREE_CODE (ptrval.value) == INTEGER_CST)
c90d2c17 1675 || wi::sext (ptrval.mask, TYPE_PRECISION (type)) == -1);
237e78b1 1676 if (attr == NULL_TREE)
fca0886c 1677 {
237e78b1 1678 /* Get aligni and misaligni from __builtin_assume_aligned. */
1679 align = gimple_call_arg (stmt, 1);
1680 if (!tree_fits_uhwi_p (align))
fca0886c 1681 return ptrval;
237e78b1 1682 aligni = tree_to_uhwi (align);
1683 if (gimple_call_num_args (stmt) > 2)
1684 {
1685 misalign = gimple_call_arg (stmt, 2);
1686 if (!tree_fits_uhwi_p (misalign))
1687 return ptrval;
1688 misaligni = tree_to_uhwi (misalign);
1689 }
1690 }
1691 else
fca0886c 1692 {
237e78b1 1693 /* Get aligni and misaligni from assume_aligned or
1694 alloc_align attributes. */
1695 if (TREE_VALUE (attr) == NULL_TREE)
fca0886c 1696 return ptrval;
237e78b1 1697 attr = TREE_VALUE (attr);
1698 align = TREE_VALUE (attr);
1699 if (!tree_fits_uhwi_p (align))
fca0886c 1700 return ptrval;
237e78b1 1701 aligni = tree_to_uhwi (align);
1702 if (alloc_aligned)
1703 {
1704 if (aligni == 0 || aligni > gimple_call_num_args (stmt))
1705 return ptrval;
1706 align = gimple_call_arg (stmt, aligni - 1);
1707 if (!tree_fits_uhwi_p (align))
1708 return ptrval;
1709 aligni = tree_to_uhwi (align);
1710 }
1711 else if (TREE_CHAIN (attr) && TREE_VALUE (TREE_CHAIN (attr)))
1712 {
1713 misalign = TREE_VALUE (TREE_CHAIN (attr));
1714 if (!tree_fits_uhwi_p (misalign))
1715 return ptrval;
1716 misaligni = tree_to_uhwi (misalign);
1717 }
fca0886c 1718 }
237e78b1 1719 if (aligni <= 1 || (aligni & (aligni - 1)) != 0 || misaligni >= aligni)
1720 return ptrval;
1721
fca0886c 1722 align = build_int_cst_type (type, -aligni);
1723 alignval = get_value_for_expr (align, true);
a54071b2 1724 bit_value_binop (BIT_AND_EXPR, TYPE_SIGN (type), TYPE_PRECISION (type), &value, &mask,
1725 TYPE_SIGN (type), TYPE_PRECISION (type), value_to_wide_int (ptrval), ptrval.mask,
1726 TYPE_SIGN (type), TYPE_PRECISION (type), value_to_wide_int (alignval), alignval.mask);
1727
c90d2c17 1728 if (wi::sext (mask, TYPE_PRECISION (type)) != -1)
fca0886c 1729 {
1730 val.lattice_val = CONSTANT;
1731 val.mask = mask;
e913b5cd 1732 gcc_assert ((mask.to_uhwi () & (aligni - 1)) == 0);
1733 gcc_assert ((value.to_uhwi () & (aligni - 1)) == 0);
1734 value |= misaligni;
fca0886c 1735 /* ??? Delay building trees here. */
e913b5cd 1736 val.value = wide_int_to_tree (type, value);
fca0886c 1737 }
1738 else
1739 {
1740 val.lattice_val = VARYING;
1741 val.value = NULL_TREE;
e913b5cd 1742 val.mask = -1;
fca0886c 1743 }
1744 return val;
1745}
1746
75a70cf9 1747/* Evaluate statement STMT.
1748 Valid only for assignments, calls, conditionals, and switches. */
4ee9c684 1749
9908fe4d 1750static ccp_prop_value_t
42acab1c 1751evaluate_stmt (gimple *stmt)
4ee9c684 1752{
9908fe4d 1753 ccp_prop_value_t val;
4f61cce6 1754 tree simplified = NULL_TREE;
88dbf20f 1755 ccp_lattice_t likelyvalue = likely_value (stmt);
b7e55469 1756 bool is_constant = false;
581bf1c2 1757 unsigned int align;
88dbf20f 1758
b7e55469 1759 if (dump_file && (dump_flags & TDF_DETAILS))
1760 {
1761 fprintf (dump_file, "which is likely ");
1762 switch (likelyvalue)
1763 {
1764 case CONSTANT:
1765 fprintf (dump_file, "CONSTANT");
1766 break;
1767 case UNDEFINED:
1768 fprintf (dump_file, "UNDEFINED");
1769 break;
1770 case VARYING:
1771 fprintf (dump_file, "VARYING");
1772 break;
1773 default:;
1774 }
1775 fprintf (dump_file, "\n");
1776 }
add6ee5e 1777
4ee9c684 1778 /* If the statement is likely to have a CONSTANT result, then try
1779 to fold the statement to determine the constant value. */
75a70cf9 1780 /* FIXME. This is the only place that we call ccp_fold.
1781 Since likely_value never returns CONSTANT for calls, we will
1782 not attempt to fold them, including builtins that may profit. */
4ee9c684 1783 if (likelyvalue == CONSTANT)
b7e55469 1784 {
1785 fold_defer_overflow_warnings ();
1786 simplified = ccp_fold (stmt);
c57dab92 1787 if (simplified
3ec56105 1788 && TREE_CODE (simplified) == SSA_NAME)
1789 {
c57dab92 1790 /* We may not use values of something that may be simulated again,
1791 see valueize_op_1. */
3ec56105 1792 if (SSA_NAME_IS_DEFAULT_DEF (simplified)
1793 || ! prop_simulate_again_p (SSA_NAME_DEF_STMT (simplified)))
27de3d43 1794 {
3ec56105 1795 ccp_prop_value_t *val = get_value (simplified);
1796 if (val && val->lattice_val != VARYING)
1797 {
1798 fold_undefer_overflow_warnings (true, stmt, 0);
1799 return *val;
1800 }
27de3d43 1801 }
3ec56105 1802 else
1803 /* We may also not place a non-valueized copy in the lattice
1804 as that might become stale if we never re-visit this stmt. */
1805 simplified = NULL_TREE;
27de3d43 1806 }
b7e55469 1807 is_constant = simplified && is_gimple_min_invariant (simplified);
1808 fold_undefer_overflow_warnings (is_constant, stmt, 0);
1809 if (is_constant)
1810 {
1811 /* The statement produced a constant value. */
1812 val.lattice_val = CONSTANT;
1813 val.value = simplified;
e913b5cd 1814 val.mask = 0;
27de3d43 1815 return val;
b7e55469 1816 }
1817 }
4ee9c684 1818 /* If the statement is likely to have a VARYING result, then do not
1819 bother folding the statement. */
04236c3a 1820 else if (likelyvalue == VARYING)
75a70cf9 1821 {
590c3166 1822 enum gimple_code code = gimple_code (stmt);
75a70cf9 1823 if (code == GIMPLE_ASSIGN)
1824 {
1825 enum tree_code subcode = gimple_assign_rhs_code (stmt);
48e1416a 1826
75a70cf9 1827 /* Other cases cannot satisfy is_gimple_min_invariant
1828 without folding. */
1829 if (get_gimple_rhs_class (subcode) == GIMPLE_SINGLE_RHS)
1830 simplified = gimple_assign_rhs1 (stmt);
1831 }
1832 else if (code == GIMPLE_SWITCH)
1a91d914 1833 simplified = gimple_switch_index (as_a <gswitch *> (stmt));
75a70cf9 1834 else
a65c4d64 1835 /* These cannot satisfy is_gimple_min_invariant without folding. */
1836 gcc_assert (code == GIMPLE_CALL || code == GIMPLE_COND);
b7e55469 1837 is_constant = simplified && is_gimple_min_invariant (simplified);
1838 if (is_constant)
1839 {
1840 /* The statement produced a constant value. */
1841 val.lattice_val = CONSTANT;
1842 val.value = simplified;
e913b5cd 1843 val.mask = 0;
b7e55469 1844 }
75a70cf9 1845 }
4c9206f2 1846 /* If the statement result is likely UNDEFINED, make it so. */
1847 else if (likelyvalue == UNDEFINED)
1848 {
1849 val.lattice_val = UNDEFINED;
1850 val.value = NULL_TREE;
1851 val.mask = 0;
1852 return val;
1853 }
4ee9c684 1854
b7e55469 1855 /* Resort to simplification for bitwise tracking. */
1856 if (flag_tree_bit_ccp
db48deb0 1857 && (likelyvalue == CONSTANT || is_gimple_call (stmt)
1858 || (gimple_assign_single_p (stmt)
1859 && gimple_assign_rhs_code (stmt) == ADDR_EXPR))
b7e55469 1860 && !is_constant)
912f109f 1861 {
b7e55469 1862 enum gimple_code code = gimple_code (stmt);
1863 val.lattice_val = VARYING;
1864 val.value = NULL_TREE;
e913b5cd 1865 val.mask = -1;
b7e55469 1866 if (code == GIMPLE_ASSIGN)
912f109f 1867 {
b7e55469 1868 enum tree_code subcode = gimple_assign_rhs_code (stmt);
1869 tree rhs1 = gimple_assign_rhs1 (stmt);
c0a4b664 1870 tree lhs = gimple_assign_lhs (stmt);
1871 if ((INTEGRAL_TYPE_P (TREE_TYPE (lhs))
1872 || POINTER_TYPE_P (TREE_TYPE (lhs)))
1873 && (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
1874 || POINTER_TYPE_P (TREE_TYPE (rhs1))))
1875 switch (get_gimple_rhs_class (subcode))
1876 {
1877 case GIMPLE_SINGLE_RHS:
1878 val = get_value_for_expr (rhs1, true);
1879 break;
1880
1881 case GIMPLE_UNARY_RHS:
1882 val = bit_value_unop (subcode, TREE_TYPE (lhs), rhs1);
1883 break;
1884
1885 case GIMPLE_BINARY_RHS:
1886 val = bit_value_binop (subcode, TREE_TYPE (lhs), rhs1,
1887 gimple_assign_rhs2 (stmt));
1888 break;
1889
1890 default:;
1891 }
912f109f 1892 }
b7e55469 1893 else if (code == GIMPLE_COND)
1894 {
1895 enum tree_code code = gimple_cond_code (stmt);
1896 tree rhs1 = gimple_cond_lhs (stmt);
1897 tree rhs2 = gimple_cond_rhs (stmt);
1898 if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
1899 || POINTER_TYPE_P (TREE_TYPE (rhs1)))
1900 val = bit_value_binop (code, TREE_TYPE (rhs1), rhs1, rhs2);
1901 }
0b4f0116 1902 else if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
153c3b50 1903 {
0b4f0116 1904 tree fndecl = gimple_call_fndecl (stmt);
153c3b50 1905 switch (DECL_FUNCTION_CODE (fndecl))
1906 {
1907 case BUILT_IN_MALLOC:
1908 case BUILT_IN_REALLOC:
1909 case BUILT_IN_CALLOC:
939514e9 1910 case BUILT_IN_STRDUP:
1911 case BUILT_IN_STRNDUP:
153c3b50 1912 val.lattice_val = CONSTANT;
1913 val.value = build_int_cst (TREE_TYPE (gimple_get_lhs (stmt)), 0);
796b6678 1914 val.mask = ~((HOST_WIDE_INT) MALLOC_ABI_ALIGNMENT
1915 / BITS_PER_UNIT - 1);
153c3b50 1916 break;
1917
2b34677f 1918 CASE_BUILT_IN_ALLOCA:
1919 align = (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_ALLOCA
1920 ? BIGGEST_ALIGNMENT
1921 : TREE_INT_CST_LOW (gimple_call_arg (stmt, 1)));
153c3b50 1922 val.lattice_val = CONSTANT;
1923 val.value = build_int_cst (TREE_TYPE (gimple_get_lhs (stmt)), 0);
796b6678 1924 val.mask = ~((HOST_WIDE_INT) align / BITS_PER_UNIT - 1);
153c3b50 1925 break;
1926
939514e9 1927 /* These builtins return their first argument, unmodified. */
1928 case BUILT_IN_MEMCPY:
1929 case BUILT_IN_MEMMOVE:
1930 case BUILT_IN_MEMSET:
1931 case BUILT_IN_STRCPY:
1932 case BUILT_IN_STRNCPY:
1933 case BUILT_IN_MEMCPY_CHK:
1934 case BUILT_IN_MEMMOVE_CHK:
1935 case BUILT_IN_MEMSET_CHK:
1936 case BUILT_IN_STRCPY_CHK:
1937 case BUILT_IN_STRNCPY_CHK:
1938 val = get_value_for_expr (gimple_call_arg (stmt, 0), true);
1939 break;
1940
fca0886c 1941 case BUILT_IN_ASSUME_ALIGNED:
237e78b1 1942 val = bit_value_assume_aligned (stmt, NULL_TREE, val, false);
fca0886c 1943 break;
1944
060fc206 1945 case BUILT_IN_ALIGNED_ALLOC:
1946 {
1947 tree align = get_constant_value (gimple_call_arg (stmt, 0));
1948 if (align
1949 && tree_fits_uhwi_p (align))
1950 {
1951 unsigned HOST_WIDE_INT aligni = tree_to_uhwi (align);
1952 if (aligni > 1
1953 /* align must be power-of-two */
1954 && (aligni & (aligni - 1)) == 0)
1955 {
1956 val.lattice_val = CONSTANT;
1957 val.value = build_int_cst (ptr_type_node, 0);
cd89b631 1958 val.mask = -aligni;
060fc206 1959 }
1960 }
1961 break;
1962 }
1963
e5e0055a 1964 case BUILT_IN_BSWAP16:
1965 case BUILT_IN_BSWAP32:
1966 case BUILT_IN_BSWAP64:
1967 val = get_value_for_expr (gimple_call_arg (stmt, 0), true);
1968 if (val.lattice_val == UNDEFINED)
1969 break;
1970 else if (val.lattice_val == CONSTANT
1971 && val.value
1972 && TREE_CODE (val.value) == INTEGER_CST)
1973 {
1974 tree type = TREE_TYPE (gimple_call_lhs (stmt));
1975 int prec = TYPE_PRECISION (type);
1976 wide_int wval = wi::to_wide (val.value);
1977 val.value
1978 = wide_int_to_tree (type,
1979 wide_int::from (wval, prec,
1980 UNSIGNED).bswap ());
1981 val.mask
1982 = widest_int::from (wide_int::from (val.mask, prec,
1983 UNSIGNED).bswap (),
1984 UNSIGNED);
1985 if (wi::sext (val.mask, prec) != -1)
1986 break;
1987 }
1988 val.lattice_val = VARYING;
1989 val.value = NULL_TREE;
1990 val.mask = -1;
1991 break;
1992
153c3b50 1993 default:;
1994 }
1995 }
237e78b1 1996 if (is_gimple_call (stmt) && gimple_call_lhs (stmt))
1997 {
1998 tree fntype = gimple_call_fntype (stmt);
1999 if (fntype)
2000 {
2001 tree attrs = lookup_attribute ("assume_aligned",
2002 TYPE_ATTRIBUTES (fntype));
2003 if (attrs)
2004 val = bit_value_assume_aligned (stmt, attrs, val, false);
2005 attrs = lookup_attribute ("alloc_align",
2006 TYPE_ATTRIBUTES (fntype));
2007 if (attrs)
2008 val = bit_value_assume_aligned (stmt, attrs, val, true);
2009 }
2010 }
b7e55469 2011 is_constant = (val.lattice_val == CONSTANT);
912f109f 2012 }
2013
fc08b993 2014 if (flag_tree_bit_ccp
2015 && ((is_constant && TREE_CODE (val.value) == INTEGER_CST)
4c9206f2 2016 || !is_constant)
fc08b993 2017 && gimple_get_lhs (stmt)
2018 && TREE_CODE (gimple_get_lhs (stmt)) == SSA_NAME)
2019 {
2020 tree lhs = gimple_get_lhs (stmt);
9c1be15e 2021 wide_int nonzero_bits = get_nonzero_bits (lhs);
2022 if (nonzero_bits != -1)
fc08b993 2023 {
2024 if (!is_constant)
2025 {
2026 val.lattice_val = CONSTANT;
2027 val.value = build_zero_cst (TREE_TYPE (lhs));
9a93e2f7 2028 val.mask = extend_mask (nonzero_bits, TYPE_SIGN (TREE_TYPE (lhs)));
fc08b993 2029 is_constant = true;
2030 }
2031 else
2032 {
e3d0f65c 2033 if (wi::bit_and_not (wi::to_wide (val.value), nonzero_bits) != 0)
aeb682a2 2034 val.value = wide_int_to_tree (TREE_TYPE (lhs),
e3d0f65c 2035 nonzero_bits
2036 & wi::to_wide (val.value));
aeb682a2 2037 if (nonzero_bits == 0)
2038 val.mask = 0;
fc08b993 2039 else
9a93e2f7 2040 val.mask = val.mask & extend_mask (nonzero_bits,
2041 TYPE_SIGN (TREE_TYPE (lhs)));
fc08b993 2042 }
2043 }
2044 }
2045
4c9206f2 2046 /* The statement produced a nonconstant value. */
b7e55469 2047 if (!is_constant)
4ee9c684 2048 {
fc6cc27b 2049 /* The statement produced a copy. */
2050 if (simplified && TREE_CODE (simplified) == SSA_NAME
2051 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (simplified))
2052 {
2053 val.lattice_val = CONSTANT;
2054 val.value = simplified;
2055 val.mask = -1;
2056 }
2057 /* The statement is VARYING. */
2058 else
2059 {
2060 val.lattice_val = VARYING;
2061 val.value = NULL_TREE;
2062 val.mask = -1;
2063 }
4ee9c684 2064 }
41511585 2065
2066 return val;
4ee9c684 2067}
2068
42acab1c 2069typedef hash_table<nofree_ptr_hash<gimple> > gimple_htab;
2b15d2ba 2070
582a80ed 2071/* Given a BUILT_IN_STACK_SAVE value SAVED_VAL, insert a clobber of VAR before
2072 each matching BUILT_IN_STACK_RESTORE. Mark visited phis in VISITED. */
2073
2074static void
2b15d2ba 2075insert_clobber_before_stack_restore (tree saved_val, tree var,
c1f445d2 2076 gimple_htab **visited)
582a80ed 2077{
42acab1c 2078 gimple *stmt;
1a91d914 2079 gassign *clobber_stmt;
582a80ed 2080 tree clobber;
2081 imm_use_iterator iter;
2082 gimple_stmt_iterator i;
42acab1c 2083 gimple **slot;
582a80ed 2084
2085 FOR_EACH_IMM_USE_STMT (stmt, iter, saved_val)
2086 if (gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
2087 {
f1f41a6c 2088 clobber = build_constructor (TREE_TYPE (var),
2089 NULL);
582a80ed 2090 TREE_THIS_VOLATILE (clobber) = 1;
2091 clobber_stmt = gimple_build_assign (var, clobber);
2092
2093 i = gsi_for_stmt (stmt);
2094 gsi_insert_before (&i, clobber_stmt, GSI_SAME_STMT);
2095 }
2096 else if (gimple_code (stmt) == GIMPLE_PHI)
2097 {
c1f445d2 2098 if (!*visited)
2099 *visited = new gimple_htab (10);
582a80ed 2100
c1f445d2 2101 slot = (*visited)->find_slot (stmt, INSERT);
582a80ed 2102 if (*slot != NULL)
2103 continue;
2104
2105 *slot = stmt;
2106 insert_clobber_before_stack_restore (gimple_phi_result (stmt), var,
2107 visited);
2108 }
42eed683 2109 else if (gimple_assign_ssa_name_copy_p (stmt))
2110 insert_clobber_before_stack_restore (gimple_assign_lhs (stmt), var,
2111 visited);
582a80ed 2112 else
2113 gcc_assert (is_gimple_debug (stmt));
2114}
2115
2116/* Advance the iterator to the previous non-debug gimple statement in the same
2117 or dominating basic block. */
2118
2119static inline void
2120gsi_prev_dom_bb_nondebug (gimple_stmt_iterator *i)
2121{
2122 basic_block dom;
2123
2124 gsi_prev_nondebug (i);
2125 while (gsi_end_p (*i))
2126 {
2127 dom = get_immediate_dominator (CDI_DOMINATORS, i->bb);
34154e27 2128 if (dom == NULL || dom == ENTRY_BLOCK_PTR_FOR_FN (cfun))
582a80ed 2129 return;
2130
2131 *i = gsi_last_bb (dom);
2132 }
2133}
2134
2135/* Find a BUILT_IN_STACK_SAVE dominating gsi_stmt (I), and insert
1543f720 2136 a clobber of VAR before each matching BUILT_IN_STACK_RESTORE.
2137
2138 It is possible that BUILT_IN_STACK_SAVE cannot be find in a dominator when a
2139 previous pass (such as DOM) duplicated it along multiple paths to a BB. In
2140 that case the function gives up without inserting the clobbers. */
582a80ed 2141
2142static void
2143insert_clobbers_for_var (gimple_stmt_iterator i, tree var)
2144{
42acab1c 2145 gimple *stmt;
582a80ed 2146 tree saved_val;
c1f445d2 2147 gimple_htab *visited = NULL;
582a80ed 2148
1543f720 2149 for (; !gsi_end_p (i); gsi_prev_dom_bb_nondebug (&i))
582a80ed 2150 {
2151 stmt = gsi_stmt (i);
2152
2153 if (!gimple_call_builtin_p (stmt, BUILT_IN_STACK_SAVE))
2154 continue;
582a80ed 2155
2156 saved_val = gimple_call_lhs (stmt);
2157 if (saved_val == NULL_TREE)
2158 continue;
2159
2160 insert_clobber_before_stack_restore (saved_val, var, &visited);
2161 break;
2162 }
2163
c1f445d2 2164 delete visited;
582a80ed 2165}
2166
581bf1c2 2167/* Detects a __builtin_alloca_with_align with constant size argument. Declares
2168 fixed-size array and returns the address, if found, otherwise returns
2169 NULL_TREE. */
9a65cc0a 2170
2171static tree
42acab1c 2172fold_builtin_alloca_with_align (gimple *stmt)
9a65cc0a 2173{
2174 unsigned HOST_WIDE_INT size, threshold, n_elem;
2175 tree lhs, arg, block, var, elem_type, array_type;
9a65cc0a 2176
2177 /* Get lhs. */
2178 lhs = gimple_call_lhs (stmt);
2179 if (lhs == NULL_TREE)
2180 return NULL_TREE;
2181
2182 /* Detect constant argument. */
2183 arg = get_constant_value (gimple_call_arg (stmt, 0));
6e93d308 2184 if (arg == NULL_TREE
2185 || TREE_CODE (arg) != INTEGER_CST
e913b5cd 2186 || !tree_fits_uhwi_p (arg))
9a65cc0a 2187 return NULL_TREE;
6e93d308 2188
8c53c46c 2189 size = tree_to_uhwi (arg);
9a65cc0a 2190
581bf1c2 2191 /* Heuristic: don't fold large allocas. */
9a65cc0a 2192 threshold = (unsigned HOST_WIDE_INT)PARAM_VALUE (PARAM_LARGE_STACK_FRAME);
581bf1c2 2193 /* In case the alloca is located at function entry, it has the same lifetime
2194 as a declared array, so we allow a larger size. */
9a65cc0a 2195 block = gimple_block (stmt);
2196 if (!(cfun->after_inlining
14df71e4 2197 && block
9a65cc0a 2198 && TREE_CODE (BLOCK_SUPERCONTEXT (block)) == FUNCTION_DECL))
2199 threshold /= 10;
2200 if (size > threshold)
2201 return NULL_TREE;
2202
d8c94794 2203 /* We have to be able to move points-to info. We used to assert
2204 that we can but IPA PTA might end up with two UIDs here
2205 as it might need to handle more than one instance being
2206 live at the same time. Instead of trying to detect this case
2207 (using the first UID would be OK) just give up for now. */
2208 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (lhs);
2209 unsigned uid = 0;
2210 if (pi != NULL
2211 && !pi->pt.anything
2212 && !pt_solution_singleton_or_null_p (&pi->pt, &uid))
2213 return NULL_TREE;
2214
9a65cc0a 2215 /* Declare array. */
2216 elem_type = build_nonstandard_integer_type (BITS_PER_UNIT, 1);
2217 n_elem = size * 8 / BITS_PER_UNIT;
9a65cc0a 2218 array_type = build_array_type_nelts (elem_type, n_elem);
f9e245b2 2219 var = create_tmp_var (array_type);
5d4b30ea 2220 SET_DECL_ALIGN (var, TREE_INT_CST_LOW (gimple_call_arg (stmt, 1)));
d8c94794 2221 if (uid != 0)
2222 SET_DECL_PT_UID (var, uid);
9a65cc0a 2223
2224 /* Fold alloca to the address of the array. */
2225 return fold_convert (TREE_TYPE (lhs), build_fold_addr_expr (var));
2226}
2227
6688f8ec 2228/* Fold the stmt at *GSI with CCP specific information that propagating
2229 and regular folding does not catch. */
2230
b08e7364 2231bool
2232ccp_folder::fold_stmt (gimple_stmt_iterator *gsi)
6688f8ec 2233{
42acab1c 2234 gimple *stmt = gsi_stmt (*gsi);
6688f8ec 2235
94144e68 2236 switch (gimple_code (stmt))
2237 {
2238 case GIMPLE_COND:
2239 {
1a91d914 2240 gcond *cond_stmt = as_a <gcond *> (stmt);
9908fe4d 2241 ccp_prop_value_t val;
94144e68 2242 /* Statement evaluation will handle type mismatches in constants
2243 more gracefully than the final propagation. This allows us to
2244 fold more conditionals here. */
2245 val = evaluate_stmt (stmt);
2246 if (val.lattice_val != CONSTANT
796b6678 2247 || val.mask != 0)
94144e68 2248 return false;
2249
b7e55469 2250 if (dump_file)
2251 {
2252 fprintf (dump_file, "Folding predicate ");
1ffa4346 2253 print_gimple_expr (dump_file, stmt, 0);
b7e55469 2254 fprintf (dump_file, " to ");
1ffa4346 2255 print_generic_expr (dump_file, val.value);
b7e55469 2256 fprintf (dump_file, "\n");
2257 }
2258
94144e68 2259 if (integer_zerop (val.value))
1a91d914 2260 gimple_cond_make_false (cond_stmt);
94144e68 2261 else
1a91d914 2262 gimple_cond_make_true (cond_stmt);
6688f8ec 2263
94144e68 2264 return true;
2265 }
6688f8ec 2266
94144e68 2267 case GIMPLE_CALL:
2268 {
2269 tree lhs = gimple_call_lhs (stmt);
3064bb7b 2270 int flags = gimple_call_flags (stmt);
15d138c9 2271 tree val;
94144e68 2272 tree argt;
2273 bool changed = false;
2274 unsigned i;
2275
2276 /* If the call was folded into a constant make sure it goes
2277 away even if we cannot propagate into all uses because of
2278 type issues. */
2279 if (lhs
2280 && TREE_CODE (lhs) == SSA_NAME
3064bb7b 2281 && (val = get_constant_value (lhs))
2282 /* Don't optimize away calls that have side-effects. */
2283 && (flags & (ECF_CONST|ECF_PURE)) != 0
2284 && (flags & ECF_LOOPING_CONST_OR_PURE) == 0)
94144e68 2285 {
15d138c9 2286 tree new_rhs = unshare_expr (val);
338cce8f 2287 bool res;
94144e68 2288 if (!useless_type_conversion_p (TREE_TYPE (lhs),
2289 TREE_TYPE (new_rhs)))
2290 new_rhs = fold_convert (TREE_TYPE (lhs), new_rhs);
338cce8f 2291 res = update_call_from_tree (gsi, new_rhs);
2292 gcc_assert (res);
94144e68 2293 return true;
2294 }
2295
fb049fba 2296 /* Internal calls provide no argument types, so the extra laxity
2297 for normal calls does not apply. */
2298 if (gimple_call_internal_p (stmt))
2299 return false;
2300
581bf1c2 2301 /* The heuristic of fold_builtin_alloca_with_align differs before and
2302 after inlining, so we don't require the arg to be changed into a
2303 constant for folding, but just to be constant. */
2b34677f 2304 if (gimple_call_builtin_p (stmt, BUILT_IN_ALLOCA_WITH_ALIGN)
2305 || gimple_call_builtin_p (stmt, BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX))
9a65cc0a 2306 {
581bf1c2 2307 tree new_rhs = fold_builtin_alloca_with_align (stmt);
6e93d308 2308 if (new_rhs)
2309 {
2310 bool res = update_call_from_tree (gsi, new_rhs);
582a80ed 2311 tree var = TREE_OPERAND (TREE_OPERAND (new_rhs, 0),0);
6e93d308 2312 gcc_assert (res);
582a80ed 2313 insert_clobbers_for_var (*gsi, var);
6e93d308 2314 return true;
2315 }
9a65cc0a 2316 }
2317
94144e68 2318 /* Propagate into the call arguments. Compared to replace_uses_in
2319 this can use the argument slot types for type verification
2320 instead of the current argument type. We also can safely
2321 drop qualifiers here as we are dealing with constants anyway. */
2de00a2d 2322 argt = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
94144e68 2323 for (i = 0; i < gimple_call_num_args (stmt) && argt;
2324 ++i, argt = TREE_CHAIN (argt))
2325 {
2326 tree arg = gimple_call_arg (stmt, i);
2327 if (TREE_CODE (arg) == SSA_NAME
15d138c9 2328 && (val = get_constant_value (arg))
94144e68 2329 && useless_type_conversion_p
2330 (TYPE_MAIN_VARIANT (TREE_VALUE (argt)),
15d138c9 2331 TYPE_MAIN_VARIANT (TREE_TYPE (val))))
94144e68 2332 {
15d138c9 2333 gimple_call_set_arg (stmt, i, unshare_expr (val));
94144e68 2334 changed = true;
2335 }
2336 }
e16f4c39 2337
94144e68 2338 return changed;
2339 }
6688f8ec 2340
6872bf3c 2341 case GIMPLE_ASSIGN:
2342 {
2343 tree lhs = gimple_assign_lhs (stmt);
15d138c9 2344 tree val;
6872bf3c 2345
2346 /* If we have a load that turned out to be constant replace it
2347 as we cannot propagate into all uses in all cases. */
2348 if (gimple_assign_single_p (stmt)
2349 && TREE_CODE (lhs) == SSA_NAME
15d138c9 2350 && (val = get_constant_value (lhs)))
6872bf3c 2351 {
15d138c9 2352 tree rhs = unshare_expr (val);
6872bf3c 2353 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
182cf5a9 2354 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (lhs), rhs);
6872bf3c 2355 gimple_assign_set_rhs_from_tree (gsi, rhs);
2356 return true;
2357 }
2358
2359 return false;
2360 }
2361
94144e68 2362 default:
2363 return false;
2364 }
6688f8ec 2365}
2366
41511585 2367/* Visit the assignment statement STMT. Set the value of its LHS to the
88dbf20f 2368 value computed by the RHS and store LHS in *OUTPUT_P. If STMT
2369 creates virtual definitions, set the value of each new name to that
75a70cf9 2370 of the RHS (if we can derive a constant out of the RHS).
2371 Value-returning call statements also perform an assignment, and
2372 are handled here. */
4ee9c684 2373
41511585 2374static enum ssa_prop_result
42acab1c 2375visit_assignment (gimple *stmt, tree *output_p)
4ee9c684 2376{
9908fe4d 2377 ccp_prop_value_t val;
fc6cc27b 2378 enum ssa_prop_result retval = SSA_PROP_NOT_INTERESTING;
4ee9c684 2379
75a70cf9 2380 tree lhs = gimple_get_lhs (stmt);
88dbf20f 2381 if (TREE_CODE (lhs) == SSA_NAME)
4ee9c684 2382 {
fc6cc27b 2383 /* Evaluate the statement, which could be
2384 either a GIMPLE_ASSIGN or a GIMPLE_CALL. */
2385 val = evaluate_stmt (stmt);
2386
88dbf20f 2387 /* If STMT is an assignment to an SSA_NAME, we only have one
2388 value to set. */
27de3d43 2389 if (set_lattice_value (lhs, &val))
88dbf20f 2390 {
2391 *output_p = lhs;
2392 if (val.lattice_val == VARYING)
2393 retval = SSA_PROP_VARYING;
2394 else
2395 retval = SSA_PROP_INTERESTING;
2396 }
4ee9c684 2397 }
88dbf20f 2398
2399 return retval;
4ee9c684 2400}
2401
4ee9c684 2402
41511585 2403/* Visit the conditional statement STMT. Return SSA_PROP_INTERESTING
2404 if it can determine which edge will be taken. Otherwise, return
2405 SSA_PROP_VARYING. */
2406
2407static enum ssa_prop_result
42acab1c 2408visit_cond_stmt (gimple *stmt, edge *taken_edge_p)
4ee9c684 2409{
9908fe4d 2410 ccp_prop_value_t val;
41511585 2411 basic_block block;
2412
75a70cf9 2413 block = gimple_bb (stmt);
41511585 2414 val = evaluate_stmt (stmt);
b7e55469 2415 if (val.lattice_val != CONSTANT
796b6678 2416 || val.mask != 0)
b7e55469 2417 return SSA_PROP_VARYING;
41511585 2418
2419 /* Find which edge out of the conditional block will be taken and add it
2420 to the worklist. If no single edge can be determined statically,
2421 return SSA_PROP_VARYING to feed all the outgoing edges to the
2422 propagation engine. */
b7e55469 2423 *taken_edge_p = find_taken_edge (block, val.value);
41511585 2424 if (*taken_edge_p)
2425 return SSA_PROP_INTERESTING;
2426 else
2427 return SSA_PROP_VARYING;
4ee9c684 2428}
2429
4ee9c684 2430
41511585 2431/* Evaluate statement STMT. If the statement produces an output value and
2432 its evaluation changes the lattice value of its output, return
2433 SSA_PROP_INTERESTING and set *OUTPUT_P to the SSA_NAME holding the
2434 output value.
48e1416a 2435
41511585 2436 If STMT is a conditional branch and we can determine its truth
2437 value, set *TAKEN_EDGE_P accordingly. If STMT produces a varying
2438 value, return SSA_PROP_VARYING. */
4ee9c684 2439
6bd87d95 2440enum ssa_prop_result
2441ccp_propagate::visit_stmt (gimple *stmt, edge *taken_edge_p, tree *output_p)
41511585 2442{
41511585 2443 tree def;
2444 ssa_op_iter iter;
4ee9c684 2445
41511585 2446 if (dump_file && (dump_flags & TDF_DETAILS))
4ee9c684 2447 {
88dbf20f 2448 fprintf (dump_file, "\nVisiting statement:\n");
75a70cf9 2449 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
4ee9c684 2450 }
4ee9c684 2451
75a70cf9 2452 switch (gimple_code (stmt))
4ee9c684 2453 {
75a70cf9 2454 case GIMPLE_ASSIGN:
2455 /* If the statement is an assignment that produces a single
2456 output value, evaluate its RHS to see if the lattice value of
2457 its output has changed. */
2458 return visit_assignment (stmt, output_p);
2459
2460 case GIMPLE_CALL:
2461 /* A value-returning call also performs an assignment. */
2462 if (gimple_call_lhs (stmt) != NULL_TREE)
2463 return visit_assignment (stmt, output_p);
2464 break;
2465
2466 case GIMPLE_COND:
2467 case GIMPLE_SWITCH:
2468 /* If STMT is a conditional branch, see if we can determine
2469 which branch will be taken. */
2470 /* FIXME. It appears that we should be able to optimize
2471 computed GOTOs here as well. */
2472 return visit_cond_stmt (stmt, taken_edge_p);
2473
2474 default:
2475 break;
4ee9c684 2476 }
4ee9c684 2477
41511585 2478 /* Any other kind of statement is not interesting for constant
2479 propagation and, therefore, not worth simulating. */
41511585 2480 if (dump_file && (dump_flags & TDF_DETAILS))
2481 fprintf (dump_file, "No interesting values produced. Marked VARYING.\n");
4ee9c684 2482
41511585 2483 /* Definitions made by statements other than assignments to
2484 SSA_NAMEs represent unknown modifications to their outputs.
2485 Mark them VARYING. */
88dbf20f 2486 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
27de3d43 2487 set_value_varying (def);
4ee9c684 2488
41511585 2489 return SSA_PROP_VARYING;
2490}
4ee9c684 2491
4ee9c684 2492
d0322b7d 2493/* Main entry point for SSA Conditional Constant Propagation. If NONZERO_P,
2494 record nonzero bits. */
41511585 2495
33a34f1e 2496static unsigned int
d0322b7d 2497do_ssa_ccp (bool nonzero_p)
41511585 2498{
582a80ed 2499 unsigned int todo = 0;
2500 calculate_dominance_info (CDI_DOMINATORS);
e2588447 2501
41511585 2502 ccp_initialize ();
6bd87d95 2503 class ccp_propagate ccp_propagate;
2504 ccp_propagate.ssa_propagate ();
a54071b2 2505 if (ccp_finalize (nonzero_p || flag_ipa_bit_cp))
e2588447 2506 {
2507 todo = (TODO_cleanup_cfg | TODO_update_ssa);
2508
2509 /* ccp_finalize does not preserve loop-closed ssa. */
2510 loops_state_clear (LOOP_CLOSED_SSA);
2511 }
2512
582a80ed 2513 free_dominance_info (CDI_DOMINATORS);
2514 return todo;
4ee9c684 2515}
2516
5664499b 2517
cbe8bda8 2518namespace {
2519
2520const pass_data pass_data_ccp =
41511585 2521{
cbe8bda8 2522 GIMPLE_PASS, /* type */
2523 "ccp", /* name */
2524 OPTGROUP_NONE, /* optinfo_flags */
cbe8bda8 2525 TV_TREE_CCP, /* tv_id */
2526 ( PROP_cfg | PROP_ssa ), /* properties_required */
2527 0, /* properties_provided */
2528 0, /* properties_destroyed */
2529 0, /* todo_flags_start */
8b88439e 2530 TODO_update_address_taken, /* todo_flags_finish */
41511585 2531};
4ee9c684 2532
cbe8bda8 2533class pass_ccp : public gimple_opt_pass
2534{
2535public:
9af5ce0c 2536 pass_ccp (gcc::context *ctxt)
d0322b7d 2537 : gimple_opt_pass (pass_data_ccp, ctxt), nonzero_p (false)
cbe8bda8 2538 {}
2539
2540 /* opt_pass methods: */
ae84f584 2541 opt_pass * clone () { return new pass_ccp (m_ctxt); }
d0322b7d 2542 void set_pass_param (unsigned int n, bool param)
2543 {
2544 gcc_assert (n == 0);
2545 nonzero_p = param;
2546 }
31315c24 2547 virtual bool gate (function *) { return flag_tree_ccp != 0; }
d0322b7d 2548 virtual unsigned int execute (function *) { return do_ssa_ccp (nonzero_p); }
cbe8bda8 2549
d0322b7d 2550 private:
2551 /* Determines whether the pass instance records nonzero bits. */
2552 bool nonzero_p;
cbe8bda8 2553}; // class pass_ccp
2554
2555} // anon namespace
2556
2557gimple_opt_pass *
2558make_pass_ccp (gcc::context *ctxt)
2559{
2560 return new pass_ccp (ctxt);
2561}
2562
4ee9c684 2563
75a70cf9 2564
bdd0e199 2565/* Try to optimize out __builtin_stack_restore. Optimize it out
2566 if there is another __builtin_stack_restore in the same basic
2567 block and no calls or ASM_EXPRs are in between, or if this block's
2568 only outgoing edge is to EXIT_BLOCK and there are no calls or
2569 ASM_EXPRs after this __builtin_stack_restore. */
2570
2571static tree
75a70cf9 2572optimize_stack_restore (gimple_stmt_iterator i)
bdd0e199 2573{
6ea999da 2574 tree callee;
42acab1c 2575 gimple *stmt;
75a70cf9 2576
2577 basic_block bb = gsi_bb (i);
42acab1c 2578 gimple *call = gsi_stmt (i);
bdd0e199 2579
75a70cf9 2580 if (gimple_code (call) != GIMPLE_CALL
2581 || gimple_call_num_args (call) != 1
2582 || TREE_CODE (gimple_call_arg (call, 0)) != SSA_NAME
2583 || !POINTER_TYPE_P (TREE_TYPE (gimple_call_arg (call, 0))))
bdd0e199 2584 return NULL_TREE;
2585
75a70cf9 2586 for (gsi_next (&i); !gsi_end_p (i); gsi_next (&i))
bdd0e199 2587 {
75a70cf9 2588 stmt = gsi_stmt (i);
2589 if (gimple_code (stmt) == GIMPLE_ASM)
bdd0e199 2590 return NULL_TREE;
75a70cf9 2591 if (gimple_code (stmt) != GIMPLE_CALL)
bdd0e199 2592 continue;
2593
75a70cf9 2594 callee = gimple_call_fndecl (stmt);
c40a6f90 2595 if (!callee
a0e9bfbb 2596 || !fndecl_built_in_p (callee, BUILT_IN_NORMAL)
c40a6f90 2597 /* All regular builtins are ok, just obviously not alloca. */
2b34677f 2598 || ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (callee)))
bdd0e199 2599 return NULL_TREE;
2600
50b8400c 2601 if (fndecl_built_in_p (callee, BUILT_IN_STACK_RESTORE))
6ea999da 2602 goto second_stack_restore;
bdd0e199 2603 }
2604
6ea999da 2605 if (!gsi_end_p (i))
bdd0e199 2606 return NULL_TREE;
2607
6ea999da 2608 /* Allow one successor of the exit block, or zero successors. */
2609 switch (EDGE_COUNT (bb->succs))
2610 {
2611 case 0:
2612 break;
2613 case 1:
34154e27 2614 if (single_succ_edge (bb)->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
6ea999da 2615 return NULL_TREE;
2616 break;
2617 default:
2618 return NULL_TREE;
2619 }
2620 second_stack_restore:
bdd0e199 2621
6ea999da 2622 /* If there's exactly one use, then zap the call to __builtin_stack_save.
2623 If there are multiple uses, then the last one should remove the call.
2624 In any case, whether the call to __builtin_stack_save can be removed
2625 or not is irrelevant to removing the call to __builtin_stack_restore. */
2626 if (has_single_use (gimple_call_arg (call, 0)))
2627 {
42acab1c 2628 gimple *stack_save = SSA_NAME_DEF_STMT (gimple_call_arg (call, 0));
6ea999da 2629 if (is_gimple_call (stack_save))
2630 {
2631 callee = gimple_call_fndecl (stack_save);
a0e9bfbb 2632 if (callee && fndecl_built_in_p (callee, BUILT_IN_STACK_SAVE))
6ea999da 2633 {
2634 gimple_stmt_iterator stack_save_gsi;
2635 tree rhs;
bdd0e199 2636
6ea999da 2637 stack_save_gsi = gsi_for_stmt (stack_save);
2638 rhs = build_int_cst (TREE_TYPE (gimple_call_arg (call, 0)), 0);
2639 update_call_from_tree (&stack_save_gsi, rhs);
2640 }
2641 }
2642 }
bdd0e199 2643
75a70cf9 2644 /* No effect, so the statement will be deleted. */
bdd0e199 2645 return integer_zero_node;
2646}
75a70cf9 2647
8a58ed0a 2648/* If va_list type is a simple pointer and nothing special is needed,
2649 optimize __builtin_va_start (&ap, 0) into ap = __builtin_next_arg (0),
2650 __builtin_va_end (&ap) out as NOP and __builtin_va_copy into a simple
2651 pointer assignment. */
2652
2653static tree
42acab1c 2654optimize_stdarg_builtin (gimple *call)
8a58ed0a 2655{
5f57a8b1 2656 tree callee, lhs, rhs, cfun_va_list;
8a58ed0a 2657 bool va_list_simple_ptr;
389dd41b 2658 location_t loc = gimple_location (call);
8a58ed0a 2659
75a70cf9 2660 callee = gimple_call_fndecl (call);
5f57a8b1 2661
2662 cfun_va_list = targetm.fn_abi_va_list (callee);
2663 va_list_simple_ptr = POINTER_TYPE_P (cfun_va_list)
2664 && (TREE_TYPE (cfun_va_list) == void_type_node
2665 || TREE_TYPE (cfun_va_list) == char_type_node);
2666
8a58ed0a 2667 switch (DECL_FUNCTION_CODE (callee))
2668 {
2669 case BUILT_IN_VA_START:
2670 if (!va_list_simple_ptr
2671 || targetm.expand_builtin_va_start != NULL
e7ed5dd7 2672 || !builtin_decl_explicit_p (BUILT_IN_NEXT_ARG))
8a58ed0a 2673 return NULL_TREE;
2674
75a70cf9 2675 if (gimple_call_num_args (call) != 2)
8a58ed0a 2676 return NULL_TREE;
2677
75a70cf9 2678 lhs = gimple_call_arg (call, 0);
8a58ed0a 2679 if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2680 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
5f57a8b1 2681 != TYPE_MAIN_VARIANT (cfun_va_list))
8a58ed0a 2682 return NULL_TREE;
48e1416a 2683
389dd41b 2684 lhs = build_fold_indirect_ref_loc (loc, lhs);
b9a16870 2685 rhs = build_call_expr_loc (loc, builtin_decl_explicit (BUILT_IN_NEXT_ARG),
75a70cf9 2686 1, integer_zero_node);
389dd41b 2687 rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
8a58ed0a 2688 return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2689
2690 case BUILT_IN_VA_COPY:
2691 if (!va_list_simple_ptr)
2692 return NULL_TREE;
2693
75a70cf9 2694 if (gimple_call_num_args (call) != 2)
8a58ed0a 2695 return NULL_TREE;
2696
75a70cf9 2697 lhs = gimple_call_arg (call, 0);
8a58ed0a 2698 if (!POINTER_TYPE_P (TREE_TYPE (lhs))
2699 || TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (lhs)))
5f57a8b1 2700 != TYPE_MAIN_VARIANT (cfun_va_list))
8a58ed0a 2701 return NULL_TREE;
2702
389dd41b 2703 lhs = build_fold_indirect_ref_loc (loc, lhs);
75a70cf9 2704 rhs = gimple_call_arg (call, 1);
8a58ed0a 2705 if (TYPE_MAIN_VARIANT (TREE_TYPE (rhs))
5f57a8b1 2706 != TYPE_MAIN_VARIANT (cfun_va_list))
8a58ed0a 2707 return NULL_TREE;
2708
389dd41b 2709 rhs = fold_convert_loc (loc, TREE_TYPE (lhs), rhs);
8a58ed0a 2710 return build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, rhs);
2711
2712 case BUILT_IN_VA_END:
75a70cf9 2713 /* No effect, so the statement will be deleted. */
8a58ed0a 2714 return integer_zero_node;
2715
2716 default:
2717 gcc_unreachable ();
2718 }
2719}
75a70cf9 2720
f87df69a 2721/* Attemp to make the block of __builtin_unreachable I unreachable by changing
2722 the incoming jumps. Return true if at least one jump was changed. */
2723
2724static bool
2725optimize_unreachable (gimple_stmt_iterator i)
2726{
2727 basic_block bb = gsi_bb (i);
2728 gimple_stmt_iterator gsi;
42acab1c 2729 gimple *stmt;
f87df69a 2730 edge_iterator ei;
2731 edge e;
2732 bool ret;
2733
f6b540af 2734 if (flag_sanitize & SANITIZE_UNREACHABLE)
2735 return false;
2736
f87df69a 2737 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
2738 {
2739 stmt = gsi_stmt (gsi);
2740
2741 if (is_gimple_debug (stmt))
2742 continue;
2743
1a91d914 2744 if (glabel *label_stmt = dyn_cast <glabel *> (stmt))
f87df69a 2745 {
2746 /* Verify we do not need to preserve the label. */
1a91d914 2747 if (FORCED_LABEL (gimple_label_label (label_stmt)))
f87df69a 2748 return false;
2749
2750 continue;
2751 }
2752
2753 /* Only handle the case that __builtin_unreachable is the first statement
2754 in the block. We rely on DCE to remove stmts without side-effects
2755 before __builtin_unreachable. */
2756 if (gsi_stmt (gsi) != gsi_stmt (i))
2757 return false;
2758 }
2759
2760 ret = false;
2761 FOR_EACH_EDGE (e, ei, bb->preds)
2762 {
2763 gsi = gsi_last_bb (e->src);
522f73a1 2764 if (gsi_end_p (gsi))
2765 continue;
f87df69a 2766
522f73a1 2767 stmt = gsi_stmt (gsi);
1a91d914 2768 if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
f87df69a 2769 {
2770 if (e->flags & EDGE_TRUE_VALUE)
1a91d914 2771 gimple_cond_make_false (cond_stmt);
f87df69a 2772 else if (e->flags & EDGE_FALSE_VALUE)
1a91d914 2773 gimple_cond_make_true (cond_stmt);
f87df69a 2774 else
2775 gcc_unreachable ();
1a91d914 2776 update_stmt (cond_stmt);
f87df69a 2777 }
2778 else
2779 {
34f3dfc2 2780 /* Todo: handle other cases. Note that unreachable switch case
2781 statements have already been removed. */
f87df69a 2782 continue;
2783 }
2784
2785 ret = true;
2786 }
2787
2788 return ret;
2789}
2790
9c1a31e4 2791/* Optimize
2792 mask_2 = 1 << cnt_1;
2793 _4 = __atomic_fetch_or_* (ptr_6, mask_2, _3);
2794 _5 = _4 & mask_2;
2795 to
2796 _4 = ATOMIC_BIT_TEST_AND_SET (ptr_6, cnt_1, 0, _3);
2797 _5 = _4;
2798 If _5 is only used in _5 != 0 or _5 == 0 comparisons, 1
2799 is passed instead of 0, and the builtin just returns a zero
2800 or 1 value instead of the actual bit.
2801 Similarly for __sync_fetch_and_or_* (without the ", _3" part
2802 in there), and/or if mask_2 is a power of 2 constant.
2803 Similarly for xor instead of or, use ATOMIC_BIT_TEST_AND_COMPLEMENT
2804 in that case. And similarly for and instead of or, except that
2805 the second argument to the builtin needs to be one's complement
2806 of the mask instead of mask. */
2807
2808static void
2809optimize_atomic_bit_test_and (gimple_stmt_iterator *gsip,
2810 enum internal_fn fn, bool has_model_arg,
2811 bool after)
2812{
2813 gimple *call = gsi_stmt (*gsip);
2814 tree lhs = gimple_call_lhs (call);
2815 use_operand_p use_p;
2816 gimple *use_stmt;
2817 tree mask, bit;
2818 optab optab;
2819
2820 if (!flag_inline_atomics
2821 || optimize_debug
2822 || !gimple_call_builtin_p (call, BUILT_IN_NORMAL)
2823 || !lhs
2824 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs)
2825 || !single_imm_use (lhs, &use_p, &use_stmt)
2826 || !is_gimple_assign (use_stmt)
2827 || gimple_assign_rhs_code (use_stmt) != BIT_AND_EXPR
2828 || !gimple_vdef (call))
2829 return;
2830
2831 switch (fn)
2832 {
2833 case IFN_ATOMIC_BIT_TEST_AND_SET:
2834 optab = atomic_bit_test_and_set_optab;
2835 break;
2836 case IFN_ATOMIC_BIT_TEST_AND_COMPLEMENT:
2837 optab = atomic_bit_test_and_complement_optab;
2838 break;
2839 case IFN_ATOMIC_BIT_TEST_AND_RESET:
2840 optab = atomic_bit_test_and_reset_optab;
2841 break;
2842 default:
2843 return;
2844 }
2845
2846 if (optab_handler (optab, TYPE_MODE (TREE_TYPE (lhs))) == CODE_FOR_nothing)
2847 return;
2848
2849 mask = gimple_call_arg (call, 1);
2850 tree use_lhs = gimple_assign_lhs (use_stmt);
2851 if (!use_lhs)
2852 return;
2853
2854 if (TREE_CODE (mask) == INTEGER_CST)
2855 {
2856 if (fn == IFN_ATOMIC_BIT_TEST_AND_RESET)
2857 mask = const_unop (BIT_NOT_EXPR, TREE_TYPE (mask), mask);
2858 mask = fold_convert (TREE_TYPE (lhs), mask);
2859 int ibit = tree_log2 (mask);
2860 if (ibit < 0)
2861 return;
2862 bit = build_int_cst (TREE_TYPE (lhs), ibit);
2863 }
2864 else if (TREE_CODE (mask) == SSA_NAME)
2865 {
2866 gimple *g = SSA_NAME_DEF_STMT (mask);
2867 if (fn == IFN_ATOMIC_BIT_TEST_AND_RESET)
2868 {
2869 if (!is_gimple_assign (g)
2870 || gimple_assign_rhs_code (g) != BIT_NOT_EXPR)
2871 return;
2872 mask = gimple_assign_rhs1 (g);
2873 if (TREE_CODE (mask) != SSA_NAME)
2874 return;
2875 g = SSA_NAME_DEF_STMT (mask);
2876 }
2877 if (!is_gimple_assign (g)
2878 || gimple_assign_rhs_code (g) != LSHIFT_EXPR
2879 || !integer_onep (gimple_assign_rhs1 (g)))
2880 return;
2881 bit = gimple_assign_rhs2 (g);
2882 }
2883 else
2884 return;
2885
2886 if (gimple_assign_rhs1 (use_stmt) == lhs)
2887 {
2888 if (!operand_equal_p (gimple_assign_rhs2 (use_stmt), mask, 0))
2889 return;
2890 }
2891 else if (gimple_assign_rhs2 (use_stmt) != lhs
2892 || !operand_equal_p (gimple_assign_rhs1 (use_stmt), mask, 0))
2893 return;
2894
2895 bool use_bool = true;
2896 bool has_debug_uses = false;
2897 imm_use_iterator iter;
2898 gimple *g;
2899
2900 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (use_lhs))
2901 use_bool = false;
2902 FOR_EACH_IMM_USE_STMT (g, iter, use_lhs)
2903 {
2904 enum tree_code code = ERROR_MARK;
7b645785 2905 tree op0 = NULL_TREE, op1 = NULL_TREE;
9c1a31e4 2906 if (is_gimple_debug (g))
2907 {
2908 has_debug_uses = true;
2909 continue;
2910 }
2911 else if (is_gimple_assign (g))
2912 switch (gimple_assign_rhs_code (g))
2913 {
2914 case COND_EXPR:
2915 op1 = gimple_assign_rhs1 (g);
2916 code = TREE_CODE (op1);
2917 op0 = TREE_OPERAND (op1, 0);
2918 op1 = TREE_OPERAND (op1, 1);
2919 break;
2920 case EQ_EXPR:
2921 case NE_EXPR:
2922 code = gimple_assign_rhs_code (g);
2923 op0 = gimple_assign_rhs1 (g);
2924 op1 = gimple_assign_rhs2 (g);
2925 break;
2926 default:
2927 break;
2928 }
2929 else if (gimple_code (g) == GIMPLE_COND)
2930 {
2931 code = gimple_cond_code (g);
2932 op0 = gimple_cond_lhs (g);
2933 op1 = gimple_cond_rhs (g);
2934 }
2935
2936 if ((code == EQ_EXPR || code == NE_EXPR)
2937 && op0 == use_lhs
2938 && integer_zerop (op1))
2939 {
2940 use_operand_p use_p;
2941 int n = 0;
2942 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
2943 n++;
2944 if (n == 1)
2945 continue;
2946 }
2947
2948 use_bool = false;
2949 BREAK_FROM_IMM_USE_STMT (iter);
2950 }
2951
2952 tree new_lhs = make_ssa_name (TREE_TYPE (lhs));
2953 tree flag = build_int_cst (TREE_TYPE (lhs), use_bool);
2954 if (has_model_arg)
2955 g = gimple_build_call_internal (fn, 4, gimple_call_arg (call, 0),
2956 bit, flag, gimple_call_arg (call, 2));
2957 else
2958 g = gimple_build_call_internal (fn, 3, gimple_call_arg (call, 0),
2959 bit, flag);
2960 gimple_call_set_lhs (g, new_lhs);
2961 gimple_set_location (g, gimple_location (call));
1263a9e1 2962 gimple_move_vops (g, call);
aac19106 2963 bool throws = stmt_can_throw_internal (cfun, call);
c35e53b1 2964 gimple_call_set_nothrow (as_a <gcall *> (g),
2965 gimple_call_nothrow_p (as_a <gcall *> (call)));
9c1a31e4 2966 gimple_stmt_iterator gsi = *gsip;
2967 gsi_insert_after (&gsi, g, GSI_NEW_STMT);
c35e53b1 2968 edge e = NULL;
2969 if (throws)
2970 {
2971 maybe_clean_or_replace_eh_stmt (call, g);
2972 if (after || (use_bool && has_debug_uses))
2973 e = find_fallthru_edge (gsi_bb (gsi)->succs);
2974 }
9c1a31e4 2975 if (after)
2976 {
2977 /* The internal function returns the value of the specified bit
2978 before the atomic operation. If we are interested in the value
2979 of the specified bit after the atomic operation (makes only sense
2980 for xor, otherwise the bit content is compile time known),
2981 we need to invert the bit. */
2982 g = gimple_build_assign (make_ssa_name (TREE_TYPE (lhs)),
2983 BIT_XOR_EXPR, new_lhs,
2984 use_bool ? build_int_cst (TREE_TYPE (lhs), 1)
2985 : mask);
2986 new_lhs = gimple_assign_lhs (g);
c35e53b1 2987 if (throws)
2988 {
2989 gsi_insert_on_edge_immediate (e, g);
2990 gsi = gsi_for_stmt (g);
2991 }
2992 else
2993 gsi_insert_after (&gsi, g, GSI_NEW_STMT);
9c1a31e4 2994 }
2995 if (use_bool && has_debug_uses)
2996 {
c35e53b1 2997 tree temp = NULL_TREE;
2998 if (!throws || after || single_pred_p (e->dest))
2999 {
3000 temp = make_node (DEBUG_EXPR_DECL);
3001 DECL_ARTIFICIAL (temp) = 1;
3002 TREE_TYPE (temp) = TREE_TYPE (lhs);
3003 SET_DECL_MODE (temp, TYPE_MODE (TREE_TYPE (lhs)));
3004 tree t = build2 (LSHIFT_EXPR, TREE_TYPE (lhs), new_lhs, bit);
3005 g = gimple_build_debug_bind (temp, t, g);
3006 if (throws && !after)
3007 {
3008 gsi = gsi_after_labels (e->dest);
3009 gsi_insert_before (&gsi, g, GSI_SAME_STMT);
3010 }
3011 else
3012 gsi_insert_after (&gsi, g, GSI_NEW_STMT);
3013 }
9c1a31e4 3014 FOR_EACH_IMM_USE_STMT (g, iter, use_lhs)
3015 if (is_gimple_debug (g))
3016 {
3017 use_operand_p use_p;
c35e53b1 3018 if (temp == NULL_TREE)
3019 gimple_debug_bind_reset_value (g);
3020 else
3021 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
3022 SET_USE (use_p, temp);
9c1a31e4 3023 update_stmt (g);
3024 }
3025 }
3026 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_lhs)
3027 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (use_lhs);
3028 replace_uses_by (use_lhs, new_lhs);
3029 gsi = gsi_for_stmt (use_stmt);
3030 gsi_remove (&gsi, true);
3031 release_defs (use_stmt);
3032 gsi_remove (gsip, true);
3033 release_ssa_name (lhs);
3034}
3035
82193434 3036/* Optimize
3037 a = {};
3038 b = a;
3039 into
3040 a = {};
3041 b = {};
3042 Similarly for memset (&a, ..., sizeof (a)); instead of a = {};
3043 and/or memcpy (&b, &a, sizeof (a)); instead of b = a; */
3044
3045static void
3046optimize_memcpy (gimple_stmt_iterator *gsip, tree dest, tree src, tree len)
3047{
3048 gimple *stmt = gsi_stmt (*gsip);
3049 if (gimple_has_volatile_ops (stmt))
3050 return;
3051
3052 tree vuse = gimple_vuse (stmt);
3053 if (vuse == NULL)
3054 return;
3055
3056 gimple *defstmt = SSA_NAME_DEF_STMT (vuse);
3057 tree src2 = NULL_TREE, len2 = NULL_TREE;
773078cb 3058 poly_int64 offset, offset2;
82193434 3059 tree val = integer_zero_node;
3060 if (gimple_store_p (defstmt)
3061 && gimple_assign_single_p (defstmt)
3062 && TREE_CODE (gimple_assign_rhs1 (defstmt)) == CONSTRUCTOR
3063 && !gimple_clobber_p (defstmt))
3064 src2 = gimple_assign_lhs (defstmt);
3065 else if (gimple_call_builtin_p (defstmt, BUILT_IN_MEMSET)
3066 && TREE_CODE (gimple_call_arg (defstmt, 0)) == ADDR_EXPR
3067 && TREE_CODE (gimple_call_arg (defstmt, 1)) == INTEGER_CST)
3068 {
3069 src2 = TREE_OPERAND (gimple_call_arg (defstmt, 0), 0);
3070 len2 = gimple_call_arg (defstmt, 2);
3071 val = gimple_call_arg (defstmt, 1);
3072 /* For non-0 val, we'd have to transform stmt from assignment
3073 into memset (only if dest is addressable). */
3074 if (!integer_zerop (val) && is_gimple_assign (stmt))
3075 src2 = NULL_TREE;
3076 }
3077
3078 if (src2 == NULL_TREE)
3079 return;
3080
3081 if (len == NULL_TREE)
3082 len = (TREE_CODE (src) == COMPONENT_REF
3083 ? DECL_SIZE_UNIT (TREE_OPERAND (src, 1))
3084 : TYPE_SIZE_UNIT (TREE_TYPE (src)));
3085 if (len2 == NULL_TREE)
3086 len2 = (TREE_CODE (src2) == COMPONENT_REF
3087 ? DECL_SIZE_UNIT (TREE_OPERAND (src2, 1))
3088 : TYPE_SIZE_UNIT (TREE_TYPE (src2)));
3089 if (len == NULL_TREE
773078cb 3090 || !poly_int_tree_p (len)
82193434 3091 || len2 == NULL_TREE
773078cb 3092 || !poly_int_tree_p (len2))
82193434 3093 return;
3094
3095 src = get_addr_base_and_unit_offset (src, &offset);
3096 src2 = get_addr_base_and_unit_offset (src2, &offset2);
3097 if (src == NULL_TREE
3098 || src2 == NULL_TREE
773078cb 3099 || maybe_lt (offset, offset2))
82193434 3100 return;
3101
3102 if (!operand_equal_p (src, src2, 0))
3103 return;
3104
3105 /* [ src + offset2, src + offset2 + len2 - 1 ] is set to val.
3106 Make sure that
3107 [ src + offset, src + offset + len - 1 ] is a subset of that. */
773078cb 3108 if (maybe_gt (wi::to_poly_offset (len) + (offset - offset2),
3109 wi::to_poly_offset (len2)))
82193434 3110 return;
3111
3112 if (dump_file && (dump_flags & TDF_DETAILS))
3113 {
3114 fprintf (dump_file, "Simplified\n ");
3115 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
3116 fprintf (dump_file, "after previous\n ");
3117 print_gimple_stmt (dump_file, defstmt, 0, dump_flags);
3118 }
3119
3120 /* For simplicity, don't change the kind of the stmt,
3121 turn dest = src; into dest = {}; and memcpy (&dest, &src, len);
3122 into memset (&dest, val, len);
3123 In theory we could change dest = src into memset if dest
3124 is addressable (maybe beneficial if val is not 0), or
3125 memcpy (&dest, &src, len) into dest = {} if len is the size
3126 of dest, dest isn't volatile. */
3127 if (is_gimple_assign (stmt))
3128 {
3129 tree ctor = build_constructor (TREE_TYPE (dest), NULL);
3130 gimple_assign_set_rhs_from_tree (gsip, ctor);
3131 update_stmt (stmt);
3132 }
3133 else /* If stmt is memcpy, transform it into memset. */
3134 {
3135 gcall *call = as_a <gcall *> (stmt);
3136 tree fndecl = builtin_decl_implicit (BUILT_IN_MEMSET);
3137 gimple_call_set_fndecl (call, fndecl);
3138 gimple_call_set_fntype (call, TREE_TYPE (fndecl));
3139 gimple_call_set_arg (call, 1, val);
3140 update_stmt (stmt);
3141 }
3142
3143 if (dump_file && (dump_flags & TDF_DETAILS))
3144 {
3145 fprintf (dump_file, "into\n ");
3146 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
3147 }
3148}
3149
4ee9c684 3150/* A simple pass that attempts to fold all builtin functions. This pass
3151 is run after we've propagated as many constants as we can. */
3152
65b0537f 3153namespace {
3154
3155const pass_data pass_data_fold_builtins =
3156{
3157 GIMPLE_PASS, /* type */
3158 "fab", /* name */
3159 OPTGROUP_NONE, /* optinfo_flags */
65b0537f 3160 TV_NONE, /* tv_id */
3161 ( PROP_cfg | PROP_ssa ), /* properties_required */
3162 0, /* properties_provided */
3163 0, /* properties_destroyed */
3164 0, /* todo_flags_start */
8b88439e 3165 TODO_update_ssa, /* todo_flags_finish */
65b0537f 3166};
3167
3168class pass_fold_builtins : public gimple_opt_pass
3169{
3170public:
3171 pass_fold_builtins (gcc::context *ctxt)
3172 : gimple_opt_pass (pass_data_fold_builtins, ctxt)
3173 {}
3174
3175 /* opt_pass methods: */
3176 opt_pass * clone () { return new pass_fold_builtins (m_ctxt); }
3177 virtual unsigned int execute (function *);
3178
3179}; // class pass_fold_builtins
3180
3181unsigned int
3182pass_fold_builtins::execute (function *fun)
4ee9c684 3183{
b36237eb 3184 bool cfg_changed = false;
4ee9c684 3185 basic_block bb;
b1b7c0c4 3186 unsigned int todoflags = 0;
48e1416a 3187
65b0537f 3188 FOR_EACH_BB_FN (bb, fun)
4ee9c684 3189 {
75a70cf9 3190 gimple_stmt_iterator i;
3191 for (i = gsi_start_bb (bb); !gsi_end_p (i); )
4ee9c684 3192 {
42acab1c 3193 gimple *stmt, *old_stmt;
40a3eb84 3194 tree callee;
0a39fd54 3195 enum built_in_function fcode;
4ee9c684 3196
75a70cf9 3197 stmt = gsi_stmt (i);
3198
3199 if (gimple_code (stmt) != GIMPLE_CALL)
0a39fd54 3200 {
896a0c42 3201 /* Remove all *ssaname_N ={v} {CLOBBER}; stmts,
3202 after the last GIMPLE DSE they aren't needed and might
3203 unnecessarily keep the SSA_NAMEs live. */
3204 if (gimple_clobber_p (stmt))
3205 {
3206 tree lhs = gimple_assign_lhs (stmt);
3207 if (TREE_CODE (lhs) == MEM_REF
3208 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME)
3209 {
3210 unlink_stmt_vdef (stmt);
3211 gsi_remove (&i, true);
3212 release_defs (stmt);
3213 continue;
3214 }
3215 }
82193434 3216 else if (gimple_assign_load_p (stmt) && gimple_store_p (stmt))
3217 optimize_memcpy (&i, gimple_assign_lhs (stmt),
3218 gimple_assign_rhs1 (stmt), NULL_TREE);
75a70cf9 3219 gsi_next (&i);
0a39fd54 3220 continue;
3221 }
40a3eb84 3222
75a70cf9 3223 callee = gimple_call_fndecl (stmt);
a0e9bfbb 3224 if (!callee || !fndecl_built_in_p (callee, BUILT_IN_NORMAL))
0a39fd54 3225 {
75a70cf9 3226 gsi_next (&i);
0a39fd54 3227 continue;
3228 }
5a4b7e1e 3229
40a3eb84 3230 fcode = DECL_FUNCTION_CODE (callee);
3231 if (fold_stmt (&i))
3232 ;
3233 else
3234 {
3235 tree result = NULL_TREE;
3236 switch (DECL_FUNCTION_CODE (callee))
3237 {
3238 case BUILT_IN_CONSTANT_P:
3239 /* Resolve __builtin_constant_p. If it hasn't been
3240 folded to integer_one_node by now, it's fairly
3241 certain that the value simply isn't constant. */
3242 result = integer_zero_node;
3243 break;
5a4b7e1e 3244
40a3eb84 3245 case BUILT_IN_ASSUME_ALIGNED:
3246 /* Remove __builtin_assume_aligned. */
3247 result = gimple_call_arg (stmt, 0);
3248 break;
4ee9c684 3249
40a3eb84 3250 case BUILT_IN_STACK_RESTORE:
3251 result = optimize_stack_restore (i);
3252 if (result)
3253 break;
3254 gsi_next (&i);
3255 continue;
fca0886c 3256
40a3eb84 3257 case BUILT_IN_UNREACHABLE:
3258 if (optimize_unreachable (i))
3259 cfg_changed = true;
8a58ed0a 3260 break;
8a58ed0a 3261
9c1a31e4 3262 case BUILT_IN_ATOMIC_FETCH_OR_1:
3263 case BUILT_IN_ATOMIC_FETCH_OR_2:
3264 case BUILT_IN_ATOMIC_FETCH_OR_4:
3265 case BUILT_IN_ATOMIC_FETCH_OR_8:
3266 case BUILT_IN_ATOMIC_FETCH_OR_16:
3267 optimize_atomic_bit_test_and (&i,
3268 IFN_ATOMIC_BIT_TEST_AND_SET,
3269 true, false);
3270 break;
3271 case BUILT_IN_SYNC_FETCH_AND_OR_1:
3272 case BUILT_IN_SYNC_FETCH_AND_OR_2:
3273 case BUILT_IN_SYNC_FETCH_AND_OR_4:
3274 case BUILT_IN_SYNC_FETCH_AND_OR_8:
3275 case BUILT_IN_SYNC_FETCH_AND_OR_16:
3276 optimize_atomic_bit_test_and (&i,
3277 IFN_ATOMIC_BIT_TEST_AND_SET,
3278 false, false);
3279 break;
3280
3281 case BUILT_IN_ATOMIC_FETCH_XOR_1:
3282 case BUILT_IN_ATOMIC_FETCH_XOR_2:
3283 case BUILT_IN_ATOMIC_FETCH_XOR_4:
3284 case BUILT_IN_ATOMIC_FETCH_XOR_8:
3285 case BUILT_IN_ATOMIC_FETCH_XOR_16:
3286 optimize_atomic_bit_test_and
3287 (&i, IFN_ATOMIC_BIT_TEST_AND_COMPLEMENT, true, false);
3288 break;
3289 case BUILT_IN_SYNC_FETCH_AND_XOR_1:
3290 case BUILT_IN_SYNC_FETCH_AND_XOR_2:
3291 case BUILT_IN_SYNC_FETCH_AND_XOR_4:
3292 case BUILT_IN_SYNC_FETCH_AND_XOR_8:
3293 case BUILT_IN_SYNC_FETCH_AND_XOR_16:
3294 optimize_atomic_bit_test_and
3295 (&i, IFN_ATOMIC_BIT_TEST_AND_COMPLEMENT, false, false);
3296 break;
3297
3298 case BUILT_IN_ATOMIC_XOR_FETCH_1:
3299 case BUILT_IN_ATOMIC_XOR_FETCH_2:
3300 case BUILT_IN_ATOMIC_XOR_FETCH_4:
3301 case BUILT_IN_ATOMIC_XOR_FETCH_8:
3302 case BUILT_IN_ATOMIC_XOR_FETCH_16:
3303 optimize_atomic_bit_test_and
3304 (&i, IFN_ATOMIC_BIT_TEST_AND_COMPLEMENT, true, true);
3305 break;
3306 case BUILT_IN_SYNC_XOR_AND_FETCH_1:
3307 case BUILT_IN_SYNC_XOR_AND_FETCH_2:
3308 case BUILT_IN_SYNC_XOR_AND_FETCH_4:
3309 case BUILT_IN_SYNC_XOR_AND_FETCH_8:
3310 case BUILT_IN_SYNC_XOR_AND_FETCH_16:
3311 optimize_atomic_bit_test_and
3312 (&i, IFN_ATOMIC_BIT_TEST_AND_COMPLEMENT, false, true);
3313 break;
3314
3315 case BUILT_IN_ATOMIC_FETCH_AND_1:
3316 case BUILT_IN_ATOMIC_FETCH_AND_2:
3317 case BUILT_IN_ATOMIC_FETCH_AND_4:
3318 case BUILT_IN_ATOMIC_FETCH_AND_8:
3319 case BUILT_IN_ATOMIC_FETCH_AND_16:
3320 optimize_atomic_bit_test_and (&i,
3321 IFN_ATOMIC_BIT_TEST_AND_RESET,
3322 true, false);
3323 break;
3324 case BUILT_IN_SYNC_FETCH_AND_AND_1:
3325 case BUILT_IN_SYNC_FETCH_AND_AND_2:
3326 case BUILT_IN_SYNC_FETCH_AND_AND_4:
3327 case BUILT_IN_SYNC_FETCH_AND_AND_8:
3328 case BUILT_IN_SYNC_FETCH_AND_AND_16:
3329 optimize_atomic_bit_test_and (&i,
3330 IFN_ATOMIC_BIT_TEST_AND_RESET,
3331 false, false);
3332 break;
3333
82193434 3334 case BUILT_IN_MEMCPY:
3335 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL)
3336 && TREE_CODE (gimple_call_arg (stmt, 0)) == ADDR_EXPR
3337 && TREE_CODE (gimple_call_arg (stmt, 1)) == ADDR_EXPR
3338 && TREE_CODE (gimple_call_arg (stmt, 2)) == INTEGER_CST)
3339 {
3340 tree dest = TREE_OPERAND (gimple_call_arg (stmt, 0), 0);
3341 tree src = TREE_OPERAND (gimple_call_arg (stmt, 1), 0);
3342 tree len = gimple_call_arg (stmt, 2);
3343 optimize_memcpy (&i, dest, src, len);
3344 }
3345 break;
3346
40a3eb84 3347 case BUILT_IN_VA_START:
3348 case BUILT_IN_VA_END:
3349 case BUILT_IN_VA_COPY:
3350 /* These shouldn't be folded before pass_stdarg. */
3351 result = optimize_stdarg_builtin (stmt);
82193434 3352 break;
f87df69a 3353
40a3eb84 3354 default:;
3355 }
bdd0e199 3356
40a3eb84 3357 if (!result)
3358 {
3359 gsi_next (&i);
3360 continue;
3361 }
4ee9c684 3362
40a3eb84 3363 if (!update_call_from_tree (&i, result))
3364 gimplify_and_update_call_from_tree (&i, result);
3365 }
3366
3367 todoflags |= TODO_update_address_taken;
f87df69a 3368
4ee9c684 3369 if (dump_file && (dump_flags & TDF_DETAILS))
3370 {
3371 fprintf (dump_file, "Simplified\n ");
75a70cf9 3372 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
4ee9c684 3373 }
3374
75a70cf9 3375 old_stmt = stmt;
75a70cf9 3376 stmt = gsi_stmt (i);
4c5fd53c 3377 update_stmt (stmt);
de6ed584 3378
75a70cf9 3379 if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt)
3380 && gimple_purge_dead_eh_edges (bb))
b36237eb 3381 cfg_changed = true;
4ee9c684 3382
3383 if (dump_file && (dump_flags & TDF_DETAILS))
3384 {
3385 fprintf (dump_file, "to\n ");
75a70cf9 3386 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
4ee9c684 3387 fprintf (dump_file, "\n");
3388 }
0a39fd54 3389
3390 /* Retry the same statement if it changed into another
3391 builtin, there might be new opportunities now. */
75a70cf9 3392 if (gimple_code (stmt) != GIMPLE_CALL)
0a39fd54 3393 {
75a70cf9 3394 gsi_next (&i);
0a39fd54 3395 continue;
3396 }
75a70cf9 3397 callee = gimple_call_fndecl (stmt);
0a39fd54 3398 if (!callee
a0e9bfbb 3399 || !fndecl_built_in_p (callee, fcode))
75a70cf9 3400 gsi_next (&i);
4ee9c684 3401 }
3402 }
48e1416a 3403
b36237eb 3404 /* Delete unreachable blocks. */
b1b7c0c4 3405 if (cfg_changed)
3406 todoflags |= TODO_cleanup_cfg;
48e1416a 3407
b1b7c0c4 3408 return todoflags;
4ee9c684 3409}
3410
cbe8bda8 3411} // anon namespace
3412
3413gimple_opt_pass *
3414make_pass_fold_builtins (gcc::context *ctxt)
3415{
3416 return new pass_fold_builtins (ctxt);
3417}
184fac50 3418
3419/* A simple pass that emits some warnings post IPA. */
3420
3421namespace {
3422
3423const pass_data pass_data_post_ipa_warn =
3424{
3425 GIMPLE_PASS, /* type */
3426 "post_ipa_warn", /* name */
3427 OPTGROUP_NONE, /* optinfo_flags */
3428 TV_NONE, /* tv_id */
3429 ( PROP_cfg | PROP_ssa ), /* properties_required */
3430 0, /* properties_provided */
3431 0, /* properties_destroyed */
3432 0, /* todo_flags_start */
3433 0, /* todo_flags_finish */
3434};
3435
3436class pass_post_ipa_warn : public gimple_opt_pass
3437{
3438public:
3439 pass_post_ipa_warn (gcc::context *ctxt)
3440 : gimple_opt_pass (pass_data_post_ipa_warn, ctxt)
3441 {}
3442
3443 /* opt_pass methods: */
3444 opt_pass * clone () { return new pass_post_ipa_warn (m_ctxt); }
3445 virtual bool gate (function *) { return warn_nonnull != 0; }
3446 virtual unsigned int execute (function *);
3447
3448}; // class pass_fold_builtins
3449
3450unsigned int
3451pass_post_ipa_warn::execute (function *fun)
3452{
3453 basic_block bb;
3454
3455 FOR_EACH_BB_FN (bb, fun)
3456 {
3457 gimple_stmt_iterator gsi;
3458 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3459 {
3460 gimple *stmt = gsi_stmt (gsi);
3461 if (!is_gimple_call (stmt) || gimple_no_warning_p (stmt))
3462 continue;
3463
3464 if (warn_nonnull)
3465 {
3466 bitmap nonnullargs
3467 = get_nonnull_args (gimple_call_fntype (stmt));
3468 if (nonnullargs)
3469 {
3470 for (unsigned i = 0; i < gimple_call_num_args (stmt); i++)
3471 {
3472 tree arg = gimple_call_arg (stmt, i);
3473 if (TREE_CODE (TREE_TYPE (arg)) != POINTER_TYPE)
3474 continue;
3475 if (!integer_zerop (arg))
3476 continue;
3477 if (!bitmap_empty_p (nonnullargs)
3478 && !bitmap_bit_p (nonnullargs, i))
3479 continue;
3480
3481 location_t loc = gimple_location (stmt);
bc35ef65 3482 auto_diagnostic_group d;
184fac50 3483 if (warning_at (loc, OPT_Wnonnull,
5fe5ed7c 3484 "%Gargument %u null where non-null "
a2e93b74 3485 "expected", stmt, i + 1))
184fac50 3486 {
3487 tree fndecl = gimple_call_fndecl (stmt);
3488 if (fndecl && DECL_IS_BUILTIN (fndecl))
3489 inform (loc, "in a call to built-in function %qD",
3490 fndecl);
3491 else if (fndecl)
3492 inform (DECL_SOURCE_LOCATION (fndecl),
3493 "in a call to function %qD declared here",
3494 fndecl);
3495
3496 }
3497 }
3498 BITMAP_FREE (nonnullargs);
3499 }
3500 }
3501 }
3502 }
3503 return 0;
3504}
3505
3506} // anon namespace
3507
3508gimple_opt_pass *
3509make_pass_post_ipa_warn (gcc::context *ctxt)
3510{
3511 return new pass_post_ipa_warn (ctxt);
3512}