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