20090811-1.c: Skip for incompatible options, do not override other options.
[official-gcc.git] / gcc / ipa-pure-const.c
blobb56e48ad6f053c0b5e08eb5734285dda05423097
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 "output.h"
50 #include "flags.h"
51 #include "timevar.h"
52 #include "diagnostic.h"
53 #include "gimple-pretty-print.h"
54 #include "langhooks.h"
55 #include "target.h"
56 #include "lto-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_STACK_SAVE:
439 case BUILT_IN_STACK_RESTORE:
440 case BUILT_IN_EH_POINTER:
441 case BUILT_IN_EH_FILTER:
442 case BUILT_IN_UNWIND_RESUME:
443 case BUILT_IN_CXA_END_CLEANUP:
444 case BUILT_IN_EH_COPY_VALUES:
445 case BUILT_IN_FRAME_ADDRESS:
446 case BUILT_IN_APPLY:
447 case BUILT_IN_APPLY_ARGS:
448 *looping = false;
449 *state = IPA_CONST;
450 return true;
451 case BUILT_IN_PREFETCH:
452 *looping = true;
453 *state = IPA_CONST;
454 return true;
456 return false;
459 /* Check the parameters of a function call to CALL_EXPR to see if
460 there are any references in the parameters that are not allowed for
461 pure or const functions. Also check to see if this is either an
462 indirect call, a call outside the compilation unit, or has special
463 attributes that may also effect the purity. The CALL_EXPR node for
464 the entire call expression. */
466 static void
467 check_call (funct_state local, gimple call, bool ipa)
469 int flags = gimple_call_flags (call);
470 tree callee_t = gimple_call_fndecl (call);
471 bool possibly_throws = stmt_could_throw_p (call);
472 bool possibly_throws_externally = (possibly_throws
473 && stmt_can_throw_external (call));
475 if (possibly_throws)
477 unsigned int i;
478 for (i = 0; i < gimple_num_ops (call); i++)
479 if (gimple_op (call, i)
480 && tree_could_throw_p (gimple_op (call, i)))
482 if (possibly_throws && cfun->can_throw_non_call_exceptions)
484 if (dump_file)
485 fprintf (dump_file, " operand can throw; looping\n");
486 local->looping = true;
488 if (possibly_throws_externally)
490 if (dump_file)
491 fprintf (dump_file, " operand can throw externally\n");
492 local->can_throw = true;
497 /* The const and pure flags are set by a variety of places in the
498 compiler (including here). If someone has already set the flags
499 for the callee, (such as for some of the builtins) we will use
500 them, otherwise we will compute our own information.
502 Const and pure functions have less clobber effects than other
503 functions so we process these first. Otherwise if it is a call
504 outside the compilation unit or an indirect call we punt. This
505 leaves local calls which will be processed by following the call
506 graph. */
507 if (callee_t)
509 enum pure_const_state_e call_state;
510 bool call_looping;
512 if (special_builtin_state (&call_state, &call_looping, callee_t))
514 worse_state (&local->pure_const_state, &local->looping,
515 call_state, call_looping);
516 return;
518 /* When bad things happen to bad functions, they cannot be const
519 or pure. */
520 if (setjmp_call_p (callee_t))
522 if (dump_file)
523 fprintf (dump_file, " setjmp is not const/pure\n");
524 local->looping = true;
525 local->pure_const_state = IPA_NEITHER;
528 if (DECL_BUILT_IN_CLASS (callee_t) == BUILT_IN_NORMAL)
529 switch (DECL_FUNCTION_CODE (callee_t))
531 case BUILT_IN_LONGJMP:
532 case BUILT_IN_NONLOCAL_GOTO:
533 if (dump_file)
534 fprintf (dump_file, " longjmp and nonlocal goto is not const/pure\n");
535 local->pure_const_state = IPA_NEITHER;
536 local->looping = true;
537 break;
538 default:
539 break;
543 /* When not in IPA mode, we can still handle self recursion. */
544 if (!ipa && callee_t == current_function_decl)
546 if (dump_file)
547 fprintf (dump_file, " Recursive call can loop.\n");
548 local->looping = true;
550 /* Either callee is unknown or we are doing local analysis.
551 Look to see if there are any bits available for the callee (such as by
552 declaration or because it is builtin) and process solely on the basis of
553 those bits. */
554 else if (!ipa)
556 enum pure_const_state_e call_state;
557 bool call_looping;
558 if (possibly_throws && cfun->can_throw_non_call_exceptions)
560 if (dump_file)
561 fprintf (dump_file, " can throw; looping\n");
562 local->looping = true;
564 if (possibly_throws_externally)
566 if (dump_file)
568 fprintf (dump_file, " can throw externally to lp %i\n",
569 lookup_stmt_eh_lp (call));
570 if (callee_t)
571 fprintf (dump_file, " callee:%s\n",
572 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (callee_t)));
574 local->can_throw = true;
576 if (dump_file && (dump_flags & TDF_DETAILS))
577 fprintf (dump_file, " checking flags for call:");
578 state_from_flags (&call_state, &call_looping, flags,
579 ((flags & (ECF_NORETURN | ECF_NOTHROW))
580 == (ECF_NORETURN | ECF_NOTHROW))
581 || (!flag_exceptions && (flags & ECF_NORETURN)));
582 worse_state (&local->pure_const_state, &local->looping,
583 call_state, call_looping);
585 /* Direct functions calls are handled by IPA propagation. */
588 /* Wrapper around check_decl for loads in local more. */
590 static bool
591 check_load (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
593 if (DECL_P (op))
594 check_decl ((funct_state)data, op, false, false);
595 else
596 check_op ((funct_state)data, op, false);
597 return false;
600 /* Wrapper around check_decl for stores in local more. */
602 static bool
603 check_store (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
605 if (DECL_P (op))
606 check_decl ((funct_state)data, op, true, false);
607 else
608 check_op ((funct_state)data, op, true);
609 return false;
612 /* Wrapper around check_decl for loads in ipa mode. */
614 static bool
615 check_ipa_load (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
617 if (DECL_P (op))
618 check_decl ((funct_state)data, op, false, true);
619 else
620 check_op ((funct_state)data, op, false);
621 return false;
624 /* Wrapper around check_decl for stores in ipa mode. */
626 static bool
627 check_ipa_store (gimple stmt ATTRIBUTE_UNUSED, tree op, void *data)
629 if (DECL_P (op))
630 check_decl ((funct_state)data, op, true, true);
631 else
632 check_op ((funct_state)data, op, true);
633 return false;
636 /* Look into pointer pointed to by GSIP and figure out what interesting side
637 effects it has. */
638 static void
639 check_stmt (gimple_stmt_iterator *gsip, funct_state local, bool ipa)
641 gimple stmt = gsi_stmt (*gsip);
643 if (is_gimple_debug (stmt))
644 return;
646 if (dump_file)
648 fprintf (dump_file, " scanning: ");
649 print_gimple_stmt (dump_file, stmt, 0, 0);
652 if (gimple_has_volatile_ops (stmt))
654 local->pure_const_state = IPA_NEITHER;
655 if (dump_file)
656 fprintf (dump_file, " Volatile stmt is not const/pure\n");
659 /* Look for loads and stores. */
660 walk_stmt_load_store_ops (stmt, local,
661 ipa ? check_ipa_load : check_load,
662 ipa ? check_ipa_store : check_store);
664 if (gimple_code (stmt) != GIMPLE_CALL
665 && stmt_could_throw_p (stmt))
667 if (cfun->can_throw_non_call_exceptions)
669 if (dump_file)
670 fprintf (dump_file, " can throw; looping");
671 local->looping = true;
673 if (stmt_can_throw_external (stmt))
675 if (dump_file)
676 fprintf (dump_file, " can throw externally");
677 local->can_throw = true;
680 switch (gimple_code (stmt))
682 case GIMPLE_CALL:
683 check_call (local, stmt, ipa);
684 break;
685 case GIMPLE_LABEL:
686 if (DECL_NONLOCAL (gimple_label_label (stmt)))
687 /* Target of long jump. */
689 if (dump_file)
690 fprintf (dump_file, " nonlocal label is not const/pure");
691 local->pure_const_state = IPA_NEITHER;
693 break;
694 case GIMPLE_ASM:
695 if (gimple_asm_clobbers_memory_p (stmt))
697 if (dump_file)
698 fprintf (dump_file, " memory asm clobber is not const/pure");
699 /* Abandon all hope, ye who enter here. */
700 local->pure_const_state = IPA_NEITHER;
702 if (gimple_asm_volatile_p (stmt))
704 if (dump_file)
705 fprintf (dump_file, " volatile is not const/pure");
706 /* Abandon all hope, ye who enter here. */
707 local->pure_const_state = IPA_NEITHER;
708 local->looping = true;
710 return;
711 default:
712 break;
717 /* This is the main routine for finding the reference patterns for
718 global variables within a function FN. */
720 static funct_state
721 analyze_function (struct cgraph_node *fn, bool ipa)
723 tree decl = fn->decl;
724 tree old_decl = current_function_decl;
725 funct_state l;
726 basic_block this_block;
728 l = XCNEW (struct funct_state_d);
729 l->pure_const_state = IPA_CONST;
730 l->state_previously_known = IPA_NEITHER;
731 l->looping_previously_known = true;
732 l->looping = false;
733 l->can_throw = false;
734 state_from_flags (&l->state_previously_known, &l->looping_previously_known,
735 flags_from_decl_or_type (fn->decl),
736 cgraph_node_cannot_return (fn));
738 if (fn->thunk.thunk_p || fn->alias)
740 /* Thunk gets propagated through, so nothing interesting happens. */
741 gcc_assert (ipa);
742 return l;
745 if (dump_file)
747 fprintf (dump_file, "\n\n local analysis of %s\n ",
748 cgraph_node_name (fn));
751 push_cfun (DECL_STRUCT_FUNCTION (decl));
752 current_function_decl = decl;
754 FOR_EACH_BB (this_block)
756 gimple_stmt_iterator gsi;
757 struct walk_stmt_info wi;
759 memset (&wi, 0, sizeof(wi));
760 for (gsi = gsi_start_bb (this_block);
761 !gsi_end_p (gsi);
762 gsi_next (&gsi))
764 check_stmt (&gsi, l, ipa);
765 if (l->pure_const_state == IPA_NEITHER && l->looping && l->can_throw)
766 goto end;
770 end:
771 if (l->pure_const_state != IPA_NEITHER)
773 /* Const functions cannot have back edges (an
774 indication of possible infinite loop side
775 effect. */
776 if (mark_dfs_back_edges ())
778 /* Preheaders are needed for SCEV to work.
779 Simple latches and recorded exits improve chances that loop will
780 proved to be finite in testcases such as in loop-15.c and loop-24.c */
781 loop_optimizer_init (LOOPS_NORMAL
782 | LOOPS_HAVE_RECORDED_EXITS);
783 if (dump_file && (dump_flags & TDF_DETAILS))
784 flow_loops_dump (dump_file, NULL, 0);
785 if (mark_irreducible_loops ())
787 if (dump_file)
788 fprintf (dump_file, " has irreducible loops\n");
789 l->looping = true;
791 else
793 loop_iterator li;
794 struct loop *loop;
795 scev_initialize ();
796 FOR_EACH_LOOP (li, loop, 0)
797 if (!finite_loop_p (loop))
799 if (dump_file)
800 fprintf (dump_file, " can not prove finiteness of loop %i\n", loop->num);
801 l->looping =true;
802 break;
804 scev_finalize ();
806 loop_optimizer_finalize ();
810 if (dump_file && (dump_flags & TDF_DETAILS))
811 fprintf (dump_file, " checking previously known:");
813 better_state (&l->pure_const_state, &l->looping,
814 l->state_previously_known,
815 l->looping_previously_known);
816 if (TREE_NOTHROW (decl))
817 l->can_throw = false;
819 pop_cfun ();
820 current_function_decl = old_decl;
821 if (dump_file)
823 if (l->looping)
824 fprintf (dump_file, "Function is locally looping.\n");
825 if (l->can_throw)
826 fprintf (dump_file, "Function is locally throwing.\n");
827 if (l->pure_const_state == IPA_CONST)
828 fprintf (dump_file, "Function is locally const.\n");
829 if (l->pure_const_state == IPA_PURE)
830 fprintf (dump_file, "Function is locally pure.\n");
832 return l;
835 /* Called when new function is inserted to callgraph late. */
836 static void
837 add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
839 if (cgraph_function_body_availability (node) < AVAIL_OVERWRITABLE)
840 return;
841 /* There are some shared nodes, in particular the initializers on
842 static declarations. We do not need to scan them more than once
843 since all we would be interested in are the addressof
844 operations. */
845 visited_nodes = pointer_set_create ();
846 if (cgraph_function_body_availability (node) > AVAIL_OVERWRITABLE)
847 set_function_state (node, analyze_function (node, true));
848 pointer_set_destroy (visited_nodes);
849 visited_nodes = NULL;
852 /* Called when new clone is inserted to callgraph late. */
854 static void
855 duplicate_node_data (struct cgraph_node *src, struct cgraph_node *dst,
856 void *data ATTRIBUTE_UNUSED)
858 if (has_function_state (src))
860 funct_state l = XNEW (struct funct_state_d);
861 gcc_assert (!has_function_state (dst));
862 memcpy (l, get_function_state (src), sizeof (*l));
863 set_function_state (dst, l);
867 /* Called when new clone is inserted to callgraph late. */
869 static void
870 remove_node_data (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
872 if (has_function_state (node))
874 funct_state l = get_function_state (node);
875 if (l != &varying_state)
876 free (l);
877 set_function_state (node, NULL);
882 static void
883 register_hooks (void)
885 static bool init_p = false;
887 if (init_p)
888 return;
890 init_p = true;
892 node_removal_hook_holder =
893 cgraph_add_node_removal_hook (&remove_node_data, NULL);
894 node_duplication_hook_holder =
895 cgraph_add_node_duplication_hook (&duplicate_node_data, NULL);
896 function_insertion_hook_holder =
897 cgraph_add_function_insertion_hook (&add_new_function, NULL);
901 /* Analyze each function in the cgraph to see if it is locally PURE or
902 CONST. */
904 static void
905 generate_summary (void)
907 struct cgraph_node *node;
909 register_hooks ();
911 /* There are some shared nodes, in particular the initializers on
912 static declarations. We do not need to scan them more than once
913 since all we would be interested in are the addressof
914 operations. */
915 visited_nodes = pointer_set_create ();
917 /* Process all of the functions.
919 We process AVAIL_OVERWRITABLE functions. We can not use the results
920 by default, but the info can be used at LTO with -fwhole-program or
921 when function got cloned and the clone is AVAILABLE. */
923 for (node = cgraph_nodes; node; node = node->next)
924 if (cgraph_function_body_availability (node) >= AVAIL_OVERWRITABLE)
925 set_function_state (node, analyze_function (node, true));
927 pointer_set_destroy (visited_nodes);
928 visited_nodes = NULL;
932 /* Serialize the ipa info for lto. */
934 static void
935 pure_const_write_summary (cgraph_node_set set,
936 varpool_node_set vset ATTRIBUTE_UNUSED)
938 struct cgraph_node *node;
939 struct lto_simple_output_block *ob
940 = lto_create_simple_output_block (LTO_section_ipa_pure_const);
941 unsigned int count = 0;
942 cgraph_node_set_iterator csi;
944 for (csi = csi_start (set); !csi_end_p (csi); csi_next (&csi))
946 node = csi_node (csi);
947 if (node->analyzed && has_function_state (node))
948 count++;
951 lto_output_uleb128_stream (ob->main_stream, count);
953 /* Process all of the functions. */
954 for (csi = csi_start (set); !csi_end_p (csi); csi_next (&csi))
956 node = csi_node (csi);
957 if (node->analyzed && has_function_state (node))
959 struct bitpack_d bp;
960 funct_state fs;
961 int node_ref;
962 lto_cgraph_encoder_t encoder;
964 fs = get_function_state (node);
966 encoder = ob->decl_state->cgraph_node_encoder;
967 node_ref = lto_cgraph_encoder_encode (encoder, node);
968 lto_output_uleb128_stream (ob->main_stream, node_ref);
970 /* Note that flags will need to be read in the opposite
971 order as we are pushing the bitflags into FLAGS. */
972 bp = bitpack_create (ob->main_stream);
973 bp_pack_value (&bp, fs->pure_const_state, 2);
974 bp_pack_value (&bp, fs->state_previously_known, 2);
975 bp_pack_value (&bp, fs->looping_previously_known, 1);
976 bp_pack_value (&bp, fs->looping, 1);
977 bp_pack_value (&bp, fs->can_throw, 1);
978 lto_output_bitpack (&bp);
982 lto_destroy_simple_output_block (ob);
986 /* Deserialize the ipa info for lto. */
988 static void
989 pure_const_read_summary (void)
991 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
992 struct lto_file_decl_data *file_data;
993 unsigned int j = 0;
995 register_hooks ();
996 while ((file_data = file_data_vec[j++]))
998 const char *data;
999 size_t len;
1000 struct lto_input_block *ib
1001 = lto_create_simple_input_block (file_data,
1002 LTO_section_ipa_pure_const,
1003 &data, &len);
1004 if (ib)
1006 unsigned int i;
1007 unsigned int count = lto_input_uleb128 (ib);
1009 for (i = 0; i < count; i++)
1011 unsigned int index;
1012 struct cgraph_node *node;
1013 struct bitpack_d bp;
1014 funct_state fs;
1015 lto_cgraph_encoder_t encoder;
1017 fs = XCNEW (struct funct_state_d);
1018 index = lto_input_uleb128 (ib);
1019 encoder = file_data->cgraph_node_encoder;
1020 node = lto_cgraph_encoder_deref (encoder, index);
1021 set_function_state (node, fs);
1023 /* Note that the flags must be read in the opposite
1024 order in which they were written (the bitflags were
1025 pushed into FLAGS). */
1026 bp = lto_input_bitpack (ib);
1027 fs->pure_const_state
1028 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1029 fs->state_previously_known
1030 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1031 fs->looping_previously_known = bp_unpack_value (&bp, 1);
1032 fs->looping = bp_unpack_value (&bp, 1);
1033 fs->can_throw = bp_unpack_value (&bp, 1);
1034 if (dump_file)
1036 int flags = flags_from_decl_or_type (node->decl);
1037 fprintf (dump_file, "Read info for %s/%i ",
1038 cgraph_node_name (node),
1039 node->uid);
1040 if (flags & ECF_CONST)
1041 fprintf (dump_file, " const");
1042 if (flags & ECF_PURE)
1043 fprintf (dump_file, " pure");
1044 if (flags & ECF_NOTHROW)
1045 fprintf (dump_file, " nothrow");
1046 fprintf (dump_file, "\n pure const state: %s\n",
1047 pure_const_names[fs->pure_const_state]);
1048 fprintf (dump_file, " previously known state: %s\n",
1049 pure_const_names[fs->looping_previously_known]);
1050 if (fs->looping)
1051 fprintf (dump_file," function is locally looping\n");
1052 if (fs->looping_previously_known)
1053 fprintf (dump_file," function is previously known looping\n");
1054 if (fs->can_throw)
1055 fprintf (dump_file," function is locally throwing\n");
1059 lto_destroy_simple_input_block (file_data,
1060 LTO_section_ipa_pure_const,
1061 ib, data, len);
1067 static bool
1068 ignore_edge (struct cgraph_edge *e)
1070 return (!e->can_throw_external);
1073 /* Return true if NODE is self recursive function.
1074 ??? self recursive and indirectly recursive funcions should
1075 be the same, so this function seems unnecesary. */
1077 static bool
1078 self_recursive_p (struct cgraph_node *node)
1080 struct cgraph_edge *e;
1081 for (e = node->callees; e; e = e->next_callee)
1082 if (cgraph_function_node (e->callee, NULL) == node)
1083 return true;
1084 return false;
1087 /* Produce transitive closure over the callgraph and compute pure/const
1088 attributes. */
1090 static void
1091 propagate_pure_const (void)
1093 struct cgraph_node *node;
1094 struct cgraph_node *w;
1095 struct cgraph_node **order =
1096 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1097 int order_pos;
1098 int i;
1099 struct ipa_dfs_info * w_info;
1101 order_pos = ipa_reduced_postorder (order, true, false, NULL);
1102 if (dump_file)
1104 dump_cgraph (dump_file);
1105 ipa_print_order(dump_file, "reduced", order, order_pos);
1108 /* Propagate the local information thru the call graph to produce
1109 the global information. All the nodes within a cycle will have
1110 the same info so we collapse cycles first. Then we can do the
1111 propagation in one pass from the leaves to the roots. */
1112 for (i = 0; i < order_pos; i++ )
1114 enum pure_const_state_e pure_const_state = IPA_CONST;
1115 bool looping = false;
1116 int count = 0;
1117 node = order[i];
1119 if (dump_file && (dump_flags & TDF_DETAILS))
1120 fprintf (dump_file, "Starting cycle\n");
1122 /* Find the worst state for any node in the cycle. */
1123 w = node;
1124 while (w && pure_const_state != IPA_NEITHER)
1126 struct cgraph_edge *e;
1127 struct cgraph_edge *ie;
1128 int i;
1129 struct ipa_ref *ref;
1131 funct_state w_l = get_function_state (w);
1132 if (dump_file && (dump_flags & TDF_DETAILS))
1133 fprintf (dump_file, " Visiting %s/%i state:%s looping %i\n",
1134 cgraph_node_name (w),
1135 w->uid,
1136 pure_const_names[w_l->pure_const_state],
1137 w_l->looping);
1139 /* First merge in function body properties. */
1140 worse_state (&pure_const_state, &looping,
1141 w_l->pure_const_state, w_l->looping);
1142 if (pure_const_state == IPA_NEITHER)
1143 break;
1145 /* For overwritable nodes we can not assume anything. */
1146 if (cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1148 worse_state (&pure_const_state, &looping,
1149 w_l->state_previously_known,
1150 w_l->looping_previously_known);
1151 if (dump_file && (dump_flags & TDF_DETAILS))
1153 fprintf (dump_file,
1154 " Overwritable. state %s looping %i\n",
1155 pure_const_names[w_l->state_previously_known],
1156 w_l->looping_previously_known);
1158 break;
1161 count++;
1163 /* We consider recursive cycles as possibly infinite.
1164 This might be relaxed since infinite recursion leads to stack
1165 overflow. */
1166 if (count > 1)
1167 looping = true;
1169 /* Now walk the edges and merge in callee properties. */
1170 for (e = w->callees; e; e = e->next_callee)
1172 enum availability avail;
1173 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1174 enum pure_const_state_e edge_state = IPA_CONST;
1175 bool edge_looping = false;
1177 if (dump_file && (dump_flags & TDF_DETAILS))
1179 fprintf (dump_file,
1180 " Call to %s/%i",
1181 cgraph_node_name (e->callee),
1182 e->callee->uid);
1184 if (avail > AVAIL_OVERWRITABLE)
1186 funct_state y_l = get_function_state (y);
1187 if (dump_file && (dump_flags & TDF_DETAILS))
1189 fprintf (dump_file,
1190 " state:%s looping:%i\n",
1191 pure_const_names[y_l->pure_const_state],
1192 y_l->looping);
1194 if (y_l->pure_const_state > IPA_PURE
1195 && cgraph_edge_cannot_lead_to_return (e))
1197 if (dump_file && (dump_flags & TDF_DETAILS))
1198 fprintf (dump_file,
1199 " Ignoring side effects"
1200 " -> pure, looping\n");
1201 edge_state = IPA_PURE;
1202 edge_looping = true;
1204 else
1206 edge_state = y_l->pure_const_state;
1207 edge_looping = y_l->looping;
1210 else if (special_builtin_state (&edge_state, &edge_looping,
1211 y->decl))
1213 else
1214 state_from_flags (&edge_state, &edge_looping,
1215 flags_from_decl_or_type (y->decl),
1216 cgraph_edge_cannot_lead_to_return (e));
1218 /* Merge the results with what we already know. */
1219 better_state (&edge_state, &edge_looping,
1220 w_l->state_previously_known,
1221 w_l->looping_previously_known);
1222 worse_state (&pure_const_state, &looping,
1223 edge_state, edge_looping);
1224 if (pure_const_state == IPA_NEITHER)
1225 break;
1227 if (pure_const_state == IPA_NEITHER)
1228 break;
1230 /* Now process the indirect call. */
1231 for (ie = w->indirect_calls; ie; ie = ie->next_callee)
1233 enum pure_const_state_e edge_state = IPA_CONST;
1234 bool edge_looping = false;
1236 if (dump_file && (dump_flags & TDF_DETAILS))
1237 fprintf (dump_file, " Indirect call");
1238 state_from_flags (&edge_state, &edge_looping,
1239 ie->indirect_info->ecf_flags,
1240 cgraph_edge_cannot_lead_to_return (ie));
1241 /* Merge the results with what we already know. */
1242 better_state (&edge_state, &edge_looping,
1243 w_l->state_previously_known,
1244 w_l->looping_previously_known);
1245 worse_state (&pure_const_state, &looping,
1246 edge_state, edge_looping);
1247 if (pure_const_state == IPA_NEITHER)
1248 break;
1250 if (pure_const_state == IPA_NEITHER)
1251 break;
1253 /* And finally all loads and stores. */
1254 for (i = 0; ipa_ref_list_reference_iterate (&w->ref_list, i, ref); i++)
1256 enum pure_const_state_e ref_state = IPA_CONST;
1257 bool ref_looping = false;
1258 switch (ref->use)
1260 case IPA_REF_LOAD:
1261 /* readonly reads are safe. */
1262 if (TREE_READONLY (ipa_ref_varpool_node (ref)->decl))
1263 break;
1264 if (dump_file && (dump_flags & TDF_DETAILS))
1265 fprintf (dump_file, " nonreadonly global var read\n");
1266 ref_state = IPA_PURE;
1267 break;
1268 case IPA_REF_STORE:
1269 if (ipa_ref_cannot_lead_to_return (ref))
1270 break;
1271 ref_state = IPA_NEITHER;
1272 if (dump_file && (dump_flags & TDF_DETAILS))
1273 fprintf (dump_file, " global var write\n");
1274 break;
1275 case IPA_REF_ADDR:
1276 break;
1278 better_state (&ref_state, &ref_looping,
1279 w_l->state_previously_known,
1280 w_l->looping_previously_known);
1281 worse_state (&pure_const_state, &looping,
1282 ref_state, ref_looping);
1283 if (pure_const_state == IPA_NEITHER)
1284 break;
1286 w_info = (struct ipa_dfs_info *) w->aux;
1287 w = w_info->next_cycle;
1289 if (dump_file && (dump_flags & TDF_DETAILS))
1290 fprintf (dump_file, "Result %s looping %i\n",
1291 pure_const_names [pure_const_state],
1292 looping);
1294 /* Copy back the region's pure_const_state which is shared by
1295 all nodes in the region. */
1296 w = node;
1297 while (w)
1299 funct_state w_l = get_function_state (w);
1300 enum pure_const_state_e this_state = pure_const_state;
1301 bool this_looping = looping;
1303 if (w_l->state_previously_known != IPA_NEITHER
1304 && this_state > w_l->state_previously_known)
1306 this_state = w_l->state_previously_known;
1307 this_looping |= w_l->looping_previously_known;
1309 if (!this_looping && self_recursive_p (w))
1310 this_looping = true;
1311 if (!w_l->looping_previously_known)
1312 this_looping = false;
1314 /* All nodes within a cycle share the same info. */
1315 w_l->pure_const_state = this_state;
1316 w_l->looping = this_looping;
1318 switch (this_state)
1320 case IPA_CONST:
1321 if (!TREE_READONLY (w->decl))
1323 warn_function_const (w->decl, !this_looping);
1324 if (dump_file)
1325 fprintf (dump_file, "Function found to be %sconst: %s\n",
1326 this_looping ? "looping " : "",
1327 cgraph_node_name (w));
1329 cgraph_set_const_flag (w, true, this_looping);
1330 break;
1332 case IPA_PURE:
1333 if (!DECL_PURE_P (w->decl))
1335 warn_function_pure (w->decl, !this_looping);
1336 if (dump_file)
1337 fprintf (dump_file, "Function found to be %spure: %s\n",
1338 this_looping ? "looping " : "",
1339 cgraph_node_name (w));
1341 cgraph_set_pure_flag (w, true, this_looping);
1342 break;
1344 default:
1345 break;
1347 w_info = (struct ipa_dfs_info *) w->aux;
1348 w = w_info->next_cycle;
1352 ipa_free_postorder_info ();
1353 free (order);
1356 /* Produce transitive closure over the callgraph and compute nothrow
1357 attributes. */
1359 static void
1360 propagate_nothrow (void)
1362 struct cgraph_node *node;
1363 struct cgraph_node *w;
1364 struct cgraph_node **order =
1365 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1366 int order_pos;
1367 int i;
1368 struct ipa_dfs_info * w_info;
1370 order_pos = ipa_reduced_postorder (order, true, false, ignore_edge);
1371 if (dump_file)
1373 dump_cgraph (dump_file);
1374 ipa_print_order (dump_file, "reduced for nothrow", order, order_pos);
1377 /* Propagate the local information thru the call graph to produce
1378 the global information. All the nodes within a cycle will have
1379 the same info so we collapse cycles first. Then we can do the
1380 propagation in one pass from the leaves to the roots. */
1381 for (i = 0; i < order_pos; i++ )
1383 bool can_throw = false;
1384 node = order[i];
1386 /* Find the worst state for any node in the cycle. */
1387 w = node;
1388 while (w)
1390 struct cgraph_edge *e, *ie;
1391 funct_state w_l = get_function_state (w);
1393 if (w_l->can_throw
1394 || cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1395 can_throw = true;
1397 if (can_throw)
1398 break;
1400 for (e = w->callees; e; e = e->next_callee)
1402 enum availability avail;
1403 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1405 if (avail > AVAIL_OVERWRITABLE)
1407 funct_state y_l = get_function_state (y);
1409 if (can_throw)
1410 break;
1411 if (y_l->can_throw && !TREE_NOTHROW (w->decl)
1412 && e->can_throw_external)
1413 can_throw = true;
1415 else if (e->can_throw_external && !TREE_NOTHROW (y->decl))
1416 can_throw = true;
1418 for (ie = node->indirect_calls; ie; ie = ie->next_callee)
1419 if (ie->can_throw_external)
1420 can_throw = true;
1421 w_info = (struct ipa_dfs_info *) w->aux;
1422 w = w_info->next_cycle;
1425 /* Copy back the region's pure_const_state which is shared by
1426 all nodes in the region. */
1427 w = node;
1428 while (w)
1430 funct_state w_l = get_function_state (w);
1431 if (!can_throw && !TREE_NOTHROW (w->decl))
1433 struct cgraph_edge *e;
1434 cgraph_set_nothrow_flag (w, true);
1435 for (e = w->callers; e; e = e->next_caller)
1436 e->can_throw_external = false;
1437 if (dump_file)
1438 fprintf (dump_file, "Function found to be nothrow: %s\n",
1439 cgraph_node_name (w));
1441 else if (can_throw && !TREE_NOTHROW (w->decl))
1442 w_l->can_throw = true;
1443 w_info = (struct ipa_dfs_info *) w->aux;
1444 w = w_info->next_cycle;
1448 ipa_free_postorder_info ();
1449 free (order);
1453 /* Produce the global information by preforming a transitive closure
1454 on the local information that was produced by generate_summary. */
1456 static unsigned int
1457 propagate (void)
1459 struct cgraph_node *node;
1461 cgraph_remove_function_insertion_hook (function_insertion_hook_holder);
1462 cgraph_remove_node_duplication_hook (node_duplication_hook_holder);
1463 cgraph_remove_node_removal_hook (node_removal_hook_holder);
1465 /* Nothrow makes more function to not lead to return and improve
1466 later analysis. */
1467 propagate_nothrow ();
1468 propagate_pure_const ();
1470 /* Cleanup. */
1471 for (node = cgraph_nodes; node; node = node->next)
1472 if (has_function_state (node))
1473 free (get_function_state (node));
1474 VEC_free (funct_state, heap, funct_state_vec);
1475 finish_state ();
1476 return 0;
1479 static bool
1480 gate_pure_const (void)
1482 return (flag_ipa_pure_const
1483 /* Don't bother doing anything if the program has errors. */
1484 && !seen_error ());
1487 struct ipa_opt_pass_d pass_ipa_pure_const =
1490 IPA_PASS,
1491 "pure-const", /* name */
1492 gate_pure_const, /* gate */
1493 propagate, /* execute */
1494 NULL, /* sub */
1495 NULL, /* next */
1496 0, /* static_pass_number */
1497 TV_IPA_PURE_CONST, /* tv_id */
1498 0, /* properties_required */
1499 0, /* properties_provided */
1500 0, /* properties_destroyed */
1501 0, /* todo_flags_start */
1502 0 /* todo_flags_finish */
1504 generate_summary, /* generate_summary */
1505 pure_const_write_summary, /* write_summary */
1506 pure_const_read_summary, /* read_summary */
1507 NULL, /* write_optimization_summary */
1508 NULL, /* read_optimization_summary */
1509 NULL, /* stmt_fixup */
1510 0, /* TODOs */
1511 NULL, /* function_transform */
1512 NULL /* variable_transform */
1515 /* Return true if function should be skipped for local pure const analysis. */
1517 static bool
1518 skip_function_for_local_pure_const (struct cgraph_node *node)
1520 /* Because we do not schedule pass_fixup_cfg over whole program after early optimizations
1521 we must not promote functions that are called by already processed functions. */
1523 if (function_called_by_processed_nodes_p ())
1525 if (dump_file)
1526 fprintf (dump_file, "Function called in recursive cycle; ignoring\n");
1527 return true;
1529 if (cgraph_function_body_availability (node) <= AVAIL_OVERWRITABLE)
1531 if (dump_file)
1532 fprintf (dump_file, "Function is not available or overwritable; not analyzing.\n");
1533 return true;
1535 return false;
1538 /* Simple local pass for pure const discovery reusing the analysis from
1539 ipa_pure_const. This pass is effective when executed together with
1540 other optimization passes in early optimization pass queue. */
1542 static unsigned int
1543 local_pure_const (void)
1545 bool changed = false;
1546 funct_state l;
1547 bool skip;
1548 struct cgraph_node *node;
1550 node = cgraph_get_node (current_function_decl);
1551 skip = skip_function_for_local_pure_const (node);
1552 if (!warn_suggest_attribute_const
1553 && !warn_suggest_attribute_pure
1554 && skip)
1555 return 0;
1557 l = analyze_function (node, false);
1559 /* Do NORETURN discovery. */
1560 if (!skip && !TREE_THIS_VOLATILE (current_function_decl)
1561 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0)
1563 warn_function_noreturn (cfun->decl);
1564 if (dump_file)
1565 fprintf (dump_file, "Function found to be noreturn: %s\n",
1566 lang_hooks.decl_printable_name (current_function_decl, 2));
1568 /* Update declaration and reduce profile to executed once. */
1569 TREE_THIS_VOLATILE (current_function_decl) = 1;
1570 if (node->frequency > NODE_FREQUENCY_EXECUTED_ONCE)
1571 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
1573 changed = true;
1576 switch (l->pure_const_state)
1578 case IPA_CONST:
1579 if (!TREE_READONLY (current_function_decl))
1581 warn_function_const (current_function_decl, !l->looping);
1582 if (!skip)
1584 cgraph_set_const_flag (node, true, l->looping);
1585 changed = true;
1587 if (dump_file)
1588 fprintf (dump_file, "Function found to be %sconst: %s\n",
1589 l->looping ? "looping " : "",
1590 lang_hooks.decl_printable_name (current_function_decl,
1591 2));
1593 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1594 && !l->looping)
1596 if (!skip)
1598 cgraph_set_const_flag (node, true, false);
1599 changed = true;
1601 if (dump_file)
1602 fprintf (dump_file, "Function found to be non-looping: %s\n",
1603 lang_hooks.decl_printable_name (current_function_decl,
1604 2));
1606 break;
1608 case IPA_PURE:
1609 if (!DECL_PURE_P (current_function_decl))
1611 if (!skip)
1613 cgraph_set_pure_flag (node, true, l->looping);
1614 changed = true;
1616 warn_function_pure (current_function_decl, !l->looping);
1617 if (dump_file)
1618 fprintf (dump_file, "Function found to be %spure: %s\n",
1619 l->looping ? "looping " : "",
1620 lang_hooks.decl_printable_name (current_function_decl,
1621 2));
1623 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1624 && !l->looping)
1626 if (!skip)
1628 cgraph_set_pure_flag (node, true, false);
1629 changed = true;
1631 if (dump_file)
1632 fprintf (dump_file, "Function found to be non-looping: %s\n",
1633 lang_hooks.decl_printable_name (current_function_decl,
1634 2));
1636 break;
1638 default:
1639 break;
1641 if (!l->can_throw && !TREE_NOTHROW (current_function_decl))
1643 struct cgraph_edge *e;
1645 cgraph_set_nothrow_flag (node, true);
1646 for (e = node->callers; e; e = e->next_caller)
1647 e->can_throw_external = false;
1648 changed = true;
1649 if (dump_file)
1650 fprintf (dump_file, "Function found to be nothrow: %s\n",
1651 lang_hooks.decl_printable_name (current_function_decl,
1652 2));
1654 free (l);
1655 if (changed)
1656 return execute_fixup_cfg ();
1657 else
1658 return 0;
1661 struct gimple_opt_pass pass_local_pure_const =
1664 GIMPLE_PASS,
1665 "local-pure-const", /* name */
1666 gate_pure_const, /* gate */
1667 local_pure_const, /* execute */
1668 NULL, /* sub */
1669 NULL, /* next */
1670 0, /* static_pass_number */
1671 TV_IPA_PURE_CONST, /* tv_id */
1672 0, /* properties_required */
1673 0, /* properties_provided */
1674 0, /* properties_destroyed */
1675 0, /* todo_flags_start */
1676 0 /* todo_flags_finish */