re PR bootstrap/54281 (Fails to bootstrap with --disable-nls)
[official-gcc.git] / gcc / ipa-pure-const.c
blobb6810a89bcb73e8ef06a8801452c5816abf08f7a
1 /* Callgraph based analysis of static variables.
2 Copyright (C) 2004, 2005, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This file marks functions as being either const (TREE_READONLY) or
23 pure (DECL_PURE_P). It can also set a variant of these that
24 are allowed to loop indefinitely (DECL_LOOPING_CONST_PURE_P).
26 This must be run after inlining decisions have been made since
27 otherwise, the local sets will not contain information that is
28 consistent with post inlined state. The global sets are not prone
29 to this problem since they are by definition transitive. */
31 /* The code in this module is called by the ipa pass manager. It
32 should be one of the later passes since it's information is used by
33 the rest of the compilation. */
35 #include "config.h"
36 #include "system.h"
37 #include "coretypes.h"
38 #include "tm.h"
39 #include "tree.h"
40 #include "tree-flow.h"
41 #include "tree-inline.h"
42 #include "tree-pass.h"
43 #include "langhooks.h"
44 #include "pointer-set.h"
45 #include "ggc.h"
46 #include "ipa-utils.h"
47 #include "gimple.h"
48 #include "cgraph.h"
49 #include "flags.h"
50 #include "diagnostic.h"
51 #include "gimple-pretty-print.h"
52 #include "langhooks.h"
53 #include "target.h"
54 #include "lto-streamer.h"
55 #include "data-streamer.h"
56 #include "tree-streamer.h"
57 #include "cfgloop.h"
58 #include "tree-scalar-evolution.h"
59 #include "intl.h"
60 #include "opts.h"
62 static struct pointer_set_t *visited_nodes;
64 /* Lattice values for const and pure functions. Everything starts out
65 being const, then may drop to pure and then neither depending on
66 what is found. */
67 enum pure_const_state_e
69 IPA_CONST,
70 IPA_PURE,
71 IPA_NEITHER
74 const char *pure_const_names[3] = {"const", "pure", "neither"};
76 /* Holder for the const_state. There is one of these per function
77 decl. */
78 struct funct_state_d
80 /* See above. */
81 enum pure_const_state_e pure_const_state;
82 /* What user set here; we can be always sure about this. */
83 enum pure_const_state_e state_previously_known;
84 bool looping_previously_known;
86 /* True if the function could possibly infinite loop. There are a
87 lot of ways that this could be determined. We are pretty
88 conservative here. While it is possible to cse pure and const
89 calls, it is not legal to have dce get rid of the call if there
90 is a possibility that the call could infinite loop since this is
91 a behavioral change. */
92 bool looping;
94 bool can_throw;
97 /* State used when we know nothing about function. */
98 static struct funct_state_d varying_state
99 = { IPA_NEITHER, IPA_NEITHER, true, true, true };
102 typedef struct funct_state_d * funct_state;
104 /* The storage of the funct_state is abstracted because there is the
105 possibility that it may be desirable to move this to the cgraph
106 local info. */
108 /* Array, indexed by cgraph node uid, of function states. */
110 DEF_VEC_P (funct_state);
111 DEF_VEC_ALLOC_P (funct_state, heap);
112 static VEC (funct_state, heap) *funct_state_vec;
114 /* Holders of ipa cgraph hooks: */
115 static struct cgraph_node_hook_list *function_insertion_hook_holder;
116 static struct cgraph_2node_hook_list *node_duplication_hook_holder;
117 static struct cgraph_node_hook_list *node_removal_hook_holder;
119 /* Try to guess if function body will always be visible to compiler
120 when compiling the call and whether compiler will be able
121 to propagate the information by itself. */
123 static bool
124 function_always_visible_to_compiler_p (tree decl)
126 return (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl));
129 /* Emit suggestion about attribute ATTRIB_NAME for DECL. KNOWN_FINITE
130 is true if the function is known to be finite. The diagnostic is
131 controlled by OPTION. WARNED_ABOUT is a pointer_set unique for
132 OPTION, this function may initialize it and it is always returned
133 by the function. */
135 static struct pointer_set_t *
136 suggest_attribute (int option, tree decl, bool known_finite,
137 struct pointer_set_t *warned_about,
138 const char * attrib_name)
140 if (!option_enabled (option, &global_options))
141 return warned_about;
142 if (TREE_THIS_VOLATILE (decl)
143 || (known_finite && function_always_visible_to_compiler_p (decl)))
144 return warned_about;
146 if (!warned_about)
147 warned_about = pointer_set_create ();
148 if (pointer_set_contains (warned_about, decl))
149 return warned_about;
150 pointer_set_insert (warned_about, decl);
151 warning_at (DECL_SOURCE_LOCATION (decl),
152 option,
153 known_finite
154 ? _("function might be candidate for attribute %<%s%>")
155 : _("function might be candidate for attribute %<%s%>"
156 " if it is known to return normally"), attrib_name);
157 return warned_about;
160 /* Emit suggestion about __attribute_((pure)) for DECL. KNOWN_FINITE
161 is true if the function is known to be finite. */
163 static void
164 warn_function_pure (tree decl, bool known_finite)
166 static struct pointer_set_t *warned_about;
168 warned_about
169 = suggest_attribute (OPT_Wsuggest_attribute_pure, decl,
170 known_finite, warned_about, "pure");
173 /* Emit suggestion about __attribute_((const)) for DECL. KNOWN_FINITE
174 is true if the function is known to be finite. */
176 static void
177 warn_function_const (tree decl, bool known_finite)
179 static struct pointer_set_t *warned_about;
180 warned_about
181 = suggest_attribute (OPT_Wsuggest_attribute_const, decl,
182 known_finite, warned_about, "const");
185 void
186 warn_function_noreturn (tree decl)
188 static struct pointer_set_t *warned_about;
189 if (!lang_hooks.missing_noreturn_ok_p (decl)
190 && targetm.warn_func_return (decl))
191 warned_about
192 = suggest_attribute (OPT_Wsuggest_attribute_noreturn, decl,
193 true, warned_about, "noreturn");
195 /* Init the function state. */
197 static void
198 finish_state (void)
200 free (funct_state_vec);
204 /* Return true if we have a function state for NODE. */
206 static inline bool
207 has_function_state (struct cgraph_node *node)
209 if (!funct_state_vec
210 || VEC_length (funct_state, funct_state_vec) <= (unsigned int)node->uid)
211 return false;
212 return VEC_index (funct_state, funct_state_vec, node->uid) != NULL;
215 /* Return the function state from NODE. */
217 static inline funct_state
218 get_function_state (struct cgraph_node *node)
220 if (!funct_state_vec
221 || VEC_length (funct_state, funct_state_vec) <= (unsigned int)node->uid
222 || !VEC_index (funct_state, funct_state_vec, node->uid))
223 /* We might want to put correct previously_known state into varying. */
224 return &varying_state;
225 return VEC_index (funct_state, funct_state_vec, node->uid);
228 /* Set the function state S for NODE. */
230 static inline void
231 set_function_state (struct cgraph_node *node, funct_state s)
233 if (!funct_state_vec
234 || VEC_length (funct_state, funct_state_vec) <= (unsigned int)node->uid)
235 VEC_safe_grow_cleared (funct_state, heap, funct_state_vec, node->uid + 1);
236 VEC_replace (funct_state, funct_state_vec, node->uid, s);
239 /* Check to see if the use (or definition when CHECKING_WRITE is true)
240 variable T is legal in a function that is either pure or const. */
242 static inline void
243 check_decl (funct_state local,
244 tree t, bool checking_write, bool ipa)
246 /* Do not want to do anything with volatile except mark any
247 function that uses one to be not const or pure. */
248 if (TREE_THIS_VOLATILE (t))
250 local->pure_const_state = IPA_NEITHER;
251 if (dump_file)
252 fprintf (dump_file, " Volatile operand is not const/pure");
253 return;
256 /* Do not care about a local automatic that is not static. */
257 if (!TREE_STATIC (t) && !DECL_EXTERNAL (t))
258 return;
260 /* If the variable has the "used" attribute, treat it as if it had a
261 been touched by the devil. */
262 if (DECL_PRESERVE_P (t))
264 local->pure_const_state = IPA_NEITHER;
265 if (dump_file)
266 fprintf (dump_file, " Used static/global variable is not const/pure\n");
267 return;
270 /* In IPA mode we are not interested in checking actual loads and stores;
271 they will be processed at propagation time using ipa_ref. */
272 if (ipa)
273 return;
275 /* Since we have dealt with the locals and params cases above, if we
276 are CHECKING_WRITE, this cannot be a pure or constant
277 function. */
278 if (checking_write)
280 local->pure_const_state = IPA_NEITHER;
281 if (dump_file)
282 fprintf (dump_file, " static/global memory write is not const/pure\n");
283 return;
286 if (DECL_EXTERNAL (t) || TREE_PUBLIC (t))
288 /* Readonly reads are safe. */
289 if (TREE_READONLY (t) && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (t)))
290 return; /* Read of a constant, do not change the function state. */
291 else
293 if (dump_file)
294 fprintf (dump_file, " global memory read is not const\n");
295 /* Just a regular read. */
296 if (local->pure_const_state == IPA_CONST)
297 local->pure_const_state = IPA_PURE;
300 else
302 /* Compilation level statics can be read if they are readonly
303 variables. */
304 if (TREE_READONLY (t))
305 return;
307 if (dump_file)
308 fprintf (dump_file, " static memory read is not const\n");
309 /* Just a regular read. */
310 if (local->pure_const_state == IPA_CONST)
311 local->pure_const_state = IPA_PURE;
316 /* Check to see if the use (or definition when CHECKING_WRITE is true)
317 variable T is legal in a function that is either pure or const. */
319 static inline void
320 check_op (funct_state local, tree t, bool checking_write)
322 t = get_base_address (t);
323 if (t && TREE_THIS_VOLATILE (t))
325 local->pure_const_state = IPA_NEITHER;
326 if (dump_file)
327 fprintf (dump_file, " Volatile indirect ref is not const/pure\n");
328 return;
330 else if (t
331 && (INDIRECT_REF_P (t) || TREE_CODE (t) == MEM_REF)
332 && TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME
333 && !ptr_deref_may_alias_global_p (TREE_OPERAND (t, 0)))
335 if (dump_file)
336 fprintf (dump_file, " Indirect ref to local memory is OK\n");
337 return;
339 else if (checking_write)
341 local->pure_const_state = IPA_NEITHER;
342 if (dump_file)
343 fprintf (dump_file, " Indirect ref write is not const/pure\n");
344 return;
346 else
348 if (dump_file)
349 fprintf (dump_file, " Indirect ref read is not const\n");
350 if (local->pure_const_state == IPA_CONST)
351 local->pure_const_state = IPA_PURE;
355 /* compute state based on ECF FLAGS and store to STATE and LOOPING. */
357 static void
358 state_from_flags (enum pure_const_state_e *state, bool *looping,
359 int flags, bool cannot_lead_to_return)
361 *looping = false;
362 if (flags & ECF_LOOPING_CONST_OR_PURE)
364 *looping = true;
365 if (dump_file && (dump_flags & TDF_DETAILS))
366 fprintf (dump_file, " looping");
368 if (flags & ECF_CONST)
370 *state = IPA_CONST;
371 if (dump_file && (dump_flags & TDF_DETAILS))
372 fprintf (dump_file, " const\n");
374 else if (flags & ECF_PURE)
376 *state = IPA_PURE;
377 if (dump_file && (dump_flags & TDF_DETAILS))
378 fprintf (dump_file, " pure\n");
380 else if (cannot_lead_to_return)
382 *state = IPA_PURE;
383 *looping = true;
384 if (dump_file && (dump_flags & TDF_DETAILS))
385 fprintf (dump_file, " ignoring side effects->pure looping\n");
387 else
389 if (dump_file && (dump_flags & TDF_DETAILS))
390 fprintf (dump_file, " neihter\n");
391 *state = IPA_NEITHER;
392 *looping = true;
396 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
397 into STATE and LOOPING better of the two variants.
398 Be sure to merge looping correctly. IPA_NEITHER functions
399 have looping 0 even if they don't have to return. */
401 static inline void
402 better_state (enum pure_const_state_e *state, bool *looping,
403 enum pure_const_state_e state2, bool looping2)
405 if (state2 < *state)
407 if (*state == IPA_NEITHER)
408 *looping = looping2;
409 else
410 *looping = MIN (*looping, looping2);
412 else if (state2 != IPA_NEITHER)
413 *looping = MIN (*looping, looping2);
416 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
417 into STATE and LOOPING worse of the two variants. */
419 static inline void
420 worse_state (enum pure_const_state_e *state, bool *looping,
421 enum pure_const_state_e state2, bool looping2)
423 *state = MAX (*state, state2);
424 *looping = MAX (*looping, looping2);
427 /* Recognize special cases of builtins that are by themselves not pure or const
428 but function using them is. */
429 static bool
430 special_builtin_state (enum pure_const_state_e *state, bool *looping,
431 tree callee)
433 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
434 switch (DECL_FUNCTION_CODE (callee))
436 case BUILT_IN_RETURN:
437 case BUILT_IN_UNREACHABLE:
438 case BUILT_IN_ALLOCA:
439 case BUILT_IN_ALLOCA_WITH_ALIGN:
440 case BUILT_IN_STACK_SAVE:
441 case BUILT_IN_STACK_RESTORE:
442 case BUILT_IN_EH_POINTER:
443 case BUILT_IN_EH_FILTER:
444 case BUILT_IN_UNWIND_RESUME:
445 case BUILT_IN_CXA_END_CLEANUP:
446 case BUILT_IN_EH_COPY_VALUES:
447 case BUILT_IN_FRAME_ADDRESS:
448 case BUILT_IN_APPLY:
449 case BUILT_IN_APPLY_ARGS:
450 *looping = false;
451 *state = IPA_CONST;
452 return true;
453 case BUILT_IN_PREFETCH:
454 *looping = true;
455 *state = IPA_CONST;
456 return true;
458 return false;
461 /* Check the parameters of a function call to CALL_EXPR to see if
462 there are any references in the parameters that are not allowed for
463 pure or const functions. Also check to see if this is either an
464 indirect call, a call outside the compilation unit, or has special
465 attributes that may also effect the purity. The CALL_EXPR node for
466 the entire call expression. */
468 static void
469 check_call (funct_state local, gimple call, bool ipa)
471 int flags = gimple_call_flags (call);
472 tree callee_t = gimple_call_fndecl (call);
473 bool possibly_throws = stmt_could_throw_p (call);
474 bool possibly_throws_externally = (possibly_throws
475 && stmt_can_throw_external (call));
477 if (possibly_throws)
479 unsigned int i;
480 for (i = 0; i < gimple_num_ops (call); i++)
481 if (gimple_op (call, i)
482 && tree_could_throw_p (gimple_op (call, i)))
484 if (possibly_throws && cfun->can_throw_non_call_exceptions)
486 if (dump_file)
487 fprintf (dump_file, " operand can throw; looping\n");
488 local->looping = true;
490 if (possibly_throws_externally)
492 if (dump_file)
493 fprintf (dump_file, " operand can throw externally\n");
494 local->can_throw = true;
499 /* The const and pure flags are set by a variety of places in the
500 compiler (including here). If someone has already set the flags
501 for the callee, (such as for some of the builtins) we will use
502 them, otherwise we will compute our own information.
504 Const and pure functions have less clobber effects than other
505 functions so we process these first. Otherwise if it is a call
506 outside the compilation unit or an indirect call we punt. This
507 leaves local calls which will be processed by following the call
508 graph. */
509 if (callee_t)
511 enum pure_const_state_e call_state;
512 bool call_looping;
514 if (special_builtin_state (&call_state, &call_looping, callee_t))
516 worse_state (&local->pure_const_state, &local->looping,
517 call_state, call_looping);
518 return;
520 /* When bad things happen to bad functions, they cannot be const
521 or pure. */
522 if (setjmp_call_p (callee_t))
524 if (dump_file)
525 fprintf (dump_file, " setjmp is not const/pure\n");
526 local->looping = true;
527 local->pure_const_state = IPA_NEITHER;
530 if (DECL_BUILT_IN_CLASS (callee_t) == BUILT_IN_NORMAL)
531 switch (DECL_FUNCTION_CODE (callee_t))
533 case BUILT_IN_LONGJMP:
534 case BUILT_IN_NONLOCAL_GOTO:
535 if (dump_file)
536 fprintf (dump_file, " longjmp and nonlocal goto is not const/pure\n");
537 local->pure_const_state = IPA_NEITHER;
538 local->looping = true;
539 break;
540 default:
541 break;
545 /* When not in IPA mode, we can still handle self recursion. */
546 if (!ipa && callee_t == current_function_decl)
548 if (dump_file)
549 fprintf (dump_file, " Recursive call can loop.\n");
550 local->looping = true;
552 /* Either callee is unknown or we are doing local analysis.
553 Look to see if there are any bits available for the callee (such as by
554 declaration or because it is builtin) and process solely on the basis of
555 those bits. */
556 else if (!ipa)
558 enum pure_const_state_e call_state;
559 bool call_looping;
560 if (possibly_throws && cfun->can_throw_non_call_exceptions)
562 if (dump_file)
563 fprintf (dump_file, " can throw; looping\n");
564 local->looping = true;
566 if (possibly_throws_externally)
568 if (dump_file)
570 fprintf (dump_file, " can throw externally to lp %i\n",
571 lookup_stmt_eh_lp (call));
572 if (callee_t)
573 fprintf (dump_file, " callee:%s\n",
574 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (callee_t)));
576 local->can_throw = true;
578 if (dump_file && (dump_flags & TDF_DETAILS))
579 fprintf (dump_file, " checking flags for call:");
580 state_from_flags (&call_state, &call_looping, flags,
581 ((flags & (ECF_NORETURN | ECF_NOTHROW))
582 == (ECF_NORETURN | ECF_NOTHROW))
583 || (!flag_exceptions && (flags & ECF_NORETURN)));
584 worse_state (&local->pure_const_state, &local->looping,
585 call_state, call_looping);
587 /* Direct functions calls are handled by IPA propagation. */
590 /* Wrapper around check_decl for loads in local more. */
592 static bool
593 check_load (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
595 if (DECL_P (op))
596 check_decl ((funct_state)data, op, false, false);
597 else
598 check_op ((funct_state)data, op, false);
599 return false;
602 /* Wrapper around check_decl for stores in local more. */
604 static bool
605 check_store (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
607 if (DECL_P (op))
608 check_decl ((funct_state)data, op, true, false);
609 else
610 check_op ((funct_state)data, op, true);
611 return false;
614 /* Wrapper around check_decl for loads in ipa mode. */
616 static bool
617 check_ipa_load (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
619 if (DECL_P (op))
620 check_decl ((funct_state)data, op, false, true);
621 else
622 check_op ((funct_state)data, op, false);
623 return false;
626 /* Wrapper around check_decl for stores in ipa mode. */
628 static bool
629 check_ipa_store (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
631 if (DECL_P (op))
632 check_decl ((funct_state)data, op, true, true);
633 else
634 check_op ((funct_state)data, op, true);
635 return false;
638 /* Look into pointer pointed to by GSIP and figure out what interesting side
639 effects it has. */
640 static void
641 check_stmt (gimple_stmt_iterator *gsip, funct_state local, bool ipa)
643 gimple stmt = gsi_stmt (*gsip);
645 if (is_gimple_debug (stmt))
646 return;
648 if (dump_file)
650 fprintf (dump_file, " scanning: ");
651 print_gimple_stmt (dump_file, stmt, 0, 0);
654 if (gimple_has_volatile_ops (stmt)
655 && !gimple_clobber_p (stmt))
657 local->pure_const_state = IPA_NEITHER;
658 if (dump_file)
659 fprintf (dump_file, " Volatile stmt is not const/pure\n");
662 /* Look for loads and stores. */
663 walk_stmt_load_store_ops (stmt, local,
664 ipa ? check_ipa_load : check_load,
665 ipa ? check_ipa_store : check_store);
667 if (gimple_code (stmt) != GIMPLE_CALL
668 && stmt_could_throw_p (stmt))
670 if (cfun->can_throw_non_call_exceptions)
672 if (dump_file)
673 fprintf (dump_file, " can throw; looping");
674 local->looping = true;
676 if (stmt_can_throw_external (stmt))
678 if (dump_file)
679 fprintf (dump_file, " can throw externally");
680 local->can_throw = true;
683 switch (gimple_code (stmt))
685 case GIMPLE_CALL:
686 check_call (local, stmt, ipa);
687 break;
688 case GIMPLE_LABEL:
689 if (DECL_NONLOCAL (gimple_label_label (stmt)))
690 /* Target of long jump. */
692 if (dump_file)
693 fprintf (dump_file, " nonlocal label is not const/pure");
694 local->pure_const_state = IPA_NEITHER;
696 break;
697 case GIMPLE_ASM:
698 if (gimple_asm_clobbers_memory_p (stmt))
700 if (dump_file)
701 fprintf (dump_file, " memory asm clobber is not const/pure");
702 /* Abandon all hope, ye who enter here. */
703 local->pure_const_state = IPA_NEITHER;
705 if (gimple_asm_volatile_p (stmt))
707 if (dump_file)
708 fprintf (dump_file, " volatile is not const/pure");
709 /* Abandon all hope, ye who enter here. */
710 local->pure_const_state = IPA_NEITHER;
711 local->looping = true;
713 return;
714 default:
715 break;
720 /* This is the main routine for finding the reference patterns for
721 global variables within a function FN. */
723 static funct_state
724 analyze_function (struct cgraph_node *fn, bool ipa)
726 tree decl = fn->symbol.decl;
727 tree old_decl = current_function_decl;
728 funct_state l;
729 basic_block this_block;
731 l = XCNEW (struct funct_state_d);
732 l->pure_const_state = IPA_CONST;
733 l->state_previously_known = IPA_NEITHER;
734 l->looping_previously_known = true;
735 l->looping = false;
736 l->can_throw = false;
737 state_from_flags (&l->state_previously_known, &l->looping_previously_known,
738 flags_from_decl_or_type (fn->symbol.decl),
739 cgraph_node_cannot_return (fn));
741 if (fn->thunk.thunk_p || fn->alias)
743 /* Thunk gets propagated through, so nothing interesting happens. */
744 gcc_assert (ipa);
745 return l;
748 if (dump_file)
750 fprintf (dump_file, "\n\n local analysis of %s\n ",
751 cgraph_node_name (fn));
754 push_cfun (DECL_STRUCT_FUNCTION (decl));
755 current_function_decl = decl;
757 FOR_EACH_BB (this_block)
759 gimple_stmt_iterator gsi;
760 struct walk_stmt_info wi;
762 memset (&wi, 0, sizeof(wi));
763 for (gsi = gsi_start_bb (this_block);
764 !gsi_end_p (gsi);
765 gsi_next (&gsi))
767 check_stmt (&gsi, l, ipa);
768 if (l->pure_const_state == IPA_NEITHER && l->looping && l->can_throw)
769 goto end;
773 end:
774 if (l->pure_const_state != IPA_NEITHER)
776 /* Const functions cannot have back edges (an
777 indication of possible infinite loop side
778 effect. */
779 if (mark_dfs_back_edges ())
781 /* Preheaders are needed for SCEV to work.
782 Simple latches and recorded exits improve chances that loop will
783 proved to be finite in testcases such as in loop-15.c and loop-24.c */
784 loop_optimizer_init (LOOPS_NORMAL
785 | LOOPS_HAVE_RECORDED_EXITS);
786 if (dump_file && (dump_flags & TDF_DETAILS))
787 flow_loops_dump (dump_file, NULL, 0);
788 if (mark_irreducible_loops ())
790 if (dump_file)
791 fprintf (dump_file, " has irreducible loops\n");
792 l->looping = true;
794 else
796 loop_iterator li;
797 struct loop *loop;
798 scev_initialize ();
799 FOR_EACH_LOOP (li, loop, 0)
800 if (!finite_loop_p (loop))
802 if (dump_file)
803 fprintf (dump_file, " can not prove finiteness of loop %i\n", loop->num);
804 l->looping =true;
805 FOR_EACH_LOOP_BREAK (li);
807 scev_finalize ();
809 loop_optimizer_finalize ();
813 if (dump_file && (dump_flags & TDF_DETAILS))
814 fprintf (dump_file, " checking previously known:");
816 better_state (&l->pure_const_state, &l->looping,
817 l->state_previously_known,
818 l->looping_previously_known);
819 if (TREE_NOTHROW (decl))
820 l->can_throw = false;
822 pop_cfun ();
823 current_function_decl = old_decl;
824 if (dump_file)
826 if (l->looping)
827 fprintf (dump_file, "Function is locally looping.\n");
828 if (l->can_throw)
829 fprintf (dump_file, "Function is locally throwing.\n");
830 if (l->pure_const_state == IPA_CONST)
831 fprintf (dump_file, "Function is locally const.\n");
832 if (l->pure_const_state == IPA_PURE)
833 fprintf (dump_file, "Function is locally pure.\n");
835 return l;
838 /* Called when new function is inserted to callgraph late. */
839 static void
840 add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
842 if (cgraph_function_body_availability (node) < AVAIL_OVERWRITABLE)
843 return;
844 /* There are some shared nodes, in particular the initializers on
845 static declarations. We do not need to scan them more than once
846 since all we would be interested in are the addressof
847 operations. */
848 visited_nodes = pointer_set_create ();
849 if (cgraph_function_body_availability (node) > AVAIL_OVERWRITABLE)
850 set_function_state (node, analyze_function (node, true));
851 pointer_set_destroy (visited_nodes);
852 visited_nodes = NULL;
855 /* Called when new clone is inserted to callgraph late. */
857 static void
858 duplicate_node_data (struct cgraph_node *src, struct cgraph_node *dst,
859 void *data ATTRIBUTE_UNUSED)
861 if (has_function_state (src))
863 funct_state l = XNEW (struct funct_state_d);
864 gcc_assert (!has_function_state (dst));
865 memcpy (l, get_function_state (src), sizeof (*l));
866 set_function_state (dst, l);
870 /* Called when new clone is inserted to callgraph late. */
872 static void
873 remove_node_data (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
875 if (has_function_state (node))
877 funct_state l = get_function_state (node);
878 if (l != &varying_state)
879 free (l);
880 set_function_state (node, NULL);
885 static void
886 register_hooks (void)
888 static bool init_p = false;
890 if (init_p)
891 return;
893 init_p = true;
895 node_removal_hook_holder =
896 cgraph_add_node_removal_hook (&remove_node_data, NULL);
897 node_duplication_hook_holder =
898 cgraph_add_node_duplication_hook (&duplicate_node_data, NULL);
899 function_insertion_hook_holder =
900 cgraph_add_function_insertion_hook (&add_new_function, NULL);
904 /* Analyze each function in the cgraph to see if it is locally PURE or
905 CONST. */
907 static void
908 generate_summary (void)
910 struct cgraph_node *node;
912 register_hooks ();
914 /* There are some shared nodes, in particular the initializers on
915 static declarations. We do not need to scan them more than once
916 since all we would be interested in are the addressof
917 operations. */
918 visited_nodes = pointer_set_create ();
920 /* Process all of the functions.
922 We process AVAIL_OVERWRITABLE functions. We can not use the results
923 by default, but the info can be used at LTO with -fwhole-program or
924 when function got cloned and the clone is AVAILABLE. */
926 FOR_EACH_DEFINED_FUNCTION (node)
927 if (cgraph_function_body_availability (node) >= AVAIL_OVERWRITABLE)
928 set_function_state (node, analyze_function (node, true));
930 pointer_set_destroy (visited_nodes);
931 visited_nodes = NULL;
935 /* Serialize the ipa info for lto. */
937 static void
938 pure_const_write_summary (void)
940 struct cgraph_node *node;
941 struct lto_simple_output_block *ob
942 = lto_create_simple_output_block (LTO_section_ipa_pure_const);
943 unsigned int count = 0;
944 lto_symtab_encoder_iterator lsei;
945 lto_symtab_encoder_t encoder;
947 encoder = lto_get_out_decl_state ()->symtab_node_encoder;
949 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
950 lsei_next_function_in_partition (&lsei))
952 node = lsei_cgraph_node (lsei);
953 if (node->analyzed && has_function_state (node))
954 count++;
957 streamer_write_uhwi_stream (ob->main_stream, count);
959 /* Process all of the functions. */
960 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
961 lsei_next_function_in_partition (&lsei))
963 node = lsei_cgraph_node (lsei);
964 if (node->analyzed && has_function_state (node))
966 struct bitpack_d bp;
967 funct_state fs;
968 int node_ref;
969 lto_symtab_encoder_t encoder;
971 fs = get_function_state (node);
973 encoder = ob->decl_state->symtab_node_encoder;
974 node_ref = lto_symtab_encoder_encode (encoder, (symtab_node)node);
975 streamer_write_uhwi_stream (ob->main_stream, node_ref);
977 /* Note that flags will need to be read in the opposite
978 order as we are pushing the bitflags into FLAGS. */
979 bp = bitpack_create (ob->main_stream);
980 bp_pack_value (&bp, fs->pure_const_state, 2);
981 bp_pack_value (&bp, fs->state_previously_known, 2);
982 bp_pack_value (&bp, fs->looping_previously_known, 1);
983 bp_pack_value (&bp, fs->looping, 1);
984 bp_pack_value (&bp, fs->can_throw, 1);
985 streamer_write_bitpack (&bp);
989 lto_destroy_simple_output_block (ob);
993 /* Deserialize the ipa info for lto. */
995 static void
996 pure_const_read_summary (void)
998 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
999 struct lto_file_decl_data *file_data;
1000 unsigned int j = 0;
1002 register_hooks ();
1003 while ((file_data = file_data_vec[j++]))
1005 const char *data;
1006 size_t len;
1007 struct lto_input_block *ib
1008 = lto_create_simple_input_block (file_data,
1009 LTO_section_ipa_pure_const,
1010 &data, &len);
1011 if (ib)
1013 unsigned int i;
1014 unsigned int count = streamer_read_uhwi (ib);
1016 for (i = 0; i < count; i++)
1018 unsigned int index;
1019 struct cgraph_node *node;
1020 struct bitpack_d bp;
1021 funct_state fs;
1022 lto_symtab_encoder_t encoder;
1024 fs = XCNEW (struct funct_state_d);
1025 index = streamer_read_uhwi (ib);
1026 encoder = file_data->symtab_node_encoder;
1027 node = cgraph (lto_symtab_encoder_deref (encoder, index));
1028 set_function_state (node, fs);
1030 /* Note that the flags must be read in the opposite
1031 order in which they were written (the bitflags were
1032 pushed into FLAGS). */
1033 bp = streamer_read_bitpack (ib);
1034 fs->pure_const_state
1035 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1036 fs->state_previously_known
1037 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1038 fs->looping_previously_known = bp_unpack_value (&bp, 1);
1039 fs->looping = bp_unpack_value (&bp, 1);
1040 fs->can_throw = bp_unpack_value (&bp, 1);
1041 if (dump_file)
1043 int flags = flags_from_decl_or_type (node->symbol.decl);
1044 fprintf (dump_file, "Read info for %s/%i ",
1045 cgraph_node_name (node),
1046 node->uid);
1047 if (flags & ECF_CONST)
1048 fprintf (dump_file, " const");
1049 if (flags & ECF_PURE)
1050 fprintf (dump_file, " pure");
1051 if (flags & ECF_NOTHROW)
1052 fprintf (dump_file, " nothrow");
1053 fprintf (dump_file, "\n pure const state: %s\n",
1054 pure_const_names[fs->pure_const_state]);
1055 fprintf (dump_file, " previously known state: %s\n",
1056 pure_const_names[fs->looping_previously_known]);
1057 if (fs->looping)
1058 fprintf (dump_file," function is locally looping\n");
1059 if (fs->looping_previously_known)
1060 fprintf (dump_file," function is previously known looping\n");
1061 if (fs->can_throw)
1062 fprintf (dump_file," function is locally throwing\n");
1066 lto_destroy_simple_input_block (file_data,
1067 LTO_section_ipa_pure_const,
1068 ib, data, len);
1074 static bool
1075 ignore_edge (struct cgraph_edge *e)
1077 return (!e->can_throw_external);
1080 /* Return true if NODE is self recursive function.
1081 ??? self recursive and indirectly recursive funcions should
1082 be the same, so this function seems unnecesary. */
1084 static bool
1085 self_recursive_p (struct cgraph_node *node)
1087 struct cgraph_edge *e;
1088 for (e = node->callees; e; e = e->next_callee)
1089 if (cgraph_function_node (e->callee, NULL) == node)
1090 return true;
1091 return false;
1094 /* Produce transitive closure over the callgraph and compute pure/const
1095 attributes. */
1097 static void
1098 propagate_pure_const (void)
1100 struct cgraph_node *node;
1101 struct cgraph_node *w;
1102 struct cgraph_node **order =
1103 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1104 int order_pos;
1105 int i;
1106 struct ipa_dfs_info * w_info;
1108 order_pos = ipa_reduced_postorder (order, true, false, NULL);
1109 if (dump_file)
1111 dump_cgraph (dump_file);
1112 ipa_print_order(dump_file, "reduced", order, order_pos);
1115 /* Propagate the local information through the call graph to produce
1116 the global information. All the nodes within a cycle will have
1117 the same info so we collapse cycles first. Then we can do the
1118 propagation in one pass from the leaves to the roots. */
1119 for (i = 0; i < order_pos; i++ )
1121 enum pure_const_state_e pure_const_state = IPA_CONST;
1122 bool looping = false;
1123 int count = 0;
1124 node = order[i];
1126 if (node->alias)
1127 continue;
1129 if (dump_file && (dump_flags & TDF_DETAILS))
1130 fprintf (dump_file, "Starting cycle\n");
1132 /* Find the worst state for any node in the cycle. */
1133 w = node;
1134 while (w && pure_const_state != IPA_NEITHER)
1136 struct cgraph_edge *e;
1137 struct cgraph_edge *ie;
1138 int i;
1139 struct ipa_ref *ref;
1141 funct_state w_l = get_function_state (w);
1142 if (dump_file && (dump_flags & TDF_DETAILS))
1143 fprintf (dump_file, " Visiting %s/%i state:%s looping %i\n",
1144 cgraph_node_name (w),
1145 w->uid,
1146 pure_const_names[w_l->pure_const_state],
1147 w_l->looping);
1149 /* First merge in function body properties. */
1150 worse_state (&pure_const_state, &looping,
1151 w_l->pure_const_state, w_l->looping);
1152 if (pure_const_state == IPA_NEITHER)
1153 break;
1155 /* For overwritable nodes we can not assume anything. */
1156 if (cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1158 worse_state (&pure_const_state, &looping,
1159 w_l->state_previously_known,
1160 w_l->looping_previously_known);
1161 if (dump_file && (dump_flags & TDF_DETAILS))
1163 fprintf (dump_file,
1164 " Overwritable. state %s looping %i\n",
1165 pure_const_names[w_l->state_previously_known],
1166 w_l->looping_previously_known);
1168 break;
1171 count++;
1173 /* We consider recursive cycles as possibly infinite.
1174 This might be relaxed since infinite recursion leads to stack
1175 overflow. */
1176 if (count > 1)
1177 looping = true;
1179 /* Now walk the edges and merge in callee properties. */
1180 for (e = w->callees; e; e = e->next_callee)
1182 enum availability avail;
1183 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1184 enum pure_const_state_e edge_state = IPA_CONST;
1185 bool edge_looping = false;
1187 if (dump_file && (dump_flags & TDF_DETAILS))
1189 fprintf (dump_file,
1190 " Call to %s/%i",
1191 cgraph_node_name (e->callee),
1192 e->callee->uid);
1194 if (avail > AVAIL_OVERWRITABLE)
1196 funct_state y_l = get_function_state (y);
1197 if (dump_file && (dump_flags & TDF_DETAILS))
1199 fprintf (dump_file,
1200 " state:%s looping:%i\n",
1201 pure_const_names[y_l->pure_const_state],
1202 y_l->looping);
1204 if (y_l->pure_const_state > IPA_PURE
1205 && cgraph_edge_cannot_lead_to_return (e))
1207 if (dump_file && (dump_flags & TDF_DETAILS))
1208 fprintf (dump_file,
1209 " Ignoring side effects"
1210 " -> pure, looping\n");
1211 edge_state = IPA_PURE;
1212 edge_looping = true;
1214 else
1216 edge_state = y_l->pure_const_state;
1217 edge_looping = y_l->looping;
1220 else if (special_builtin_state (&edge_state, &edge_looping,
1221 y->symbol.decl))
1223 else
1224 state_from_flags (&edge_state, &edge_looping,
1225 flags_from_decl_or_type (y->symbol.decl),
1226 cgraph_edge_cannot_lead_to_return (e));
1228 /* Merge the results with what we already know. */
1229 better_state (&edge_state, &edge_looping,
1230 w_l->state_previously_known,
1231 w_l->looping_previously_known);
1232 worse_state (&pure_const_state, &looping,
1233 edge_state, edge_looping);
1234 if (pure_const_state == IPA_NEITHER)
1235 break;
1237 if (pure_const_state == IPA_NEITHER)
1238 break;
1240 /* Now process the indirect call. */
1241 for (ie = w->indirect_calls; ie; ie = ie->next_callee)
1243 enum pure_const_state_e edge_state = IPA_CONST;
1244 bool edge_looping = false;
1246 if (dump_file && (dump_flags & TDF_DETAILS))
1247 fprintf (dump_file, " Indirect call");
1248 state_from_flags (&edge_state, &edge_looping,
1249 ie->indirect_info->ecf_flags,
1250 cgraph_edge_cannot_lead_to_return (ie));
1251 /* Merge the results with what we already know. */
1252 better_state (&edge_state, &edge_looping,
1253 w_l->state_previously_known,
1254 w_l->looping_previously_known);
1255 worse_state (&pure_const_state, &looping,
1256 edge_state, edge_looping);
1257 if (pure_const_state == IPA_NEITHER)
1258 break;
1260 if (pure_const_state == IPA_NEITHER)
1261 break;
1263 /* And finally all loads and stores. */
1264 for (i = 0; ipa_ref_list_reference_iterate (&w->symbol.ref_list, i, ref); i++)
1266 enum pure_const_state_e ref_state = IPA_CONST;
1267 bool ref_looping = false;
1268 switch (ref->use)
1270 case IPA_REF_LOAD:
1271 /* readonly reads are safe. */
1272 if (TREE_READONLY (ipa_ref_varpool_node (ref)->symbol.decl))
1273 break;
1274 if (dump_file && (dump_flags & TDF_DETAILS))
1275 fprintf (dump_file, " nonreadonly global var read\n");
1276 ref_state = IPA_PURE;
1277 break;
1278 case IPA_REF_STORE:
1279 if (ipa_ref_cannot_lead_to_return (ref))
1280 break;
1281 ref_state = IPA_NEITHER;
1282 if (dump_file && (dump_flags & TDF_DETAILS))
1283 fprintf (dump_file, " global var write\n");
1284 break;
1285 case IPA_REF_ADDR:
1286 break;
1288 better_state (&ref_state, &ref_looping,
1289 w_l->state_previously_known,
1290 w_l->looping_previously_known);
1291 worse_state (&pure_const_state, &looping,
1292 ref_state, ref_looping);
1293 if (pure_const_state == IPA_NEITHER)
1294 break;
1296 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1297 w = w_info->next_cycle;
1299 if (dump_file && (dump_flags & TDF_DETAILS))
1300 fprintf (dump_file, "Result %s looping %i\n",
1301 pure_const_names [pure_const_state],
1302 looping);
1304 /* Copy back the region's pure_const_state which is shared by
1305 all nodes in the region. */
1306 w = node;
1307 while (w)
1309 funct_state w_l = get_function_state (w);
1310 enum pure_const_state_e this_state = pure_const_state;
1311 bool this_looping = looping;
1313 if (w_l->state_previously_known != IPA_NEITHER
1314 && this_state > w_l->state_previously_known)
1316 this_state = w_l->state_previously_known;
1317 this_looping |= w_l->looping_previously_known;
1319 if (!this_looping && self_recursive_p (w))
1320 this_looping = true;
1321 if (!w_l->looping_previously_known)
1322 this_looping = false;
1324 /* All nodes within a cycle share the same info. */
1325 w_l->pure_const_state = this_state;
1326 w_l->looping = this_looping;
1328 switch (this_state)
1330 case IPA_CONST:
1331 if (!TREE_READONLY (w->symbol.decl))
1333 warn_function_const (w->symbol.decl, !this_looping);
1334 if (dump_file)
1335 fprintf (dump_file, "Function found to be %sconst: %s\n",
1336 this_looping ? "looping " : "",
1337 cgraph_node_name (w));
1339 cgraph_set_const_flag (w, true, this_looping);
1340 break;
1342 case IPA_PURE:
1343 if (!DECL_PURE_P (w->symbol.decl))
1345 warn_function_pure (w->symbol.decl, !this_looping);
1346 if (dump_file)
1347 fprintf (dump_file, "Function found to be %spure: %s\n",
1348 this_looping ? "looping " : "",
1349 cgraph_node_name (w));
1351 cgraph_set_pure_flag (w, true, this_looping);
1352 break;
1354 default:
1355 break;
1357 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1358 w = w_info->next_cycle;
1362 ipa_free_postorder_info ();
1363 free (order);
1366 /* Produce transitive closure over the callgraph and compute nothrow
1367 attributes. */
1369 static void
1370 propagate_nothrow (void)
1372 struct cgraph_node *node;
1373 struct cgraph_node *w;
1374 struct cgraph_node **order =
1375 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1376 int order_pos;
1377 int i;
1378 struct ipa_dfs_info * w_info;
1380 order_pos = ipa_reduced_postorder (order, true, false, ignore_edge);
1381 if (dump_file)
1383 dump_cgraph (dump_file);
1384 ipa_print_order (dump_file, "reduced for nothrow", order, order_pos);
1387 /* Propagate the local information through the call graph to produce
1388 the global information. All the nodes within a cycle will have
1389 the same info so we collapse cycles first. Then we can do the
1390 propagation in one pass from the leaves to the roots. */
1391 for (i = 0; i < order_pos; i++ )
1393 bool can_throw = false;
1394 node = order[i];
1396 if (node->alias)
1397 continue;
1399 /* Find the worst state for any node in the cycle. */
1400 w = node;
1401 while (w)
1403 struct cgraph_edge *e, *ie;
1404 funct_state w_l = get_function_state (w);
1406 if (w_l->can_throw
1407 || cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1408 can_throw = true;
1410 if (can_throw)
1411 break;
1413 for (e = w->callees; e; e = e->next_callee)
1415 enum availability avail;
1416 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1418 if (avail > AVAIL_OVERWRITABLE)
1420 funct_state y_l = get_function_state (y);
1422 if (can_throw)
1423 break;
1424 if (y_l->can_throw && !TREE_NOTHROW (w->symbol.decl)
1425 && e->can_throw_external)
1426 can_throw = true;
1428 else if (e->can_throw_external && !TREE_NOTHROW (y->symbol.decl))
1429 can_throw = true;
1431 for (ie = node->indirect_calls; ie; ie = ie->next_callee)
1432 if (ie->can_throw_external)
1433 can_throw = true;
1434 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1435 w = w_info->next_cycle;
1438 /* Copy back the region's pure_const_state which is shared by
1439 all nodes in the region. */
1440 w = node;
1441 while (w)
1443 funct_state w_l = get_function_state (w);
1444 if (!can_throw && !TREE_NOTHROW (w->symbol.decl))
1446 cgraph_set_nothrow_flag (w, true);
1447 if (dump_file)
1448 fprintf (dump_file, "Function found to be nothrow: %s\n",
1449 cgraph_node_name (w));
1451 else if (can_throw && !TREE_NOTHROW (w->symbol.decl))
1452 w_l->can_throw = true;
1453 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1454 w = w_info->next_cycle;
1458 ipa_free_postorder_info ();
1459 free (order);
1463 /* Produce the global information by preforming a transitive closure
1464 on the local information that was produced by generate_summary. */
1466 static unsigned int
1467 propagate (void)
1469 struct cgraph_node *node;
1471 cgraph_remove_function_insertion_hook (function_insertion_hook_holder);
1472 cgraph_remove_node_duplication_hook (node_duplication_hook_holder);
1473 cgraph_remove_node_removal_hook (node_removal_hook_holder);
1475 /* Nothrow makes more function to not lead to return and improve
1476 later analysis. */
1477 propagate_nothrow ();
1478 propagate_pure_const ();
1480 /* Cleanup. */
1481 FOR_EACH_DEFINED_FUNCTION (node)
1482 if (has_function_state (node))
1483 free (get_function_state (node));
1484 VEC_free (funct_state, heap, funct_state_vec);
1485 finish_state ();
1486 return 0;
1489 static bool
1490 gate_pure_const (void)
1492 return (flag_ipa_pure_const
1493 /* Don't bother doing anything if the program has errors. */
1494 && !seen_error ());
1497 struct ipa_opt_pass_d pass_ipa_pure_const =
1500 IPA_PASS,
1501 "pure-const", /* name */
1502 gate_pure_const, /* gate */
1503 propagate, /* execute */
1504 NULL, /* sub */
1505 NULL, /* next */
1506 0, /* static_pass_number */
1507 TV_IPA_PURE_CONST, /* tv_id */
1508 0, /* properties_required */
1509 0, /* properties_provided */
1510 0, /* properties_destroyed */
1511 0, /* todo_flags_start */
1512 0 /* todo_flags_finish */
1514 generate_summary, /* generate_summary */
1515 pure_const_write_summary, /* write_summary */
1516 pure_const_read_summary, /* read_summary */
1517 NULL, /* write_optimization_summary */
1518 NULL, /* read_optimization_summary */
1519 NULL, /* stmt_fixup */
1520 0, /* TODOs */
1521 NULL, /* function_transform */
1522 NULL /* variable_transform */
1525 /* Return true if function should be skipped for local pure const analysis. */
1527 static bool
1528 skip_function_for_local_pure_const (struct cgraph_node *node)
1530 /* Because we do not schedule pass_fixup_cfg over whole program after early optimizations
1531 we must not promote functions that are called by already processed functions. */
1533 if (function_called_by_processed_nodes_p ())
1535 if (dump_file)
1536 fprintf (dump_file, "Function called in recursive cycle; ignoring\n");
1537 return true;
1539 if (cgraph_function_body_availability (node) <= AVAIL_OVERWRITABLE)
1541 if (dump_file)
1542 fprintf (dump_file, "Function is not available or overwritable; not analyzing.\n");
1543 return true;
1545 return false;
1548 /* Simple local pass for pure const discovery reusing the analysis from
1549 ipa_pure_const. This pass is effective when executed together with
1550 other optimization passes in early optimization pass queue. */
1552 static unsigned int
1553 local_pure_const (void)
1555 bool changed = false;
1556 funct_state l;
1557 bool skip;
1558 struct cgraph_node *node;
1560 node = cgraph_get_node (current_function_decl);
1561 skip = skip_function_for_local_pure_const (node);
1562 if (!warn_suggest_attribute_const
1563 && !warn_suggest_attribute_pure
1564 && skip)
1565 return 0;
1567 l = analyze_function (node, false);
1569 /* Do NORETURN discovery. */
1570 if (!skip && !TREE_THIS_VOLATILE (current_function_decl)
1571 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0)
1573 warn_function_noreturn (cfun->decl);
1574 if (dump_file)
1575 fprintf (dump_file, "Function found to be noreturn: %s\n",
1576 lang_hooks.decl_printable_name (current_function_decl, 2));
1578 /* Update declaration and reduce profile to executed once. */
1579 TREE_THIS_VOLATILE (current_function_decl) = 1;
1580 if (node->frequency > NODE_FREQUENCY_EXECUTED_ONCE)
1581 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
1583 changed = true;
1586 switch (l->pure_const_state)
1588 case IPA_CONST:
1589 if (!TREE_READONLY (current_function_decl))
1591 warn_function_const (current_function_decl, !l->looping);
1592 if (!skip)
1594 cgraph_set_const_flag (node, true, l->looping);
1595 changed = true;
1597 if (dump_file)
1598 fprintf (dump_file, "Function found to be %sconst: %s\n",
1599 l->looping ? "looping " : "",
1600 lang_hooks.decl_printable_name (current_function_decl,
1601 2));
1603 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1604 && !l->looping)
1606 if (!skip)
1608 cgraph_set_const_flag (node, true, false);
1609 changed = true;
1611 if (dump_file)
1612 fprintf (dump_file, "Function found to be non-looping: %s\n",
1613 lang_hooks.decl_printable_name (current_function_decl,
1614 2));
1616 break;
1618 case IPA_PURE:
1619 if (!DECL_PURE_P (current_function_decl))
1621 if (!skip)
1623 cgraph_set_pure_flag (node, true, l->looping);
1624 changed = true;
1626 warn_function_pure (current_function_decl, !l->looping);
1627 if (dump_file)
1628 fprintf (dump_file, "Function found to be %spure: %s\n",
1629 l->looping ? "looping " : "",
1630 lang_hooks.decl_printable_name (current_function_decl,
1631 2));
1633 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1634 && !l->looping)
1636 if (!skip)
1638 cgraph_set_pure_flag (node, true, false);
1639 changed = true;
1641 if (dump_file)
1642 fprintf (dump_file, "Function found to be non-looping: %s\n",
1643 lang_hooks.decl_printable_name (current_function_decl,
1644 2));
1646 break;
1648 default:
1649 break;
1651 if (!l->can_throw && !TREE_NOTHROW (current_function_decl))
1653 cgraph_set_nothrow_flag (node, true);
1654 changed = true;
1655 if (dump_file)
1656 fprintf (dump_file, "Function found to be nothrow: %s\n",
1657 lang_hooks.decl_printable_name (current_function_decl,
1658 2));
1660 free (l);
1661 if (changed)
1662 return execute_fixup_cfg ();
1663 else
1664 return 0;
1667 struct gimple_opt_pass pass_local_pure_const =
1670 GIMPLE_PASS,
1671 "local-pure-const", /* name */
1672 gate_pure_const, /* gate */
1673 local_pure_const, /* execute */
1674 NULL, /* sub */
1675 NULL, /* next */
1676 0, /* static_pass_number */
1677 TV_IPA_PURE_CONST, /* tv_id */
1678 0, /* properties_required */
1679 0, /* properties_provided */
1680 0, /* properties_destroyed */
1681 0, /* todo_flags_start */
1682 0 /* todo_flags_finish */