]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-ssa-ccp.c
2007-04-09 Paolo Carlini <pcarlini@suse.de>
[thirdparty/gcc.git] / gcc / tree-ssa-ccp.c
CommitLineData
4ee9c684 1/* Conditional constant propagation pass for the GNU compiler.
add6ee5e 2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
000657b5 3 Free Software Foundation, Inc.
4ee9c684 4 Adapted from original RTL SSA-CCP by Daniel Berlin <dberlin@dberlin.org>
5 Adapted to GIMPLE trees by Diego Novillo <dnovillo@redhat.com>
6
7This file is part of GCC.
8
9GCC is free software; you can redistribute it and/or modify it
10under the terms of the GNU General Public License as published by the
11Free Software Foundation; either version 2, or (at your option) any
12later version.
13
14GCC is distributed in the hope that it will be useful, but WITHOUT
15ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
18
19You should have received a copy of the GNU General Public License
20along with GCC; see the file COPYING. If not, write to the Free
67ce556b 21Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2202110-1301, USA. */
4ee9c684 23
88dbf20f 24/* Conditional constant propagation (CCP) is based on the SSA
25 propagation engine (tree-ssa-propagate.c). Constant assignments of
26 the form VAR = CST are propagated from the assignments into uses of
27 VAR, which in turn may generate new constants. The simulation uses
28 a four level lattice to keep track of constant values associated
29 with SSA names. Given an SSA name V_i, it may take one of the
30 following values:
31
bfa30570 32 UNINITIALIZED -> the initial state of the value. This value
33 is replaced with a correct initial value
34 the first time the value is used, so the
35 rest of the pass does not need to care about
36 it. Using this value simplifies initialization
37 of the pass, and prevents us from needlessly
38 scanning statements that are never reached.
88dbf20f 39
40 UNDEFINED -> V_i is a local variable whose definition
41 has not been processed yet. Therefore we
42 don't yet know if its value is a constant
43 or not.
44
45 CONSTANT -> V_i has been found to hold a constant
46 value C.
47
48 VARYING -> V_i cannot take a constant value, or if it
49 does, it is not possible to determine it
50 at compile time.
51
52 The core of SSA-CCP is in ccp_visit_stmt and ccp_visit_phi_node:
53
54 1- In ccp_visit_stmt, we are interested in assignments whose RHS
55 evaluates into a constant and conditional jumps whose predicate
56 evaluates into a boolean true or false. When an assignment of
57 the form V_i = CONST is found, V_i's lattice value is set to
58 CONSTANT and CONST is associated with it. This causes the
59 propagation engine to add all the SSA edges coming out the
60 assignment into the worklists, so that statements that use V_i
61 can be visited.
62
63 If the statement is a conditional with a constant predicate, we
64 mark the outgoing edges as executable or not executable
65 depending on the predicate's value. This is then used when
66 visiting PHI nodes to know when a PHI argument can be ignored.
67
68
69 2- In ccp_visit_phi_node, if all the PHI arguments evaluate to the
70 same constant C, then the LHS of the PHI is set to C. This
71 evaluation is known as the "meet operation". Since one of the
72 goals of this evaluation is to optimistically return constant
73 values as often as possible, it uses two main short cuts:
74
75 - If an argument is flowing in through a non-executable edge, it
76 is ignored. This is useful in cases like this:
77
78 if (PRED)
79 a_9 = 3;
80 else
81 a_10 = 100;
82 a_11 = PHI (a_9, a_10)
83
84 If PRED is known to always evaluate to false, then we can
85 assume that a_11 will always take its value from a_10, meaning
86 that instead of consider it VARYING (a_9 and a_10 have
87 different values), we can consider it CONSTANT 100.
88
89 - If an argument has an UNDEFINED value, then it does not affect
90 the outcome of the meet operation. If a variable V_i has an
91 UNDEFINED value, it means that either its defining statement
92 hasn't been visited yet or V_i has no defining statement, in
93 which case the original symbol 'V' is being used
94 uninitialized. Since 'V' is a local variable, the compiler
95 may assume any initial value for it.
96
97
98 After propagation, every variable V_i that ends up with a lattice
99 value of CONSTANT will have the associated constant value in the
100 array CONST_VAL[i].VALUE. That is fed into substitute_and_fold for
101 final substitution and folding.
102
103
104 Constant propagation in stores and loads (STORE-CCP)
105 ----------------------------------------------------
106
107 While CCP has all the logic to propagate constants in GIMPLE
108 registers, it is missing the ability to associate constants with
109 stores and loads (i.e., pointer dereferences, structures and
110 global/aliased variables). We don't keep loads and stores in
111 SSA, but we do build a factored use-def web for them (in the
112 virtual operands).
113
114 For instance, consider the following code fragment:
115
116 struct A a;
117 const int B = 42;
118
119 void foo (int i)
120 {
121 if (i > 10)
122 a.a = 42;
123 else
124 {
125 a.b = 21;
126 a.a = a.b + 21;
127 }
128
129 if (a.a != B)
130 never_executed ();
131 }
132
133 We should be able to deduce that the predicate 'a.a != B' is always
134 false. To achieve this, we associate constant values to the SSA
4fb5e5ca 135 names in the VDEF operands for each store. Additionally,
136 since we also glob partial loads/stores with the base symbol, we
137 also keep track of the memory reference where the constant value
138 was stored (in the MEM_REF field of PROP_VALUE_T). For instance,
88dbf20f 139
4fb5e5ca 140 # a_5 = VDEF <a_4>
88dbf20f 141 a.a = 2;
142
143 # VUSE <a_5>
144 x_3 = a.b;
145
146 In the example above, CCP will associate value '2' with 'a_5', but
147 it would be wrong to replace the load from 'a.b' with '2', because
148 '2' had been stored into a.a.
149
bfa30570 150 Note that the initial value of virtual operands is VARYING, not
151 UNDEFINED. Consider, for instance global variables:
88dbf20f 152
153 int A;
154
155 foo (int i)
156 {
157 if (i_3 > 10)
158 A_4 = 3;
159 # A_5 = PHI (A_4, A_2);
160
161 # VUSE <A_5>
162 A.0_6 = A;
163
164 return A.0_6;
165 }
166
167 The value of A_2 cannot be assumed to be UNDEFINED, as it may have
168 been defined outside of foo. If we were to assume it UNDEFINED, we
bfa30570 169 would erroneously optimize the above into 'return 3;'.
88dbf20f 170
171 Though STORE-CCP is not too expensive, it does have to do more work
172 than regular CCP, so it is only enabled at -O2. Both regular CCP
173 and STORE-CCP use the exact same algorithm. The only distinction
174 is that when doing STORE-CCP, the boolean variable DO_STORE_CCP is
175 set to true. This affects the evaluation of statements and PHI
176 nodes.
4ee9c684 177
178 References:
179
180 Constant propagation with conditional branches,
181 Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
182
183 Building an Optimizing Compiler,
184 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
185
186 Advanced Compiler Design and Implementation,
187 Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6 */
188
189#include "config.h"
190#include "system.h"
191#include "coretypes.h"
192#include "tm.h"
4ee9c684 193#include "tree.h"
41511585 194#include "flags.h"
4ee9c684 195#include "rtl.h"
196#include "tm_p.h"
41511585 197#include "ggc.h"
4ee9c684 198#include "basic-block.h"
41511585 199#include "output.h"
41511585 200#include "expr.h"
201#include "function.h"
4ee9c684 202#include "diagnostic.h"
41511585 203#include "timevar.h"
4ee9c684 204#include "tree-dump.h"
41511585 205#include "tree-flow.h"
4ee9c684 206#include "tree-pass.h"
41511585 207#include "tree-ssa-propagate.h"
208#include "langhooks.h"
8782adcf 209#include "target.h"
add6ee5e 210#include "toplev.h"
4ee9c684 211
212
213/* Possible lattice values. */
214typedef enum
215{
bfa30570 216 UNINITIALIZED,
4ee9c684 217 UNDEFINED,
218 CONSTANT,
219 VARYING
88dbf20f 220} ccp_lattice_t;
4ee9c684 221
88dbf20f 222/* Array of propagated constant values. After propagation,
223 CONST_VAL[I].VALUE holds the constant value for SSA_NAME(I). If
224 the constant is held in an SSA name representing a memory store
4fb5e5ca 225 (i.e., a VDEF), CONST_VAL[I].MEM_REF will contain the actual
226 memory reference used to store (i.e., the LHS of the assignment
227 doing the store). */
20140406 228static prop_value_t *const_val;
4ee9c684 229
88dbf20f 230/* True if we are also propagating constants in stores and loads. */
231static bool do_store_ccp;
4ee9c684 232
88dbf20f 233/* Dump constant propagation value VAL to file OUTF prefixed by PREFIX. */
01406fc0 234
235static void
88dbf20f 236dump_lattice_value (FILE *outf, const char *prefix, prop_value_t val)
01406fc0 237{
41511585 238 switch (val.lattice_val)
01406fc0 239 {
88dbf20f 240 case UNINITIALIZED:
241 fprintf (outf, "%sUNINITIALIZED", prefix);
242 break;
41511585 243 case UNDEFINED:
244 fprintf (outf, "%sUNDEFINED", prefix);
245 break;
246 case VARYING:
247 fprintf (outf, "%sVARYING", prefix);
248 break;
41511585 249 case CONSTANT:
250 fprintf (outf, "%sCONSTANT ", prefix);
88dbf20f 251 print_generic_expr (outf, val.value, dump_flags);
41511585 252 break;
253 default:
8c0963c4 254 gcc_unreachable ();
41511585 255 }
01406fc0 256}
4ee9c684 257
4ee9c684 258
88dbf20f 259/* Print lattice value VAL to stderr. */
260
261void debug_lattice_value (prop_value_t val);
262
263void
264debug_lattice_value (prop_value_t val)
265{
266 dump_lattice_value (stderr, "", val);
267 fprintf (stderr, "\n");
268}
4ee9c684 269
4ee9c684 270
d03bd588 271/* The regular is_gimple_min_invariant does a shallow test of the object.
272 It assumes that full gimplification has happened, or will happen on the
273 object. For a value coming from DECL_INITIAL, this is not true, so we
191ec5a2 274 have to be more strict ourselves. */
d03bd588 275
276static bool
277ccp_decl_initial_min_invariant (tree t)
278{
279 if (!is_gimple_min_invariant (t))
280 return false;
281 if (TREE_CODE (t) == ADDR_EXPR)
282 {
283 /* Inline and unroll is_gimple_addressable. */
284 while (1)
285 {
286 t = TREE_OPERAND (t, 0);
287 if (is_gimple_id (t))
288 return true;
289 if (!handled_component_p (t))
290 return false;
291 }
292 }
293 return true;
294}
295
aecfc21d 296/* If SYM is a constant variable with known value, return the value.
297 NULL_TREE is returned otherwise. */
298
299static tree
300get_symbol_constant_value (tree sym)
301{
302 if (TREE_STATIC (sym)
303 && TREE_READONLY (sym)
304 && !MTAG_P (sym))
305 {
306 tree val = DECL_INITIAL (sym);
307 if (val
308 && ccp_decl_initial_min_invariant (val))
309 return val;
310 }
311
312 return NULL_TREE;
313}
d03bd588 314
88dbf20f 315/* Compute a default value for variable VAR and store it in the
316 CONST_VAL array. The following rules are used to get default
317 values:
01406fc0 318
88dbf20f 319 1- Global and static variables that are declared constant are
320 considered CONSTANT.
321
322 2- Any other value is considered UNDEFINED. This is useful when
41511585 323 considering PHI nodes. PHI arguments that are undefined do not
324 change the constant value of the PHI node, which allows for more
88dbf20f 325 constants to be propagated.
4ee9c684 326
88dbf20f 327 3- If SSA_NAME_VALUE is set and it is a constant, its value is
328 used.
4ee9c684 329
88dbf20f 330 4- Variables defined by statements other than assignments and PHI
331 nodes are considered VARYING.
4ee9c684 332
bfa30570 333 5- Initial values of variables that are not GIMPLE registers are
334 considered VARYING. */
4ee9c684 335
88dbf20f 336static prop_value_t
337get_default_value (tree var)
338{
339 tree sym = SSA_NAME_VAR (var);
340 prop_value_t val = { UNINITIALIZED, NULL_TREE, NULL_TREE };
aecfc21d 341 tree cst_val;
bfa30570 342
88dbf20f 343 if (!do_store_ccp && !is_gimple_reg (var))
4ee9c684 344 {
88dbf20f 345 /* Short circuit for regular CCP. We are not interested in any
346 non-register when DO_STORE_CCP is false. */
41511585 347 val.lattice_val = VARYING;
4ee9c684 348 }
88dbf20f 349 else if (SSA_NAME_VALUE (var)
350 && is_gimple_min_invariant (SSA_NAME_VALUE (var)))
41511585 351 {
88dbf20f 352 val.lattice_val = CONSTANT;
353 val.value = SSA_NAME_VALUE (var);
41511585 354 }
aecfc21d 355 else if ((cst_val = get_symbol_constant_value (sym)) != NULL_TREE)
41511585 356 {
88dbf20f 357 /* Globals and static variables declared 'const' take their
358 initial value. */
359 val.lattice_val = CONSTANT;
aecfc21d 360 val.value = cst_val;
88dbf20f 361 val.mem_ref = sym;
41511585 362 }
363 else
364 {
41511585 365 tree stmt = SSA_NAME_DEF_STMT (var);
4ee9c684 366
88dbf20f 367 if (IS_EMPTY_STMT (stmt))
368 {
369 /* Variables defined by an empty statement are those used
370 before being initialized. If VAR is a local variable, we
bfa30570 371 can assume initially that it is UNDEFINED, otherwise we must
372 consider it VARYING. */
88dbf20f 373 if (is_gimple_reg (sym) && TREE_CODE (sym) != PARM_DECL)
374 val.lattice_val = UNDEFINED;
88dbf20f 375 else
41511585 376 val.lattice_val = VARYING;
377 }
35cc02b5 378 else if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
88dbf20f 379 || TREE_CODE (stmt) == PHI_NODE)
380 {
381 /* Any other variable defined by an assignment or a PHI node
bfa30570 382 is considered UNDEFINED. */
383 val.lattice_val = UNDEFINED;
88dbf20f 384 }
385 else
386 {
387 /* Otherwise, VAR will never take on a constant value. */
388 val.lattice_val = VARYING;
389 }
41511585 390 }
4ee9c684 391
41511585 392 return val;
393}
4ee9c684 394
4ee9c684 395
bfa30570 396/* Get the constant value associated with variable VAR. */
4ee9c684 397
bfa30570 398static inline prop_value_t *
399get_value (tree var)
88dbf20f 400{
401 prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
bfa30570 402
403 if (val->lattice_val == UNINITIALIZED)
4ee9c684 404 *val = get_default_value (var);
405
406 return val;
407}
408
bfa30570 409/* Sets the value associated with VAR to VARYING. */
410
411static inline void
412set_value_varying (tree var)
413{
414 prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
415
416 val->lattice_val = VARYING;
417 val->value = NULL_TREE;
418 val->mem_ref = NULL_TREE;
419}
4ee9c684 420
b31eb493 421/* For float types, modify the value of VAL to make ccp work correctly
422 for non-standard values (-0, NaN):
423
424 If HONOR_SIGNED_ZEROS is false, and VAL = -0, we canonicalize it to 0.
425 If HONOR_NANS is false, and VAL is NaN, we canonicalize it to UNDEFINED.
426 This is to fix the following problem (see PR 29921): Suppose we have
427
428 x = 0.0 * y
429
430 and we set value of y to NaN. This causes value of x to be set to NaN.
431 When we later determine that y is in fact VARYING, fold uses the fact
432 that HONOR_NANS is false, and we try to change the value of x to 0,
433 causing an ICE. With HONOR_NANS being false, the real appearance of
434 NaN would cause undefined behavior, though, so claiming that y (and x)
435 are UNDEFINED initially is correct. */
436
437static void
438canonicalize_float_value (prop_value_t *val)
439{
440 enum machine_mode mode;
441 tree type;
442 REAL_VALUE_TYPE d;
443
444 if (val->lattice_val != CONSTANT
445 || TREE_CODE (val->value) != REAL_CST)
446 return;
447
448 d = TREE_REAL_CST (val->value);
449 type = TREE_TYPE (val->value);
450 mode = TYPE_MODE (type);
451
452 if (!HONOR_SIGNED_ZEROS (mode)
453 && REAL_VALUE_MINUS_ZERO (d))
454 {
455 val->value = build_real (type, dconst0);
456 return;
457 }
458
459 if (!HONOR_NANS (mode)
460 && REAL_VALUE_ISNAN (d))
461 {
462 val->lattice_val = UNDEFINED;
463 val->value = NULL;
464 val->mem_ref = NULL;
465 return;
466 }
467}
468
88dbf20f 469/* Set the value for variable VAR to NEW_VAL. Return true if the new
470 value is different from VAR's previous value. */
4ee9c684 471
41511585 472static bool
88dbf20f 473set_lattice_value (tree var, prop_value_t new_val)
4ee9c684 474{
bfa30570 475 prop_value_t *old_val = get_value (var);
88dbf20f 476
b31eb493 477 canonicalize_float_value (&new_val);
478
88dbf20f 479 /* Lattice transitions must always be monotonically increasing in
bfa30570 480 value. If *OLD_VAL and NEW_VAL are the same, return false to
481 inform the caller that this was a non-transition. */
482
aecfc21d 483 gcc_assert (old_val->lattice_val < new_val.lattice_val
88dbf20f 484 || (old_val->lattice_val == new_val.lattice_val
aecfc21d 485 && ((!old_val->value && !new_val.value)
486 || operand_equal_p (old_val->value, new_val.value, 0))
bfa30570 487 && old_val->mem_ref == new_val.mem_ref));
88dbf20f 488
489 if (old_val->lattice_val != new_val.lattice_val)
4ee9c684 490 {
41511585 491 if (dump_file && (dump_flags & TDF_DETAILS))
492 {
88dbf20f 493 dump_lattice_value (dump_file, "Lattice value changed to ", new_val);
bfa30570 494 fprintf (dump_file, ". Adding SSA edges to worklist.\n");
41511585 495 }
496
88dbf20f 497 *old_val = new_val;
498
bfa30570 499 gcc_assert (new_val.lattice_val != UNDEFINED);
500 return true;
4ee9c684 501 }
41511585 502
503 return false;
4ee9c684 504}
505
506
88dbf20f 507/* Return the likely CCP lattice value for STMT.
4ee9c684 508
41511585 509 If STMT has no operands, then return CONSTANT.
4ee9c684 510
41511585 511 Else if any operands of STMT are undefined, then return UNDEFINED.
4ee9c684 512
41511585 513 Else if any operands of STMT are constants, then return CONSTANT.
4ee9c684 514
41511585 515 Else return VARYING. */
4ee9c684 516
88dbf20f 517static ccp_lattice_t
41511585 518likely_value (tree stmt)
519{
bfa30570 520 bool has_constant_operand;
41511585 521 stmt_ann_t ann;
522 tree use;
523 ssa_op_iter iter;
4ee9c684 524
41511585 525 ann = stmt_ann (stmt);
88dbf20f 526
527 /* If the statement has volatile operands, it won't fold to a
528 constant value. */
529 if (ann->has_volatile_ops)
530 return VARYING;
531
532 /* If we are not doing store-ccp, statements with loads
533 and/or stores will never fold into a constant. */
534 if (!do_store_ccp
9d637cc5 535 && !ZERO_SSA_OPERANDS (stmt, SSA_OP_ALL_VIRTUALS))
41511585 536 return VARYING;
4ee9c684 537
88dbf20f 538
539 /* A CALL_EXPR is assumed to be varying. NOTE: This may be overly
540 conservative, in the presence of const and pure calls. */
41511585 541 if (get_call_expr_in (stmt) != NULL_TREE)
542 return VARYING;
4ee9c684 543
88dbf20f 544 /* Anything other than assignments and conditional jumps are not
545 interesting for CCP. */
35cc02b5 546 if (TREE_CODE (stmt) != GIMPLE_MODIFY_STMT
bfa30570 547 && !(TREE_CODE (stmt) == RETURN_EXPR && get_rhs (stmt) != NULL_TREE)
88dbf20f 548 && TREE_CODE (stmt) != COND_EXPR
549 && TREE_CODE (stmt) != SWITCH_EXPR)
550 return VARYING;
551
b765fa12 552 if (is_gimple_min_invariant (get_rhs (stmt)))
553 return CONSTANT;
554
bfa30570 555 has_constant_operand = false;
556 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE | SSA_OP_VUSE)
41511585 557 {
bfa30570 558 prop_value_t *val = get_value (use);
41511585 559
bfa30570 560 if (val->lattice_val == UNDEFINED)
561 return UNDEFINED;
88dbf20f 562
41511585 563 if (val->lattice_val == CONSTANT)
bfa30570 564 has_constant_operand = true;
4ee9c684 565 }
41511585 566
bfa30570 567 if (has_constant_operand
568 /* We do not consider virtual operands here -- load from read-only
569 memory may have only VARYING virtual operands, but still be
570 constant. */
571 || ZERO_SSA_OPERANDS (stmt, SSA_OP_USE))
88dbf20f 572 return CONSTANT;
573
bfa30570 574 return VARYING;
4ee9c684 575}
576
bfa30570 577/* Returns true if STMT cannot be constant. */
578
579static bool
580surely_varying_stmt_p (tree stmt)
581{
582 /* If the statement has operands that we cannot handle, it cannot be
583 constant. */
584 if (stmt_ann (stmt)->has_volatile_ops)
585 return true;
586
587 if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_ALL_VIRTUALS))
588 {
589 if (!do_store_ccp)
590 return true;
591
592 /* We can only handle simple loads and stores. */
593 if (!stmt_makes_single_load (stmt)
594 && !stmt_makes_single_store (stmt))
595 return true;
596 }
597
598 /* If it contains a call, it is varying. */
599 if (get_call_expr_in (stmt) != NULL_TREE)
600 return true;
601
602 /* Anything other than assignments and conditional jumps are not
603 interesting for CCP. */
35cc02b5 604 if (TREE_CODE (stmt) != GIMPLE_MODIFY_STMT
bfa30570 605 && !(TREE_CODE (stmt) == RETURN_EXPR && get_rhs (stmt) != NULL_TREE)
606 && TREE_CODE (stmt) != COND_EXPR
607 && TREE_CODE (stmt) != SWITCH_EXPR)
608 return true;
609
610 return false;
611}
4ee9c684 612
41511585 613/* Initialize local data structures for CCP. */
4ee9c684 614
615static void
41511585 616ccp_initialize (void)
4ee9c684 617{
41511585 618 basic_block bb;
4ee9c684 619
43959b95 620 const_val = XCNEWVEC (prop_value_t, num_ssa_names);
4ee9c684 621
41511585 622 /* Initialize simulation flags for PHI nodes and statements. */
623 FOR_EACH_BB (bb)
4ee9c684 624 {
41511585 625 block_stmt_iterator i;
4ee9c684 626
41511585 627 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
628 {
41511585 629 tree stmt = bsi_stmt (i);
bfa30570 630 bool is_varying = surely_varying_stmt_p (stmt);
4ee9c684 631
bfa30570 632 if (is_varying)
41511585 633 {
88dbf20f 634 tree def;
635 ssa_op_iter iter;
636
637 /* If the statement will not produce a constant, mark
638 all its outputs VARYING. */
639 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
bfa30570 640 {
641 if (is_varying)
642 set_value_varying (def);
643 }
41511585 644 }
645
41511585 646 DONT_SIMULATE_AGAIN (stmt) = is_varying;
647 }
4ee9c684 648 }
649
bfa30570 650 /* Now process PHI nodes. We never set DONT_SIMULATE_AGAIN on phi node,
651 since we do not know which edges are executable yet, except for
652 phi nodes for virtual operands when we do not do store ccp. */
41511585 653 FOR_EACH_BB (bb)
4ee9c684 654 {
88dbf20f 655 tree phi;
41511585 656
657 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
658 {
bfa30570 659 if (!do_store_ccp && !is_gimple_reg (PHI_RESULT (phi)))
660 DONT_SIMULATE_AGAIN (phi) = true;
661 else
662 DONT_SIMULATE_AGAIN (phi) = false;
41511585 663 }
4ee9c684 664 }
41511585 665}
4ee9c684 666
4ee9c684 667
88dbf20f 668/* Do final substitution of propagated values, cleanup the flowgraph and
33a34f1e 669 free allocated storage.
4ee9c684 670
33a34f1e 671 Return TRUE when something was optimized. */
672
673static bool
88dbf20f 674ccp_finalize (void)
4ee9c684 675{
88dbf20f 676 /* Perform substitutions based on the known constant values. */
33a34f1e 677 bool something_changed = substitute_and_fold (const_val, false);
4ee9c684 678
88dbf20f 679 free (const_val);
33a34f1e 680 return something_changed;;
4ee9c684 681}
682
683
88dbf20f 684/* Compute the meet operator between *VAL1 and *VAL2. Store the result
685 in VAL1.
686
687 any M UNDEFINED = any
88dbf20f 688 any M VARYING = VARYING
689 Ci M Cj = Ci if (i == j)
690 Ci M Cj = VARYING if (i != j)
bfa30570 691 */
4ee9c684 692
693static void
88dbf20f 694ccp_lattice_meet (prop_value_t *val1, prop_value_t *val2)
4ee9c684 695{
88dbf20f 696 if (val1->lattice_val == UNDEFINED)
4ee9c684 697 {
88dbf20f 698 /* UNDEFINED M any = any */
699 *val1 = *val2;
41511585 700 }
88dbf20f 701 else if (val2->lattice_val == UNDEFINED)
92481a4d 702 {
88dbf20f 703 /* any M UNDEFINED = any
704 Nothing to do. VAL1 already contains the value we want. */
705 ;
92481a4d 706 }
88dbf20f 707 else if (val1->lattice_val == VARYING
708 || val2->lattice_val == VARYING)
41511585 709 {
88dbf20f 710 /* any M VARYING = VARYING. */
711 val1->lattice_val = VARYING;
712 val1->value = NULL_TREE;
713 val1->mem_ref = NULL_TREE;
41511585 714 }
88dbf20f 715 else if (val1->lattice_val == CONSTANT
716 && val2->lattice_val == CONSTANT
717 && simple_cst_equal (val1->value, val2->value) == 1
718 && (!do_store_ccp
b765fa12 719 || (val1->mem_ref && val2->mem_ref
720 && operand_equal_p (val1->mem_ref, val2->mem_ref, 0))))
41511585 721 {
88dbf20f 722 /* Ci M Cj = Ci if (i == j)
723 Ci M Cj = VARYING if (i != j)
724
725 If these two values come from memory stores, make sure that
726 they come from the same memory reference. */
727 val1->lattice_val = CONSTANT;
728 val1->value = val1->value;
729 val1->mem_ref = val1->mem_ref;
41511585 730 }
731 else
732 {
88dbf20f 733 /* Any other combination is VARYING. */
734 val1->lattice_val = VARYING;
735 val1->value = NULL_TREE;
736 val1->mem_ref = NULL_TREE;
41511585 737 }
4ee9c684 738}
739
740
41511585 741/* Loop through the PHI_NODE's parameters for BLOCK and compare their
742 lattice values to determine PHI_NODE's lattice value. The value of a
88dbf20f 743 PHI node is determined calling ccp_lattice_meet with all the arguments
41511585 744 of the PHI node that are incoming via executable edges. */
4ee9c684 745
41511585 746static enum ssa_prop_result
747ccp_visit_phi_node (tree phi)
4ee9c684 748{
41511585 749 int i;
88dbf20f 750 prop_value_t *old_val, new_val;
4ee9c684 751
41511585 752 if (dump_file && (dump_flags & TDF_DETAILS))
4ee9c684 753 {
41511585 754 fprintf (dump_file, "\nVisiting PHI node: ");
755 print_generic_expr (dump_file, phi, dump_flags);
4ee9c684 756 }
4ee9c684 757
bfa30570 758 old_val = get_value (PHI_RESULT (phi));
41511585 759 switch (old_val->lattice_val)
760 {
761 case VARYING:
88dbf20f 762 return SSA_PROP_VARYING;
4ee9c684 763
41511585 764 case CONSTANT:
765 new_val = *old_val;
766 break;
4ee9c684 767
41511585 768 case UNDEFINED:
41511585 769 new_val.lattice_val = UNDEFINED;
88dbf20f 770 new_val.value = NULL_TREE;
771 new_val.mem_ref = NULL_TREE;
41511585 772 break;
4ee9c684 773
41511585 774 default:
8c0963c4 775 gcc_unreachable ();
41511585 776 }
4ee9c684 777
41511585 778 for (i = 0; i < PHI_NUM_ARGS (phi); i++)
779 {
88dbf20f 780 /* Compute the meet operator over all the PHI arguments flowing
781 through executable edges. */
41511585 782 edge e = PHI_ARG_EDGE (phi, i);
4ee9c684 783
41511585 784 if (dump_file && (dump_flags & TDF_DETAILS))
785 {
786 fprintf (dump_file,
787 "\n Argument #%d (%d -> %d %sexecutable)\n",
788 i, e->src->index, e->dest->index,
789 (e->flags & EDGE_EXECUTABLE) ? "" : "not ");
790 }
791
792 /* If the incoming edge is executable, Compute the meet operator for
793 the existing value of the PHI node and the current PHI argument. */
794 if (e->flags & EDGE_EXECUTABLE)
795 {
88dbf20f 796 tree arg = PHI_ARG_DEF (phi, i);
797 prop_value_t arg_val;
4ee9c684 798
88dbf20f 799 if (is_gimple_min_invariant (arg))
41511585 800 {
88dbf20f 801 arg_val.lattice_val = CONSTANT;
802 arg_val.value = arg;
803 arg_val.mem_ref = NULL_TREE;
41511585 804 }
805 else
bfa30570 806 arg_val = *(get_value (arg));
4ee9c684 807
88dbf20f 808 ccp_lattice_meet (&new_val, &arg_val);
4ee9c684 809
41511585 810 if (dump_file && (dump_flags & TDF_DETAILS))
811 {
812 fprintf (dump_file, "\t");
88dbf20f 813 print_generic_expr (dump_file, arg, dump_flags);
814 dump_lattice_value (dump_file, "\tValue: ", arg_val);
41511585 815 fprintf (dump_file, "\n");
816 }
4ee9c684 817
41511585 818 if (new_val.lattice_val == VARYING)
819 break;
820 }
821 }
4ee9c684 822
823 if (dump_file && (dump_flags & TDF_DETAILS))
41511585 824 {
825 dump_lattice_value (dump_file, "\n PHI node value: ", new_val);
826 fprintf (dump_file, "\n\n");
827 }
828
bfa30570 829 /* Make the transition to the new value. */
41511585 830 if (set_lattice_value (PHI_RESULT (phi), new_val))
831 {
832 if (new_val.lattice_val == VARYING)
833 return SSA_PROP_VARYING;
834 else
835 return SSA_PROP_INTERESTING;
836 }
837 else
838 return SSA_PROP_NOT_INTERESTING;
4ee9c684 839}
840
841
41511585 842/* CCP specific front-end to the non-destructive constant folding
843 routines.
4ee9c684 844
845 Attempt to simplify the RHS of STMT knowing that one or more
846 operands are constants.
847
848 If simplification is possible, return the simplified RHS,
849 otherwise return the original RHS. */
850
851static tree
852ccp_fold (tree stmt)
853{
854 tree rhs = get_rhs (stmt);
855 enum tree_code code = TREE_CODE (rhs);
ce45a448 856 enum tree_code_class kind = TREE_CODE_CLASS (code);
4ee9c684 857 tree retval = NULL_TREE;
858
4ee9c684 859 if (TREE_CODE (rhs) == SSA_NAME)
88dbf20f 860 {
861 /* If the RHS is an SSA_NAME, return its known constant value,
862 if any. */
bfa30570 863 return get_value (rhs)->value;
88dbf20f 864 }
865 else if (do_store_ccp && stmt_makes_single_load (stmt))
866 {
867 /* If the RHS is a memory load, see if the VUSEs associated with
868 it are a valid constant for that memory load. */
869 prop_value_t *val = get_value_loaded_by (stmt, const_val);
5d66655a 870 if (val && val->mem_ref)
871 {
872 if (operand_equal_p (val->mem_ref, rhs, 0))
873 return val->value;
874
875 /* If RHS is extracting REALPART_EXPR or IMAGPART_EXPR of a
876 complex type with a known constant value, return it. */
877 if ((TREE_CODE (rhs) == REALPART_EXPR
878 || TREE_CODE (rhs) == IMAGPART_EXPR)
879 && operand_equal_p (val->mem_ref, TREE_OPERAND (rhs, 0), 0))
880 return fold_build1 (TREE_CODE (rhs), TREE_TYPE (rhs), val->value);
881 }
882 return NULL_TREE;
88dbf20f 883 }
4ee9c684 884
885 /* Unary operators. Note that we know the single operand must
886 be a constant. So this should almost always return a
887 simplified RHS. */
ce45a448 888 if (kind == tcc_unary)
4ee9c684 889 {
890 /* Handle unary operators which can appear in GIMPLE form. */
891 tree op0 = TREE_OPERAND (rhs, 0);
892
893 /* Simplify the operand down to a constant. */
894 if (TREE_CODE (op0) == SSA_NAME)
895 {
bfa30570 896 prop_value_t *val = get_value (op0);
4ee9c684 897 if (val->lattice_val == CONSTANT)
bfa30570 898 op0 = get_value (op0)->value;
4ee9c684 899 }
900
ad78532f 901 if ((code == NOP_EXPR || code == CONVERT_EXPR)
902 && tree_ssa_useless_type_conversion_1 (TREE_TYPE (rhs),
903 TREE_TYPE (op0)))
904 return op0;
1675c594 905 return fold_unary (code, TREE_TYPE (rhs), op0);
4ee9c684 906 }
907
908 /* Binary and comparison operators. We know one or both of the
909 operands are constants. */
ce45a448 910 else if (kind == tcc_binary
911 || kind == tcc_comparison
4ee9c684 912 || code == TRUTH_AND_EXPR
913 || code == TRUTH_OR_EXPR
914 || code == TRUTH_XOR_EXPR)
915 {
916 /* Handle binary and comparison operators that can appear in
917 GIMPLE form. */
918 tree op0 = TREE_OPERAND (rhs, 0);
919 tree op1 = TREE_OPERAND (rhs, 1);
920
921 /* Simplify the operands down to constants when appropriate. */
922 if (TREE_CODE (op0) == SSA_NAME)
923 {
bfa30570 924 prop_value_t *val = get_value (op0);
4ee9c684 925 if (val->lattice_val == CONSTANT)
88dbf20f 926 op0 = val->value;
4ee9c684 927 }
928
929 if (TREE_CODE (op1) == SSA_NAME)
930 {
bfa30570 931 prop_value_t *val = get_value (op1);
4ee9c684 932 if (val->lattice_val == CONSTANT)
88dbf20f 933 op1 = val->value;
4ee9c684 934 }
935
1675c594 936 return fold_binary (code, TREE_TYPE (rhs), op0, op1);
4ee9c684 937 }
938
939 /* We may be able to fold away calls to builtin functions if their
0bed3869 940 arguments are constants. */
4ee9c684 941 else if (code == CALL_EXPR
c2f47e15 942 && TREE_CODE (CALL_EXPR_FN (rhs)) == ADDR_EXPR
943 && TREE_CODE (TREE_OPERAND (CALL_EXPR_FN (rhs), 0)) == FUNCTION_DECL
944 && DECL_BUILT_IN (TREE_OPERAND (CALL_EXPR_FN (rhs), 0)))
4ee9c684 945 {
b66731e8 946 if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_USE))
4ee9c684 947 {
b66731e8 948 tree *orig, var;
b66731e8 949 size_t i = 0;
950 ssa_op_iter iter;
951 use_operand_p var_p;
4ee9c684 952
953 /* Preserve the original values of every operand. */
680a19b9 954 orig = XNEWVEC (tree, NUM_SSA_OPERANDS (stmt, SSA_OP_USE));
b66731e8 955 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
956 orig[i++] = var;
4ee9c684 957
958 /* Substitute operands with their values and try to fold. */
88dbf20f 959 replace_uses_in (stmt, NULL, const_val);
c2f47e15 960 retval = fold_call_expr (rhs, false);
4ee9c684 961
962 /* Restore operands to their original form. */
b66731e8 963 i = 0;
964 FOR_EACH_SSA_USE_OPERAND (var_p, stmt, iter, SSA_OP_USE)
965 SET_USE (var_p, orig[i++]);
4ee9c684 966 free (orig);
967 }
968 }
969 else
970 return rhs;
971
972 /* If we got a simplified form, see if we need to convert its type. */
973 if (retval)
f0613857 974 return fold_convert (TREE_TYPE (rhs), retval);
4ee9c684 975
976 /* No simplification was possible. */
977 return rhs;
978}
979
980
8782adcf 981/* Return the tree representing the element referenced by T if T is an
982 ARRAY_REF or COMPONENT_REF into constant aggregates. Return
983 NULL_TREE otherwise. */
984
985static tree
986fold_const_aggregate_ref (tree t)
987{
988 prop_value_t *value;
c75b4594 989 tree base, ctor, idx, field;
990 unsigned HOST_WIDE_INT cnt;
991 tree cfield, cval;
8782adcf 992
993 switch (TREE_CODE (t))
994 {
995 case ARRAY_REF:
996 /* Get a CONSTRUCTOR. If BASE is a VAR_DECL, get its
997 DECL_INITIAL. If BASE is a nested reference into another
998 ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
999 the inner reference. */
1000 base = TREE_OPERAND (t, 0);
1001 switch (TREE_CODE (base))
1002 {
1003 case VAR_DECL:
1004 if (!TREE_READONLY (base)
1005 || TREE_CODE (TREE_TYPE (base)) != ARRAY_TYPE
1006 || !targetm.binds_local_p (base))
1007 return NULL_TREE;
1008
1009 ctor = DECL_INITIAL (base);
1010 break;
1011
1012 case ARRAY_REF:
1013 case COMPONENT_REF:
1014 ctor = fold_const_aggregate_ref (base);
1015 break;
1016
1017 default:
1018 return NULL_TREE;
1019 }
1020
1021 if (ctor == NULL_TREE
4f61cce6 1022 || (TREE_CODE (ctor) != CONSTRUCTOR
1023 && TREE_CODE (ctor) != STRING_CST)
8782adcf 1024 || !TREE_STATIC (ctor))
1025 return NULL_TREE;
1026
1027 /* Get the index. If we have an SSA_NAME, try to resolve it
1028 with the current lattice value for the SSA_NAME. */
1029 idx = TREE_OPERAND (t, 1);
1030 switch (TREE_CODE (idx))
1031 {
1032 case SSA_NAME:
bfa30570 1033 if ((value = get_value (idx))
8782adcf 1034 && value->lattice_val == CONSTANT
1035 && TREE_CODE (value->value) == INTEGER_CST)
1036 idx = value->value;
1037 else
1038 return NULL_TREE;
1039 break;
1040
1041 case INTEGER_CST:
1042 break;
1043
1044 default:
1045 return NULL_TREE;
1046 }
1047
4f61cce6 1048 /* Fold read from constant string. */
1049 if (TREE_CODE (ctor) == STRING_CST)
1050 {
1051 if ((TYPE_MODE (TREE_TYPE (t))
1052 == TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1053 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1054 == MODE_INT)
1055 && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor)))) == 1
1056 && compare_tree_int (idx, TREE_STRING_LENGTH (ctor)) < 0)
1057 return build_int_cst (TREE_TYPE (t), (TREE_STRING_POINTER (ctor)
1058 [TREE_INT_CST_LOW (idx)]));
1059 return NULL_TREE;
1060 }
1061
8782adcf 1062 /* Whoo-hoo! I'll fold ya baby. Yeah! */
c75b4594 1063 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1064 if (tree_int_cst_equal (cfield, idx))
1065 return cval;
8782adcf 1066 break;
1067
1068 case COMPONENT_REF:
1069 /* Get a CONSTRUCTOR. If BASE is a VAR_DECL, get its
1070 DECL_INITIAL. If BASE is a nested reference into another
1071 ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
1072 the inner reference. */
1073 base = TREE_OPERAND (t, 0);
1074 switch (TREE_CODE (base))
1075 {
1076 case VAR_DECL:
1077 if (!TREE_READONLY (base)
1078 || TREE_CODE (TREE_TYPE (base)) != RECORD_TYPE
1079 || !targetm.binds_local_p (base))
1080 return NULL_TREE;
1081
1082 ctor = DECL_INITIAL (base);
1083 break;
1084
1085 case ARRAY_REF:
1086 case COMPONENT_REF:
1087 ctor = fold_const_aggregate_ref (base);
1088 break;
1089
1090 default:
1091 return NULL_TREE;
1092 }
1093
1094 if (ctor == NULL_TREE
1095 || TREE_CODE (ctor) != CONSTRUCTOR
1096 || !TREE_STATIC (ctor))
1097 return NULL_TREE;
1098
1099 field = TREE_OPERAND (t, 1);
1100
c75b4594 1101 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1102 if (cfield == field
8782adcf 1103 /* FIXME: Handle bit-fields. */
c75b4594 1104 && ! DECL_BIT_FIELD (cfield))
1105 return cval;
8782adcf 1106 break;
1107
908cb59d 1108 case REALPART_EXPR:
1109 case IMAGPART_EXPR:
1110 {
1111 tree c = fold_const_aggregate_ref (TREE_OPERAND (t, 0));
1112 if (c && TREE_CODE (c) == COMPLEX_CST)
1113 return fold_build1 (TREE_CODE (t), TREE_TYPE (t), c);
1114 break;
1115 }
1116
8782adcf 1117 default:
1118 break;
1119 }
1120
1121 return NULL_TREE;
1122}
1123
4ee9c684 1124/* Evaluate statement STMT. */
1125
88dbf20f 1126static prop_value_t
4ee9c684 1127evaluate_stmt (tree stmt)
1128{
88dbf20f 1129 prop_value_t val;
4f61cce6 1130 tree simplified = NULL_TREE;
88dbf20f 1131 ccp_lattice_t likelyvalue = likely_value (stmt);
add6ee5e 1132 bool is_constant;
88dbf20f 1133
1134 val.mem_ref = NULL_TREE;
4ee9c684 1135
add6ee5e 1136 fold_defer_overflow_warnings ();
1137
4ee9c684 1138 /* If the statement is likely to have a CONSTANT result, then try
1139 to fold the statement to determine the constant value. */
1140 if (likelyvalue == CONSTANT)
1141 simplified = ccp_fold (stmt);
1142 /* If the statement is likely to have a VARYING result, then do not
1143 bother folding the statement. */
4f61cce6 1144 if (likelyvalue == VARYING)
4ee9c684 1145 simplified = get_rhs (stmt);
8782adcf 1146 /* If the statement is an ARRAY_REF or COMPONENT_REF into constant
1147 aggregates, extract the referenced constant. Otherwise the
1148 statement is likely to have an UNDEFINED value, and there will be
1149 nothing to do. Note that fold_const_aggregate_ref returns
1150 NULL_TREE if the first case does not match. */
4f61cce6 1151 else if (!simplified)
8782adcf 1152 simplified = fold_const_aggregate_ref (get_rhs (stmt));
4ee9c684 1153
add6ee5e 1154 is_constant = simplified && is_gimple_min_invariant (simplified);
1155
1156 fold_undefer_overflow_warnings (is_constant, stmt, 0);
1157
1158 if (is_constant)
4ee9c684 1159 {
1160 /* The statement produced a constant value. */
1161 val.lattice_val = CONSTANT;
88dbf20f 1162 val.value = simplified;
4ee9c684 1163 }
1164 else
1165 {
1166 /* The statement produced a nonconstant value. If the statement
88dbf20f 1167 had UNDEFINED operands, then the result of the statement
1168 should be UNDEFINED. Otherwise, the statement is VARYING. */
bfa30570 1169 if (likelyvalue == UNDEFINED)
b765fa12 1170 val.lattice_val = likelyvalue;
1171 else
1172 val.lattice_val = VARYING;
1173
88dbf20f 1174 val.value = NULL_TREE;
4ee9c684 1175 }
41511585 1176
1177 return val;
4ee9c684 1178}
1179
1180
41511585 1181/* Visit the assignment statement STMT. Set the value of its LHS to the
88dbf20f 1182 value computed by the RHS and store LHS in *OUTPUT_P. If STMT
1183 creates virtual definitions, set the value of each new name to that
1184 of the RHS (if we can derive a constant out of the RHS). */
4ee9c684 1185
41511585 1186static enum ssa_prop_result
1187visit_assignment (tree stmt, tree *output_p)
4ee9c684 1188{
88dbf20f 1189 prop_value_t val;
41511585 1190 tree lhs, rhs;
88dbf20f 1191 enum ssa_prop_result retval;
4ee9c684 1192
35cc02b5 1193 lhs = GIMPLE_STMT_OPERAND (stmt, 0);
1194 rhs = GIMPLE_STMT_OPERAND (stmt, 1);
4ee9c684 1195
41511585 1196 if (TREE_CODE (rhs) == SSA_NAME)
1197 {
1198 /* For a simple copy operation, we copy the lattice values. */
bfa30570 1199 prop_value_t *nval = get_value (rhs);
41511585 1200 val = *nval;
1201 }
88dbf20f 1202 else if (do_store_ccp && stmt_makes_single_load (stmt))
41511585 1203 {
88dbf20f 1204 /* Same as above, but the RHS is not a gimple register and yet
bfa30570 1205 has a known VUSE. If STMT is loading from the same memory
88dbf20f 1206 location that created the SSA_NAMEs for the virtual operands,
1207 we can propagate the value on the RHS. */
1208 prop_value_t *nval = get_value_loaded_by (stmt, const_val);
1209
bfa30570 1210 if (nval
1211 && nval->mem_ref
b765fa12 1212 && operand_equal_p (nval->mem_ref, rhs, 0))
88dbf20f 1213 val = *nval;
1214 else
1215 val = evaluate_stmt (stmt);
41511585 1216 }
1217 else
a065a588 1218 /* Evaluate the statement. */
41511585 1219 val = evaluate_stmt (stmt);
4ee9c684 1220
a065a588 1221 /* If the original LHS was a VIEW_CONVERT_EXPR, modify the constant
eb716043 1222 value to be a VIEW_CONVERT_EXPR of the old constant value.
a065a588 1223
1224 ??? Also, if this was a definition of a bitfield, we need to widen
41511585 1225 the constant value into the type of the destination variable. This
1226 should not be necessary if GCC represented bitfields properly. */
1227 {
35cc02b5 1228 tree orig_lhs = GIMPLE_STMT_OPERAND (stmt, 0);
a065a588 1229
1230 if (TREE_CODE (orig_lhs) == VIEW_CONVERT_EXPR
1231 && val.lattice_val == CONSTANT)
1232 {
5f9acd88 1233 tree w = fold_unary (VIEW_CONVERT_EXPR,
1234 TREE_TYPE (TREE_OPERAND (orig_lhs, 0)),
1235 val.value);
eb716043 1236
662f5fa5 1237 orig_lhs = TREE_OPERAND (orig_lhs, 0);
eb716043 1238 if (w && is_gimple_min_invariant (w))
88dbf20f 1239 val.value = w;
eb716043 1240 else
1241 {
1242 val.lattice_val = VARYING;
88dbf20f 1243 val.value = NULL;
eb716043 1244 }
a065a588 1245 }
1246
41511585 1247 if (val.lattice_val == CONSTANT
a065a588 1248 && TREE_CODE (orig_lhs) == COMPONENT_REF
1249 && DECL_BIT_FIELD (TREE_OPERAND (orig_lhs, 1)))
4ee9c684 1250 {
88dbf20f 1251 tree w = widen_bitfield (val.value, TREE_OPERAND (orig_lhs, 1),
a065a588 1252 orig_lhs);
41511585 1253
1254 if (w && is_gimple_min_invariant (w))
88dbf20f 1255 val.value = w;
41511585 1256 else
4ee9c684 1257 {
41511585 1258 val.lattice_val = VARYING;
88dbf20f 1259 val.value = NULL_TREE;
1260 val.mem_ref = NULL_TREE;
4ee9c684 1261 }
4ee9c684 1262 }
41511585 1263 }
4ee9c684 1264
88dbf20f 1265 retval = SSA_PROP_NOT_INTERESTING;
4ee9c684 1266
41511585 1267 /* Set the lattice value of the statement's output. */
88dbf20f 1268 if (TREE_CODE (lhs) == SSA_NAME)
4ee9c684 1269 {
88dbf20f 1270 /* If STMT is an assignment to an SSA_NAME, we only have one
1271 value to set. */
1272 if (set_lattice_value (lhs, val))
1273 {
1274 *output_p = lhs;
1275 if (val.lattice_val == VARYING)
1276 retval = SSA_PROP_VARYING;
1277 else
1278 retval = SSA_PROP_INTERESTING;
1279 }
4ee9c684 1280 }
88dbf20f 1281 else if (do_store_ccp && stmt_makes_single_store (stmt))
1282 {
4fb5e5ca 1283 /* Otherwise, set the names in VDEF operands to the new
1284 constant value and mark the LHS as the memory reference
1285 associated with VAL. */
88dbf20f 1286 ssa_op_iter i;
1287 tree vdef;
1288 bool changed;
1289
88dbf20f 1290 /* Mark VAL as stored in the LHS of this assignment. */
bfa30570 1291 if (val.lattice_val == CONSTANT)
1292 val.mem_ref = lhs;
88dbf20f 1293
1294 /* Set the value of every VDEF to VAL. */
1295 changed = false;
1296 FOR_EACH_SSA_TREE_OPERAND (vdef, stmt, i, SSA_OP_VIRTUAL_DEFS)
aecfc21d 1297 {
1298 /* See PR 29801. We may have VDEFs for read-only variables
1299 (see the handling of unmodifiable variables in
1300 add_virtual_operand); do not attempt to change their value. */
1301 if (get_symbol_constant_value (SSA_NAME_VAR (vdef)) != NULL_TREE)
1302 continue;
1303
1304 changed |= set_lattice_value (vdef, val);
1305 }
88dbf20f 1306
1307 /* Note that for propagation purposes, we are only interested in
1308 visiting statements that load the exact same memory reference
1309 stored here. Those statements will have the exact same list
1310 of virtual uses, so it is enough to set the output of this
1311 statement to be its first virtual definition. */
1312 *output_p = first_vdef (stmt);
1313 if (changed)
1314 {
1315 if (val.lattice_val == VARYING)
1316 retval = SSA_PROP_VARYING;
1317 else
1318 retval = SSA_PROP_INTERESTING;
1319 }
1320 }
1321
1322 return retval;
4ee9c684 1323}
1324
4ee9c684 1325
41511585 1326/* Visit the conditional statement STMT. Return SSA_PROP_INTERESTING
1327 if it can determine which edge will be taken. Otherwise, return
1328 SSA_PROP_VARYING. */
1329
1330static enum ssa_prop_result
1331visit_cond_stmt (tree stmt, edge *taken_edge_p)
4ee9c684 1332{
88dbf20f 1333 prop_value_t val;
41511585 1334 basic_block block;
1335
1336 block = bb_for_stmt (stmt);
1337 val = evaluate_stmt (stmt);
1338
1339 /* Find which edge out of the conditional block will be taken and add it
1340 to the worklist. If no single edge can be determined statically,
1341 return SSA_PROP_VARYING to feed all the outgoing edges to the
1342 propagation engine. */
88dbf20f 1343 *taken_edge_p = val.value ? find_taken_edge (block, val.value) : 0;
41511585 1344 if (*taken_edge_p)
1345 return SSA_PROP_INTERESTING;
1346 else
1347 return SSA_PROP_VARYING;
4ee9c684 1348}
1349
4ee9c684 1350
41511585 1351/* Evaluate statement STMT. If the statement produces an output value and
1352 its evaluation changes the lattice value of its output, return
1353 SSA_PROP_INTERESTING and set *OUTPUT_P to the SSA_NAME holding the
1354 output value.
1355
1356 If STMT is a conditional branch and we can determine its truth
1357 value, set *TAKEN_EDGE_P accordingly. If STMT produces a varying
1358 value, return SSA_PROP_VARYING. */
4ee9c684 1359
41511585 1360static enum ssa_prop_result
1361ccp_visit_stmt (tree stmt, edge *taken_edge_p, tree *output_p)
1362{
41511585 1363 tree def;
1364 ssa_op_iter iter;
4ee9c684 1365
41511585 1366 if (dump_file && (dump_flags & TDF_DETAILS))
4ee9c684 1367 {
88dbf20f 1368 fprintf (dump_file, "\nVisiting statement:\n");
1369 print_generic_stmt (dump_file, stmt, dump_flags);
41511585 1370 fprintf (dump_file, "\n");
4ee9c684 1371 }
4ee9c684 1372
35cc02b5 1373 if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT)
4ee9c684 1374 {
41511585 1375 /* If the statement is an assignment that produces a single
1376 output value, evaluate its RHS to see if the lattice value of
1377 its output has changed. */
1378 return visit_assignment (stmt, output_p);
4ee9c684 1379 }
41511585 1380 else if (TREE_CODE (stmt) == COND_EXPR || TREE_CODE (stmt) == SWITCH_EXPR)
4ee9c684 1381 {
41511585 1382 /* If STMT is a conditional branch, see if we can determine
1383 which branch will be taken. */
1384 return visit_cond_stmt (stmt, taken_edge_p);
4ee9c684 1385 }
4ee9c684 1386
41511585 1387 /* Any other kind of statement is not interesting for constant
1388 propagation and, therefore, not worth simulating. */
41511585 1389 if (dump_file && (dump_flags & TDF_DETAILS))
1390 fprintf (dump_file, "No interesting values produced. Marked VARYING.\n");
4ee9c684 1391
41511585 1392 /* Definitions made by statements other than assignments to
1393 SSA_NAMEs represent unknown modifications to their outputs.
1394 Mark them VARYING. */
88dbf20f 1395 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
1396 {
1397 prop_value_t v = { VARYING, NULL_TREE, NULL_TREE };
1398 set_lattice_value (def, v);
1399 }
4ee9c684 1400
41511585 1401 return SSA_PROP_VARYING;
1402}
4ee9c684 1403
4ee9c684 1404
88dbf20f 1405/* Main entry point for SSA Conditional Constant Propagation. */
41511585 1406
33a34f1e 1407static unsigned int
88dbf20f 1408execute_ssa_ccp (bool store_ccp)
41511585 1409{
88dbf20f 1410 do_store_ccp = store_ccp;
41511585 1411 ccp_initialize ();
1412 ssa_propagate (ccp_visit_stmt, ccp_visit_phi_node);
33a34f1e 1413 if (ccp_finalize ())
eb9161e7 1414 return (TODO_cleanup_cfg | TODO_update_ssa | TODO_remove_unused_locals);
33a34f1e 1415 else
1416 return 0;
4ee9c684 1417}
1418
5664499b 1419
2a1990e9 1420static unsigned int
88dbf20f 1421do_ssa_ccp (void)
1422{
33a34f1e 1423 return execute_ssa_ccp (false);
88dbf20f 1424}
1425
1426
5664499b 1427static bool
41511585 1428gate_ccp (void)
5664499b 1429{
41511585 1430 return flag_tree_ccp != 0;
5664499b 1431}
1432
4ee9c684 1433
41511585 1434struct tree_opt_pass pass_ccp =
1435{
1436 "ccp", /* name */
1437 gate_ccp, /* gate */
88dbf20f 1438 do_ssa_ccp, /* execute */
41511585 1439 NULL, /* sub */
1440 NULL, /* next */
1441 0, /* static_pass_number */
1442 TV_TREE_CCP, /* tv_id */
49290934 1443 PROP_cfg | PROP_ssa, /* properties_required */
41511585 1444 0, /* properties_provided */
b6246c40 1445 0, /* properties_destroyed */
41511585 1446 0, /* todo_flags_start */
33a34f1e 1447 TODO_dump_func | TODO_verify_ssa
1448 | TODO_verify_stmts | TODO_ggc_collect,/* todo_flags_finish */
0f9005dd 1449 0 /* letter */
41511585 1450};
4ee9c684 1451
4ee9c684 1452
2a1990e9 1453static unsigned int
88dbf20f 1454do_ssa_store_ccp (void)
1455{
1456 /* If STORE-CCP is not enabled, we just run regular CCP. */
33a34f1e 1457 return execute_ssa_ccp (flag_tree_store_ccp != 0);
88dbf20f 1458}
1459
1460static bool
1461gate_store_ccp (void)
1462{
1463 /* STORE-CCP is enabled only with -ftree-store-ccp, but when
1464 -fno-tree-store-ccp is specified, we should run regular CCP.
1465 That's why the pass is enabled with either flag. */
1466 return flag_tree_store_ccp != 0 || flag_tree_ccp != 0;
1467}
1468
1469
1470struct tree_opt_pass pass_store_ccp =
1471{
1472 "store_ccp", /* name */
1473 gate_store_ccp, /* gate */
1474 do_ssa_store_ccp, /* execute */
1475 NULL, /* sub */
1476 NULL, /* next */
1477 0, /* static_pass_number */
1478 TV_TREE_STORE_CCP, /* tv_id */
1479 PROP_cfg | PROP_ssa | PROP_alias, /* properties_required */
1480 0, /* properties_provided */
b6246c40 1481 0, /* properties_destroyed */
88dbf20f 1482 0, /* todo_flags_start */
33a34f1e 1483 TODO_dump_func | TODO_verify_ssa
1484 | TODO_verify_stmts | TODO_ggc_collect,/* todo_flags_finish */
88dbf20f 1485 0 /* letter */
1486};
1487
41511585 1488/* Given a constant value VAL for bitfield FIELD, and a destination
1489 variable VAR, return VAL appropriately widened to fit into VAR. If
1490 FIELD is wider than HOST_WIDE_INT, NULL is returned. */
4ee9c684 1491
41511585 1492tree
1493widen_bitfield (tree val, tree field, tree var)
4ee9c684 1494{
41511585 1495 unsigned HOST_WIDE_INT var_size, field_size;
1496 tree wide_val;
1497 unsigned HOST_WIDE_INT mask;
1498 unsigned int i;
4ee9c684 1499
41511585 1500 /* We can only do this if the size of the type and field and VAL are
1501 all constants representable in HOST_WIDE_INT. */
1502 if (!host_integerp (TYPE_SIZE (TREE_TYPE (var)), 1)
1503 || !host_integerp (DECL_SIZE (field), 1)
1504 || !host_integerp (val, 0))
1505 return NULL_TREE;
4ee9c684 1506
41511585 1507 var_size = tree_low_cst (TYPE_SIZE (TREE_TYPE (var)), 1);
1508 field_size = tree_low_cst (DECL_SIZE (field), 1);
4ee9c684 1509
41511585 1510 /* Give up if either the bitfield or the variable are too wide. */
1511 if (field_size > HOST_BITS_PER_WIDE_INT || var_size > HOST_BITS_PER_WIDE_INT)
1512 return NULL_TREE;
4ee9c684 1513
8c0963c4 1514 gcc_assert (var_size >= field_size);
4ee9c684 1515
41511585 1516 /* If the sign bit of the value is not set or the field's type is unsigned,
1517 just mask off the high order bits of the value. */
1518 if (DECL_UNSIGNED (field)
1519 || !(tree_low_cst (val, 0) & (((HOST_WIDE_INT)1) << (field_size - 1))))
1520 {
1521 /* Zero extension. Build a mask with the lower 'field_size' bits
1522 set and a BIT_AND_EXPR node to clear the high order bits of
1523 the value. */
1524 for (i = 0, mask = 0; i < field_size; i++)
1525 mask |= ((HOST_WIDE_INT) 1) << i;
4ee9c684 1526
e7be49a3 1527 wide_val = fold_build2 (BIT_AND_EXPR, TREE_TYPE (var), val,
1528 build_int_cst (TREE_TYPE (var), mask));
4ee9c684 1529 }
41511585 1530 else
5664499b 1531 {
41511585 1532 /* Sign extension. Create a mask with the upper 'field_size'
1533 bits set and a BIT_IOR_EXPR to set the high order bits of the
1534 value. */
1535 for (i = 0, mask = 0; i < (var_size - field_size); i++)
1536 mask |= ((HOST_WIDE_INT) 1) << (var_size - i - 1);
1537
e7be49a3 1538 wide_val = fold_build2 (BIT_IOR_EXPR, TREE_TYPE (var), val,
1539 build_int_cst (TREE_TYPE (var), mask));
5664499b 1540 }
4ee9c684 1541
e7be49a3 1542 return wide_val;
4ee9c684 1543}
1544
41511585 1545
4ee9c684 1546/* A subroutine of fold_stmt_r. Attempts to fold *(A+O) to A[X].
1547 BASE is an array type. OFFSET is a byte displacement. ORIG_TYPE
0bed3869 1548 is the desired result type. */
4ee9c684 1549
1550static tree
1551maybe_fold_offset_to_array_ref (tree base, tree offset, tree orig_type)
1552{
6374121b 1553 tree min_idx, idx, elt_offset = integer_zero_node;
1554 tree array_type, elt_type, elt_size;
1555
1556 /* If BASE is an ARRAY_REF, we can pick up another offset (this time
1557 measured in units of the size of elements type) from that ARRAY_REF).
1558 We can't do anything if either is variable.
1559
1560 The case we handle here is *(&A[N]+O). */
1561 if (TREE_CODE (base) == ARRAY_REF)
1562 {
1563 tree low_bound = array_ref_low_bound (base);
1564
1565 elt_offset = TREE_OPERAND (base, 1);
1566 if (TREE_CODE (low_bound) != INTEGER_CST
1567 || TREE_CODE (elt_offset) != INTEGER_CST)
1568 return NULL_TREE;
1569
1570 elt_offset = int_const_binop (MINUS_EXPR, elt_offset, low_bound, 0);
1571 base = TREE_OPERAND (base, 0);
1572 }
4ee9c684 1573
1574 /* Ignore stupid user tricks of indexing non-array variables. */
1575 array_type = TREE_TYPE (base);
1576 if (TREE_CODE (array_type) != ARRAY_TYPE)
1577 return NULL_TREE;
1578 elt_type = TREE_TYPE (array_type);
1579 if (!lang_hooks.types_compatible_p (orig_type, elt_type))
1580 return NULL_TREE;
1581
6374121b 1582 /* If OFFSET and ELT_OFFSET are zero, we don't care about the size of the
1583 element type (so we can use the alignment if it's not constant).
1584 Otherwise, compute the offset as an index by using a division. If the
1585 division isn't exact, then don't do anything. */
4ee9c684 1586 elt_size = TYPE_SIZE_UNIT (elt_type);
6374121b 1587 if (integer_zerop (offset))
1588 {
1589 if (TREE_CODE (elt_size) != INTEGER_CST)
1590 elt_size = size_int (TYPE_ALIGN (elt_type));
4ee9c684 1591
6374121b 1592 idx = integer_zero_node;
1593 }
1594 else
1595 {
1596 unsigned HOST_WIDE_INT lquo, lrem;
1597 HOST_WIDE_INT hquo, hrem;
1598
1599 if (TREE_CODE (elt_size) != INTEGER_CST
1600 || div_and_round_double (TRUNC_DIV_EXPR, 1,
1601 TREE_INT_CST_LOW (offset),
1602 TREE_INT_CST_HIGH (offset),
1603 TREE_INT_CST_LOW (elt_size),
1604 TREE_INT_CST_HIGH (elt_size),
1605 &lquo, &hquo, &lrem, &hrem)
1606 || lrem || hrem)
1607 return NULL_TREE;
4ee9c684 1608
167a3fa5 1609 idx = build_int_cst_wide (TREE_TYPE (offset), lquo, hquo);
6374121b 1610 }
1611
1612 /* Assume the low bound is zero. If there is a domain type, get the
1613 low bound, if any, convert the index into that type, and add the
1614 low bound. */
1615 min_idx = integer_zero_node;
1616 if (TYPE_DOMAIN (array_type))
4ee9c684 1617 {
6374121b 1618 if (TYPE_MIN_VALUE (TYPE_DOMAIN (array_type)))
1619 min_idx = TYPE_MIN_VALUE (TYPE_DOMAIN (array_type));
1620 else
1621 min_idx = fold_convert (TYPE_DOMAIN (array_type), min_idx);
1622
1623 if (TREE_CODE (min_idx) != INTEGER_CST)
1624 return NULL_TREE;
1625
1626 idx = fold_convert (TYPE_DOMAIN (array_type), idx);
1627 elt_offset = fold_convert (TYPE_DOMAIN (array_type), elt_offset);
4ee9c684 1628 }
1629
6374121b 1630 if (!integer_zerop (min_idx))
1631 idx = int_const_binop (PLUS_EXPR, idx, min_idx, 0);
1632 if (!integer_zerop (elt_offset))
1633 idx = int_const_binop (PLUS_EXPR, idx, elt_offset, 0);
1634
40b19772 1635 return build4 (ARRAY_REF, orig_type, base, idx, min_idx,
1636 size_int (tree_low_cst (elt_size, 1)
1637 / (TYPE_ALIGN_UNIT (elt_type))));
4ee9c684 1638}
1639
41511585 1640
4ee9c684 1641/* A subroutine of fold_stmt_r. Attempts to fold *(S+O) to S.X.
1642 BASE is a record type. OFFSET is a byte displacement. ORIG_TYPE
1643 is the desired result type. */
1644/* ??? This doesn't handle class inheritance. */
1645
27290809 1646tree
4ee9c684 1647maybe_fold_offset_to_component_ref (tree record_type, tree base, tree offset,
1648 tree orig_type, bool base_is_ptr)
1649{
6d5d8428 1650 tree f, t, field_type, tail_array_field, field_offset;
4ee9c684 1651
1652 if (TREE_CODE (record_type) != RECORD_TYPE
1653 && TREE_CODE (record_type) != UNION_TYPE
1654 && TREE_CODE (record_type) != QUAL_UNION_TYPE)
1655 return NULL_TREE;
1656
1657 /* Short-circuit silly cases. */
1658 if (lang_hooks.types_compatible_p (record_type, orig_type))
1659 return NULL_TREE;
1660
1661 tail_array_field = NULL_TREE;
1662 for (f = TYPE_FIELDS (record_type); f ; f = TREE_CHAIN (f))
1663 {
1664 int cmp;
1665
1666 if (TREE_CODE (f) != FIELD_DECL)
1667 continue;
1668 if (DECL_BIT_FIELD (f))
1669 continue;
6d5d8428 1670
1671 field_offset = byte_position (f);
1672 if (TREE_CODE (field_offset) != INTEGER_CST)
4ee9c684 1673 continue;
1674
1675 /* ??? Java creates "interesting" fields for representing base classes.
1676 They have no name, and have no context. With no context, we get into
1677 trouble with nonoverlapping_component_refs_p. Skip them. */
1678 if (!DECL_FIELD_CONTEXT (f))
1679 continue;
1680
1681 /* The previous array field isn't at the end. */
1682 tail_array_field = NULL_TREE;
1683
1684 /* Check to see if this offset overlaps with the field. */
6d5d8428 1685 cmp = tree_int_cst_compare (field_offset, offset);
4ee9c684 1686 if (cmp > 0)
1687 continue;
1688
1689 field_type = TREE_TYPE (f);
4ee9c684 1690
1691 /* Here we exactly match the offset being checked. If the types match,
1692 then we can return that field. */
115073ff 1693 if (cmp == 0
1694 && lang_hooks.types_compatible_p (orig_type, field_type))
4ee9c684 1695 {
1696 if (base_is_ptr)
1697 base = build1 (INDIRECT_REF, record_type, base);
40b19772 1698 t = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
4ee9c684 1699 return t;
1700 }
115073ff 1701
1702 /* Don't care about offsets into the middle of scalars. */
1703 if (!AGGREGATE_TYPE_P (field_type))
1704 continue;
4ee9c684 1705
115073ff 1706 /* Check for array at the end of the struct. This is often
1707 used as for flexible array members. We should be able to
1708 turn this into an array access anyway. */
1709 if (TREE_CODE (field_type) == ARRAY_TYPE)
1710 tail_array_field = f;
1711
1712 /* Check the end of the field against the offset. */
1713 if (!DECL_SIZE_UNIT (f)
1714 || TREE_CODE (DECL_SIZE_UNIT (f)) != INTEGER_CST)
1715 continue;
1716 t = int_const_binop (MINUS_EXPR, offset, field_offset, 1);
1717 if (!tree_int_cst_lt (t, DECL_SIZE_UNIT (f)))
1718 continue;
4ee9c684 1719
115073ff 1720 /* If we matched, then set offset to the displacement into
1721 this field. */
1722 offset = t;
4ee9c684 1723 goto found;
1724 }
1725
1726 if (!tail_array_field)
1727 return NULL_TREE;
1728
1729 f = tail_array_field;
1730 field_type = TREE_TYPE (f);
115073ff 1731 offset = int_const_binop (MINUS_EXPR, offset, byte_position (f), 1);
4ee9c684 1732
1733 found:
1734 /* If we get here, we've got an aggregate field, and a possibly
365db11e 1735 nonzero offset into them. Recurse and hope for a valid match. */
4ee9c684 1736 if (base_is_ptr)
1737 base = build1 (INDIRECT_REF, record_type, base);
40b19772 1738 base = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
4ee9c684 1739
1740 t = maybe_fold_offset_to_array_ref (base, offset, orig_type);
1741 if (t)
1742 return t;
1743 return maybe_fold_offset_to_component_ref (field_type, base, offset,
1744 orig_type, false);
1745}
1746
41511585 1747
4ee9c684 1748/* A subroutine of fold_stmt_r. Attempt to simplify *(BASE+OFFSET).
1749 Return the simplified expression, or NULL if nothing could be done. */
1750
1751static tree
1752maybe_fold_stmt_indirect (tree expr, tree base, tree offset)
1753{
1754 tree t;
1755
1756 /* We may well have constructed a double-nested PLUS_EXPR via multiple
1757 substitutions. Fold that down to one. Remove NON_LVALUE_EXPRs that
1758 are sometimes added. */
1759 base = fold (base);
40bcfc86 1760 STRIP_TYPE_NOPS (base);
4ee9c684 1761 TREE_OPERAND (expr, 0) = base;
1762
1763 /* One possibility is that the address reduces to a string constant. */
1764 t = fold_read_from_constant_string (expr);
1765 if (t)
1766 return t;
1767
1768 /* Add in any offset from a PLUS_EXPR. */
1769 if (TREE_CODE (base) == PLUS_EXPR)
1770 {
1771 tree offset2;
1772
1773 offset2 = TREE_OPERAND (base, 1);
1774 if (TREE_CODE (offset2) != INTEGER_CST)
1775 return NULL_TREE;
1776 base = TREE_OPERAND (base, 0);
1777
1778 offset = int_const_binop (PLUS_EXPR, offset, offset2, 1);
1779 }
1780
1781 if (TREE_CODE (base) == ADDR_EXPR)
1782 {
1783 /* Strip the ADDR_EXPR. */
1784 base = TREE_OPERAND (base, 0);
1785
e67e5e1f 1786 /* Fold away CONST_DECL to its value, if the type is scalar. */
1787 if (TREE_CODE (base) == CONST_DECL
d03bd588 1788 && ccp_decl_initial_min_invariant (DECL_INITIAL (base)))
e67e5e1f 1789 return DECL_INITIAL (base);
1790
4ee9c684 1791 /* Try folding *(&B+O) to B[X]. */
1792 t = maybe_fold_offset_to_array_ref (base, offset, TREE_TYPE (expr));
1793 if (t)
1794 return t;
1795
1796 /* Try folding *(&B+O) to B.X. */
1797 t = maybe_fold_offset_to_component_ref (TREE_TYPE (base), base, offset,
1798 TREE_TYPE (expr), false);
1799 if (t)
1800 return t;
1801
6374121b 1802 /* Fold *&B to B. We can only do this if EXPR is the same type
1803 as BASE. We can't do this if EXPR is the element type of an array
1804 and BASE is the array. */
1805 if (integer_zerop (offset)
1806 && lang_hooks.types_compatible_p (TREE_TYPE (base),
1807 TREE_TYPE (expr)))
4ee9c684 1808 return base;
1809 }
1810 else
1811 {
1812 /* We can get here for out-of-range string constant accesses,
1813 such as "_"[3]. Bail out of the entire substitution search
1814 and arrange for the entire statement to be replaced by a
06b27565 1815 call to __builtin_trap. In all likelihood this will all be
4ee9c684 1816 constant-folded away, but in the meantime we can't leave with
1817 something that get_expr_operands can't understand. */
1818
1819 t = base;
1820 STRIP_NOPS (t);
1821 if (TREE_CODE (t) == ADDR_EXPR
1822 && TREE_CODE (TREE_OPERAND (t, 0)) == STRING_CST)
1823 {
1824 /* FIXME: Except that this causes problems elsewhere with dead
1fa3a8f6 1825 code not being deleted, and we die in the rtl expanders
4ee9c684 1826 because we failed to remove some ssa_name. In the meantime,
1827 just return zero. */
1828 /* FIXME2: This condition should be signaled by
1829 fold_read_from_constant_string directly, rather than
1830 re-checking for it here. */
1831 return integer_zero_node;
1832 }
1833
1834 /* Try folding *(B+O) to B->X. Still an improvement. */
1835 if (POINTER_TYPE_P (TREE_TYPE (base)))
1836 {
1837 t = maybe_fold_offset_to_component_ref (TREE_TYPE (TREE_TYPE (base)),
1838 base, offset,
1839 TREE_TYPE (expr), true);
1840 if (t)
1841 return t;
1842 }
1843 }
1844
1845 /* Otherwise we had an offset that we could not simplify. */
1846 return NULL_TREE;
1847}
1848
41511585 1849
4ee9c684 1850/* A subroutine of fold_stmt_r. EXPR is a PLUS_EXPR.
1851
1852 A quaint feature extant in our address arithmetic is that there
1853 can be hidden type changes here. The type of the result need
1854 not be the same as the type of the input pointer.
1855
1856 What we're after here is an expression of the form
1857 (T *)(&array + const)
1858 where the cast doesn't actually exist, but is implicit in the
1859 type of the PLUS_EXPR. We'd like to turn this into
1860 &array[x]
1861 which may be able to propagate further. */
1862
1863static tree
1864maybe_fold_stmt_addition (tree expr)
1865{
1866 tree op0 = TREE_OPERAND (expr, 0);
1867 tree op1 = TREE_OPERAND (expr, 1);
1868 tree ptr_type = TREE_TYPE (expr);
1869 tree ptd_type;
1870 tree t;
1871 bool subtract = (TREE_CODE (expr) == MINUS_EXPR);
1872
1873 /* We're only interested in pointer arithmetic. */
1874 if (!POINTER_TYPE_P (ptr_type))
1875 return NULL_TREE;
1876 /* Canonicalize the integral operand to op1. */
1877 if (INTEGRAL_TYPE_P (TREE_TYPE (op0)))
1878 {
1879 if (subtract)
1880 return NULL_TREE;
1881 t = op0, op0 = op1, op1 = t;
1882 }
1883 /* It had better be a constant. */
1884 if (TREE_CODE (op1) != INTEGER_CST)
1885 return NULL_TREE;
1886 /* The first operand should be an ADDR_EXPR. */
1887 if (TREE_CODE (op0) != ADDR_EXPR)
1888 return NULL_TREE;
1889 op0 = TREE_OPERAND (op0, 0);
1890
1891 /* If the first operand is an ARRAY_REF, expand it so that we can fold
1892 the offset into it. */
1893 while (TREE_CODE (op0) == ARRAY_REF)
1894 {
1895 tree array_obj = TREE_OPERAND (op0, 0);
1896 tree array_idx = TREE_OPERAND (op0, 1);
1897 tree elt_type = TREE_TYPE (op0);
1898 tree elt_size = TYPE_SIZE_UNIT (elt_type);
1899 tree min_idx;
1900
1901 if (TREE_CODE (array_idx) != INTEGER_CST)
1902 break;
1903 if (TREE_CODE (elt_size) != INTEGER_CST)
1904 break;
1905
1906 /* Un-bias the index by the min index of the array type. */
1907 min_idx = TYPE_DOMAIN (TREE_TYPE (array_obj));
1908 if (min_idx)
1909 {
1910 min_idx = TYPE_MIN_VALUE (min_idx);
1911 if (min_idx)
1912 {
6374121b 1913 if (TREE_CODE (min_idx) != INTEGER_CST)
1914 break;
1915
535664e3 1916 array_idx = fold_convert (TREE_TYPE (min_idx), array_idx);
4ee9c684 1917 if (!integer_zerop (min_idx))
1918 array_idx = int_const_binop (MINUS_EXPR, array_idx,
1919 min_idx, 0);
1920 }
1921 }
1922
1923 /* Convert the index to a byte offset. */
535664e3 1924 array_idx = fold_convert (sizetype, array_idx);
4ee9c684 1925 array_idx = int_const_binop (MULT_EXPR, array_idx, elt_size, 0);
1926
1927 /* Update the operands for the next round, or for folding. */
1928 /* If we're manipulating unsigned types, then folding into negative
1929 values can produce incorrect results. Particularly if the type
1930 is smaller than the width of the pointer. */
1931 if (subtract
1932 && TYPE_UNSIGNED (TREE_TYPE (op1))
1933 && tree_int_cst_lt (array_idx, op1))
1934 return NULL;
1935 op1 = int_const_binop (subtract ? MINUS_EXPR : PLUS_EXPR,
1936 array_idx, op1, 0);
1937 subtract = false;
1938 op0 = array_obj;
1939 }
1940
1941 /* If we weren't able to fold the subtraction into another array reference,
1942 canonicalize the integer for passing to the array and component ref
1943 simplification functions. */
1944 if (subtract)
1945 {
1946 if (TYPE_UNSIGNED (TREE_TYPE (op1)))
1947 return NULL;
5f9acd88 1948 op1 = fold_unary (NEGATE_EXPR, TREE_TYPE (op1), op1);
4ee9c684 1949 /* ??? In theory fold should always produce another integer. */
5f9acd88 1950 if (op1 == NULL || TREE_CODE (op1) != INTEGER_CST)
4ee9c684 1951 return NULL;
1952 }
1953
1954 ptd_type = TREE_TYPE (ptr_type);
1955
1956 /* At which point we can try some of the same things as for indirects. */
1957 t = maybe_fold_offset_to_array_ref (op0, op1, ptd_type);
1958 if (!t)
1959 t = maybe_fold_offset_to_component_ref (TREE_TYPE (op0), op0, op1,
1960 ptd_type, false);
1961 if (t)
1962 t = build1 (ADDR_EXPR, ptr_type, t);
1963
1964 return t;
1965}
1966
0d759d9c 1967/* For passing state through walk_tree into fold_stmt_r and its
1968 children. */
1969
1970struct fold_stmt_r_data
1971{
add6ee5e 1972 tree stmt;
1973 bool *changed_p;
1974 bool *inside_addr_expr_p;
0d759d9c 1975};
1976
4ee9c684 1977/* Subroutine of fold_stmt called via walk_tree. We perform several
1978 simplifications of EXPR_P, mostly having to do with pointer arithmetic. */
1979
1980static tree
1981fold_stmt_r (tree *expr_p, int *walk_subtrees, void *data)
1982{
680a19b9 1983 struct fold_stmt_r_data *fold_stmt_r_data = (struct fold_stmt_r_data *) data;
0d759d9c 1984 bool *inside_addr_expr_p = fold_stmt_r_data->inside_addr_expr_p;
1985 bool *changed_p = fold_stmt_r_data->changed_p;
4ee9c684 1986 tree expr = *expr_p, t;
1987
1988 /* ??? It'd be nice if walk_tree had a pre-order option. */
1989 switch (TREE_CODE (expr))
1990 {
1991 case INDIRECT_REF:
1992 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
1993 if (t)
1994 return t;
1995 *walk_subtrees = 0;
1996
1997 t = maybe_fold_stmt_indirect (expr, TREE_OPERAND (expr, 0),
1998 integer_zero_node);
1999 break;
2000
0d759d9c 2001 /* ??? Could handle more ARRAY_REFs here, as a variant of INDIRECT_REF.
4ee9c684 2002 We'd only want to bother decomposing an existing ARRAY_REF if
2003 the base array is found to have another offset contained within.
2004 Otherwise we'd be wasting time. */
0d759d9c 2005 case ARRAY_REF:
2006 /* If we are not processing expressions found within an
2007 ADDR_EXPR, then we can fold constant array references. */
2008 if (!*inside_addr_expr_p)
2009 t = fold_read_from_constant_string (expr);
2010 else
2011 t = NULL;
2012 break;
4ee9c684 2013
2014 case ADDR_EXPR:
0d759d9c 2015 *inside_addr_expr_p = true;
4ee9c684 2016 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
0d759d9c 2017 *inside_addr_expr_p = false;
4ee9c684 2018 if (t)
2019 return t;
2020 *walk_subtrees = 0;
2021
2022 /* Set TREE_INVARIANT properly so that the value is properly
2023 considered constant, and so gets propagated as expected. */
2024 if (*changed_p)
750ad201 2025 recompute_tree_invariant_for_addr_expr (expr);
4ee9c684 2026 return NULL_TREE;
2027
2028 case PLUS_EXPR:
2029 case MINUS_EXPR:
2030 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2031 if (t)
2032 return t;
2033 t = walk_tree (&TREE_OPERAND (expr, 1), fold_stmt_r, data, NULL);
2034 if (t)
2035 return t;
2036 *walk_subtrees = 0;
2037
2038 t = maybe_fold_stmt_addition (expr);
2039 break;
2040
2041 case COMPONENT_REF:
2042 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2043 if (t)
2044 return t;
2045 *walk_subtrees = 0;
2046
504d3463 2047 /* Make sure the FIELD_DECL is actually a field in the type on the lhs.
2048 We've already checked that the records are compatible, so we should
2049 come up with a set of compatible fields. */
2050 {
2051 tree expr_record = TREE_TYPE (TREE_OPERAND (expr, 0));
2052 tree expr_field = TREE_OPERAND (expr, 1);
2053
2054 if (DECL_FIELD_CONTEXT (expr_field) != TYPE_MAIN_VARIANT (expr_record))
2055 {
2056 expr_field = find_compatible_field (expr_record, expr_field);
2057 TREE_OPERAND (expr, 1) = expr_field;
2058 }
2059 }
4ee9c684 2060 break;
2061
aed164c3 2062 case TARGET_MEM_REF:
2063 t = maybe_fold_tmr (expr);
2064 break;
2065
bb8a9715 2066 case COND_EXPR:
2067 if (COMPARISON_CLASS_P (TREE_OPERAND (expr, 0)))
2068 {
2069 tree op0 = TREE_OPERAND (expr, 0);
add6ee5e 2070 tree tem;
2071 bool set;
2072
2073 fold_defer_overflow_warnings ();
2074 tem = fold_binary (TREE_CODE (op0), TREE_TYPE (op0),
2075 TREE_OPERAND (op0, 0),
2076 TREE_OPERAND (op0, 1));
2077 set = tem && set_rhs (expr_p, tem);
2078 fold_undefer_overflow_warnings (set, fold_stmt_r_data->stmt, 0);
2079 if (set)
f2532264 2080 {
2081 t = *expr_p;
2082 break;
2083 }
bb8a9715 2084 }
f2532264 2085 return NULL_TREE;
bb8a9715 2086
4ee9c684 2087 default:
2088 return NULL_TREE;
2089 }
2090
2091 if (t)
2092 {
2093 *expr_p = t;
2094 *changed_p = true;
2095 }
2096
2097 return NULL_TREE;
2098}
2099
4ee9c684 2100
0a39fd54 2101/* Return the string length, maximum string length or maximum value of
2102 ARG in LENGTH.
2103 If ARG is an SSA name variable, follow its use-def chains. If LENGTH
2104 is not NULL and, for TYPE == 0, its value is not equal to the length
2105 we determine or if we are unable to determine the length or value,
2106 return false. VISITED is a bitmap of visited variables.
2107 TYPE is 0 if string length should be returned, 1 for maximum string
2108 length and 2 for maximum value ARG can have. */
4ee9c684 2109
72648a0e 2110static bool
0a39fd54 2111get_maxval_strlen (tree arg, tree *length, bitmap visited, int type)
4ee9c684 2112{
41511585 2113 tree var, def_stmt, val;
2114
2115 if (TREE_CODE (arg) != SSA_NAME)
72648a0e 2116 {
ec0fa513 2117 if (TREE_CODE (arg) == COND_EXPR)
2118 return get_maxval_strlen (COND_EXPR_THEN (arg), length, visited, type)
2119 && get_maxval_strlen (COND_EXPR_ELSE (arg), length, visited, type);
2120
0a39fd54 2121 if (type == 2)
2122 {
2123 val = arg;
2124 if (TREE_CODE (val) != INTEGER_CST
2125 || tree_int_cst_sgn (val) < 0)
2126 return false;
2127 }
2128 else
2129 val = c_strlen (arg, 1);
41511585 2130 if (!val)
72648a0e 2131 return false;
e37235f0 2132
0a39fd54 2133 if (*length)
2134 {
2135 if (type > 0)
2136 {
2137 if (TREE_CODE (*length) != INTEGER_CST
2138 || TREE_CODE (val) != INTEGER_CST)
2139 return false;
2140
2141 if (tree_int_cst_lt (*length, val))
2142 *length = val;
2143 return true;
2144 }
2145 else if (simple_cst_equal (val, *length) != 1)
2146 return false;
2147 }
4ee9c684 2148
41511585 2149 *length = val;
2150 return true;
4ee9c684 2151 }
72648a0e 2152
41511585 2153 /* If we were already here, break the infinite cycle. */
2154 if (bitmap_bit_p (visited, SSA_NAME_VERSION (arg)))
2155 return true;
2156 bitmap_set_bit (visited, SSA_NAME_VERSION (arg));
2157
2158 var = arg;
2159 def_stmt = SSA_NAME_DEF_STMT (var);
4ee9c684 2160
41511585 2161 switch (TREE_CODE (def_stmt))
2162 {
35cc02b5 2163 case GIMPLE_MODIFY_STMT:
41511585 2164 {
0a39fd54 2165 tree rhs;
2166
41511585 2167 /* The RHS of the statement defining VAR must either have a
2168 constant length or come from another SSA_NAME with a constant
2169 length. */
35cc02b5 2170 rhs = GIMPLE_STMT_OPERAND (def_stmt, 1);
41511585 2171 STRIP_NOPS (rhs);
0a39fd54 2172 return get_maxval_strlen (rhs, length, visited, type);
41511585 2173 }
4ee9c684 2174
41511585 2175 case PHI_NODE:
2176 {
2177 /* All the arguments of the PHI node must have the same constant
2178 length. */
2179 int i;
4ee9c684 2180
41511585 2181 for (i = 0; i < PHI_NUM_ARGS (def_stmt); i++)
2182 {
2183 tree arg = PHI_ARG_DEF (def_stmt, i);
4ee9c684 2184
41511585 2185 /* If this PHI has itself as an argument, we cannot
2186 determine the string length of this argument. However,
2187 if we can find a constant string length for the other
2188 PHI args then we can still be sure that this is a
2189 constant string length. So be optimistic and just
2190 continue with the next argument. */
2191 if (arg == PHI_RESULT (def_stmt))
2192 continue;
4ee9c684 2193
0a39fd54 2194 if (!get_maxval_strlen (arg, length, visited, type))
41511585 2195 return false;
2196 }
4ee9c684 2197
41511585 2198 return true;
5664499b 2199 }
4ee9c684 2200
41511585 2201 default:
2202 break;
4ee9c684 2203 }
2204
41511585 2205
2206 return false;
4ee9c684 2207}
2208
2209
2210/* Fold builtin call FN in statement STMT. If it cannot be folded into a
2211 constant, return NULL_TREE. Otherwise, return its constant value. */
2212
2213static tree
2214ccp_fold_builtin (tree stmt, tree fn)
2215{
0a39fd54 2216 tree result, val[3];
c2f47e15 2217 tree callee, a;
0a39fd54 2218 int arg_mask, i, type;
f0613857 2219 bitmap visited;
2220 bool ignore;
c2f47e15 2221 call_expr_arg_iterator iter;
2222 int nargs;
4ee9c684 2223
35cc02b5 2224 ignore = TREE_CODE (stmt) != GIMPLE_MODIFY_STMT;
4ee9c684 2225
2226 /* First try the generic builtin folder. If that succeeds, return the
2227 result directly. */
c2f47e15 2228 result = fold_call_expr (fn, ignore);
4ee9c684 2229 if (result)
0a39fd54 2230 {
2231 if (ignore)
2232 STRIP_NOPS (result);
2233 return result;
2234 }
f0613857 2235
2236 /* Ignore MD builtins. */
c2f47e15 2237 callee = get_callee_fndecl (fn);
f0613857 2238 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_MD)
2239 return NULL_TREE;
4ee9c684 2240
2241 /* If the builtin could not be folded, and it has no argument list,
2242 we're done. */
c2f47e15 2243 nargs = call_expr_nargs (fn);
2244 if (nargs == 0)
4ee9c684 2245 return NULL_TREE;
2246
2247 /* Limit the work only for builtins we know how to simplify. */
2248 switch (DECL_FUNCTION_CODE (callee))
2249 {
2250 case BUILT_IN_STRLEN:
2251 case BUILT_IN_FPUTS:
2252 case BUILT_IN_FPUTS_UNLOCKED:
0a39fd54 2253 arg_mask = 1;
2254 type = 0;
4ee9c684 2255 break;
2256 case BUILT_IN_STRCPY:
2257 case BUILT_IN_STRNCPY:
0a39fd54 2258 arg_mask = 2;
2259 type = 0;
2260 break;
2261 case BUILT_IN_MEMCPY_CHK:
2262 case BUILT_IN_MEMPCPY_CHK:
2263 case BUILT_IN_MEMMOVE_CHK:
2264 case BUILT_IN_MEMSET_CHK:
2265 case BUILT_IN_STRNCPY_CHK:
2266 arg_mask = 4;
2267 type = 2;
2268 break;
2269 case BUILT_IN_STRCPY_CHK:
2270 case BUILT_IN_STPCPY_CHK:
2271 arg_mask = 2;
2272 type = 1;
2273 break;
2274 case BUILT_IN_SNPRINTF_CHK:
2275 case BUILT_IN_VSNPRINTF_CHK:
2276 arg_mask = 2;
2277 type = 2;
4ee9c684 2278 break;
2279 default:
2280 return NULL_TREE;
2281 }
2282
2283 /* Try to use the dataflow information gathered by the CCP process. */
27335ffd 2284 visited = BITMAP_ALLOC (NULL);
4ee9c684 2285
0a39fd54 2286 memset (val, 0, sizeof (val));
c2f47e15 2287 init_call_expr_arg_iterator (fn, &iter);
2288 for (i = 0; arg_mask; i++, arg_mask >>= 1)
2289 {
2290 a = next_call_expr_arg (&iter);
2291 if (arg_mask & 1)
2292 {
2293 bitmap_clear (visited);
2294 if (!get_maxval_strlen (a, &val[i], visited, type))
2295 val[i] = NULL_TREE;
2296 }
2297 }
4ee9c684 2298
27335ffd 2299 BITMAP_FREE (visited);
4ee9c684 2300
f0613857 2301 result = NULL_TREE;
4ee9c684 2302 switch (DECL_FUNCTION_CODE (callee))
2303 {
2304 case BUILT_IN_STRLEN:
0a39fd54 2305 if (val[0])
4ee9c684 2306 {
0a39fd54 2307 tree new = fold_convert (TREE_TYPE (fn), val[0]);
4ee9c684 2308
2309 /* If the result is not a valid gimple value, or not a cast
2310 of a valid gimple value, then we can not use the result. */
2311 if (is_gimple_val (new)
2312 || (is_gimple_cast (new)
2313 && is_gimple_val (TREE_OPERAND (new, 0))))
2314 return new;
4ee9c684 2315 }
f0613857 2316 break;
2317
4ee9c684 2318 case BUILT_IN_STRCPY:
c2f47e15 2319 if (val[1] && is_gimple_val (val[1]) && nargs == 2)
2320 result = fold_builtin_strcpy (callee,
2321 CALL_EXPR_ARG (fn, 0),
2322 CALL_EXPR_ARG (fn, 1),
2323 val[1]);
f0613857 2324 break;
2325
4ee9c684 2326 case BUILT_IN_STRNCPY:
c2f47e15 2327 if (val[1] && is_gimple_val (val[1]) && nargs == 3)
2328 result = fold_builtin_strncpy (callee,
2329 CALL_EXPR_ARG (fn, 0),
2330 CALL_EXPR_ARG (fn, 1),
2331 CALL_EXPR_ARG (fn, 2),
2332 val[1]);
f0613857 2333 break;
2334
4ee9c684 2335 case BUILT_IN_FPUTS:
c2f47e15 2336 result = fold_builtin_fputs (CALL_EXPR_ARG (fn, 0),
2337 CALL_EXPR_ARG (fn, 1),
35cc02b5 2338 TREE_CODE (stmt) != GIMPLE_MODIFY_STMT, 0,
0a39fd54 2339 val[0]);
f0613857 2340 break;
2341
4ee9c684 2342 case BUILT_IN_FPUTS_UNLOCKED:
c2f47e15 2343 result = fold_builtin_fputs (CALL_EXPR_ARG (fn, 0),
2344 CALL_EXPR_ARG (fn, 1),
35cc02b5 2345 TREE_CODE (stmt) != GIMPLE_MODIFY_STMT, 1,
0a39fd54 2346 val[0]);
2347 break;
2348
2349 case BUILT_IN_MEMCPY_CHK:
2350 case BUILT_IN_MEMPCPY_CHK:
2351 case BUILT_IN_MEMMOVE_CHK:
2352 case BUILT_IN_MEMSET_CHK:
2353 if (val[2] && is_gimple_val (val[2]))
c2f47e15 2354 result = fold_builtin_memory_chk (callee,
2355 CALL_EXPR_ARG (fn, 0),
2356 CALL_EXPR_ARG (fn, 1),
2357 CALL_EXPR_ARG (fn, 2),
2358 CALL_EXPR_ARG (fn, 3),
2359 val[2], ignore,
0a39fd54 2360 DECL_FUNCTION_CODE (callee));
2361 break;
2362
2363 case BUILT_IN_STRCPY_CHK:
2364 case BUILT_IN_STPCPY_CHK:
2365 if (val[1] && is_gimple_val (val[1]))
c2f47e15 2366 result = fold_builtin_stxcpy_chk (callee,
2367 CALL_EXPR_ARG (fn, 0),
2368 CALL_EXPR_ARG (fn, 1),
2369 CALL_EXPR_ARG (fn, 2),
2370 val[1], ignore,
0a39fd54 2371 DECL_FUNCTION_CODE (callee));
2372 break;
2373
2374 case BUILT_IN_STRNCPY_CHK:
2375 if (val[2] && is_gimple_val (val[2]))
c2f47e15 2376 result = fold_builtin_strncpy_chk (CALL_EXPR_ARG (fn, 0),
2377 CALL_EXPR_ARG (fn, 1),
2378 CALL_EXPR_ARG (fn, 2),
2379 CALL_EXPR_ARG (fn, 3),
2380 val[2]);
0a39fd54 2381 break;
2382
2383 case BUILT_IN_SNPRINTF_CHK:
2384 case BUILT_IN_VSNPRINTF_CHK:
2385 if (val[1] && is_gimple_val (val[1]))
c2f47e15 2386 result = fold_builtin_snprintf_chk (fn, val[1],
0a39fd54 2387 DECL_FUNCTION_CODE (callee));
f0613857 2388 break;
4ee9c684 2389
2390 default:
8c0963c4 2391 gcc_unreachable ();
4ee9c684 2392 }
2393
f0613857 2394 if (result && ignore)
db97ad41 2395 result = fold_ignored_result (result);
f0613857 2396 return result;
4ee9c684 2397}
2398
2399
5206b159 2400/* Fold the statement pointed to by STMT_P. In some cases, this function may
41511585 2401 replace the whole statement with a new one. Returns true iff folding
2402 makes any changes. */
4ee9c684 2403
41511585 2404bool
2405fold_stmt (tree *stmt_p)
4ee9c684 2406{
41511585 2407 tree rhs, result, stmt;
0d759d9c 2408 struct fold_stmt_r_data fold_stmt_r_data;
41511585 2409 bool changed = false;
0d759d9c 2410 bool inside_addr_expr = false;
2411
add6ee5e 2412 stmt = *stmt_p;
2413
2414 fold_stmt_r_data.stmt = stmt;
0d759d9c 2415 fold_stmt_r_data.changed_p = &changed;
2416 fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
4ee9c684 2417
41511585 2418 /* If we replaced constants and the statement makes pointer dereferences,
2419 then we may need to fold instances of *&VAR into VAR, etc. */
0d759d9c 2420 if (walk_tree (stmt_p, fold_stmt_r, &fold_stmt_r_data, NULL))
41511585 2421 {
c2f47e15 2422 *stmt_p = build_call_expr (implicit_built_in_decls[BUILT_IN_TRAP], 0);
4ee9c684 2423 return true;
2424 }
2425
41511585 2426 rhs = get_rhs (stmt);
2427 if (!rhs)
2428 return changed;
2429 result = NULL_TREE;
4ee9c684 2430
41511585 2431 if (TREE_CODE (rhs) == CALL_EXPR)
4ee9c684 2432 {
41511585 2433 tree callee;
4ee9c684 2434
41511585 2435 /* Check for builtins that CCP can handle using information not
2436 available in the generic fold routines. */
2437 callee = get_callee_fndecl (rhs);
2438 if (callee && DECL_BUILT_IN (callee))
2439 result = ccp_fold_builtin (stmt, rhs);
e77b8618 2440 else
2441 {
2442 /* Check for resolvable OBJ_TYPE_REF. The only sorts we can resolve
2443 here are when we've propagated the address of a decl into the
2444 object slot. */
2445 /* ??? Should perhaps do this in fold proper. However, doing it
2446 there requires that we create a new CALL_EXPR, and that requires
2447 copying EH region info to the new node. Easier to just do it
2448 here where we can just smash the call operand. Also
2449 CALL_EXPR_RETURN_SLOT_OPT needs to be handled correctly and
c2f47e15 2450 copied, fold_call_expr does not have not information. */
2451 callee = CALL_EXPR_FN (rhs);
e77b8618 2452 if (TREE_CODE (callee) == OBJ_TYPE_REF
2453 && lang_hooks.fold_obj_type_ref
2454 && TREE_CODE (OBJ_TYPE_REF_OBJECT (callee)) == ADDR_EXPR
2455 && DECL_P (TREE_OPERAND
2456 (OBJ_TYPE_REF_OBJECT (callee), 0)))
2457 {
2458 tree t;
2459
2460 /* ??? Caution: Broken ADDR_EXPR semantics means that
2461 looking at the type of the operand of the addr_expr
2462 can yield an array type. See silly exception in
2463 check_pointer_types_r. */
2464
2465 t = TREE_TYPE (TREE_TYPE (OBJ_TYPE_REF_OBJECT (callee)));
2466 t = lang_hooks.fold_obj_type_ref (callee, t);
2467 if (t)
2468 {
c2f47e15 2469 CALL_EXPR_FN (rhs) = t;
e77b8618 2470 changed = true;
2471 }
2472 }
2473 }
4ee9c684 2474 }
ec0fa513 2475 else if (TREE_CODE (rhs) == COND_EXPR)
2476 {
2477 tree temp = fold (COND_EXPR_COND (rhs));
2478 if (temp != COND_EXPR_COND (rhs))
2479 result = fold_build3 (COND_EXPR, TREE_TYPE (rhs), temp,
2480 COND_EXPR_THEN (rhs), COND_EXPR_ELSE (rhs));
2481 }
4ee9c684 2482
41511585 2483 /* If we couldn't fold the RHS, hand over to the generic fold routines. */
2484 if (result == NULL_TREE)
2485 result = fold (rhs);
4ee9c684 2486
41511585 2487 /* Strip away useless type conversions. Both the NON_LVALUE_EXPR that
2488 may have been added by fold, and "useless" type conversions that might
2489 now be apparent due to propagation. */
2490 STRIP_USELESS_TYPE_CONVERSION (result);
2491
2492 if (result != rhs)
2493 changed |= set_rhs (stmt_p, result);
2494
2495 return changed;
4ee9c684 2496}
2497
8171a1dd 2498/* Perform the minimal folding on statement STMT. Only operations like
2499 *&x created by constant propagation are handled. The statement cannot
2500 be replaced with a new one. */
2501
2502bool
2503fold_stmt_inplace (tree stmt)
2504{
2505 tree old_stmt = stmt, rhs, new_rhs;
0d759d9c 2506 struct fold_stmt_r_data fold_stmt_r_data;
8171a1dd 2507 bool changed = false;
0d759d9c 2508 bool inside_addr_expr = false;
2509
add6ee5e 2510 fold_stmt_r_data.stmt = stmt;
0d759d9c 2511 fold_stmt_r_data.changed_p = &changed;
2512 fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
8171a1dd 2513
0d759d9c 2514 walk_tree (&stmt, fold_stmt_r, &fold_stmt_r_data, NULL);
8171a1dd 2515 gcc_assert (stmt == old_stmt);
2516
2517 rhs = get_rhs (stmt);
2518 if (!rhs || rhs == stmt)
2519 return changed;
2520
2521 new_rhs = fold (rhs);
ff09445d 2522 STRIP_USELESS_TYPE_CONVERSION (new_rhs);
8171a1dd 2523 if (new_rhs == rhs)
2524 return changed;
2525
2526 changed |= set_rhs (&stmt, new_rhs);
2527 gcc_assert (stmt == old_stmt);
2528
2529 return changed;
2530}
4ee9c684 2531\f
909e5ecb 2532/* Convert EXPR into a GIMPLE value suitable for substitution on the
2533 RHS of an assignment. Insert the necessary statements before
a280136a 2534 iterator *SI_P.
2535 When IGNORE is set, don't worry about the return value. */
909e5ecb 2536
2537static tree
a280136a 2538convert_to_gimple_builtin (block_stmt_iterator *si_p, tree expr, bool ignore)
909e5ecb 2539{
2540 tree_stmt_iterator ti;
2541 tree stmt = bsi_stmt (*si_p);
2542 tree tmp, stmts = NULL;
2543
2544 push_gimplify_context ();
a280136a 2545 if (ignore)
2546 {
2547 tmp = build_empty_stmt ();
2548 gimplify_and_add (expr, &stmts);
2549 }
2550 else
2551 tmp = get_initialized_tmp_var (expr, &stmts, NULL);
909e5ecb 2552 pop_gimplify_context (NULL);
2553
b66731e8 2554 if (EXPR_HAS_LOCATION (stmt))
2555 annotate_all_with_locus (&stmts, EXPR_LOCATION (stmt));
2556
909e5ecb 2557 /* The replacement can expose previously unreferenced variables. */
2558 for (ti = tsi_start (stmts); !tsi_end_p (ti); tsi_next (&ti))
2559 {
b66731e8 2560 tree new_stmt = tsi_stmt (ti);
909e5ecb 2561 find_new_referenced_vars (tsi_stmt_ptr (ti));
b66731e8 2562 bsi_insert_before (si_p, new_stmt, BSI_NEW_STMT);
de6ed584 2563 mark_symbols_for_renaming (new_stmt);
b66731e8 2564 bsi_next (si_p);
909e5ecb 2565 }
2566
909e5ecb 2567 return tmp;
2568}
2569
2570
4ee9c684 2571/* A simple pass that attempts to fold all builtin functions. This pass
2572 is run after we've propagated as many constants as we can. */
2573
2a1990e9 2574static unsigned int
4ee9c684 2575execute_fold_all_builtins (void)
2576{
b36237eb 2577 bool cfg_changed = false;
4ee9c684 2578 basic_block bb;
2579 FOR_EACH_BB (bb)
2580 {
2581 block_stmt_iterator i;
0a39fd54 2582 for (i = bsi_start (bb); !bsi_end_p (i); )
4ee9c684 2583 {
2584 tree *stmtp = bsi_stmt_ptr (i);
4c27dd45 2585 tree old_stmt = *stmtp;
4ee9c684 2586 tree call = get_rhs (*stmtp);
2587 tree callee, result;
0a39fd54 2588 enum built_in_function fcode;
4ee9c684 2589
2590 if (!call || TREE_CODE (call) != CALL_EXPR)
0a39fd54 2591 {
2592 bsi_next (&i);
2593 continue;
2594 }
4ee9c684 2595 callee = get_callee_fndecl (call);
2596 if (!callee || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
0a39fd54 2597 {
2598 bsi_next (&i);
2599 continue;
2600 }
2601 fcode = DECL_FUNCTION_CODE (callee);
4ee9c684 2602
2603 result = ccp_fold_builtin (*stmtp, call);
2604 if (!result)
2605 switch (DECL_FUNCTION_CODE (callee))
2606 {
2607 case BUILT_IN_CONSTANT_P:
2608 /* Resolve __builtin_constant_p. If it hasn't been
2609 folded to integer_one_node by now, it's fairly
2610 certain that the value simply isn't constant. */
2611 result = integer_zero_node;
2612 break;
2613
2614 default:
0a39fd54 2615 bsi_next (&i);
4ee9c684 2616 continue;
2617 }
2618
2619 if (dump_file && (dump_flags & TDF_DETAILS))
2620 {
2621 fprintf (dump_file, "Simplified\n ");
2622 print_generic_stmt (dump_file, *stmtp, dump_flags);
2623 }
2624
de6ed584 2625 push_stmt_changes (stmtp);
2626
909e5ecb 2627 if (!set_rhs (stmtp, result))
2628 {
a280136a 2629 result = convert_to_gimple_builtin (&i, result,
2630 TREE_CODE (old_stmt)
35cc02b5 2631 != GIMPLE_MODIFY_STMT);
876760f6 2632 if (result)
2633 {
2634 bool ok = set_rhs (stmtp, result);
876760f6 2635 gcc_assert (ok);
2636 }
909e5ecb 2637 }
de6ed584 2638
2639 pop_stmt_changes (stmtp);
2640
4c27dd45 2641 if (maybe_clean_or_replace_eh_stmt (old_stmt, *stmtp)
b36237eb 2642 && tree_purge_dead_eh_edges (bb))
2643 cfg_changed = true;
4ee9c684 2644
2645 if (dump_file && (dump_flags & TDF_DETAILS))
2646 {
2647 fprintf (dump_file, "to\n ");
2648 print_generic_stmt (dump_file, *stmtp, dump_flags);
2649 fprintf (dump_file, "\n");
2650 }
0a39fd54 2651
2652 /* Retry the same statement if it changed into another
2653 builtin, there might be new opportunities now. */
2654 call = get_rhs (*stmtp);
2655 if (!call || TREE_CODE (call) != CALL_EXPR)
2656 {
2657 bsi_next (&i);
2658 continue;
2659 }
2660 callee = get_callee_fndecl (call);
2661 if (!callee
2662 || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2663 || DECL_FUNCTION_CODE (callee) == fcode)
2664 bsi_next (&i);
4ee9c684 2665 }
2666 }
b36237eb 2667
2668 /* Delete unreachable blocks. */
6fa78c7b 2669 return cfg_changed ? TODO_cleanup_cfg : 0;
4ee9c684 2670}
2671
41511585 2672
4ee9c684 2673struct tree_opt_pass pass_fold_builtins =
2674{
2675 "fab", /* name */
2676 NULL, /* gate */
2677 execute_fold_all_builtins, /* execute */
2678 NULL, /* sub */
2679 NULL, /* next */
2680 0, /* static_pass_number */
2681 0, /* tv_id */
49290934 2682 PROP_cfg | PROP_ssa, /* properties_required */
4ee9c684 2683 0, /* properties_provided */
2684 0, /* properties_destroyed */
2685 0, /* todo_flags_start */
909e5ecb 2686 TODO_dump_func
2687 | TODO_verify_ssa
88dbf20f 2688 | TODO_update_ssa, /* todo_flags_finish */
0f9005dd 2689 0 /* letter */
4ee9c684 2690};