]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-ssa-ccp.c
tree-ssa-ccp.c (fold_const_aggregate_ref): Use fold_convert.
[thirdparty/gcc.git] / gcc / tree-ssa-ccp.c
CommitLineData
6de9cd9a 1/* Conditional constant propagation pass for the GNU compiler.
6ac01510 2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
1e052c19 3 Free Software Foundation, Inc.
6de9cd9a
DN
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
366ccddb
KC
21Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2202110-1301, USA. */
6de9cd9a 23
0bca51f0
DN
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
106dec71
ZD
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.
0bca51f0
DN
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
38635499
DN
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,
0bca51f0 139
38635499 140 # a_5 = VDEF <a_4>
0bca51f0
DN
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
106dec71
ZD
150 Note that the initial value of virtual operands is VARYING, not
151 UNDEFINED. Consider, for instance global variables:
0bca51f0
DN
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
106dec71 169 would erroneously optimize the above into 'return 3;'.
0bca51f0
DN
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.
6de9cd9a
DN
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"
6de9cd9a 193#include "tree.h"
750628d8 194#include "flags.h"
6de9cd9a
DN
195#include "rtl.h"
196#include "tm_p.h"
750628d8 197#include "ggc.h"
6de9cd9a 198#include "basic-block.h"
750628d8 199#include "output.h"
750628d8
DN
200#include "expr.h"
201#include "function.h"
6de9cd9a 202#include "diagnostic.h"
750628d8 203#include "timevar.h"
6de9cd9a 204#include "tree-dump.h"
750628d8 205#include "tree-flow.h"
6de9cd9a 206#include "tree-pass.h"
750628d8
DN
207#include "tree-ssa-propagate.h"
208#include "langhooks.h"
ae3df618 209#include "target.h"
6ac01510 210#include "toplev.h"
6de9cd9a
DN
211
212
213/* Possible lattice values. */
214typedef enum
215{
106dec71 216 UNINITIALIZED,
6de9cd9a
DN
217 UNDEFINED,
218 CONSTANT,
219 VARYING
0bca51f0 220} ccp_lattice_t;
6de9cd9a 221
0bca51f0
DN
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
38635499
DN
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). */
404f4351 228static prop_value_t *const_val;
6de9cd9a 229
0bca51f0
DN
230/* True if we are also propagating constants in stores and loads. */
231static bool do_store_ccp;
6de9cd9a 232
0bca51f0 233/* Dump constant propagation value VAL to file OUTF prefixed by PREFIX. */
95eec0d6
DB
234
235static void
0bca51f0 236dump_lattice_value (FILE *outf, const char *prefix, prop_value_t val)
95eec0d6 237{
750628d8 238 switch (val.lattice_val)
95eec0d6 239 {
0bca51f0
DN
240 case UNINITIALIZED:
241 fprintf (outf, "%sUNINITIALIZED", prefix);
242 break;
750628d8
DN
243 case UNDEFINED:
244 fprintf (outf, "%sUNDEFINED", prefix);
245 break;
246 case VARYING:
247 fprintf (outf, "%sVARYING", prefix);
248 break;
750628d8
DN
249 case CONSTANT:
250 fprintf (outf, "%sCONSTANT ", prefix);
0bca51f0 251 print_generic_expr (outf, val.value, dump_flags);
750628d8
DN
252 break;
253 default:
1e128c5f 254 gcc_unreachable ();
750628d8 255 }
95eec0d6 256}
6de9cd9a 257
6de9cd9a 258
0bca51f0
DN
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}
6de9cd9a 269
6de9cd9a 270
688e936d
RH
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
6416ae7f 274 have to be more strict ourselves. */
688e936d
RH
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
fc9962ee
ZD
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}
688e936d 314
0bca51f0
DN
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:
95eec0d6 318
0bca51f0
DN
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
750628d8
DN
323 considering PHI nodes. PHI arguments that are undefined do not
324 change the constant value of the PHI node, which allows for more
0bca51f0 325 constants to be propagated.
6de9cd9a 326
0bca51f0
DN
327 3- If SSA_NAME_VALUE is set and it is a constant, its value is
328 used.
6de9cd9a 329
0bca51f0
DN
330 4- Variables defined by statements other than assignments and PHI
331 nodes are considered VARYING.
6de9cd9a 332
106dec71
ZD
333 5- Initial values of variables that are not GIMPLE registers are
334 considered VARYING. */
6de9cd9a 335
0bca51f0
DN
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 };
fc9962ee 341 tree cst_val;
106dec71 342
0bca51f0 343 if (!do_store_ccp && !is_gimple_reg (var))
6de9cd9a 344 {
0bca51f0
DN
345 /* Short circuit for regular CCP. We are not interested in any
346 non-register when DO_STORE_CCP is false. */
750628d8 347 val.lattice_val = VARYING;
6de9cd9a 348 }
0bca51f0
DN
349 else if (SSA_NAME_VALUE (var)
350 && is_gimple_min_invariant (SSA_NAME_VALUE (var)))
750628d8 351 {
0bca51f0
DN
352 val.lattice_val = CONSTANT;
353 val.value = SSA_NAME_VALUE (var);
750628d8 354 }
fc9962ee 355 else if ((cst_val = get_symbol_constant_value (sym)) != NULL_TREE)
750628d8 356 {
0bca51f0
DN
357 /* Globals and static variables declared 'const' take their
358 initial value. */
359 val.lattice_val = CONSTANT;
fc9962ee 360 val.value = cst_val;
0bca51f0 361 val.mem_ref = sym;
750628d8
DN
362 }
363 else
364 {
750628d8 365 tree stmt = SSA_NAME_DEF_STMT (var);
6de9cd9a 366
0bca51f0
DN
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
106dec71
ZD
371 can assume initially that it is UNDEFINED, otherwise we must
372 consider it VARYING. */
0bca51f0
DN
373 if (is_gimple_reg (sym) && TREE_CODE (sym) != PARM_DECL)
374 val.lattice_val = UNDEFINED;
0bca51f0 375 else
750628d8
DN
376 val.lattice_val = VARYING;
377 }
07beea0d 378 else if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
0bca51f0
DN
379 || TREE_CODE (stmt) == PHI_NODE)
380 {
381 /* Any other variable defined by an assignment or a PHI node
106dec71
ZD
382 is considered UNDEFINED. */
383 val.lattice_val = UNDEFINED;
0bca51f0
DN
384 }
385 else
386 {
387 /* Otherwise, VAR will never take on a constant value. */
388 val.lattice_val = VARYING;
389 }
750628d8 390 }
6de9cd9a 391
750628d8
DN
392 return val;
393}
6de9cd9a 394
6de9cd9a 395
106dec71 396/* Get the constant value associated with variable VAR. */
6de9cd9a 397
106dec71
ZD
398static inline prop_value_t *
399get_value (tree var)
0bca51f0
DN
400{
401 prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
106dec71
ZD
402
403 if (val->lattice_val == UNINITIALIZED)
6de9cd9a
DN
404 *val = get_default_value (var);
405
406 return val;
407}
408
106dec71
ZD
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}
6de9cd9a 420
fbb5445b
L
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
0bca51f0
DN
469/* Set the value for variable VAR to NEW_VAL. Return true if the new
470 value is different from VAR's previous value. */
6de9cd9a 471
750628d8 472static bool
0bca51f0 473set_lattice_value (tree var, prop_value_t new_val)
6de9cd9a 474{
106dec71 475 prop_value_t *old_val = get_value (var);
0bca51f0 476
fbb5445b
L
477 canonicalize_float_value (&new_val);
478
0bca51f0 479 /* Lattice transitions must always be monotonically increasing in
106dec71
ZD
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
fc9962ee 483 gcc_assert (old_val->lattice_val < new_val.lattice_val
0bca51f0 484 || (old_val->lattice_val == new_val.lattice_val
fc9962ee
ZD
485 && ((!old_val->value && !new_val.value)
486 || operand_equal_p (old_val->value, new_val.value, 0))
106dec71 487 && old_val->mem_ref == new_val.mem_ref));
0bca51f0
DN
488
489 if (old_val->lattice_val != new_val.lattice_val)
6de9cd9a 490 {
750628d8
DN
491 if (dump_file && (dump_flags & TDF_DETAILS))
492 {
0bca51f0 493 dump_lattice_value (dump_file, "Lattice value changed to ", new_val);
106dec71 494 fprintf (dump_file, ". Adding SSA edges to worklist.\n");
750628d8
DN
495 }
496
0bca51f0
DN
497 *old_val = new_val;
498
106dec71
ZD
499 gcc_assert (new_val.lattice_val != UNDEFINED);
500 return true;
6de9cd9a 501 }
750628d8
DN
502
503 return false;
6de9cd9a
DN
504}
505
506
0bca51f0 507/* Return the likely CCP lattice value for STMT.
6de9cd9a 508
750628d8 509 If STMT has no operands, then return CONSTANT.
6de9cd9a 510
750628d8 511 Else if any operands of STMT are undefined, then return UNDEFINED.
6de9cd9a 512
750628d8 513 Else if any operands of STMT are constants, then return CONSTANT.
6de9cd9a 514
750628d8 515 Else return VARYING. */
6de9cd9a 516
0bca51f0 517static ccp_lattice_t
750628d8
DN
518likely_value (tree stmt)
519{
106dec71 520 bool has_constant_operand;
750628d8
DN
521 stmt_ann_t ann;
522 tree use;
523 ssa_op_iter iter;
6de9cd9a 524
750628d8 525 ann = stmt_ann (stmt);
0bca51f0
DN
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
ff88c5aa 535 && !ZERO_SSA_OPERANDS (stmt, SSA_OP_ALL_VIRTUALS))
750628d8 536 return VARYING;
6de9cd9a 537
0bca51f0
DN
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. */
750628d8
DN
541 if (get_call_expr_in (stmt) != NULL_TREE)
542 return VARYING;
6de9cd9a 543
0bca51f0
DN
544 /* Anything other than assignments and conditional jumps are not
545 interesting for CCP. */
07beea0d 546 if (TREE_CODE (stmt) != GIMPLE_MODIFY_STMT
106dec71 547 && !(TREE_CODE (stmt) == RETURN_EXPR && get_rhs (stmt) != NULL_TREE)
0bca51f0
DN
548 && TREE_CODE (stmt) != COND_EXPR
549 && TREE_CODE (stmt) != SWITCH_EXPR)
550 return VARYING;
551
a318e3ac
SB
552 if (is_gimple_min_invariant (get_rhs (stmt)))
553 return CONSTANT;
554
106dec71
ZD
555 has_constant_operand = false;
556 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE | SSA_OP_VUSE)
750628d8 557 {
106dec71 558 prop_value_t *val = get_value (use);
750628d8 559
106dec71
ZD
560 if (val->lattice_val == UNDEFINED)
561 return UNDEFINED;
0bca51f0 562
750628d8 563 if (val->lattice_val == CONSTANT)
106dec71 564 has_constant_operand = true;
6de9cd9a 565 }
750628d8 566
106dec71
ZD
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))
0bca51f0
DN
572 return CONSTANT;
573
106dec71 574 return VARYING;
6de9cd9a
DN
575}
576
106dec71
ZD
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. */
07beea0d 604 if (TREE_CODE (stmt) != GIMPLE_MODIFY_STMT
106dec71
ZD
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}
6de9cd9a 612
750628d8 613/* Initialize local data structures for CCP. */
6de9cd9a
DN
614
615static void
750628d8 616ccp_initialize (void)
6de9cd9a 617{
750628d8 618 basic_block bb;
6de9cd9a 619
b9eae1a9 620 const_val = XCNEWVEC (prop_value_t, num_ssa_names);
6de9cd9a 621
750628d8
DN
622 /* Initialize simulation flags for PHI nodes and statements. */
623 FOR_EACH_BB (bb)
6de9cd9a 624 {
750628d8 625 block_stmt_iterator i;
6de9cd9a 626
750628d8
DN
627 for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
628 {
750628d8 629 tree stmt = bsi_stmt (i);
106dec71 630 bool is_varying = surely_varying_stmt_p (stmt);
6de9cd9a 631
106dec71 632 if (is_varying)
750628d8 633 {
0bca51f0
DN
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)
106dec71
ZD
640 {
641 if (is_varying)
642 set_value_varying (def);
643 }
750628d8
DN
644 }
645
750628d8
DN
646 DONT_SIMULATE_AGAIN (stmt) = is_varying;
647 }
6de9cd9a
DN
648 }
649
106dec71
ZD
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. */
750628d8 653 FOR_EACH_BB (bb)
6de9cd9a 654 {
0bca51f0 655 tree phi;
750628d8
DN
656
657 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
658 {
106dec71
ZD
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;
750628d8 663 }
6de9cd9a 664 }
750628d8 665}
6de9cd9a 666
6de9cd9a 667
0bca51f0 668/* Do final substitution of propagated values, cleanup the flowgraph and
3253eafb 669 free allocated storage.
6de9cd9a 670
3253eafb
JH
671 Return TRUE when something was optimized. */
672
673static bool
0bca51f0 674ccp_finalize (void)
6de9cd9a 675{
0bca51f0 676 /* Perform substitutions based on the known constant values. */
3253eafb 677 bool something_changed = substitute_and_fold (const_val, false);
6de9cd9a 678
0bca51f0 679 free (const_val);
3253eafb 680 return something_changed;;
6de9cd9a
DN
681}
682
683
0bca51f0
DN
684/* Compute the meet operator between *VAL1 and *VAL2. Store the result
685 in VAL1.
686
687 any M UNDEFINED = any
0bca51f0
DN
688 any M VARYING = VARYING
689 Ci M Cj = Ci if (i == j)
690 Ci M Cj = VARYING if (i != j)
106dec71 691 */
6de9cd9a
DN
692
693static void
0bca51f0 694ccp_lattice_meet (prop_value_t *val1, prop_value_t *val2)
6de9cd9a 695{
0bca51f0 696 if (val1->lattice_val == UNDEFINED)
6de9cd9a 697 {
0bca51f0
DN
698 /* UNDEFINED M any = any */
699 *val1 = *val2;
750628d8 700 }
0bca51f0 701 else if (val2->lattice_val == UNDEFINED)
195da47b 702 {
0bca51f0
DN
703 /* any M UNDEFINED = any
704 Nothing to do. VAL1 already contains the value we want. */
705 ;
195da47b 706 }
0bca51f0
DN
707 else if (val1->lattice_val == VARYING
708 || val2->lattice_val == VARYING)
750628d8 709 {
0bca51f0
DN
710 /* any M VARYING = VARYING. */
711 val1->lattice_val = VARYING;
712 val1->value = NULL_TREE;
713 val1->mem_ref = NULL_TREE;
750628d8 714 }
0bca51f0
DN
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
a318e3ac
SB
719 || (val1->mem_ref && val2->mem_ref
720 && operand_equal_p (val1->mem_ref, val2->mem_ref, 0))))
750628d8 721 {
0bca51f0
DN
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;
750628d8
DN
730 }
731 else
732 {
0bca51f0
DN
733 /* Any other combination is VARYING. */
734 val1->lattice_val = VARYING;
735 val1->value = NULL_TREE;
736 val1->mem_ref = NULL_TREE;
750628d8 737 }
6de9cd9a
DN
738}
739
740
750628d8
DN
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
0bca51f0 743 PHI node is determined calling ccp_lattice_meet with all the arguments
750628d8 744 of the PHI node that are incoming via executable edges. */
6de9cd9a 745
750628d8
DN
746static enum ssa_prop_result
747ccp_visit_phi_node (tree phi)
6de9cd9a 748{
750628d8 749 int i;
0bca51f0 750 prop_value_t *old_val, new_val;
6de9cd9a 751
750628d8 752 if (dump_file && (dump_flags & TDF_DETAILS))
6de9cd9a 753 {
750628d8
DN
754 fprintf (dump_file, "\nVisiting PHI node: ");
755 print_generic_expr (dump_file, phi, dump_flags);
6de9cd9a 756 }
6de9cd9a 757
106dec71 758 old_val = get_value (PHI_RESULT (phi));
750628d8
DN
759 switch (old_val->lattice_val)
760 {
761 case VARYING:
0bca51f0 762 return SSA_PROP_VARYING;
6de9cd9a 763
750628d8
DN
764 case CONSTANT:
765 new_val = *old_val;
766 break;
6de9cd9a 767
750628d8 768 case UNDEFINED:
750628d8 769 new_val.lattice_val = UNDEFINED;
0bca51f0
DN
770 new_val.value = NULL_TREE;
771 new_val.mem_ref = NULL_TREE;
750628d8 772 break;
6de9cd9a 773
750628d8 774 default:
1e128c5f 775 gcc_unreachable ();
750628d8 776 }
6de9cd9a 777
750628d8
DN
778 for (i = 0; i < PHI_NUM_ARGS (phi); i++)
779 {
0bca51f0
DN
780 /* Compute the meet operator over all the PHI arguments flowing
781 through executable edges. */
750628d8 782 edge e = PHI_ARG_EDGE (phi, i);
6de9cd9a 783
750628d8
DN
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 {
0bca51f0
DN
796 tree arg = PHI_ARG_DEF (phi, i);
797 prop_value_t arg_val;
6de9cd9a 798
0bca51f0 799 if (is_gimple_min_invariant (arg))
750628d8 800 {
0bca51f0
DN
801 arg_val.lattice_val = CONSTANT;
802 arg_val.value = arg;
803 arg_val.mem_ref = NULL_TREE;
750628d8
DN
804 }
805 else
106dec71 806 arg_val = *(get_value (arg));
6de9cd9a 807
0bca51f0 808 ccp_lattice_meet (&new_val, &arg_val);
6de9cd9a 809
750628d8
DN
810 if (dump_file && (dump_flags & TDF_DETAILS))
811 {
812 fprintf (dump_file, "\t");
0bca51f0
DN
813 print_generic_expr (dump_file, arg, dump_flags);
814 dump_lattice_value (dump_file, "\tValue: ", arg_val);
750628d8
DN
815 fprintf (dump_file, "\n");
816 }
6de9cd9a 817
750628d8
DN
818 if (new_val.lattice_val == VARYING)
819 break;
820 }
821 }
6de9cd9a
DN
822
823 if (dump_file && (dump_flags & TDF_DETAILS))
750628d8
DN
824 {
825 dump_lattice_value (dump_file, "\n PHI node value: ", new_val);
826 fprintf (dump_file, "\n\n");
827 }
828
106dec71 829 /* Make the transition to the new value. */
750628d8
DN
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;
6de9cd9a
DN
839}
840
841
750628d8
DN
842/* CCP specific front-end to the non-destructive constant folding
843 routines.
6de9cd9a
DN
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);
6615c446 856 enum tree_code_class kind = TREE_CODE_CLASS (code);
6de9cd9a
DN
857 tree retval = NULL_TREE;
858
6de9cd9a 859 if (TREE_CODE (rhs) == SSA_NAME)
0bca51f0
DN
860 {
861 /* If the RHS is an SSA_NAME, return its known constant value,
862 if any. */
106dec71 863 return get_value (rhs)->value;
0bca51f0
DN
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);
add9e6d3
AP
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;
0bca51f0 883 }
6de9cd9a
DN
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. */
6615c446 888 if (kind == tcc_unary)
6de9cd9a
DN
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 {
106dec71 896 prop_value_t *val = get_value (op0);
6de9cd9a 897 if (val->lattice_val == CONSTANT)
106dec71 898 op0 = get_value (op0)->value;
6de9cd9a
DN
899 }
900
078152a2 901 if ((code == NOP_EXPR || code == CONVERT_EXPR)
36618b93 902 && useless_type_conversion_p (TREE_TYPE (rhs), TREE_TYPE (op0)))
078152a2 903 return op0;
615bc06a 904 return fold_unary (code, TREE_TYPE (rhs), op0);
6de9cd9a
DN
905 }
906
907 /* Binary and comparison operators. We know one or both of the
908 operands are constants. */
6615c446
JO
909 else if (kind == tcc_binary
910 || kind == tcc_comparison
6de9cd9a
DN
911 || code == TRUTH_AND_EXPR
912 || code == TRUTH_OR_EXPR
913 || code == TRUTH_XOR_EXPR)
914 {
915 /* Handle binary and comparison operators that can appear in
916 GIMPLE form. */
917 tree op0 = TREE_OPERAND (rhs, 0);
918 tree op1 = TREE_OPERAND (rhs, 1);
919
920 /* Simplify the operands down to constants when appropriate. */
921 if (TREE_CODE (op0) == SSA_NAME)
922 {
106dec71 923 prop_value_t *val = get_value (op0);
6de9cd9a 924 if (val->lattice_val == CONSTANT)
0bca51f0 925 op0 = val->value;
6de9cd9a
DN
926 }
927
928 if (TREE_CODE (op1) == SSA_NAME)
929 {
106dec71 930 prop_value_t *val = get_value (op1);
6de9cd9a 931 if (val->lattice_val == CONSTANT)
0bca51f0 932 op1 = val->value;
6de9cd9a
DN
933 }
934
615bc06a 935 return fold_binary (code, TREE_TYPE (rhs), op0, op1);
6de9cd9a
DN
936 }
937
938 /* We may be able to fold away calls to builtin functions if their
9cf737f8 939 arguments are constants. */
6de9cd9a 940 else if (code == CALL_EXPR
5039610b
SL
941 && TREE_CODE (CALL_EXPR_FN (rhs)) == ADDR_EXPR
942 && TREE_CODE (TREE_OPERAND (CALL_EXPR_FN (rhs), 0)) == FUNCTION_DECL
943 && DECL_BUILT_IN (TREE_OPERAND (CALL_EXPR_FN (rhs), 0)))
6de9cd9a 944 {
f47c96aa 945 if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_USE))
6de9cd9a 946 {
f47c96aa 947 tree *orig, var;
f47c96aa
AM
948 size_t i = 0;
949 ssa_op_iter iter;
950 use_operand_p var_p;
6de9cd9a
DN
951
952 /* Preserve the original values of every operand. */
858904db 953 orig = XNEWVEC (tree, NUM_SSA_OPERANDS (stmt, SSA_OP_USE));
f47c96aa
AM
954 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
955 orig[i++] = var;
6de9cd9a
DN
956
957 /* Substitute operands with their values and try to fold. */
0bca51f0 958 replace_uses_in (stmt, NULL, const_val);
5039610b 959 retval = fold_call_expr (rhs, false);
6de9cd9a
DN
960
961 /* Restore operands to their original form. */
f47c96aa
AM
962 i = 0;
963 FOR_EACH_SSA_USE_OPERAND (var_p, stmt, iter, SSA_OP_USE)
964 SET_USE (var_p, orig[i++]);
6de9cd9a
DN
965 free (orig);
966 }
967 }
968 else
969 return rhs;
970
971 /* If we got a simplified form, see if we need to convert its type. */
972 if (retval)
a32e70c3 973 return fold_convert (TREE_TYPE (rhs), retval);
6de9cd9a
DN
974
975 /* No simplification was possible. */
976 return rhs;
977}
978
979
ae3df618
SB
980/* Return the tree representing the element referenced by T if T is an
981 ARRAY_REF or COMPONENT_REF into constant aggregates. Return
982 NULL_TREE otherwise. */
983
984static tree
985fold_const_aggregate_ref (tree t)
986{
987 prop_value_t *value;
4038c495
GB
988 tree base, ctor, idx, field;
989 unsigned HOST_WIDE_INT cnt;
990 tree cfield, cval;
ae3df618
SB
991
992 switch (TREE_CODE (t))
993 {
994 case ARRAY_REF:
995 /* Get a CONSTRUCTOR. If BASE is a VAR_DECL, get its
996 DECL_INITIAL. If BASE is a nested reference into another
997 ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
998 the inner reference. */
999 base = TREE_OPERAND (t, 0);
1000 switch (TREE_CODE (base))
1001 {
1002 case VAR_DECL:
1003 if (!TREE_READONLY (base)
1004 || TREE_CODE (TREE_TYPE (base)) != ARRAY_TYPE
1005 || !targetm.binds_local_p (base))
1006 return NULL_TREE;
1007
1008 ctor = DECL_INITIAL (base);
1009 break;
1010
1011 case ARRAY_REF:
1012 case COMPONENT_REF:
1013 ctor = fold_const_aggregate_ref (base);
1014 break;
1015
1016 default:
1017 return NULL_TREE;
1018 }
1019
1020 if (ctor == NULL_TREE
faaf1436
RG
1021 || (TREE_CODE (ctor) != CONSTRUCTOR
1022 && TREE_CODE (ctor) != STRING_CST)
ae3df618
SB
1023 || !TREE_STATIC (ctor))
1024 return NULL_TREE;
1025
1026 /* Get the index. If we have an SSA_NAME, try to resolve it
1027 with the current lattice value for the SSA_NAME. */
1028 idx = TREE_OPERAND (t, 1);
1029 switch (TREE_CODE (idx))
1030 {
1031 case SSA_NAME:
106dec71 1032 if ((value = get_value (idx))
ae3df618
SB
1033 && value->lattice_val == CONSTANT
1034 && TREE_CODE (value->value) == INTEGER_CST)
1035 idx = value->value;
1036 else
1037 return NULL_TREE;
1038 break;
1039
1040 case INTEGER_CST:
1041 break;
1042
1043 default:
1044 return NULL_TREE;
1045 }
1046
faaf1436
RG
1047 /* Fold read from constant string. */
1048 if (TREE_CODE (ctor) == STRING_CST)
1049 {
1050 if ((TYPE_MODE (TREE_TYPE (t))
1051 == TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1052 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor))))
1053 == MODE_INT)
1054 && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (ctor)))) == 1
1055 && compare_tree_int (idx, TREE_STRING_LENGTH (ctor)) < 0)
7d0a07d0
DJ
1056 return fold_convert (TREE_TYPE (t),
1057 build_int_cst (NULL,
1058 (TREE_STRING_POINTER (ctor)
1059 [TREE_INT_CST_LOW (idx)])));
faaf1436
RG
1060 return NULL_TREE;
1061 }
1062
ae3df618 1063 /* Whoo-hoo! I'll fold ya baby. Yeah! */
4038c495
GB
1064 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1065 if (tree_int_cst_equal (cfield, idx))
1066 return cval;
ae3df618
SB
1067 break;
1068
1069 case COMPONENT_REF:
1070 /* Get a CONSTRUCTOR. If BASE is a VAR_DECL, get its
1071 DECL_INITIAL. If BASE is a nested reference into another
1072 ARRAY_REF or COMPONENT_REF, make a recursive call to resolve
1073 the inner reference. */
1074 base = TREE_OPERAND (t, 0);
1075 switch (TREE_CODE (base))
1076 {
1077 case VAR_DECL:
1078 if (!TREE_READONLY (base)
1079 || TREE_CODE (TREE_TYPE (base)) != RECORD_TYPE
1080 || !targetm.binds_local_p (base))
1081 return NULL_TREE;
1082
1083 ctor = DECL_INITIAL (base);
1084 break;
1085
1086 case ARRAY_REF:
1087 case COMPONENT_REF:
1088 ctor = fold_const_aggregate_ref (base);
1089 break;
1090
1091 default:
1092 return NULL_TREE;
1093 }
1094
1095 if (ctor == NULL_TREE
1096 || TREE_CODE (ctor) != CONSTRUCTOR
1097 || !TREE_STATIC (ctor))
1098 return NULL_TREE;
1099
1100 field = TREE_OPERAND (t, 1);
1101
4038c495
GB
1102 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), cnt, cfield, cval)
1103 if (cfield == field
ae3df618 1104 /* FIXME: Handle bit-fields. */
4038c495
GB
1105 && ! DECL_BIT_FIELD (cfield))
1106 return cval;
ae3df618
SB
1107 break;
1108
1ebd8d9a
SB
1109 case REALPART_EXPR:
1110 case IMAGPART_EXPR:
1111 {
1112 tree c = fold_const_aggregate_ref (TREE_OPERAND (t, 0));
1113 if (c && TREE_CODE (c) == COMPLEX_CST)
1114 return fold_build1 (TREE_CODE (t), TREE_TYPE (t), c);
1115 break;
1116 }
1117
ae3df618
SB
1118 default:
1119 break;
1120 }
1121
1122 return NULL_TREE;
1123}
1124
6de9cd9a
DN
1125/* Evaluate statement STMT. */
1126
0bca51f0 1127static prop_value_t
6de9cd9a
DN
1128evaluate_stmt (tree stmt)
1129{
0bca51f0 1130 prop_value_t val;
faaf1436 1131 tree simplified = NULL_TREE;
0bca51f0 1132 ccp_lattice_t likelyvalue = likely_value (stmt);
6ac01510 1133 bool is_constant;
0bca51f0
DN
1134
1135 val.mem_ref = NULL_TREE;
6de9cd9a 1136
6ac01510
ILT
1137 fold_defer_overflow_warnings ();
1138
6de9cd9a
DN
1139 /* If the statement is likely to have a CONSTANT result, then try
1140 to fold the statement to determine the constant value. */
1141 if (likelyvalue == CONSTANT)
1142 simplified = ccp_fold (stmt);
1143 /* If the statement is likely to have a VARYING result, then do not
1144 bother folding the statement. */
faaf1436 1145 if (likelyvalue == VARYING)
6de9cd9a 1146 simplified = get_rhs (stmt);
ae3df618
SB
1147 /* If the statement is an ARRAY_REF or COMPONENT_REF into constant
1148 aggregates, extract the referenced constant. Otherwise the
1149 statement is likely to have an UNDEFINED value, and there will be
1150 nothing to do. Note that fold_const_aggregate_ref returns
1151 NULL_TREE if the first case does not match. */
faaf1436 1152 else if (!simplified)
ae3df618 1153 simplified = fold_const_aggregate_ref (get_rhs (stmt));
6de9cd9a 1154
6ac01510
ILT
1155 is_constant = simplified && is_gimple_min_invariant (simplified);
1156
1157 fold_undefer_overflow_warnings (is_constant, stmt, 0);
1158
1159 if (is_constant)
6de9cd9a
DN
1160 {
1161 /* The statement produced a constant value. */
1162 val.lattice_val = CONSTANT;
0bca51f0 1163 val.value = simplified;
6de9cd9a
DN
1164 }
1165 else
1166 {
1167 /* The statement produced a nonconstant value. If the statement
0bca51f0
DN
1168 had UNDEFINED operands, then the result of the statement
1169 should be UNDEFINED. Otherwise, the statement is VARYING. */
106dec71 1170 if (likelyvalue == UNDEFINED)
a318e3ac
SB
1171 val.lattice_val = likelyvalue;
1172 else
1173 val.lattice_val = VARYING;
1174
0bca51f0 1175 val.value = NULL_TREE;
6de9cd9a 1176 }
750628d8
DN
1177
1178 return val;
6de9cd9a
DN
1179}
1180
1181
750628d8 1182/* Visit the assignment statement STMT. Set the value of its LHS to the
0bca51f0
DN
1183 value computed by the RHS and store LHS in *OUTPUT_P. If STMT
1184 creates virtual definitions, set the value of each new name to that
1185 of the RHS (if we can derive a constant out of the RHS). */
6de9cd9a 1186
750628d8
DN
1187static enum ssa_prop_result
1188visit_assignment (tree stmt, tree *output_p)
6de9cd9a 1189{
0bca51f0 1190 prop_value_t val;
750628d8 1191 tree lhs, rhs;
0bca51f0 1192 enum ssa_prop_result retval;
6de9cd9a 1193
07beea0d
AH
1194 lhs = GIMPLE_STMT_OPERAND (stmt, 0);
1195 rhs = GIMPLE_STMT_OPERAND (stmt, 1);
6de9cd9a 1196
750628d8
DN
1197 if (TREE_CODE (rhs) == SSA_NAME)
1198 {
1199 /* For a simple copy operation, we copy the lattice values. */
106dec71 1200 prop_value_t *nval = get_value (rhs);
750628d8
DN
1201 val = *nval;
1202 }
0bca51f0 1203 else if (do_store_ccp && stmt_makes_single_load (stmt))
750628d8 1204 {
0bca51f0 1205 /* Same as above, but the RHS is not a gimple register and yet
106dec71 1206 has a known VUSE. If STMT is loading from the same memory
0bca51f0
DN
1207 location that created the SSA_NAMEs for the virtual operands,
1208 we can propagate the value on the RHS. */
1209 prop_value_t *nval = get_value_loaded_by (stmt, const_val);
1210
106dec71
ZD
1211 if (nval
1212 && nval->mem_ref
a318e3ac 1213 && operand_equal_p (nval->mem_ref, rhs, 0))
0bca51f0
DN
1214 val = *nval;
1215 else
1216 val = evaluate_stmt (stmt);
750628d8
DN
1217 }
1218 else
9390c347 1219 /* Evaluate the statement. */
750628d8 1220 val = evaluate_stmt (stmt);
6de9cd9a 1221
9390c347 1222 /* If the original LHS was a VIEW_CONVERT_EXPR, modify the constant
ae95537a 1223 value to be a VIEW_CONVERT_EXPR of the old constant value.
9390c347
RK
1224
1225 ??? Also, if this was a definition of a bitfield, we need to widen
750628d8
DN
1226 the constant value into the type of the destination variable. This
1227 should not be necessary if GCC represented bitfields properly. */
1228 {
07beea0d 1229 tree orig_lhs = GIMPLE_STMT_OPERAND (stmt, 0);
9390c347
RK
1230
1231 if (TREE_CODE (orig_lhs) == VIEW_CONVERT_EXPR
1232 && val.lattice_val == CONSTANT)
1233 {
0dd4b47b
KH
1234 tree w = fold_unary (VIEW_CONVERT_EXPR,
1235 TREE_TYPE (TREE_OPERAND (orig_lhs, 0)),
1236 val.value);
ae95537a 1237
3d36fb45 1238 orig_lhs = TREE_OPERAND (orig_lhs, 0);
ae95537a 1239 if (w && is_gimple_min_invariant (w))
0bca51f0 1240 val.value = w;
ae95537a
RK
1241 else
1242 {
1243 val.lattice_val = VARYING;
0bca51f0 1244 val.value = NULL;
ae95537a 1245 }
9390c347
RK
1246 }
1247
750628d8 1248 if (val.lattice_val == CONSTANT
9390c347
RK
1249 && TREE_CODE (orig_lhs) == COMPONENT_REF
1250 && DECL_BIT_FIELD (TREE_OPERAND (orig_lhs, 1)))
6de9cd9a 1251 {
0bca51f0 1252 tree w = widen_bitfield (val.value, TREE_OPERAND (orig_lhs, 1),
9390c347 1253 orig_lhs);
750628d8
DN
1254
1255 if (w && is_gimple_min_invariant (w))
0bca51f0 1256 val.value = w;
750628d8 1257 else
6de9cd9a 1258 {
750628d8 1259 val.lattice_val = VARYING;
0bca51f0
DN
1260 val.value = NULL_TREE;
1261 val.mem_ref = NULL_TREE;
6de9cd9a 1262 }
6de9cd9a 1263 }
750628d8 1264 }
6de9cd9a 1265
0bca51f0 1266 retval = SSA_PROP_NOT_INTERESTING;
6de9cd9a 1267
750628d8 1268 /* Set the lattice value of the statement's output. */
0bca51f0 1269 if (TREE_CODE (lhs) == SSA_NAME)
6de9cd9a 1270 {
0bca51f0
DN
1271 /* If STMT is an assignment to an SSA_NAME, we only have one
1272 value to set. */
1273 if (set_lattice_value (lhs, val))
1274 {
1275 *output_p = lhs;
1276 if (val.lattice_val == VARYING)
1277 retval = SSA_PROP_VARYING;
1278 else
1279 retval = SSA_PROP_INTERESTING;
1280 }
6de9cd9a 1281 }
0bca51f0
DN
1282 else if (do_store_ccp && stmt_makes_single_store (stmt))
1283 {
38635499
DN
1284 /* Otherwise, set the names in VDEF operands to the new
1285 constant value and mark the LHS as the memory reference
1286 associated with VAL. */
0bca51f0
DN
1287 ssa_op_iter i;
1288 tree vdef;
1289 bool changed;
1290
0bca51f0 1291 /* Mark VAL as stored in the LHS of this assignment. */
106dec71
ZD
1292 if (val.lattice_val == CONSTANT)
1293 val.mem_ref = lhs;
0bca51f0
DN
1294
1295 /* Set the value of every VDEF to VAL. */
1296 changed = false;
1297 FOR_EACH_SSA_TREE_OPERAND (vdef, stmt, i, SSA_OP_VIRTUAL_DEFS)
fc9962ee
ZD
1298 {
1299 /* See PR 29801. We may have VDEFs for read-only variables
1300 (see the handling of unmodifiable variables in
1301 add_virtual_operand); do not attempt to change their value. */
1302 if (get_symbol_constant_value (SSA_NAME_VAR (vdef)) != NULL_TREE)
1303 continue;
1304
1305 changed |= set_lattice_value (vdef, val);
1306 }
0bca51f0
DN
1307
1308 /* Note that for propagation purposes, we are only interested in
1309 visiting statements that load the exact same memory reference
1310 stored here. Those statements will have the exact same list
1311 of virtual uses, so it is enough to set the output of this
1312 statement to be its first virtual definition. */
1313 *output_p = first_vdef (stmt);
1314 if (changed)
1315 {
1316 if (val.lattice_val == VARYING)
1317 retval = SSA_PROP_VARYING;
1318 else
1319 retval = SSA_PROP_INTERESTING;
1320 }
1321 }
1322
1323 return retval;
6de9cd9a
DN
1324}
1325
6de9cd9a 1326
750628d8
DN
1327/* Visit the conditional statement STMT. Return SSA_PROP_INTERESTING
1328 if it can determine which edge will be taken. Otherwise, return
1329 SSA_PROP_VARYING. */
1330
1331static enum ssa_prop_result
1332visit_cond_stmt (tree stmt, edge *taken_edge_p)
6de9cd9a 1333{
0bca51f0 1334 prop_value_t val;
750628d8
DN
1335 basic_block block;
1336
1337 block = bb_for_stmt (stmt);
1338 val = evaluate_stmt (stmt);
1339
1340 /* Find which edge out of the conditional block will be taken and add it
1341 to the worklist. If no single edge can be determined statically,
1342 return SSA_PROP_VARYING to feed all the outgoing edges to the
1343 propagation engine. */
0bca51f0 1344 *taken_edge_p = val.value ? find_taken_edge (block, val.value) : 0;
750628d8
DN
1345 if (*taken_edge_p)
1346 return SSA_PROP_INTERESTING;
1347 else
1348 return SSA_PROP_VARYING;
6de9cd9a
DN
1349}
1350
6de9cd9a 1351
750628d8
DN
1352/* Evaluate statement STMT. If the statement produces an output value and
1353 its evaluation changes the lattice value of its output, return
1354 SSA_PROP_INTERESTING and set *OUTPUT_P to the SSA_NAME holding the
1355 output value.
1356
1357 If STMT is a conditional branch and we can determine its truth
1358 value, set *TAKEN_EDGE_P accordingly. If STMT produces a varying
1359 value, return SSA_PROP_VARYING. */
6de9cd9a 1360
750628d8
DN
1361static enum ssa_prop_result
1362ccp_visit_stmt (tree stmt, edge *taken_edge_p, tree *output_p)
1363{
750628d8
DN
1364 tree def;
1365 ssa_op_iter iter;
6de9cd9a 1366
750628d8 1367 if (dump_file && (dump_flags & TDF_DETAILS))
6de9cd9a 1368 {
0bca51f0
DN
1369 fprintf (dump_file, "\nVisiting statement:\n");
1370 print_generic_stmt (dump_file, stmt, dump_flags);
750628d8 1371 fprintf (dump_file, "\n");
6de9cd9a 1372 }
6de9cd9a 1373
07beea0d 1374 if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT)
6de9cd9a 1375 {
750628d8
DN
1376 /* If the statement is an assignment that produces a single
1377 output value, evaluate its RHS to see if the lattice value of
1378 its output has changed. */
1379 return visit_assignment (stmt, output_p);
6de9cd9a 1380 }
750628d8 1381 else if (TREE_CODE (stmt) == COND_EXPR || TREE_CODE (stmt) == SWITCH_EXPR)
6de9cd9a 1382 {
750628d8
DN
1383 /* If STMT is a conditional branch, see if we can determine
1384 which branch will be taken. */
1385 return visit_cond_stmt (stmt, taken_edge_p);
6de9cd9a 1386 }
6de9cd9a 1387
750628d8
DN
1388 /* Any other kind of statement is not interesting for constant
1389 propagation and, therefore, not worth simulating. */
750628d8
DN
1390 if (dump_file && (dump_flags & TDF_DETAILS))
1391 fprintf (dump_file, "No interesting values produced. Marked VARYING.\n");
6de9cd9a 1392
750628d8
DN
1393 /* Definitions made by statements other than assignments to
1394 SSA_NAMEs represent unknown modifications to their outputs.
1395 Mark them VARYING. */
0bca51f0
DN
1396 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
1397 {
1398 prop_value_t v = { VARYING, NULL_TREE, NULL_TREE };
1399 set_lattice_value (def, v);
1400 }
6de9cd9a 1401
750628d8
DN
1402 return SSA_PROP_VARYING;
1403}
6de9cd9a 1404
6de9cd9a 1405
0bca51f0 1406/* Main entry point for SSA Conditional Constant Propagation. */
750628d8 1407
3253eafb 1408static unsigned int
0bca51f0 1409execute_ssa_ccp (bool store_ccp)
750628d8 1410{
0bca51f0 1411 do_store_ccp = store_ccp;
750628d8
DN
1412 ccp_initialize ();
1413 ssa_propagate (ccp_visit_stmt, ccp_visit_phi_node);
3253eafb 1414 if (ccp_finalize ())
706ca88e 1415 return (TODO_cleanup_cfg | TODO_update_ssa | TODO_remove_unused_locals);
3253eafb
JH
1416 else
1417 return 0;
6de9cd9a
DN
1418}
1419
173b818d 1420
c2924966 1421static unsigned int
0bca51f0
DN
1422do_ssa_ccp (void)
1423{
3253eafb 1424 return execute_ssa_ccp (false);
0bca51f0
DN
1425}
1426
1427
173b818d 1428static bool
750628d8 1429gate_ccp (void)
173b818d 1430{
750628d8 1431 return flag_tree_ccp != 0;
173b818d
BB
1432}
1433
6de9cd9a 1434
750628d8
DN
1435struct tree_opt_pass pass_ccp =
1436{
1437 "ccp", /* name */
1438 gate_ccp, /* gate */
0bca51f0 1439 do_ssa_ccp, /* execute */
750628d8
DN
1440 NULL, /* sub */
1441 NULL, /* next */
1442 0, /* static_pass_number */
1443 TV_TREE_CCP, /* tv_id */
7faade0f 1444 PROP_cfg | PROP_ssa, /* properties_required */
750628d8 1445 0, /* properties_provided */
ae07b463 1446 0, /* properties_destroyed */
750628d8 1447 0, /* todo_flags_start */
3253eafb
JH
1448 TODO_dump_func | TODO_verify_ssa
1449 | TODO_verify_stmts | TODO_ggc_collect,/* todo_flags_finish */
9f8628ba 1450 0 /* letter */
750628d8 1451};
6de9cd9a 1452
6de9cd9a 1453
c2924966 1454static unsigned int
0bca51f0
DN
1455do_ssa_store_ccp (void)
1456{
1457 /* If STORE-CCP is not enabled, we just run regular CCP. */
3253eafb 1458 return execute_ssa_ccp (flag_tree_store_ccp != 0);
0bca51f0
DN
1459}
1460
1461static bool
1462gate_store_ccp (void)
1463{
1464 /* STORE-CCP is enabled only with -ftree-store-ccp, but when
1465 -fno-tree-store-ccp is specified, we should run regular CCP.
1466 That's why the pass is enabled with either flag. */
1467 return flag_tree_store_ccp != 0 || flag_tree_ccp != 0;
1468}
1469
1470
1471struct tree_opt_pass pass_store_ccp =
1472{
1473 "store_ccp", /* name */
1474 gate_store_ccp, /* gate */
1475 do_ssa_store_ccp, /* execute */
1476 NULL, /* sub */
1477 NULL, /* next */
1478 0, /* static_pass_number */
1479 TV_TREE_STORE_CCP, /* tv_id */
1480 PROP_cfg | PROP_ssa | PROP_alias, /* properties_required */
1481 0, /* properties_provided */
ae07b463 1482 0, /* properties_destroyed */
0bca51f0 1483 0, /* todo_flags_start */
3253eafb
JH
1484 TODO_dump_func | TODO_verify_ssa
1485 | TODO_verify_stmts | TODO_ggc_collect,/* todo_flags_finish */
0bca51f0
DN
1486 0 /* letter */
1487};
1488
750628d8
DN
1489/* Given a constant value VAL for bitfield FIELD, and a destination
1490 variable VAR, return VAL appropriately widened to fit into VAR. If
1491 FIELD is wider than HOST_WIDE_INT, NULL is returned. */
6de9cd9a 1492
750628d8
DN
1493tree
1494widen_bitfield (tree val, tree field, tree var)
6de9cd9a 1495{
750628d8
DN
1496 unsigned HOST_WIDE_INT var_size, field_size;
1497 tree wide_val;
1498 unsigned HOST_WIDE_INT mask;
1499 unsigned int i;
6de9cd9a 1500
750628d8
DN
1501 /* We can only do this if the size of the type and field and VAL are
1502 all constants representable in HOST_WIDE_INT. */
1503 if (!host_integerp (TYPE_SIZE (TREE_TYPE (var)), 1)
1504 || !host_integerp (DECL_SIZE (field), 1)
1505 || !host_integerp (val, 0))
1506 return NULL_TREE;
6de9cd9a 1507
750628d8
DN
1508 var_size = tree_low_cst (TYPE_SIZE (TREE_TYPE (var)), 1);
1509 field_size = tree_low_cst (DECL_SIZE (field), 1);
6de9cd9a 1510
750628d8
DN
1511 /* Give up if either the bitfield or the variable are too wide. */
1512 if (field_size > HOST_BITS_PER_WIDE_INT || var_size > HOST_BITS_PER_WIDE_INT)
1513 return NULL_TREE;
6de9cd9a 1514
1e128c5f 1515 gcc_assert (var_size >= field_size);
6de9cd9a 1516
750628d8
DN
1517 /* If the sign bit of the value is not set or the field's type is unsigned,
1518 just mask off the high order bits of the value. */
1519 if (DECL_UNSIGNED (field)
1520 || !(tree_low_cst (val, 0) & (((HOST_WIDE_INT)1) << (field_size - 1))))
1521 {
1522 /* Zero extension. Build a mask with the lower 'field_size' bits
1523 set and a BIT_AND_EXPR node to clear the high order bits of
1524 the value. */
1525 for (i = 0, mask = 0; i < field_size; i++)
1526 mask |= ((HOST_WIDE_INT) 1) << i;
6de9cd9a 1527
f457cf40
JM
1528 wide_val = fold_build2 (BIT_AND_EXPR, TREE_TYPE (var), val,
1529 build_int_cst (TREE_TYPE (var), mask));
6de9cd9a 1530 }
750628d8 1531 else
173b818d 1532 {
750628d8
DN
1533 /* Sign extension. Create a mask with the upper 'field_size'
1534 bits set and a BIT_IOR_EXPR to set the high order bits of the
1535 value. */
1536 for (i = 0, mask = 0; i < (var_size - field_size); i++)
1537 mask |= ((HOST_WIDE_INT) 1) << (var_size - i - 1);
1538
f457cf40
JM
1539 wide_val = fold_build2 (BIT_IOR_EXPR, TREE_TYPE (var), val,
1540 build_int_cst (TREE_TYPE (var), mask));
173b818d 1541 }
6de9cd9a 1542
f457cf40 1543 return wide_val;
6de9cd9a
DN
1544}
1545
750628d8 1546
6de9cd9a
DN
1547/* A subroutine of fold_stmt_r. Attempts to fold *(A+O) to A[X].
1548 BASE is an array type. OFFSET is a byte displacement. ORIG_TYPE
9cf737f8 1549 is the desired result type. */
6de9cd9a
DN
1550
1551static tree
1552maybe_fold_offset_to_array_ref (tree base, tree offset, tree orig_type)
1553{
891fc5e9 1554 tree min_idx, idx, idx_type, elt_offset = integer_zero_node;
44de5aeb
RK
1555 tree array_type, elt_type, elt_size;
1556
1557 /* If BASE is an ARRAY_REF, we can pick up another offset (this time
1558 measured in units of the size of elements type) from that ARRAY_REF).
1559 We can't do anything if either is variable.
1560
1561 The case we handle here is *(&A[N]+O). */
1562 if (TREE_CODE (base) == ARRAY_REF)
1563 {
1564 tree low_bound = array_ref_low_bound (base);
1565
1566 elt_offset = TREE_OPERAND (base, 1);
1567 if (TREE_CODE (low_bound) != INTEGER_CST
1568 || TREE_CODE (elt_offset) != INTEGER_CST)
1569 return NULL_TREE;
1570
1571 elt_offset = int_const_binop (MINUS_EXPR, elt_offset, low_bound, 0);
1572 base = TREE_OPERAND (base, 0);
1573 }
6de9cd9a
DN
1574
1575 /* Ignore stupid user tricks of indexing non-array variables. */
1576 array_type = TREE_TYPE (base);
1577 if (TREE_CODE (array_type) != ARRAY_TYPE)
1578 return NULL_TREE;
1579 elt_type = TREE_TYPE (array_type);
f4088621 1580 if (!useless_type_conversion_p (orig_type, elt_type))
6de9cd9a 1581 return NULL_TREE;
891fc5e9
RG
1582
1583 /* Use signed size type for intermediate computation on the index. */
1584 idx_type = signed_type_for (size_type_node);
1585
44de5aeb
RK
1586 /* If OFFSET and ELT_OFFSET are zero, we don't care about the size of the
1587 element type (so we can use the alignment if it's not constant).
1588 Otherwise, compute the offset as an index by using a division. If the
1589 division isn't exact, then don't do anything. */
6de9cd9a 1590 elt_size = TYPE_SIZE_UNIT (elt_type);
fe9821b8
JH
1591 if (!elt_size)
1592 return NULL;
44de5aeb
RK
1593 if (integer_zerop (offset))
1594 {
1595 if (TREE_CODE (elt_size) != INTEGER_CST)
1596 elt_size = size_int (TYPE_ALIGN (elt_type));
6de9cd9a 1597
891fc5e9 1598 idx = build_int_cst (idx_type, 0);
44de5aeb
RK
1599 }
1600 else
1601 {
1602 unsigned HOST_WIDE_INT lquo, lrem;
1603 HOST_WIDE_INT hquo, hrem;
891fc5e9 1604 double_int soffset;
44de5aeb 1605
891fc5e9
RG
1606 /* The final array offset should be signed, so we need
1607 to sign-extend the (possibly pointer) offset here
1608 and use signed division. */
1609 soffset = double_int_sext (tree_to_double_int (offset),
1610 TYPE_PRECISION (TREE_TYPE (offset)));
44de5aeb 1611 if (TREE_CODE (elt_size) != INTEGER_CST
891fc5e9
RG
1612 || div_and_round_double (TRUNC_DIV_EXPR, 0,
1613 soffset.low, soffset.high,
44de5aeb
RK
1614 TREE_INT_CST_LOW (elt_size),
1615 TREE_INT_CST_HIGH (elt_size),
1616 &lquo, &hquo, &lrem, &hrem)
1617 || lrem || hrem)
1618 return NULL_TREE;
6de9cd9a 1619
891fc5e9 1620 idx = build_int_cst_wide (idx_type, lquo, hquo);
44de5aeb
RK
1621 }
1622
1623 /* Assume the low bound is zero. If there is a domain type, get the
1624 low bound, if any, convert the index into that type, and add the
1625 low bound. */
891fc5e9 1626 min_idx = build_int_cst (idx_type, 0);
44de5aeb 1627 if (TYPE_DOMAIN (array_type))
6de9cd9a 1628 {
891fc5e9
RG
1629 idx_type = TYPE_DOMAIN (array_type);
1630 if (TYPE_MIN_VALUE (idx_type))
1631 min_idx = TYPE_MIN_VALUE (idx_type);
44de5aeb 1632 else
891fc5e9 1633 min_idx = fold_convert (idx_type, min_idx);
44de5aeb
RK
1634
1635 if (TREE_CODE (min_idx) != INTEGER_CST)
1636 return NULL_TREE;
1637
891fc5e9 1638 elt_offset = fold_convert (idx_type, elt_offset);
6de9cd9a
DN
1639 }
1640
44de5aeb
RK
1641 if (!integer_zerop (min_idx))
1642 idx = int_const_binop (PLUS_EXPR, idx, min_idx, 0);
1643 if (!integer_zerop (elt_offset))
1644 idx = int_const_binop (PLUS_EXPR, idx, elt_offset, 0);
1645
891fc5e9
RG
1646 /* Make sure to possibly truncate late after offsetting. */
1647 idx = fold_convert (idx_type, idx);
1648
5852948c 1649 return build4 (ARRAY_REF, orig_type, base, idx, NULL_TREE, NULL_TREE);
6de9cd9a
DN
1650}
1651
750628d8 1652
fe9821b8 1653/* Attempt to fold *(S+O) to S.X.
6de9cd9a
DN
1654 BASE is a record type. OFFSET is a byte displacement. ORIG_TYPE
1655 is the desired result type. */
6de9cd9a 1656
fe9821b8 1657static tree
6de9cd9a
DN
1658maybe_fold_offset_to_component_ref (tree record_type, tree base, tree offset,
1659 tree orig_type, bool base_is_ptr)
1660{
f34fa464 1661 tree f, t, field_type, tail_array_field, field_offset;
6e6e19cb
JH
1662 tree ret;
1663 tree new_base;
6de9cd9a
DN
1664
1665 if (TREE_CODE (record_type) != RECORD_TYPE
1666 && TREE_CODE (record_type) != UNION_TYPE
1667 && TREE_CODE (record_type) != QUAL_UNION_TYPE)
1668 return NULL_TREE;
1669
1670 /* Short-circuit silly cases. */
f4088621 1671 if (useless_type_conversion_p (record_type, orig_type))
6de9cd9a
DN
1672 return NULL_TREE;
1673
1674 tail_array_field = NULL_TREE;
1675 for (f = TYPE_FIELDS (record_type); f ; f = TREE_CHAIN (f))
1676 {
1677 int cmp;
1678
1679 if (TREE_CODE (f) != FIELD_DECL)
1680 continue;
1681 if (DECL_BIT_FIELD (f))
1682 continue;
f34fa464 1683
fe9821b8
JH
1684 if (!DECL_FIELD_OFFSET (f))
1685 continue;
f34fa464
ZD
1686 field_offset = byte_position (f);
1687 if (TREE_CODE (field_offset) != INTEGER_CST)
6de9cd9a
DN
1688 continue;
1689
1690 /* ??? Java creates "interesting" fields for representing base classes.
1691 They have no name, and have no context. With no context, we get into
1692 trouble with nonoverlapping_component_refs_p. Skip them. */
1693 if (!DECL_FIELD_CONTEXT (f))
1694 continue;
1695
1696 /* The previous array field isn't at the end. */
1697 tail_array_field = NULL_TREE;
1698
1699 /* Check to see if this offset overlaps with the field. */
f34fa464 1700 cmp = tree_int_cst_compare (field_offset, offset);
6de9cd9a
DN
1701 if (cmp > 0)
1702 continue;
1703
1704 field_type = TREE_TYPE (f);
6de9cd9a
DN
1705
1706 /* Here we exactly match the offset being checked. If the types match,
1707 then we can return that field. */
53dba802 1708 if (cmp == 0
f4088621 1709 && useless_type_conversion_p (orig_type, field_type))
6de9cd9a
DN
1710 {
1711 if (base_is_ptr)
1712 base = build1 (INDIRECT_REF, record_type, base);
b4257cfc 1713 t = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
6de9cd9a
DN
1714 return t;
1715 }
53dba802
ZD
1716
1717 /* Don't care about offsets into the middle of scalars. */
1718 if (!AGGREGATE_TYPE_P (field_type))
1719 continue;
6de9cd9a 1720
53dba802
ZD
1721 /* Check for array at the end of the struct. This is often
1722 used as for flexible array members. We should be able to
1723 turn this into an array access anyway. */
1724 if (TREE_CODE (field_type) == ARRAY_TYPE)
1725 tail_array_field = f;
1726
1727 /* Check the end of the field against the offset. */
1728 if (!DECL_SIZE_UNIT (f)
1729 || TREE_CODE (DECL_SIZE_UNIT (f)) != INTEGER_CST)
1730 continue;
1731 t = int_const_binop (MINUS_EXPR, offset, field_offset, 1);
1732 if (!tree_int_cst_lt (t, DECL_SIZE_UNIT (f)))
1733 continue;
6de9cd9a 1734
53dba802
ZD
1735 /* If we matched, then set offset to the displacement into
1736 this field. */
6e6e19cb
JH
1737 if (base_is_ptr)
1738 new_base = build1 (INDIRECT_REF, record_type, base);
1739 else
1740 new_base = base;
1741 new_base = build3 (COMPONENT_REF, field_type, new_base, f, NULL_TREE);
1742
1743 /* Recurse to possibly find the match. */
1744 ret = maybe_fold_offset_to_array_ref (new_base, t, orig_type);
1745 if (ret)
1746 return ret;
1747 ret = maybe_fold_offset_to_component_ref (field_type, new_base, t,
1748 orig_type, false);
1749 if (ret)
1750 return ret;
6de9cd9a
DN
1751 }
1752
1753 if (!tail_array_field)
1754 return NULL_TREE;
1755
1756 f = tail_array_field;
1757 field_type = TREE_TYPE (f);
53dba802 1758 offset = int_const_binop (MINUS_EXPR, offset, byte_position (f), 1);
6de9cd9a 1759
6de9cd9a 1760 /* If we get here, we've got an aggregate field, and a possibly
1ea7e6ad 1761 nonzero offset into them. Recurse and hope for a valid match. */
6de9cd9a
DN
1762 if (base_is_ptr)
1763 base = build1 (INDIRECT_REF, record_type, base);
b4257cfc 1764 base = build3 (COMPONENT_REF, field_type, base, f, NULL_TREE);
6de9cd9a
DN
1765
1766 t = maybe_fold_offset_to_array_ref (base, offset, orig_type);
1767 if (t)
1768 return t;
1769 return maybe_fold_offset_to_component_ref (field_type, base, offset,
1770 orig_type, false);
1771}
1772
fe9821b8
JH
1773/* Attempt to express (ORIG_TYPE)BASE+OFFSET as BASE->field_of_orig_type
1774 or BASE[index] or by combination of those.
1775
1776 Before attempting the conversion strip off existing ADDR_EXPRs and
1777 handled component refs. */
1778
1779tree
1780maybe_fold_offset_to_reference (tree base, tree offset, tree orig_type)
1781{
1782 tree ret;
1783 tree type;
1784 bool base_is_ptr = true;
1785
1786 STRIP_NOPS (base);
1787 if (TREE_CODE (base) == ADDR_EXPR)
1788 {
1789 base_is_ptr = false;
1790
1791 base = TREE_OPERAND (base, 0);
1792
1793 /* Handle case where existing COMPONENT_REF pick e.g. wrong field of union,
1794 so it needs to be removed and new COMPONENT_REF constructed.
1795 The wrong COMPONENT_REF are often constructed by folding the
1796 (type *)&object within the expression (type *)&object+offset */
1797 if (handled_component_p (base) && 0)
1798 {
1799 HOST_WIDE_INT sub_offset, size, maxsize;
1800 tree newbase;
1801 newbase = get_ref_base_and_extent (base, &sub_offset,
1802 &size, &maxsize);
1803 gcc_assert (newbase);
1804 gcc_assert (!(sub_offset & (BITS_PER_UNIT - 1)));
1805 if (size == maxsize)
1806 {
1807 base = newbase;
1808 if (sub_offset)
1809 offset = int_const_binop (PLUS_EXPR, offset,
1810 build_int_cst (TREE_TYPE (offset),
1811 sub_offset / BITS_PER_UNIT), 1);
1812 }
1813 }
f4088621 1814 if (useless_type_conversion_p (orig_type, TREE_TYPE (base))
fe9821b8
JH
1815 && integer_zerop (offset))
1816 return base;
1817 type = TREE_TYPE (base);
1818 }
1819 else
1820 {
1821 base_is_ptr = true;
1822 if (!POINTER_TYPE_P (TREE_TYPE (base)))
1823 return NULL_TREE;
1824 type = TREE_TYPE (TREE_TYPE (base));
1825 }
1826 ret = maybe_fold_offset_to_component_ref (type, base, offset,
1827 orig_type, base_is_ptr);
1828 if (!ret)
1829 {
1830 if (base_is_ptr)
1831 base = build1 (INDIRECT_REF, type, base);
1832 ret = maybe_fold_offset_to_array_ref (base, offset, orig_type);
1833 }
1834 return ret;
1835}
750628d8 1836
6de9cd9a
DN
1837/* A subroutine of fold_stmt_r. Attempt to simplify *(BASE+OFFSET).
1838 Return the simplified expression, or NULL if nothing could be done. */
1839
1840static tree
1841maybe_fold_stmt_indirect (tree expr, tree base, tree offset)
1842{
1843 tree t;
cbf8d355 1844 bool volatile_p = TREE_THIS_VOLATILE (expr);
6de9cd9a
DN
1845
1846 /* We may well have constructed a double-nested PLUS_EXPR via multiple
1847 substitutions. Fold that down to one. Remove NON_LVALUE_EXPRs that
1848 are sometimes added. */
1849 base = fold (base);
ff7c8597 1850 STRIP_TYPE_NOPS (base);
6de9cd9a
DN
1851 TREE_OPERAND (expr, 0) = base;
1852
1853 /* One possibility is that the address reduces to a string constant. */
1854 t = fold_read_from_constant_string (expr);
1855 if (t)
1856 return t;
1857
5be014d5
AP
1858 /* Add in any offset from a POINTER_PLUS_EXPR. */
1859 if (TREE_CODE (base) == POINTER_PLUS_EXPR)
6de9cd9a
DN
1860 {
1861 tree offset2;
1862
1863 offset2 = TREE_OPERAND (base, 1);
1864 if (TREE_CODE (offset2) != INTEGER_CST)
1865 return NULL_TREE;
1866 base = TREE_OPERAND (base, 0);
1867
5be014d5
AP
1868 offset = fold_convert (sizetype,
1869 int_const_binop (PLUS_EXPR, offset, offset2, 1));
6de9cd9a
DN
1870 }
1871
1872 if (TREE_CODE (base) == ADDR_EXPR)
1873 {
fe9821b8
JH
1874 tree base_addr = base;
1875
6de9cd9a
DN
1876 /* Strip the ADDR_EXPR. */
1877 base = TREE_OPERAND (base, 0);
1878
0534fa56
RH
1879 /* Fold away CONST_DECL to its value, if the type is scalar. */
1880 if (TREE_CODE (base) == CONST_DECL
688e936d 1881 && ccp_decl_initial_min_invariant (DECL_INITIAL (base)))
0534fa56
RH
1882 return DECL_INITIAL (base);
1883
6de9cd9a 1884 /* Try folding *(&B+O) to B.X. */
fe9821b8
JH
1885 t = maybe_fold_offset_to_reference (base_addr, offset,
1886 TREE_TYPE (expr));
6de9cd9a 1887 if (t)
cbf8d355
RG
1888 {
1889 TREE_THIS_VOLATILE (t) = volatile_p;
1890 return t;
1891 }
6de9cd9a
DN
1892 }
1893 else
1894 {
1895 /* We can get here for out-of-range string constant accesses,
1896 such as "_"[3]. Bail out of the entire substitution search
1897 and arrange for the entire statement to be replaced by a
aabcd309 1898 call to __builtin_trap. In all likelihood this will all be
6de9cd9a
DN
1899 constant-folded away, but in the meantime we can't leave with
1900 something that get_expr_operands can't understand. */
1901
1902 t = base;
1903 STRIP_NOPS (t);
1904 if (TREE_CODE (t) == ADDR_EXPR
1905 && TREE_CODE (TREE_OPERAND (t, 0)) == STRING_CST)
1906 {
1907 /* FIXME: Except that this causes problems elsewhere with dead
0e61db61 1908 code not being deleted, and we die in the rtl expanders
6de9cd9a
DN
1909 because we failed to remove some ssa_name. In the meantime,
1910 just return zero. */
1911 /* FIXME2: This condition should be signaled by
1912 fold_read_from_constant_string directly, rather than
1913 re-checking for it here. */
1914 return integer_zero_node;
1915 }
1916
1917 /* Try folding *(B+O) to B->X. Still an improvement. */
1918 if (POINTER_TYPE_P (TREE_TYPE (base)))
1919 {
fe9821b8
JH
1920 t = maybe_fold_offset_to_reference (base, offset,
1921 TREE_TYPE (expr));
6de9cd9a
DN
1922 if (t)
1923 return t;
1924 }
1925 }
1926
1927 /* Otherwise we had an offset that we could not simplify. */
1928 return NULL_TREE;
1929}
1930
750628d8 1931
5be014d5 1932/* A subroutine of fold_stmt_r. EXPR is a POINTER_PLUS_EXPR.
6de9cd9a
DN
1933
1934 A quaint feature extant in our address arithmetic is that there
1935 can be hidden type changes here. The type of the result need
1936 not be the same as the type of the input pointer.
1937
1938 What we're after here is an expression of the form
1939 (T *)(&array + const)
1940 where the cast doesn't actually exist, but is implicit in the
5be014d5 1941 type of the POINTER_PLUS_EXPR. We'd like to turn this into
6de9cd9a
DN
1942 &array[x]
1943 which may be able to propagate further. */
1944
1945static tree
1946maybe_fold_stmt_addition (tree expr)
1947{
1948 tree op0 = TREE_OPERAND (expr, 0);
1949 tree op1 = TREE_OPERAND (expr, 1);
1950 tree ptr_type = TREE_TYPE (expr);
1951 tree ptd_type;
1952 tree t;
6de9cd9a 1953
5be014d5
AP
1954 gcc_assert (TREE_CODE (expr) == POINTER_PLUS_EXPR);
1955
6de9cd9a
DN
1956 /* It had better be a constant. */
1957 if (TREE_CODE (op1) != INTEGER_CST)
1958 return NULL_TREE;
1959 /* The first operand should be an ADDR_EXPR. */
1960 if (TREE_CODE (op0) != ADDR_EXPR)
1961 return NULL_TREE;
1962 op0 = TREE_OPERAND (op0, 0);
1963
1964 /* If the first operand is an ARRAY_REF, expand it so that we can fold
1965 the offset into it. */
1966 while (TREE_CODE (op0) == ARRAY_REF)
1967 {
1968 tree array_obj = TREE_OPERAND (op0, 0);
1969 tree array_idx = TREE_OPERAND (op0, 1);
1970 tree elt_type = TREE_TYPE (op0);
1971 tree elt_size = TYPE_SIZE_UNIT (elt_type);
1972 tree min_idx;
1973
1974 if (TREE_CODE (array_idx) != INTEGER_CST)
1975 break;
1976 if (TREE_CODE (elt_size) != INTEGER_CST)
1977 break;
1978
1979 /* Un-bias the index by the min index of the array type. */
1980 min_idx = TYPE_DOMAIN (TREE_TYPE (array_obj));
1981 if (min_idx)
1982 {
1983 min_idx = TYPE_MIN_VALUE (min_idx);
1984 if (min_idx)
1985 {
44de5aeb
RK
1986 if (TREE_CODE (min_idx) != INTEGER_CST)
1987 break;
1988
b6f65e3c 1989 array_idx = fold_convert (TREE_TYPE (min_idx), array_idx);
6de9cd9a
DN
1990 if (!integer_zerop (min_idx))
1991 array_idx = int_const_binop (MINUS_EXPR, array_idx,
1992 min_idx, 0);
1993 }
1994 }
1995
1996 /* Convert the index to a byte offset. */
b6f65e3c 1997 array_idx = fold_convert (sizetype, array_idx);
6de9cd9a
DN
1998 array_idx = int_const_binop (MULT_EXPR, array_idx, elt_size, 0);
1999
2000 /* Update the operands for the next round, or for folding. */
5be014d5 2001 op1 = int_const_binop (PLUS_EXPR,
6de9cd9a 2002 array_idx, op1, 0);
6de9cd9a
DN
2003 op0 = array_obj;
2004 }
2005
6de9cd9a
DN
2006 ptd_type = TREE_TYPE (ptr_type);
2007
2008 /* At which point we can try some of the same things as for indirects. */
2009 t = maybe_fold_offset_to_array_ref (op0, op1, ptd_type);
2010 if (!t)
2011 t = maybe_fold_offset_to_component_ref (TREE_TYPE (op0), op0, op1,
2012 ptd_type, false);
2013 if (t)
2014 t = build1 (ADDR_EXPR, ptr_type, t);
2015
2016 return t;
2017}
2018
622f91ba
JL
2019/* For passing state through walk_tree into fold_stmt_r and its
2020 children. */
2021
2022struct fold_stmt_r_data
2023{
6ac01510
ILT
2024 tree stmt;
2025 bool *changed_p;
2026 bool *inside_addr_expr_p;
622f91ba
JL
2027};
2028
6de9cd9a
DN
2029/* Subroutine of fold_stmt called via walk_tree. We perform several
2030 simplifications of EXPR_P, mostly having to do with pointer arithmetic. */
2031
2032static tree
2033fold_stmt_r (tree *expr_p, int *walk_subtrees, void *data)
2034{
858904db 2035 struct fold_stmt_r_data *fold_stmt_r_data = (struct fold_stmt_r_data *) data;
622f91ba
JL
2036 bool *inside_addr_expr_p = fold_stmt_r_data->inside_addr_expr_p;
2037 bool *changed_p = fold_stmt_r_data->changed_p;
6de9cd9a
DN
2038 tree expr = *expr_p, t;
2039
2040 /* ??? It'd be nice if walk_tree had a pre-order option. */
2041 switch (TREE_CODE (expr))
2042 {
2043 case INDIRECT_REF:
2044 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2045 if (t)
2046 return t;
2047 *walk_subtrees = 0;
2048
2049 t = maybe_fold_stmt_indirect (expr, TREE_OPERAND (expr, 0),
2050 integer_zero_node);
2051 break;
2052
fe9821b8
JH
2053 case NOP_EXPR:
2054 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2055 if (t)
2056 return t;
2057 *walk_subtrees = 0;
2058
2059 if (POINTER_TYPE_P (TREE_TYPE (expr))
2060 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 0)))
2061 && (t = maybe_fold_offset_to_reference
2062 (TREE_OPERAND (expr, 0),
2063 integer_zero_node,
2064 TREE_TYPE (TREE_TYPE (expr)))))
2065 t = build_fold_addr_expr_with_type (t, TREE_TYPE (expr));
2066 break;
2067
622f91ba 2068 /* ??? Could handle more ARRAY_REFs here, as a variant of INDIRECT_REF.
6de9cd9a
DN
2069 We'd only want to bother decomposing an existing ARRAY_REF if
2070 the base array is found to have another offset contained within.
2071 Otherwise we'd be wasting time. */
622f91ba
JL
2072 case ARRAY_REF:
2073 /* If we are not processing expressions found within an
2074 ADDR_EXPR, then we can fold constant array references. */
2075 if (!*inside_addr_expr_p)
2076 t = fold_read_from_constant_string (expr);
2077 else
2078 t = NULL;
2079 break;
6de9cd9a
DN
2080
2081 case ADDR_EXPR:
622f91ba 2082 *inside_addr_expr_p = true;
6de9cd9a 2083 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
622f91ba 2084 *inside_addr_expr_p = false;
6de9cd9a
DN
2085 if (t)
2086 return t;
2087 *walk_subtrees = 0;
2088
2089 /* Set TREE_INVARIANT properly so that the value is properly
2090 considered constant, and so gets propagated as expected. */
2091 if (*changed_p)
127203ac 2092 recompute_tree_invariant_for_addr_expr (expr);
6de9cd9a
DN
2093 return NULL_TREE;
2094
5be014d5 2095 case POINTER_PLUS_EXPR:
6de9cd9a
DN
2096 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2097 if (t)
2098 return t;
2099 t = walk_tree (&TREE_OPERAND (expr, 1), fold_stmt_r, data, NULL);
2100 if (t)
2101 return t;
2102 *walk_subtrees = 0;
2103
2104 t = maybe_fold_stmt_addition (expr);
2105 break;
2106
2107 case COMPONENT_REF:
2108 t = walk_tree (&TREE_OPERAND (expr, 0), fold_stmt_r, data, NULL);
2109 if (t)
2110 return t;
2111 *walk_subtrees = 0;
2112
fa27426e
RH
2113 /* Make sure the FIELD_DECL is actually a field in the type on the lhs.
2114 We've already checked that the records are compatible, so we should
2115 come up with a set of compatible fields. */
2116 {
2117 tree expr_record = TREE_TYPE (TREE_OPERAND (expr, 0));
2118 tree expr_field = TREE_OPERAND (expr, 1);
2119
2120 if (DECL_FIELD_CONTEXT (expr_field) != TYPE_MAIN_VARIANT (expr_record))
2121 {
2122 expr_field = find_compatible_field (expr_record, expr_field);
2123 TREE_OPERAND (expr, 1) = expr_field;
2124 }
2125 }
6de9cd9a
DN
2126 break;
2127
ac182688
ZD
2128 case TARGET_MEM_REF:
2129 t = maybe_fold_tmr (expr);
2130 break;
2131
f393e7f5
RG
2132 case COND_EXPR:
2133 if (COMPARISON_CLASS_P (TREE_OPERAND (expr, 0)))
2134 {
2135 tree op0 = TREE_OPERAND (expr, 0);
6ac01510
ILT
2136 tree tem;
2137 bool set;
2138
2139 fold_defer_overflow_warnings ();
2140 tem = fold_binary (TREE_CODE (op0), TREE_TYPE (op0),
2141 TREE_OPERAND (op0, 0),
2142 TREE_OPERAND (op0, 1));
2143 set = tem && set_rhs (expr_p, tem);
2144 fold_undefer_overflow_warnings (set, fold_stmt_r_data->stmt, 0);
2145 if (set)
5cdc4a26
RS
2146 {
2147 t = *expr_p;
2148 break;
2149 }
f393e7f5 2150 }
5cdc4a26 2151 return NULL_TREE;
f393e7f5 2152
6de9cd9a
DN
2153 default:
2154 return NULL_TREE;
2155 }
2156
2157 if (t)
2158 {
2159 *expr_p = t;
2160 *changed_p = true;
2161 }
2162
2163 return NULL_TREE;
2164}
2165
6de9cd9a 2166
10a0d495
JJ
2167/* Return the string length, maximum string length or maximum value of
2168 ARG in LENGTH.
2169 If ARG is an SSA name variable, follow its use-def chains. If LENGTH
2170 is not NULL and, for TYPE == 0, its value is not equal to the length
2171 we determine or if we are unable to determine the length or value,
2172 return false. VISITED is a bitmap of visited variables.
2173 TYPE is 0 if string length should be returned, 1 for maximum string
2174 length and 2 for maximum value ARG can have. */
6de9cd9a 2175
06a9b53f 2176static bool
10a0d495 2177get_maxval_strlen (tree arg, tree *length, bitmap visited, int type)
6de9cd9a 2178{
750628d8
DN
2179 tree var, def_stmt, val;
2180
2181 if (TREE_CODE (arg) != SSA_NAME)
06a9b53f 2182 {
f255541f
RC
2183 if (TREE_CODE (arg) == COND_EXPR)
2184 return get_maxval_strlen (COND_EXPR_THEN (arg), length, visited, type)
2185 && get_maxval_strlen (COND_EXPR_ELSE (arg), length, visited, type);
2186
10a0d495
JJ
2187 if (type == 2)
2188 {
2189 val = arg;
2190 if (TREE_CODE (val) != INTEGER_CST
2191 || tree_int_cst_sgn (val) < 0)
2192 return false;
2193 }
2194 else
2195 val = c_strlen (arg, 1);
750628d8 2196 if (!val)
06a9b53f 2197 return false;
cd709752 2198
10a0d495
JJ
2199 if (*length)
2200 {
2201 if (type > 0)
2202 {
2203 if (TREE_CODE (*length) != INTEGER_CST
2204 || TREE_CODE (val) != INTEGER_CST)
2205 return false;
2206
2207 if (tree_int_cst_lt (*length, val))
2208 *length = val;
2209 return true;
2210 }
2211 else if (simple_cst_equal (val, *length) != 1)
2212 return false;
2213 }
6de9cd9a 2214
750628d8
DN
2215 *length = val;
2216 return true;
6de9cd9a 2217 }
06a9b53f 2218
750628d8
DN
2219 /* If we were already here, break the infinite cycle. */
2220 if (bitmap_bit_p (visited, SSA_NAME_VERSION (arg)))
2221 return true;
2222 bitmap_set_bit (visited, SSA_NAME_VERSION (arg));
2223
2224 var = arg;
2225 def_stmt = SSA_NAME_DEF_STMT (var);
6de9cd9a 2226
750628d8
DN
2227 switch (TREE_CODE (def_stmt))
2228 {
07beea0d 2229 case GIMPLE_MODIFY_STMT:
750628d8 2230 {
10a0d495
JJ
2231 tree rhs;
2232
750628d8
DN
2233 /* The RHS of the statement defining VAR must either have a
2234 constant length or come from another SSA_NAME with a constant
2235 length. */
07beea0d 2236 rhs = GIMPLE_STMT_OPERAND (def_stmt, 1);
750628d8 2237 STRIP_NOPS (rhs);
10a0d495 2238 return get_maxval_strlen (rhs, length, visited, type);
750628d8 2239 }
6de9cd9a 2240
750628d8
DN
2241 case PHI_NODE:
2242 {
2243 /* All the arguments of the PHI node must have the same constant
2244 length. */
2245 int i;
6de9cd9a 2246
750628d8
DN
2247 for (i = 0; i < PHI_NUM_ARGS (def_stmt); i++)
2248 {
2249 tree arg = PHI_ARG_DEF (def_stmt, i);
6de9cd9a 2250
750628d8
DN
2251 /* If this PHI has itself as an argument, we cannot
2252 determine the string length of this argument. However,
2253 if we can find a constant string length for the other
2254 PHI args then we can still be sure that this is a
2255 constant string length. So be optimistic and just
2256 continue with the next argument. */
2257 if (arg == PHI_RESULT (def_stmt))
2258 continue;
6de9cd9a 2259
10a0d495 2260 if (!get_maxval_strlen (arg, length, visited, type))
750628d8
DN
2261 return false;
2262 }
6de9cd9a 2263
750628d8 2264 return true;
173b818d 2265 }
6de9cd9a 2266
750628d8
DN
2267 default:
2268 break;
6de9cd9a
DN
2269 }
2270
750628d8
DN
2271
2272 return false;
6de9cd9a
DN
2273}
2274
2275
2276/* Fold builtin call FN in statement STMT. If it cannot be folded into a
2277 constant, return NULL_TREE. Otherwise, return its constant value. */
2278
2279static tree
2280ccp_fold_builtin (tree stmt, tree fn)
2281{
10a0d495 2282 tree result, val[3];
5039610b 2283 tree callee, a;
10a0d495 2284 int arg_mask, i, type;
a32e70c3
RS
2285 bitmap visited;
2286 bool ignore;
5039610b
SL
2287 call_expr_arg_iterator iter;
2288 int nargs;
6de9cd9a 2289
07beea0d 2290 ignore = TREE_CODE (stmt) != GIMPLE_MODIFY_STMT;
6de9cd9a
DN
2291
2292 /* First try the generic builtin folder. If that succeeds, return the
2293 result directly. */
5039610b 2294 result = fold_call_expr (fn, ignore);
6de9cd9a 2295 if (result)
10a0d495
JJ
2296 {
2297 if (ignore)
2298 STRIP_NOPS (result);
2299 return result;
2300 }
a32e70c3
RS
2301
2302 /* Ignore MD builtins. */
5039610b 2303 callee = get_callee_fndecl (fn);
a32e70c3
RS
2304 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_MD)
2305 return NULL_TREE;
6de9cd9a
DN
2306
2307 /* If the builtin could not be folded, and it has no argument list,
2308 we're done. */
5039610b
SL
2309 nargs = call_expr_nargs (fn);
2310 if (nargs == 0)
6de9cd9a
DN
2311 return NULL_TREE;
2312
2313 /* Limit the work only for builtins we know how to simplify. */
2314 switch (DECL_FUNCTION_CODE (callee))
2315 {
2316 case BUILT_IN_STRLEN:
2317 case BUILT_IN_FPUTS:
2318 case BUILT_IN_FPUTS_UNLOCKED:
10a0d495
JJ
2319 arg_mask = 1;
2320 type = 0;
6de9cd9a
DN
2321 break;
2322 case BUILT_IN_STRCPY:
2323 case BUILT_IN_STRNCPY:
10a0d495
JJ
2324 arg_mask = 2;
2325 type = 0;
2326 break;
2327 case BUILT_IN_MEMCPY_CHK:
2328 case BUILT_IN_MEMPCPY_CHK:
2329 case BUILT_IN_MEMMOVE_CHK:
2330 case BUILT_IN_MEMSET_CHK:
2331 case BUILT_IN_STRNCPY_CHK:
2332 arg_mask = 4;
2333 type = 2;
2334 break;
2335 case BUILT_IN_STRCPY_CHK:
2336 case BUILT_IN_STPCPY_CHK:
2337 arg_mask = 2;
2338 type = 1;
2339 break;
2340 case BUILT_IN_SNPRINTF_CHK:
2341 case BUILT_IN_VSNPRINTF_CHK:
2342 arg_mask = 2;
2343 type = 2;
6de9cd9a
DN
2344 break;
2345 default:
2346 return NULL_TREE;
2347 }
2348
2349 /* Try to use the dataflow information gathered by the CCP process. */
8bdbfff5 2350 visited = BITMAP_ALLOC (NULL);
6de9cd9a 2351
10a0d495 2352 memset (val, 0, sizeof (val));
5039610b
SL
2353 init_call_expr_arg_iterator (fn, &iter);
2354 for (i = 0; arg_mask; i++, arg_mask >>= 1)
2355 {
2356 a = next_call_expr_arg (&iter);
2357 if (arg_mask & 1)
2358 {
2359 bitmap_clear (visited);
2360 if (!get_maxval_strlen (a, &val[i], visited, type))
2361 val[i] = NULL_TREE;
2362 }
2363 }
6de9cd9a 2364
8bdbfff5 2365 BITMAP_FREE (visited);
6de9cd9a 2366
a32e70c3 2367 result = NULL_TREE;
6de9cd9a
DN
2368 switch (DECL_FUNCTION_CODE (callee))
2369 {
2370 case BUILT_IN_STRLEN:
10a0d495 2371 if (val[0])
6de9cd9a 2372 {
c22940cd 2373 tree new_val = fold_convert (TREE_TYPE (fn), val[0]);
6de9cd9a
DN
2374
2375 /* If the result is not a valid gimple value, or not a cast
2376 of a valid gimple value, then we can not use the result. */
c22940cd
TN
2377 if (is_gimple_val (new_val)
2378 || (is_gimple_cast (new_val)
2379 && is_gimple_val (TREE_OPERAND (new_val, 0))))
2380 return new_val;
6de9cd9a 2381 }
a32e70c3
RS
2382 break;
2383
6de9cd9a 2384 case BUILT_IN_STRCPY:
5039610b
SL
2385 if (val[1] && is_gimple_val (val[1]) && nargs == 2)
2386 result = fold_builtin_strcpy (callee,
2387 CALL_EXPR_ARG (fn, 0),
2388 CALL_EXPR_ARG (fn, 1),
2389 val[1]);
a32e70c3
RS
2390 break;
2391
6de9cd9a 2392 case BUILT_IN_STRNCPY:
5039610b
SL
2393 if (val[1] && is_gimple_val (val[1]) && nargs == 3)
2394 result = fold_builtin_strncpy (callee,
2395 CALL_EXPR_ARG (fn, 0),
2396 CALL_EXPR_ARG (fn, 1),
2397 CALL_EXPR_ARG (fn, 2),
2398 val[1]);
a32e70c3
RS
2399 break;
2400
6de9cd9a 2401 case BUILT_IN_FPUTS:
5039610b
SL
2402 result = fold_builtin_fputs (CALL_EXPR_ARG (fn, 0),
2403 CALL_EXPR_ARG (fn, 1),
07beea0d 2404 TREE_CODE (stmt) != GIMPLE_MODIFY_STMT, 0,
10a0d495 2405 val[0]);
a32e70c3
RS
2406 break;
2407
6de9cd9a 2408 case BUILT_IN_FPUTS_UNLOCKED:
5039610b
SL
2409 result = fold_builtin_fputs (CALL_EXPR_ARG (fn, 0),
2410 CALL_EXPR_ARG (fn, 1),
07beea0d 2411 TREE_CODE (stmt) != GIMPLE_MODIFY_STMT, 1,
10a0d495
JJ
2412 val[0]);
2413 break;
2414
2415 case BUILT_IN_MEMCPY_CHK:
2416 case BUILT_IN_MEMPCPY_CHK:
2417 case BUILT_IN_MEMMOVE_CHK:
2418 case BUILT_IN_MEMSET_CHK:
2419 if (val[2] && is_gimple_val (val[2]))
5039610b
SL
2420 result = fold_builtin_memory_chk (callee,
2421 CALL_EXPR_ARG (fn, 0),
2422 CALL_EXPR_ARG (fn, 1),
2423 CALL_EXPR_ARG (fn, 2),
2424 CALL_EXPR_ARG (fn, 3),
2425 val[2], ignore,
10a0d495
JJ
2426 DECL_FUNCTION_CODE (callee));
2427 break;
2428
2429 case BUILT_IN_STRCPY_CHK:
2430 case BUILT_IN_STPCPY_CHK:
2431 if (val[1] && is_gimple_val (val[1]))
5039610b
SL
2432 result = fold_builtin_stxcpy_chk (callee,
2433 CALL_EXPR_ARG (fn, 0),
2434 CALL_EXPR_ARG (fn, 1),
2435 CALL_EXPR_ARG (fn, 2),
2436 val[1], ignore,
10a0d495
JJ
2437 DECL_FUNCTION_CODE (callee));
2438 break;
2439
2440 case BUILT_IN_STRNCPY_CHK:
2441 if (val[2] && is_gimple_val (val[2]))
5039610b
SL
2442 result = fold_builtin_strncpy_chk (CALL_EXPR_ARG (fn, 0),
2443 CALL_EXPR_ARG (fn, 1),
2444 CALL_EXPR_ARG (fn, 2),
2445 CALL_EXPR_ARG (fn, 3),
2446 val[2]);
10a0d495
JJ
2447 break;
2448
2449 case BUILT_IN_SNPRINTF_CHK:
2450 case BUILT_IN_VSNPRINTF_CHK:
2451 if (val[1] && is_gimple_val (val[1]))
5039610b 2452 result = fold_builtin_snprintf_chk (fn, val[1],
10a0d495 2453 DECL_FUNCTION_CODE (callee));
a32e70c3 2454 break;
6de9cd9a
DN
2455
2456 default:
1e128c5f 2457 gcc_unreachable ();
6de9cd9a
DN
2458 }
2459
a32e70c3 2460 if (result && ignore)
9675412f 2461 result = fold_ignored_result (result);
a32e70c3 2462 return result;
6de9cd9a
DN
2463}
2464
2465
206048bd 2466/* Fold the statement pointed to by STMT_P. In some cases, this function may
750628d8
DN
2467 replace the whole statement with a new one. Returns true iff folding
2468 makes any changes. */
6de9cd9a 2469
750628d8
DN
2470bool
2471fold_stmt (tree *stmt_p)
6de9cd9a 2472{
750628d8 2473 tree rhs, result, stmt;
622f91ba 2474 struct fold_stmt_r_data fold_stmt_r_data;
750628d8 2475 bool changed = false;
622f91ba
JL
2476 bool inside_addr_expr = false;
2477
6ac01510
ILT
2478 stmt = *stmt_p;
2479
2480 fold_stmt_r_data.stmt = stmt;
622f91ba
JL
2481 fold_stmt_r_data.changed_p = &changed;
2482 fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
6de9cd9a 2483
750628d8
DN
2484 /* If we replaced constants and the statement makes pointer dereferences,
2485 then we may need to fold instances of *&VAR into VAR, etc. */
622f91ba 2486 if (walk_tree (stmt_p, fold_stmt_r, &fold_stmt_r_data, NULL))
750628d8 2487 {
5039610b 2488 *stmt_p = build_call_expr (implicit_built_in_decls[BUILT_IN_TRAP], 0);
6de9cd9a
DN
2489 return true;
2490 }
2491
750628d8
DN
2492 rhs = get_rhs (stmt);
2493 if (!rhs)
2494 return changed;
2495 result = NULL_TREE;
6de9cd9a 2496
750628d8 2497 if (TREE_CODE (rhs) == CALL_EXPR)
6de9cd9a 2498 {
750628d8 2499 tree callee;
6de9cd9a 2500
750628d8
DN
2501 /* Check for builtins that CCP can handle using information not
2502 available in the generic fold routines. */
2503 callee = get_callee_fndecl (rhs);
2504 if (callee && DECL_BUILT_IN (callee))
2505 result = ccp_fold_builtin (stmt, rhs);
1809ff6b
AP
2506 else
2507 {
2508 /* Check for resolvable OBJ_TYPE_REF. The only sorts we can resolve
2509 here are when we've propagated the address of a decl into the
2510 object slot. */
2511 /* ??? Should perhaps do this in fold proper. However, doing it
2512 there requires that we create a new CALL_EXPR, and that requires
2513 copying EH region info to the new node. Easier to just do it
2514 here where we can just smash the call operand. Also
2515 CALL_EXPR_RETURN_SLOT_OPT needs to be handled correctly and
5039610b
SL
2516 copied, fold_call_expr does not have not information. */
2517 callee = CALL_EXPR_FN (rhs);
1809ff6b
AP
2518 if (TREE_CODE (callee) == OBJ_TYPE_REF
2519 && lang_hooks.fold_obj_type_ref
2520 && TREE_CODE (OBJ_TYPE_REF_OBJECT (callee)) == ADDR_EXPR
2521 && DECL_P (TREE_OPERAND
2522 (OBJ_TYPE_REF_OBJECT (callee), 0)))
2523 {
2524 tree t;
2525
2526 /* ??? Caution: Broken ADDR_EXPR semantics means that
2527 looking at the type of the operand of the addr_expr
2528 can yield an array type. See silly exception in
2529 check_pointer_types_r. */
2530
2531 t = TREE_TYPE (TREE_TYPE (OBJ_TYPE_REF_OBJECT (callee)));
2532 t = lang_hooks.fold_obj_type_ref (callee, t);
2533 if (t)
2534 {
5039610b 2535 CALL_EXPR_FN (rhs) = t;
1809ff6b
AP
2536 changed = true;
2537 }
2538 }
2539 }
6de9cd9a 2540 }
f255541f
RC
2541 else if (TREE_CODE (rhs) == COND_EXPR)
2542 {
2543 tree temp = fold (COND_EXPR_COND (rhs));
2544 if (temp != COND_EXPR_COND (rhs))
2545 result = fold_build3 (COND_EXPR, TREE_TYPE (rhs), temp,
2546 COND_EXPR_THEN (rhs), COND_EXPR_ELSE (rhs));
2547 }
6de9cd9a 2548
750628d8
DN
2549 /* If we couldn't fold the RHS, hand over to the generic fold routines. */
2550 if (result == NULL_TREE)
2551 result = fold (rhs);
6de9cd9a 2552
750628d8
DN
2553 /* Strip away useless type conversions. Both the NON_LVALUE_EXPR that
2554 may have been added by fold, and "useless" type conversions that might
2555 now be apparent due to propagation. */
2556 STRIP_USELESS_TYPE_CONVERSION (result);
2557
2558 if (result != rhs)
2559 changed |= set_rhs (stmt_p, result);
2560
2561 return changed;
6de9cd9a
DN
2562}
2563
38965eb2
ZD
2564/* Perform the minimal folding on statement STMT. Only operations like
2565 *&x created by constant propagation are handled. The statement cannot
2566 be replaced with a new one. */
2567
2568bool
2569fold_stmt_inplace (tree stmt)
2570{
2571 tree old_stmt = stmt, rhs, new_rhs;
622f91ba 2572 struct fold_stmt_r_data fold_stmt_r_data;
38965eb2 2573 bool changed = false;
622f91ba
JL
2574 bool inside_addr_expr = false;
2575
6ac01510 2576 fold_stmt_r_data.stmt = stmt;
622f91ba
JL
2577 fold_stmt_r_data.changed_p = &changed;
2578 fold_stmt_r_data.inside_addr_expr_p = &inside_addr_expr;
38965eb2 2579
622f91ba 2580 walk_tree (&stmt, fold_stmt_r, &fold_stmt_r_data, NULL);
38965eb2
ZD
2581 gcc_assert (stmt == old_stmt);
2582
2583 rhs = get_rhs (stmt);
2584 if (!rhs || rhs == stmt)
2585 return changed;
2586
2587 new_rhs = fold (rhs);
43e364dd 2588 STRIP_USELESS_TYPE_CONVERSION (new_rhs);
38965eb2
ZD
2589 if (new_rhs == rhs)
2590 return changed;
2591
2592 changed |= set_rhs (&stmt, new_rhs);
2593 gcc_assert (stmt == old_stmt);
2594
2595 return changed;
2596}
6de9cd9a 2597\f
b28b1600
JJ
2598/* Convert EXPR into a GIMPLE value suitable for substitution on the
2599 RHS of an assignment. Insert the necessary statements before
2e929cf3
JH
2600 iterator *SI_P.
2601 When IGNORE is set, don't worry about the return value. */
b28b1600
JJ
2602
2603static tree
2e929cf3 2604convert_to_gimple_builtin (block_stmt_iterator *si_p, tree expr, bool ignore)
b28b1600
JJ
2605{
2606 tree_stmt_iterator ti;
2607 tree stmt = bsi_stmt (*si_p);
2608 tree tmp, stmts = NULL;
2609
2610 push_gimplify_context ();
2e929cf3
JH
2611 if (ignore)
2612 {
2613 tmp = build_empty_stmt ();
2614 gimplify_and_add (expr, &stmts);
2615 }
2616 else
2617 tmp = get_initialized_tmp_var (expr, &stmts, NULL);
b28b1600
JJ
2618 pop_gimplify_context (NULL);
2619
f47c96aa
AM
2620 if (EXPR_HAS_LOCATION (stmt))
2621 annotate_all_with_locus (&stmts, EXPR_LOCATION (stmt));
2622
b28b1600
JJ
2623 /* The replacement can expose previously unreferenced variables. */
2624 for (ti = tsi_start (stmts); !tsi_end_p (ti); tsi_next (&ti))
2625 {
f47c96aa 2626 tree new_stmt = tsi_stmt (ti);
b28b1600 2627 find_new_referenced_vars (tsi_stmt_ptr (ti));
f47c96aa 2628 bsi_insert_before (si_p, new_stmt, BSI_NEW_STMT);
cfaab3a9 2629 mark_symbols_for_renaming (new_stmt);
f47c96aa 2630 bsi_next (si_p);
b28b1600
JJ
2631 }
2632
b28b1600
JJ
2633 return tmp;
2634}
2635
2636
6de9cd9a
DN
2637/* A simple pass that attempts to fold all builtin functions. This pass
2638 is run after we've propagated as many constants as we can. */
2639
c2924966 2640static unsigned int
6de9cd9a
DN
2641execute_fold_all_builtins (void)
2642{
a7d6ba24 2643 bool cfg_changed = false;
6de9cd9a
DN
2644 basic_block bb;
2645 FOR_EACH_BB (bb)
2646 {
2647 block_stmt_iterator i;
10a0d495 2648 for (i = bsi_start (bb); !bsi_end_p (i); )
6de9cd9a
DN
2649 {
2650 tree *stmtp = bsi_stmt_ptr (i);
af47810a 2651 tree old_stmt = *stmtp;
6de9cd9a
DN
2652 tree call = get_rhs (*stmtp);
2653 tree callee, result;
10a0d495 2654 enum built_in_function fcode;
6de9cd9a
DN
2655
2656 if (!call || TREE_CODE (call) != CALL_EXPR)
10a0d495
JJ
2657 {
2658 bsi_next (&i);
2659 continue;
2660 }
6de9cd9a
DN
2661 callee = get_callee_fndecl (call);
2662 if (!callee || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL)
10a0d495
JJ
2663 {
2664 bsi_next (&i);
2665 continue;
2666 }
2667 fcode = DECL_FUNCTION_CODE (callee);
6de9cd9a
DN
2668
2669 result = ccp_fold_builtin (*stmtp, call);
2670 if (!result)
2671 switch (DECL_FUNCTION_CODE (callee))
2672 {
2673 case BUILT_IN_CONSTANT_P:
2674 /* Resolve __builtin_constant_p. If it hasn't been
2675 folded to integer_one_node by now, it's fairly
2676 certain that the value simply isn't constant. */
2677 result = integer_zero_node;
2678 break;
2679
2680 default:
10a0d495 2681 bsi_next (&i);
6de9cd9a
DN
2682 continue;
2683 }
2684
2685 if (dump_file && (dump_flags & TDF_DETAILS))
2686 {
2687 fprintf (dump_file, "Simplified\n ");
2688 print_generic_stmt (dump_file, *stmtp, dump_flags);
2689 }
2690
cfaab3a9
DN
2691 push_stmt_changes (stmtp);
2692
b28b1600
JJ
2693 if (!set_rhs (stmtp, result))
2694 {
2e929cf3
JH
2695 result = convert_to_gimple_builtin (&i, result,
2696 TREE_CODE (old_stmt)
07beea0d 2697 != GIMPLE_MODIFY_STMT);
e16acfcd
NS
2698 if (result)
2699 {
2700 bool ok = set_rhs (stmtp, result);
e16acfcd
NS
2701 gcc_assert (ok);
2702 }
b28b1600 2703 }
cfaab3a9
DN
2704
2705 pop_stmt_changes (stmtp);
2706
af47810a 2707 if (maybe_clean_or_replace_eh_stmt (old_stmt, *stmtp)
a7d6ba24
JJ
2708 && tree_purge_dead_eh_edges (bb))
2709 cfg_changed = true;
6de9cd9a
DN
2710
2711 if (dump_file && (dump_flags & TDF_DETAILS))
2712 {
2713 fprintf (dump_file, "to\n ");
2714 print_generic_stmt (dump_file, *stmtp, dump_flags);
2715 fprintf (dump_file, "\n");
2716 }
10a0d495
JJ
2717
2718 /* Retry the same statement if it changed into another
2719 builtin, there might be new opportunities now. */
2720 call = get_rhs (*stmtp);
2721 if (!call || TREE_CODE (call) != CALL_EXPR)
2722 {
2723 bsi_next (&i);
2724 continue;
2725 }
2726 callee = get_callee_fndecl (call);
2727 if (!callee
2728 || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
2729 || DECL_FUNCTION_CODE (callee) == fcode)
2730 bsi_next (&i);
6de9cd9a
DN
2731 }
2732 }
a7d6ba24
JJ
2733
2734 /* Delete unreachable blocks. */
1994bfea 2735 return cfg_changed ? TODO_cleanup_cfg : 0;
6de9cd9a
DN
2736}
2737
750628d8 2738
6de9cd9a
DN
2739struct tree_opt_pass pass_fold_builtins =
2740{
2741 "fab", /* name */
2742 NULL, /* gate */
2743 execute_fold_all_builtins, /* execute */
2744 NULL, /* sub */
2745 NULL, /* next */
2746 0, /* static_pass_number */
2747 0, /* tv_id */
7faade0f 2748 PROP_cfg | PROP_ssa, /* properties_required */
6de9cd9a
DN
2749 0, /* properties_provided */
2750 0, /* properties_destroyed */
2751 0, /* todo_flags_start */
b28b1600
JJ
2752 TODO_dump_func
2753 | TODO_verify_ssa
0bca51f0 2754 | TODO_update_ssa, /* todo_flags_finish */
9f8628ba 2755 0 /* letter */
6de9cd9a 2756};