PR c++/54021
[official-gcc.git] / gcc / ipa-pure-const.c
bloba5933f3b130df48d7f3d25334138410b1b4f7087
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 warned_about
191 = suggest_attribute (OPT_Wsuggest_attribute_noreturn, decl,
192 true, warned_about, "noreturn");
194 /* Init the function state. */
196 static void
197 finish_state (void)
199 free (funct_state_vec);
203 /* Return true if we have a function state for NODE. */
205 static inline bool
206 has_function_state (struct cgraph_node *node)
208 if (!funct_state_vec
209 || VEC_length (funct_state, funct_state_vec) <= (unsigned int)node->uid)
210 return false;
211 return VEC_index (funct_state, funct_state_vec, node->uid) != NULL;
214 /* Return the function state from NODE. */
216 static inline funct_state
217 get_function_state (struct cgraph_node *node)
219 if (!funct_state_vec
220 || VEC_length (funct_state, funct_state_vec) <= (unsigned int)node->uid
221 || !VEC_index (funct_state, funct_state_vec, node->uid))
222 /* We might want to put correct previously_known state into varying. */
223 return &varying_state;
224 return VEC_index (funct_state, funct_state_vec, node->uid);
227 /* Set the function state S for NODE. */
229 static inline void
230 set_function_state (struct cgraph_node *node, funct_state s)
232 if (!funct_state_vec
233 || VEC_length (funct_state, funct_state_vec) <= (unsigned int)node->uid)
234 VEC_safe_grow_cleared (funct_state, heap, funct_state_vec, node->uid + 1);
235 VEC_replace (funct_state, funct_state_vec, node->uid, s);
238 /* Check to see if the use (or definition when CHECKING_WRITE is true)
239 variable T is legal in a function that is either pure or const. */
241 static inline void
242 check_decl (funct_state local,
243 tree t, bool checking_write, bool ipa)
245 /* Do not want to do anything with volatile except mark any
246 function that uses one to be not const or pure. */
247 if (TREE_THIS_VOLATILE (t))
249 local->pure_const_state = IPA_NEITHER;
250 if (dump_file)
251 fprintf (dump_file, " Volatile operand is not const/pure");
252 return;
255 /* Do not care about a local automatic that is not static. */
256 if (!TREE_STATIC (t) && !DECL_EXTERNAL (t))
257 return;
259 /* If the variable has the "used" attribute, treat it as if it had a
260 been touched by the devil. */
261 if (DECL_PRESERVE_P (t))
263 local->pure_const_state = IPA_NEITHER;
264 if (dump_file)
265 fprintf (dump_file, " Used static/global variable is not const/pure\n");
266 return;
269 /* In IPA mode we are not interested in checking actual loads and stores;
270 they will be processed at propagation time using ipa_ref. */
271 if (ipa)
272 return;
274 /* Since we have dealt with the locals and params cases above, if we
275 are CHECKING_WRITE, this cannot be a pure or constant
276 function. */
277 if (checking_write)
279 local->pure_const_state = IPA_NEITHER;
280 if (dump_file)
281 fprintf (dump_file, " static/global memory write is not const/pure\n");
282 return;
285 if (DECL_EXTERNAL (t) || TREE_PUBLIC (t))
287 /* Readonly reads are safe. */
288 if (TREE_READONLY (t) && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (t)))
289 return; /* Read of a constant, do not change the function state. */
290 else
292 if (dump_file)
293 fprintf (dump_file, " global memory read is not const\n");
294 /* Just a regular read. */
295 if (local->pure_const_state == IPA_CONST)
296 local->pure_const_state = IPA_PURE;
299 else
301 /* Compilation level statics can be read if they are readonly
302 variables. */
303 if (TREE_READONLY (t))
304 return;
306 if (dump_file)
307 fprintf (dump_file, " static memory read is not const\n");
308 /* Just a regular read. */
309 if (local->pure_const_state == IPA_CONST)
310 local->pure_const_state = IPA_PURE;
315 /* Check to see if the use (or definition when CHECKING_WRITE is true)
316 variable T is legal in a function that is either pure or const. */
318 static inline void
319 check_op (funct_state local, tree t, bool checking_write)
321 t = get_base_address (t);
322 if (t && TREE_THIS_VOLATILE (t))
324 local->pure_const_state = IPA_NEITHER;
325 if (dump_file)
326 fprintf (dump_file, " Volatile indirect ref is not const/pure\n");
327 return;
329 else if (t
330 && (INDIRECT_REF_P (t) || TREE_CODE (t) == MEM_REF)
331 && TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME
332 && !ptr_deref_may_alias_global_p (TREE_OPERAND (t, 0)))
334 if (dump_file)
335 fprintf (dump_file, " Indirect ref to local memory is OK\n");
336 return;
338 else if (checking_write)
340 local->pure_const_state = IPA_NEITHER;
341 if (dump_file)
342 fprintf (dump_file, " Indirect ref write is not const/pure\n");
343 return;
345 else
347 if (dump_file)
348 fprintf (dump_file, " Indirect ref read is not const\n");
349 if (local->pure_const_state == IPA_CONST)
350 local->pure_const_state = IPA_PURE;
354 /* compute state based on ECF FLAGS and store to STATE and LOOPING. */
356 static void
357 state_from_flags (enum pure_const_state_e *state, bool *looping,
358 int flags, bool cannot_lead_to_return)
360 *looping = false;
361 if (flags & ECF_LOOPING_CONST_OR_PURE)
363 *looping = true;
364 if (dump_file && (dump_flags & TDF_DETAILS))
365 fprintf (dump_file, " looping");
367 if (flags & ECF_CONST)
369 *state = IPA_CONST;
370 if (dump_file && (dump_flags & TDF_DETAILS))
371 fprintf (dump_file, " const\n");
373 else if (flags & ECF_PURE)
375 *state = IPA_PURE;
376 if (dump_file && (dump_flags & TDF_DETAILS))
377 fprintf (dump_file, " pure\n");
379 else if (cannot_lead_to_return)
381 *state = IPA_PURE;
382 *looping = true;
383 if (dump_file && (dump_flags & TDF_DETAILS))
384 fprintf (dump_file, " ignoring side effects->pure looping\n");
386 else
388 if (dump_file && (dump_flags & TDF_DETAILS))
389 fprintf (dump_file, " neihter\n");
390 *state = IPA_NEITHER;
391 *looping = true;
395 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
396 into STATE and LOOPING better of the two variants.
397 Be sure to merge looping correctly. IPA_NEITHER functions
398 have looping 0 even if they don't have to return. */
400 static inline void
401 better_state (enum pure_const_state_e *state, bool *looping,
402 enum pure_const_state_e state2, bool looping2)
404 if (state2 < *state)
406 if (*state == IPA_NEITHER)
407 *looping = looping2;
408 else
409 *looping = MIN (*looping, looping2);
411 else if (state2 != IPA_NEITHER)
412 *looping = MIN (*looping, looping2);
415 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
416 into STATE and LOOPING worse of the two variants. */
418 static inline void
419 worse_state (enum pure_const_state_e *state, bool *looping,
420 enum pure_const_state_e state2, bool looping2)
422 *state = MAX (*state, state2);
423 *looping = MAX (*looping, looping2);
426 /* Recognize special cases of builtins that are by themselves not pure or const
427 but function using them is. */
428 static bool
429 special_builtin_state (enum pure_const_state_e *state, bool *looping,
430 tree callee)
432 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
433 switch (DECL_FUNCTION_CODE (callee))
435 case BUILT_IN_RETURN:
436 case BUILT_IN_UNREACHABLE:
437 case BUILT_IN_ALLOCA:
438 case BUILT_IN_ALLOCA_WITH_ALIGN:
439 case BUILT_IN_STACK_SAVE:
440 case BUILT_IN_STACK_RESTORE:
441 case BUILT_IN_EH_POINTER:
442 case BUILT_IN_EH_FILTER:
443 case BUILT_IN_UNWIND_RESUME:
444 case BUILT_IN_CXA_END_CLEANUP:
445 case BUILT_IN_EH_COPY_VALUES:
446 case BUILT_IN_FRAME_ADDRESS:
447 case BUILT_IN_APPLY:
448 case BUILT_IN_APPLY_ARGS:
449 *looping = false;
450 *state = IPA_CONST;
451 return true;
452 case BUILT_IN_PREFETCH:
453 *looping = true;
454 *state = IPA_CONST;
455 return true;
457 return false;
460 /* Check the parameters of a function call to CALL_EXPR to see if
461 there are any references in the parameters that are not allowed for
462 pure or const functions. Also check to see if this is either an
463 indirect call, a call outside the compilation unit, or has special
464 attributes that may also effect the purity. The CALL_EXPR node for
465 the entire call expression. */
467 static void
468 check_call (funct_state local, gimple call, bool ipa)
470 int flags = gimple_call_flags (call);
471 tree callee_t = gimple_call_fndecl (call);
472 bool possibly_throws = stmt_could_throw_p (call);
473 bool possibly_throws_externally = (possibly_throws
474 && stmt_can_throw_external (call));
476 if (possibly_throws)
478 unsigned int i;
479 for (i = 0; i < gimple_num_ops (call); i++)
480 if (gimple_op (call, i)
481 && tree_could_throw_p (gimple_op (call, i)))
483 if (possibly_throws && cfun->can_throw_non_call_exceptions)
485 if (dump_file)
486 fprintf (dump_file, " operand can throw; looping\n");
487 local->looping = true;
489 if (possibly_throws_externally)
491 if (dump_file)
492 fprintf (dump_file, " operand can throw externally\n");
493 local->can_throw = true;
498 /* The const and pure flags are set by a variety of places in the
499 compiler (including here). If someone has already set the flags
500 for the callee, (such as for some of the builtins) we will use
501 them, otherwise we will compute our own information.
503 Const and pure functions have less clobber effects than other
504 functions so we process these first. Otherwise if it is a call
505 outside the compilation unit or an indirect call we punt. This
506 leaves local calls which will be processed by following the call
507 graph. */
508 if (callee_t)
510 enum pure_const_state_e call_state;
511 bool call_looping;
513 if (special_builtin_state (&call_state, &call_looping, callee_t))
515 worse_state (&local->pure_const_state, &local->looping,
516 call_state, call_looping);
517 return;
519 /* When bad things happen to bad functions, they cannot be const
520 or pure. */
521 if (setjmp_call_p (callee_t))
523 if (dump_file)
524 fprintf (dump_file, " setjmp is not const/pure\n");
525 local->looping = true;
526 local->pure_const_state = IPA_NEITHER;
529 if (DECL_BUILT_IN_CLASS (callee_t) == BUILT_IN_NORMAL)
530 switch (DECL_FUNCTION_CODE (callee_t))
532 case BUILT_IN_LONGJMP:
533 case BUILT_IN_NONLOCAL_GOTO:
534 if (dump_file)
535 fprintf (dump_file, " longjmp and nonlocal goto is not const/pure\n");
536 local->pure_const_state = IPA_NEITHER;
537 local->looping = true;
538 break;
539 default:
540 break;
544 /* When not in IPA mode, we can still handle self recursion. */
545 if (!ipa && callee_t == current_function_decl)
547 if (dump_file)
548 fprintf (dump_file, " Recursive call can loop.\n");
549 local->looping = true;
551 /* Either callee is unknown or we are doing local analysis.
552 Look to see if there are any bits available for the callee (such as by
553 declaration or because it is builtin) and process solely on the basis of
554 those bits. */
555 else if (!ipa)
557 enum pure_const_state_e call_state;
558 bool call_looping;
559 if (possibly_throws && cfun->can_throw_non_call_exceptions)
561 if (dump_file)
562 fprintf (dump_file, " can throw; looping\n");
563 local->looping = true;
565 if (possibly_throws_externally)
567 if (dump_file)
569 fprintf (dump_file, " can throw externally to lp %i\n",
570 lookup_stmt_eh_lp (call));
571 if (callee_t)
572 fprintf (dump_file, " callee:%s\n",
573 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (callee_t)));
575 local->can_throw = true;
577 if (dump_file && (dump_flags & TDF_DETAILS))
578 fprintf (dump_file, " checking flags for call:");
579 state_from_flags (&call_state, &call_looping, flags,
580 ((flags & (ECF_NORETURN | ECF_NOTHROW))
581 == (ECF_NORETURN | ECF_NOTHROW))
582 || (!flag_exceptions && (flags & ECF_NORETURN)));
583 worse_state (&local->pure_const_state, &local->looping,
584 call_state, call_looping);
586 /* Direct functions calls are handled by IPA propagation. */
589 /* Wrapper around check_decl for loads in local more. */
591 static bool
592 check_load (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
594 if (DECL_P (op))
595 check_decl ((funct_state)data, op, false, false);
596 else
597 check_op ((funct_state)data, op, false);
598 return false;
601 /* Wrapper around check_decl for stores in local more. */
603 static bool
604 check_store (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
606 if (DECL_P (op))
607 check_decl ((funct_state)data, op, true, false);
608 else
609 check_op ((funct_state)data, op, true);
610 return false;
613 /* Wrapper around check_decl for loads in ipa mode. */
615 static bool
616 check_ipa_load (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
618 if (DECL_P (op))
619 check_decl ((funct_state)data, op, false, true);
620 else
621 check_op ((funct_state)data, op, false);
622 return false;
625 /* Wrapper around check_decl for stores in ipa mode. */
627 static bool
628 check_ipa_store (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
630 if (DECL_P (op))
631 check_decl ((funct_state)data, op, true, true);
632 else
633 check_op ((funct_state)data, op, true);
634 return false;
637 /* Look into pointer pointed to by GSIP and figure out what interesting side
638 effects it has. */
639 static void
640 check_stmt (gimple_stmt_iterator *gsip, funct_state local, bool ipa)
642 gimple stmt = gsi_stmt (*gsip);
644 if (is_gimple_debug (stmt))
645 return;
647 if (dump_file)
649 fprintf (dump_file, " scanning: ");
650 print_gimple_stmt (dump_file, stmt, 0, 0);
653 if (gimple_has_volatile_ops (stmt)
654 && !gimple_clobber_p (stmt))
656 local->pure_const_state = IPA_NEITHER;
657 if (dump_file)
658 fprintf (dump_file, " Volatile stmt is not const/pure\n");
661 /* Look for loads and stores. */
662 walk_stmt_load_store_ops (stmt, local,
663 ipa ? check_ipa_load : check_load,
664 ipa ? check_ipa_store : check_store);
666 if (gimple_code (stmt) != GIMPLE_CALL
667 && stmt_could_throw_p (stmt))
669 if (cfun->can_throw_non_call_exceptions)
671 if (dump_file)
672 fprintf (dump_file, " can throw; looping");
673 local->looping = true;
675 if (stmt_can_throw_external (stmt))
677 if (dump_file)
678 fprintf (dump_file, " can throw externally");
679 local->can_throw = true;
682 switch (gimple_code (stmt))
684 case GIMPLE_CALL:
685 check_call (local, stmt, ipa);
686 break;
687 case GIMPLE_LABEL:
688 if (DECL_NONLOCAL (gimple_label_label (stmt)))
689 /* Target of long jump. */
691 if (dump_file)
692 fprintf (dump_file, " nonlocal label is not const/pure");
693 local->pure_const_state = IPA_NEITHER;
695 break;
696 case GIMPLE_ASM:
697 if (gimple_asm_clobbers_memory_p (stmt))
699 if (dump_file)
700 fprintf (dump_file, " memory asm clobber is not const/pure");
701 /* Abandon all hope, ye who enter here. */
702 local->pure_const_state = IPA_NEITHER;
704 if (gimple_asm_volatile_p (stmt))
706 if (dump_file)
707 fprintf (dump_file, " volatile is not const/pure");
708 /* Abandon all hope, ye who enter here. */
709 local->pure_const_state = IPA_NEITHER;
710 local->looping = true;
712 return;
713 default:
714 break;
719 /* This is the main routine for finding the reference patterns for
720 global variables within a function FN. */
722 static funct_state
723 analyze_function (struct cgraph_node *fn, bool ipa)
725 tree decl = fn->symbol.decl;
726 tree old_decl = current_function_decl;
727 funct_state l;
728 basic_block this_block;
730 l = XCNEW (struct funct_state_d);
731 l->pure_const_state = IPA_CONST;
732 l->state_previously_known = IPA_NEITHER;
733 l->looping_previously_known = true;
734 l->looping = false;
735 l->can_throw = false;
736 state_from_flags (&l->state_previously_known, &l->looping_previously_known,
737 flags_from_decl_or_type (fn->symbol.decl),
738 cgraph_node_cannot_return (fn));
740 if (fn->thunk.thunk_p || fn->alias)
742 /* Thunk gets propagated through, so nothing interesting happens. */
743 gcc_assert (ipa);
744 return l;
747 if (dump_file)
749 fprintf (dump_file, "\n\n local analysis of %s\n ",
750 cgraph_node_name (fn));
753 push_cfun (DECL_STRUCT_FUNCTION (decl));
754 current_function_decl = decl;
756 FOR_EACH_BB (this_block)
758 gimple_stmt_iterator gsi;
759 struct walk_stmt_info wi;
761 memset (&wi, 0, sizeof(wi));
762 for (gsi = gsi_start_bb (this_block);
763 !gsi_end_p (gsi);
764 gsi_next (&gsi))
766 check_stmt (&gsi, l, ipa);
767 if (l->pure_const_state == IPA_NEITHER && l->looping && l->can_throw)
768 goto end;
772 end:
773 if (l->pure_const_state != IPA_NEITHER)
775 /* Const functions cannot have back edges (an
776 indication of possible infinite loop side
777 effect. */
778 if (mark_dfs_back_edges ())
780 /* Preheaders are needed for SCEV to work.
781 Simple latches and recorded exits improve chances that loop will
782 proved to be finite in testcases such as in loop-15.c and loop-24.c */
783 loop_optimizer_init (LOOPS_NORMAL
784 | LOOPS_HAVE_RECORDED_EXITS);
785 if (dump_file && (dump_flags & TDF_DETAILS))
786 flow_loops_dump (dump_file, NULL, 0);
787 if (mark_irreducible_loops ())
789 if (dump_file)
790 fprintf (dump_file, " has irreducible loops\n");
791 l->looping = true;
793 else
795 loop_iterator li;
796 struct loop *loop;
797 scev_initialize ();
798 FOR_EACH_LOOP (li, loop, 0)
799 if (!finite_loop_p (loop))
801 if (dump_file)
802 fprintf (dump_file, " can not prove finiteness of loop %i\n", loop->num);
803 l->looping =true;
804 break;
806 scev_finalize ();
808 loop_optimizer_finalize ();
812 if (dump_file && (dump_flags & TDF_DETAILS))
813 fprintf (dump_file, " checking previously known:");
815 better_state (&l->pure_const_state, &l->looping,
816 l->state_previously_known,
817 l->looping_previously_known);
818 if (TREE_NOTHROW (decl))
819 l->can_throw = false;
821 pop_cfun ();
822 current_function_decl = old_decl;
823 if (dump_file)
825 if (l->looping)
826 fprintf (dump_file, "Function is locally looping.\n");
827 if (l->can_throw)
828 fprintf (dump_file, "Function is locally throwing.\n");
829 if (l->pure_const_state == IPA_CONST)
830 fprintf (dump_file, "Function is locally const.\n");
831 if (l->pure_const_state == IPA_PURE)
832 fprintf (dump_file, "Function is locally pure.\n");
834 return l;
837 /* Called when new function is inserted to callgraph late. */
838 static void
839 add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
841 if (cgraph_function_body_availability (node) < AVAIL_OVERWRITABLE)
842 return;
843 /* There are some shared nodes, in particular the initializers on
844 static declarations. We do not need to scan them more than once
845 since all we would be interested in are the addressof
846 operations. */
847 visited_nodes = pointer_set_create ();
848 if (cgraph_function_body_availability (node) > AVAIL_OVERWRITABLE)
849 set_function_state (node, analyze_function (node, true));
850 pointer_set_destroy (visited_nodes);
851 visited_nodes = NULL;
854 /* Called when new clone is inserted to callgraph late. */
856 static void
857 duplicate_node_data (struct cgraph_node *src, struct cgraph_node *dst,
858 void *data ATTRIBUTE_UNUSED)
860 if (has_function_state (src))
862 funct_state l = XNEW (struct funct_state_d);
863 gcc_assert (!has_function_state (dst));
864 memcpy (l, get_function_state (src), sizeof (*l));
865 set_function_state (dst, l);
869 /* Called when new clone is inserted to callgraph late. */
871 static void
872 remove_node_data (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
874 if (has_function_state (node))
876 funct_state l = get_function_state (node);
877 if (l != &varying_state)
878 free (l);
879 set_function_state (node, NULL);
884 static void
885 register_hooks (void)
887 static bool init_p = false;
889 if (init_p)
890 return;
892 init_p = true;
894 node_removal_hook_holder =
895 cgraph_add_node_removal_hook (&remove_node_data, NULL);
896 node_duplication_hook_holder =
897 cgraph_add_node_duplication_hook (&duplicate_node_data, NULL);
898 function_insertion_hook_holder =
899 cgraph_add_function_insertion_hook (&add_new_function, NULL);
903 /* Analyze each function in the cgraph to see if it is locally PURE or
904 CONST. */
906 static void
907 generate_summary (void)
909 struct cgraph_node *node;
911 register_hooks ();
913 /* There are some shared nodes, in particular the initializers on
914 static declarations. We do not need to scan them more than once
915 since all we would be interested in are the addressof
916 operations. */
917 visited_nodes = pointer_set_create ();
919 /* Process all of the functions.
921 We process AVAIL_OVERWRITABLE functions. We can not use the results
922 by default, but the info can be used at LTO with -fwhole-program or
923 when function got cloned and the clone is AVAILABLE. */
925 FOR_EACH_DEFINED_FUNCTION (node)
926 if (cgraph_function_body_availability (node) >= AVAIL_OVERWRITABLE)
927 set_function_state (node, analyze_function (node, true));
929 pointer_set_destroy (visited_nodes);
930 visited_nodes = NULL;
934 /* Serialize the ipa info for lto. */
936 static void
937 pure_const_write_summary (cgraph_node_set set,
938 varpool_node_set vset ATTRIBUTE_UNUSED)
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 cgraph_node_set_iterator csi;
946 for (csi = csi_start (set); !csi_end_p (csi); csi_next (&csi))
948 node = csi_node (csi);
949 if (node->analyzed && has_function_state (node))
950 count++;
953 streamer_write_uhwi_stream (ob->main_stream, count);
955 /* Process all of the functions. */
956 for (csi = csi_start (set); !csi_end_p (csi); csi_next (&csi))
958 node = csi_node (csi);
959 if (node->analyzed && has_function_state (node))
961 struct bitpack_d bp;
962 funct_state fs;
963 int node_ref;
964 lto_cgraph_encoder_t encoder;
966 fs = get_function_state (node);
968 encoder = ob->decl_state->cgraph_node_encoder;
969 node_ref = lto_cgraph_encoder_encode (encoder, node);
970 streamer_write_uhwi_stream (ob->main_stream, node_ref);
972 /* Note that flags will need to be read in the opposite
973 order as we are pushing the bitflags into FLAGS. */
974 bp = bitpack_create (ob->main_stream);
975 bp_pack_value (&bp, fs->pure_const_state, 2);
976 bp_pack_value (&bp, fs->state_previously_known, 2);
977 bp_pack_value (&bp, fs->looping_previously_known, 1);
978 bp_pack_value (&bp, fs->looping, 1);
979 bp_pack_value (&bp, fs->can_throw, 1);
980 streamer_write_bitpack (&bp);
984 lto_destroy_simple_output_block (ob);
988 /* Deserialize the ipa info for lto. */
990 static void
991 pure_const_read_summary (void)
993 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
994 struct lto_file_decl_data *file_data;
995 unsigned int j = 0;
997 register_hooks ();
998 while ((file_data = file_data_vec[j++]))
1000 const char *data;
1001 size_t len;
1002 struct lto_input_block *ib
1003 = lto_create_simple_input_block (file_data,
1004 LTO_section_ipa_pure_const,
1005 &data, &len);
1006 if (ib)
1008 unsigned int i;
1009 unsigned int count = streamer_read_uhwi (ib);
1011 for (i = 0; i < count; i++)
1013 unsigned int index;
1014 struct cgraph_node *node;
1015 struct bitpack_d bp;
1016 funct_state fs;
1017 lto_cgraph_encoder_t encoder;
1019 fs = XCNEW (struct funct_state_d);
1020 index = streamer_read_uhwi (ib);
1021 encoder = file_data->cgraph_node_encoder;
1022 node = lto_cgraph_encoder_deref (encoder, index);
1023 set_function_state (node, fs);
1025 /* Note that the flags must be read in the opposite
1026 order in which they were written (the bitflags were
1027 pushed into FLAGS). */
1028 bp = streamer_read_bitpack (ib);
1029 fs->pure_const_state
1030 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1031 fs->state_previously_known
1032 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1033 fs->looping_previously_known = bp_unpack_value (&bp, 1);
1034 fs->looping = bp_unpack_value (&bp, 1);
1035 fs->can_throw = bp_unpack_value (&bp, 1);
1036 if (dump_file)
1038 int flags = flags_from_decl_or_type (node->symbol.decl);
1039 fprintf (dump_file, "Read info for %s/%i ",
1040 cgraph_node_name (node),
1041 node->uid);
1042 if (flags & ECF_CONST)
1043 fprintf (dump_file, " const");
1044 if (flags & ECF_PURE)
1045 fprintf (dump_file, " pure");
1046 if (flags & ECF_NOTHROW)
1047 fprintf (dump_file, " nothrow");
1048 fprintf (dump_file, "\n pure const state: %s\n",
1049 pure_const_names[fs->pure_const_state]);
1050 fprintf (dump_file, " previously known state: %s\n",
1051 pure_const_names[fs->looping_previously_known]);
1052 if (fs->looping)
1053 fprintf (dump_file," function is locally looping\n");
1054 if (fs->looping_previously_known)
1055 fprintf (dump_file," function is previously known looping\n");
1056 if (fs->can_throw)
1057 fprintf (dump_file," function is locally throwing\n");
1061 lto_destroy_simple_input_block (file_data,
1062 LTO_section_ipa_pure_const,
1063 ib, data, len);
1069 static bool
1070 ignore_edge (struct cgraph_edge *e)
1072 return (!e->can_throw_external);
1075 /* Return true if NODE is self recursive function.
1076 ??? self recursive and indirectly recursive funcions should
1077 be the same, so this function seems unnecesary. */
1079 static bool
1080 self_recursive_p (struct cgraph_node *node)
1082 struct cgraph_edge *e;
1083 for (e = node->callees; e; e = e->next_callee)
1084 if (cgraph_function_node (e->callee, NULL) == node)
1085 return true;
1086 return false;
1089 /* Produce transitive closure over the callgraph and compute pure/const
1090 attributes. */
1092 static void
1093 propagate_pure_const (void)
1095 struct cgraph_node *node;
1096 struct cgraph_node *w;
1097 struct cgraph_node **order =
1098 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1099 int order_pos;
1100 int i;
1101 struct ipa_dfs_info * w_info;
1103 order_pos = ipa_reduced_postorder (order, true, false, NULL);
1104 if (dump_file)
1106 dump_cgraph (dump_file);
1107 ipa_print_order(dump_file, "reduced", order, order_pos);
1110 /* Propagate the local information through the call graph to produce
1111 the global information. All the nodes within a cycle will have
1112 the same info so we collapse cycles first. Then we can do the
1113 propagation in one pass from the leaves to the roots. */
1114 for (i = 0; i < order_pos; i++ )
1116 enum pure_const_state_e pure_const_state = IPA_CONST;
1117 bool looping = false;
1118 int count = 0;
1119 node = order[i];
1121 if (node->alias)
1122 continue;
1124 if (dump_file && (dump_flags & TDF_DETAILS))
1125 fprintf (dump_file, "Starting cycle\n");
1127 /* Find the worst state for any node in the cycle. */
1128 w = node;
1129 while (w && pure_const_state != IPA_NEITHER)
1131 struct cgraph_edge *e;
1132 struct cgraph_edge *ie;
1133 int i;
1134 struct ipa_ref *ref;
1136 funct_state w_l = get_function_state (w);
1137 if (dump_file && (dump_flags & TDF_DETAILS))
1138 fprintf (dump_file, " Visiting %s/%i state:%s looping %i\n",
1139 cgraph_node_name (w),
1140 w->uid,
1141 pure_const_names[w_l->pure_const_state],
1142 w_l->looping);
1144 /* First merge in function body properties. */
1145 worse_state (&pure_const_state, &looping,
1146 w_l->pure_const_state, w_l->looping);
1147 if (pure_const_state == IPA_NEITHER)
1148 break;
1150 /* For overwritable nodes we can not assume anything. */
1151 if (cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1153 worse_state (&pure_const_state, &looping,
1154 w_l->state_previously_known,
1155 w_l->looping_previously_known);
1156 if (dump_file && (dump_flags & TDF_DETAILS))
1158 fprintf (dump_file,
1159 " Overwritable. state %s looping %i\n",
1160 pure_const_names[w_l->state_previously_known],
1161 w_l->looping_previously_known);
1163 break;
1166 count++;
1168 /* We consider recursive cycles as possibly infinite.
1169 This might be relaxed since infinite recursion leads to stack
1170 overflow. */
1171 if (count > 1)
1172 looping = true;
1174 /* Now walk the edges and merge in callee properties. */
1175 for (e = w->callees; e; e = e->next_callee)
1177 enum availability avail;
1178 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1179 enum pure_const_state_e edge_state = IPA_CONST;
1180 bool edge_looping = false;
1182 if (dump_file && (dump_flags & TDF_DETAILS))
1184 fprintf (dump_file,
1185 " Call to %s/%i",
1186 cgraph_node_name (e->callee),
1187 e->callee->uid);
1189 if (avail > AVAIL_OVERWRITABLE)
1191 funct_state y_l = get_function_state (y);
1192 if (dump_file && (dump_flags & TDF_DETAILS))
1194 fprintf (dump_file,
1195 " state:%s looping:%i\n",
1196 pure_const_names[y_l->pure_const_state],
1197 y_l->looping);
1199 if (y_l->pure_const_state > IPA_PURE
1200 && cgraph_edge_cannot_lead_to_return (e))
1202 if (dump_file && (dump_flags & TDF_DETAILS))
1203 fprintf (dump_file,
1204 " Ignoring side effects"
1205 " -> pure, looping\n");
1206 edge_state = IPA_PURE;
1207 edge_looping = true;
1209 else
1211 edge_state = y_l->pure_const_state;
1212 edge_looping = y_l->looping;
1215 else if (special_builtin_state (&edge_state, &edge_looping,
1216 y->symbol.decl))
1218 else
1219 state_from_flags (&edge_state, &edge_looping,
1220 flags_from_decl_or_type (y->symbol.decl),
1221 cgraph_edge_cannot_lead_to_return (e));
1223 /* Merge the results with what we already know. */
1224 better_state (&edge_state, &edge_looping,
1225 w_l->state_previously_known,
1226 w_l->looping_previously_known);
1227 worse_state (&pure_const_state, &looping,
1228 edge_state, edge_looping);
1229 if (pure_const_state == IPA_NEITHER)
1230 break;
1232 if (pure_const_state == IPA_NEITHER)
1233 break;
1235 /* Now process the indirect call. */
1236 for (ie = w->indirect_calls; ie; ie = ie->next_callee)
1238 enum pure_const_state_e edge_state = IPA_CONST;
1239 bool edge_looping = false;
1241 if (dump_file && (dump_flags & TDF_DETAILS))
1242 fprintf (dump_file, " Indirect call");
1243 state_from_flags (&edge_state, &edge_looping,
1244 ie->indirect_info->ecf_flags,
1245 cgraph_edge_cannot_lead_to_return (ie));
1246 /* Merge the results with what we already know. */
1247 better_state (&edge_state, &edge_looping,
1248 w_l->state_previously_known,
1249 w_l->looping_previously_known);
1250 worse_state (&pure_const_state, &looping,
1251 edge_state, edge_looping);
1252 if (pure_const_state == IPA_NEITHER)
1253 break;
1255 if (pure_const_state == IPA_NEITHER)
1256 break;
1258 /* And finally all loads and stores. */
1259 for (i = 0; ipa_ref_list_reference_iterate (&w->symbol.ref_list, i, ref); i++)
1261 enum pure_const_state_e ref_state = IPA_CONST;
1262 bool ref_looping = false;
1263 switch (ref->use)
1265 case IPA_REF_LOAD:
1266 /* readonly reads are safe. */
1267 if (TREE_READONLY (ipa_ref_varpool_node (ref)->symbol.decl))
1268 break;
1269 if (dump_file && (dump_flags & TDF_DETAILS))
1270 fprintf (dump_file, " nonreadonly global var read\n");
1271 ref_state = IPA_PURE;
1272 break;
1273 case IPA_REF_STORE:
1274 if (ipa_ref_cannot_lead_to_return (ref))
1275 break;
1276 ref_state = IPA_NEITHER;
1277 if (dump_file && (dump_flags & TDF_DETAILS))
1278 fprintf (dump_file, " global var write\n");
1279 break;
1280 case IPA_REF_ADDR:
1281 break;
1283 better_state (&ref_state, &ref_looping,
1284 w_l->state_previously_known,
1285 w_l->looping_previously_known);
1286 worse_state (&pure_const_state, &looping,
1287 ref_state, ref_looping);
1288 if (pure_const_state == IPA_NEITHER)
1289 break;
1291 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1292 w = w_info->next_cycle;
1294 if (dump_file && (dump_flags & TDF_DETAILS))
1295 fprintf (dump_file, "Result %s looping %i\n",
1296 pure_const_names [pure_const_state],
1297 looping);
1299 /* Copy back the region's pure_const_state which is shared by
1300 all nodes in the region. */
1301 w = node;
1302 while (w)
1304 funct_state w_l = get_function_state (w);
1305 enum pure_const_state_e this_state = pure_const_state;
1306 bool this_looping = looping;
1308 if (w_l->state_previously_known != IPA_NEITHER
1309 && this_state > w_l->state_previously_known)
1311 this_state = w_l->state_previously_known;
1312 this_looping |= w_l->looping_previously_known;
1314 if (!this_looping && self_recursive_p (w))
1315 this_looping = true;
1316 if (!w_l->looping_previously_known)
1317 this_looping = false;
1319 /* All nodes within a cycle share the same info. */
1320 w_l->pure_const_state = this_state;
1321 w_l->looping = this_looping;
1323 switch (this_state)
1325 case IPA_CONST:
1326 if (!TREE_READONLY (w->symbol.decl))
1328 warn_function_const (w->symbol.decl, !this_looping);
1329 if (dump_file)
1330 fprintf (dump_file, "Function found to be %sconst: %s\n",
1331 this_looping ? "looping " : "",
1332 cgraph_node_name (w));
1334 cgraph_set_const_flag (w, true, this_looping);
1335 break;
1337 case IPA_PURE:
1338 if (!DECL_PURE_P (w->symbol.decl))
1340 warn_function_pure (w->symbol.decl, !this_looping);
1341 if (dump_file)
1342 fprintf (dump_file, "Function found to be %spure: %s\n",
1343 this_looping ? "looping " : "",
1344 cgraph_node_name (w));
1346 cgraph_set_pure_flag (w, true, this_looping);
1347 break;
1349 default:
1350 break;
1352 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1353 w = w_info->next_cycle;
1357 ipa_free_postorder_info ();
1358 free (order);
1361 /* Produce transitive closure over the callgraph and compute nothrow
1362 attributes. */
1364 static void
1365 propagate_nothrow (void)
1367 struct cgraph_node *node;
1368 struct cgraph_node *w;
1369 struct cgraph_node **order =
1370 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1371 int order_pos;
1372 int i;
1373 struct ipa_dfs_info * w_info;
1375 order_pos = ipa_reduced_postorder (order, true, false, ignore_edge);
1376 if (dump_file)
1378 dump_cgraph (dump_file);
1379 ipa_print_order (dump_file, "reduced for nothrow", order, order_pos);
1382 /* Propagate the local information through the call graph to produce
1383 the global information. All the nodes within a cycle will have
1384 the same info so we collapse cycles first. Then we can do the
1385 propagation in one pass from the leaves to the roots. */
1386 for (i = 0; i < order_pos; i++ )
1388 bool can_throw = false;
1389 node = order[i];
1391 if (node->alias)
1392 continue;
1394 /* Find the worst state for any node in the cycle. */
1395 w = node;
1396 while (w)
1398 struct cgraph_edge *e, *ie;
1399 funct_state w_l = get_function_state (w);
1401 if (w_l->can_throw
1402 || cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1403 can_throw = true;
1405 if (can_throw)
1406 break;
1408 for (e = w->callees; e; e = e->next_callee)
1410 enum availability avail;
1411 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1413 if (avail > AVAIL_OVERWRITABLE)
1415 funct_state y_l = get_function_state (y);
1417 if (can_throw)
1418 break;
1419 if (y_l->can_throw && !TREE_NOTHROW (w->symbol.decl)
1420 && e->can_throw_external)
1421 can_throw = true;
1423 else if (e->can_throw_external && !TREE_NOTHROW (y->symbol.decl))
1424 can_throw = true;
1426 for (ie = node->indirect_calls; ie; ie = ie->next_callee)
1427 if (ie->can_throw_external)
1428 can_throw = true;
1429 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1430 w = w_info->next_cycle;
1433 /* Copy back the region's pure_const_state which is shared by
1434 all nodes in the region. */
1435 w = node;
1436 while (w)
1438 funct_state w_l = get_function_state (w);
1439 if (!can_throw && !TREE_NOTHROW (w->symbol.decl))
1441 cgraph_set_nothrow_flag (w, true);
1442 if (dump_file)
1443 fprintf (dump_file, "Function found to be nothrow: %s\n",
1444 cgraph_node_name (w));
1446 else if (can_throw && !TREE_NOTHROW (w->symbol.decl))
1447 w_l->can_throw = true;
1448 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1449 w = w_info->next_cycle;
1453 ipa_free_postorder_info ();
1454 free (order);
1458 /* Produce the global information by preforming a transitive closure
1459 on the local information that was produced by generate_summary. */
1461 static unsigned int
1462 propagate (void)
1464 struct cgraph_node *node;
1466 cgraph_remove_function_insertion_hook (function_insertion_hook_holder);
1467 cgraph_remove_node_duplication_hook (node_duplication_hook_holder);
1468 cgraph_remove_node_removal_hook (node_removal_hook_holder);
1470 /* Nothrow makes more function to not lead to return and improve
1471 later analysis. */
1472 propagate_nothrow ();
1473 propagate_pure_const ();
1475 /* Cleanup. */
1476 FOR_EACH_DEFINED_FUNCTION (node)
1477 if (has_function_state (node))
1478 free (get_function_state (node));
1479 VEC_free (funct_state, heap, funct_state_vec);
1480 finish_state ();
1481 return 0;
1484 static bool
1485 gate_pure_const (void)
1487 return (flag_ipa_pure_const
1488 /* Don't bother doing anything if the program has errors. */
1489 && !seen_error ());
1492 struct ipa_opt_pass_d pass_ipa_pure_const =
1495 IPA_PASS,
1496 "pure-const", /* name */
1497 gate_pure_const, /* gate */
1498 propagate, /* execute */
1499 NULL, /* sub */
1500 NULL, /* next */
1501 0, /* static_pass_number */
1502 TV_IPA_PURE_CONST, /* tv_id */
1503 0, /* properties_required */
1504 0, /* properties_provided */
1505 0, /* properties_destroyed */
1506 0, /* todo_flags_start */
1507 0 /* todo_flags_finish */
1509 generate_summary, /* generate_summary */
1510 pure_const_write_summary, /* write_summary */
1511 pure_const_read_summary, /* read_summary */
1512 NULL, /* write_optimization_summary */
1513 NULL, /* read_optimization_summary */
1514 NULL, /* stmt_fixup */
1515 0, /* TODOs */
1516 NULL, /* function_transform */
1517 NULL /* variable_transform */
1520 /* Return true if function should be skipped for local pure const analysis. */
1522 static bool
1523 skip_function_for_local_pure_const (struct cgraph_node *node)
1525 /* Because we do not schedule pass_fixup_cfg over whole program after early optimizations
1526 we must not promote functions that are called by already processed functions. */
1528 if (function_called_by_processed_nodes_p ())
1530 if (dump_file)
1531 fprintf (dump_file, "Function called in recursive cycle; ignoring\n");
1532 return true;
1534 if (cgraph_function_body_availability (node) <= AVAIL_OVERWRITABLE)
1536 if (dump_file)
1537 fprintf (dump_file, "Function is not available or overwritable; not analyzing.\n");
1538 return true;
1540 return false;
1543 /* Simple local pass for pure const discovery reusing the analysis from
1544 ipa_pure_const. This pass is effective when executed together with
1545 other optimization passes in early optimization pass queue. */
1547 static unsigned int
1548 local_pure_const (void)
1550 bool changed = false;
1551 funct_state l;
1552 bool skip;
1553 struct cgraph_node *node;
1555 node = cgraph_get_node (current_function_decl);
1556 skip = skip_function_for_local_pure_const (node);
1557 if (!warn_suggest_attribute_const
1558 && !warn_suggest_attribute_pure
1559 && skip)
1560 return 0;
1562 l = analyze_function (node, false);
1564 /* Do NORETURN discovery. */
1565 if (!skip && !TREE_THIS_VOLATILE (current_function_decl)
1566 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0)
1568 warn_function_noreturn (cfun->decl);
1569 if (dump_file)
1570 fprintf (dump_file, "Function found to be noreturn: %s\n",
1571 lang_hooks.decl_printable_name (current_function_decl, 2));
1573 /* Update declaration and reduce profile to executed once. */
1574 TREE_THIS_VOLATILE (current_function_decl) = 1;
1575 if (node->frequency > NODE_FREQUENCY_EXECUTED_ONCE)
1576 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
1578 changed = true;
1581 switch (l->pure_const_state)
1583 case IPA_CONST:
1584 if (!TREE_READONLY (current_function_decl))
1586 warn_function_const (current_function_decl, !l->looping);
1587 if (!skip)
1589 cgraph_set_const_flag (node, true, l->looping);
1590 changed = true;
1592 if (dump_file)
1593 fprintf (dump_file, "Function found to be %sconst: %s\n",
1594 l->looping ? "looping " : "",
1595 lang_hooks.decl_printable_name (current_function_decl,
1596 2));
1598 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1599 && !l->looping)
1601 if (!skip)
1603 cgraph_set_const_flag (node, true, false);
1604 changed = true;
1606 if (dump_file)
1607 fprintf (dump_file, "Function found to be non-looping: %s\n",
1608 lang_hooks.decl_printable_name (current_function_decl,
1609 2));
1611 break;
1613 case IPA_PURE:
1614 if (!DECL_PURE_P (current_function_decl))
1616 if (!skip)
1618 cgraph_set_pure_flag (node, true, l->looping);
1619 changed = true;
1621 warn_function_pure (current_function_decl, !l->looping);
1622 if (dump_file)
1623 fprintf (dump_file, "Function found to be %spure: %s\n",
1624 l->looping ? "looping " : "",
1625 lang_hooks.decl_printable_name (current_function_decl,
1626 2));
1628 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1629 && !l->looping)
1631 if (!skip)
1633 cgraph_set_pure_flag (node, true, false);
1634 changed = true;
1636 if (dump_file)
1637 fprintf (dump_file, "Function found to be non-looping: %s\n",
1638 lang_hooks.decl_printable_name (current_function_decl,
1639 2));
1641 break;
1643 default:
1644 break;
1646 if (!l->can_throw && !TREE_NOTHROW (current_function_decl))
1648 cgraph_set_nothrow_flag (node, true);
1649 changed = true;
1650 if (dump_file)
1651 fprintf (dump_file, "Function found to be nothrow: %s\n",
1652 lang_hooks.decl_printable_name (current_function_decl,
1653 2));
1655 free (l);
1656 if (changed)
1657 return execute_fixup_cfg ();
1658 else
1659 return 0;
1662 struct gimple_opt_pass pass_local_pure_const =
1665 GIMPLE_PASS,
1666 "local-pure-const", /* name */
1667 gate_pure_const, /* gate */
1668 local_pure_const, /* execute */
1669 NULL, /* sub */
1670 NULL, /* next */
1671 0, /* static_pass_number */
1672 TV_IPA_PURE_CONST, /* tv_id */
1673 0, /* properties_required */
1674 0, /* properties_provided */
1675 0, /* properties_destroyed */
1676 0, /* todo_flags_start */
1677 0 /* todo_flags_finish */