vectorizer cost model enhancement
[official-gcc.git] / gcc / ipa-pure-const.c
blob55b679d98a2efb2193b94eafbd912d0d9e52b9f3
1 /* Callgraph based analysis of static variables.
2 Copyright (C) 2004-2013 Free Software Foundation, Inc.
3 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This file marks functions as being either const (TREE_READONLY) or
22 pure (DECL_PURE_P). It can also set a variant of these that
23 are allowed to loop indefinitely (DECL_LOOPING_CONST_PURE_P).
25 This must be run after inlining decisions have been made since
26 otherwise, the local sets will not contain information that is
27 consistent with post inlined state. The global sets are not prone
28 to this problem since they are by definition transitive. */
30 /* The code in this module is called by the ipa pass manager. It
31 should be one of the later passes since it's information is used by
32 the rest of the compilation. */
34 #include "config.h"
35 #include "system.h"
36 #include "coretypes.h"
37 #include "tm.h"
38 #include "tree.h"
39 #include "tree-ssa.h"
40 #include "tree-inline.h"
41 #include "tree-pass.h"
42 #include "langhooks.h"
43 #include "pointer-set.h"
44 #include "ggc.h"
45 #include "ipa-utils.h"
46 #include "gimple.h"
47 #include "cgraph.h"
48 #include "flags.h"
49 #include "diagnostic.h"
50 #include "gimple-pretty-print.h"
51 #include "langhooks.h"
52 #include "target.h"
53 #include "lto-streamer.h"
54 #include "data-streamer.h"
55 #include "tree-streamer.h"
56 #include "cfgloop.h"
57 #include "tree-scalar-evolution.h"
58 #include "intl.h"
59 #include "opts.h"
61 static struct pointer_set_t *visited_nodes;
63 /* Lattice values for const and pure functions. Everything starts out
64 being const, then may drop to pure and then neither depending on
65 what is found. */
66 enum pure_const_state_e
68 IPA_CONST,
69 IPA_PURE,
70 IPA_NEITHER
73 const char *pure_const_names[3] = {"const", "pure", "neither"};
75 /* Holder for the const_state. There is one of these per function
76 decl. */
77 struct funct_state_d
79 /* See above. */
80 enum pure_const_state_e pure_const_state;
81 /* What user set here; we can be always sure about this. */
82 enum pure_const_state_e state_previously_known;
83 bool looping_previously_known;
85 /* True if the function could possibly infinite loop. There are a
86 lot of ways that this could be determined. We are pretty
87 conservative here. While it is possible to cse pure and const
88 calls, it is not legal to have dce get rid of the call if there
89 is a possibility that the call could infinite loop since this is
90 a behavioral change. */
91 bool looping;
93 bool can_throw;
96 /* State used when we know nothing about function. */
97 static struct funct_state_d varying_state
98 = { IPA_NEITHER, IPA_NEITHER, true, true, true };
101 typedef struct funct_state_d * funct_state;
103 /* The storage of the funct_state is abstracted because there is the
104 possibility that it may be desirable to move this to the cgraph
105 local info. */
107 /* Array, indexed by cgraph node uid, of function states. */
109 static vec<funct_state> funct_state_vec;
111 /* Holders of ipa cgraph hooks: */
112 static struct cgraph_node_hook_list *function_insertion_hook_holder;
113 static struct cgraph_2node_hook_list *node_duplication_hook_holder;
114 static struct cgraph_node_hook_list *node_removal_hook_holder;
116 /* Try to guess if function body will always be visible to compiler
117 when compiling the call and whether compiler will be able
118 to propagate the information by itself. */
120 static bool
121 function_always_visible_to_compiler_p (tree decl)
123 return (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl));
126 /* Emit suggestion about attribute ATTRIB_NAME for DECL. KNOWN_FINITE
127 is true if the function is known to be finite. The diagnostic is
128 controlled by OPTION. WARNED_ABOUT is a pointer_set unique for
129 OPTION, this function may initialize it and it is always returned
130 by the function. */
132 static struct pointer_set_t *
133 suggest_attribute (int option, tree decl, bool known_finite,
134 struct pointer_set_t *warned_about,
135 const char * attrib_name)
137 if (!option_enabled (option, &global_options))
138 return warned_about;
139 if (TREE_THIS_VOLATILE (decl)
140 || (known_finite && function_always_visible_to_compiler_p (decl)))
141 return warned_about;
143 if (!warned_about)
144 warned_about = pointer_set_create ();
145 if (pointer_set_contains (warned_about, decl))
146 return warned_about;
147 pointer_set_insert (warned_about, decl);
148 warning_at (DECL_SOURCE_LOCATION (decl),
149 option,
150 known_finite
151 ? _("function might be candidate for attribute %<%s%>")
152 : _("function might be candidate for attribute %<%s%>"
153 " if it is known to return normally"), attrib_name);
154 return warned_about;
157 /* Emit suggestion about __attribute_((pure)) for DECL. KNOWN_FINITE
158 is true if the function is known to be finite. */
160 static void
161 warn_function_pure (tree decl, bool known_finite)
163 static struct pointer_set_t *warned_about;
165 warned_about
166 = suggest_attribute (OPT_Wsuggest_attribute_pure, decl,
167 known_finite, warned_about, "pure");
170 /* Emit suggestion about __attribute_((const)) for DECL. KNOWN_FINITE
171 is true if the function is known to be finite. */
173 static void
174 warn_function_const (tree decl, bool known_finite)
176 static struct pointer_set_t *warned_about;
177 warned_about
178 = suggest_attribute (OPT_Wsuggest_attribute_const, decl,
179 known_finite, warned_about, "const");
182 void
183 warn_function_noreturn (tree decl)
185 static struct pointer_set_t *warned_about;
186 if (!lang_hooks.missing_noreturn_ok_p (decl)
187 && targetm.warn_func_return (decl))
188 warned_about
189 = suggest_attribute (OPT_Wsuggest_attribute_noreturn, decl,
190 true, warned_about, "noreturn");
193 /* Init the function state. */
195 static void
196 finish_state (void)
198 funct_state_vec.release ();
202 /* Return true if we have a function state for NODE. */
204 static inline bool
205 has_function_state (struct cgraph_node *node)
207 if (!funct_state_vec.exists ()
208 || funct_state_vec.length () <= (unsigned int)node->uid)
209 return false;
210 return funct_state_vec[node->uid] != NULL;
213 /* Return the function state from NODE. */
215 static inline funct_state
216 get_function_state (struct cgraph_node *node)
218 if (!funct_state_vec.exists ()
219 || funct_state_vec.length () <= (unsigned int)node->uid
220 || !funct_state_vec[node->uid])
221 /* We might want to put correct previously_known state into varying. */
222 return &varying_state;
223 return funct_state_vec[node->uid];
226 /* Set the function state S for NODE. */
228 static inline void
229 set_function_state (struct cgraph_node *node, funct_state s)
231 if (!funct_state_vec.exists ()
232 || funct_state_vec.length () <= (unsigned int)node->uid)
233 funct_state_vec.safe_grow_cleared (node->uid + 1);
234 funct_state_vec[node->uid] = s;
237 /* Check to see if the use (or definition when CHECKING_WRITE is true)
238 variable T is legal in a function that is either pure or const. */
240 static inline void
241 check_decl (funct_state local,
242 tree t, bool checking_write, bool ipa)
244 /* Do not want to do anything with volatile except mark any
245 function that uses one to be not const or pure. */
246 if (TREE_THIS_VOLATILE (t))
248 local->pure_const_state = IPA_NEITHER;
249 if (dump_file)
250 fprintf (dump_file, " Volatile operand is not const/pure");
251 return;
254 /* Do not care about a local automatic that is not static. */
255 if (!TREE_STATIC (t) && !DECL_EXTERNAL (t))
256 return;
258 /* If the variable has the "used" attribute, treat it as if it had a
259 been touched by the devil. */
260 if (DECL_PRESERVE_P (t))
262 local->pure_const_state = IPA_NEITHER;
263 if (dump_file)
264 fprintf (dump_file, " Used static/global variable is not const/pure\n");
265 return;
268 /* In IPA mode we are not interested in checking actual loads and stores;
269 they will be processed at propagation time using ipa_ref. */
270 if (ipa)
271 return;
273 /* Since we have dealt with the locals and params cases above, if we
274 are CHECKING_WRITE, this cannot be a pure or constant
275 function. */
276 if (checking_write)
278 local->pure_const_state = IPA_NEITHER;
279 if (dump_file)
280 fprintf (dump_file, " static/global memory write is not const/pure\n");
281 return;
284 if (DECL_EXTERNAL (t) || TREE_PUBLIC (t))
286 /* Readonly reads are safe. */
287 if (TREE_READONLY (t) && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (t)))
288 return; /* Read of a constant, do not change the function state. */
289 else
291 if (dump_file)
292 fprintf (dump_file, " global memory read is not const\n");
293 /* Just a regular read. */
294 if (local->pure_const_state == IPA_CONST)
295 local->pure_const_state = IPA_PURE;
298 else
300 /* Compilation level statics can be read if they are readonly
301 variables. */
302 if (TREE_READONLY (t))
303 return;
305 if (dump_file)
306 fprintf (dump_file, " static memory read is not const\n");
307 /* Just a regular read. */
308 if (local->pure_const_state == IPA_CONST)
309 local->pure_const_state = IPA_PURE;
314 /* Check to see if the use (or definition when CHECKING_WRITE is true)
315 variable T is legal in a function that is either pure or const. */
317 static inline void
318 check_op (funct_state local, tree t, bool checking_write)
320 t = get_base_address (t);
321 if (t && TREE_THIS_VOLATILE (t))
323 local->pure_const_state = IPA_NEITHER;
324 if (dump_file)
325 fprintf (dump_file, " Volatile indirect ref is not const/pure\n");
326 return;
328 else if (t
329 && (INDIRECT_REF_P (t) || TREE_CODE (t) == MEM_REF)
330 && TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME
331 && !ptr_deref_may_alias_global_p (TREE_OPERAND (t, 0)))
333 if (dump_file)
334 fprintf (dump_file, " Indirect ref to local memory is OK\n");
335 return;
337 else if (checking_write)
339 local->pure_const_state = IPA_NEITHER;
340 if (dump_file)
341 fprintf (dump_file, " Indirect ref write is not const/pure\n");
342 return;
344 else
346 if (dump_file)
347 fprintf (dump_file, " Indirect ref read is not const\n");
348 if (local->pure_const_state == IPA_CONST)
349 local->pure_const_state = IPA_PURE;
353 /* compute state based on ECF FLAGS and store to STATE and LOOPING. */
355 static void
356 state_from_flags (enum pure_const_state_e *state, bool *looping,
357 int flags, bool cannot_lead_to_return)
359 *looping = false;
360 if (flags & ECF_LOOPING_CONST_OR_PURE)
362 *looping = true;
363 if (dump_file && (dump_flags & TDF_DETAILS))
364 fprintf (dump_file, " looping");
366 if (flags & ECF_CONST)
368 *state = IPA_CONST;
369 if (dump_file && (dump_flags & TDF_DETAILS))
370 fprintf (dump_file, " const\n");
372 else if (flags & ECF_PURE)
374 *state = IPA_PURE;
375 if (dump_file && (dump_flags & TDF_DETAILS))
376 fprintf (dump_file, " pure\n");
378 else if (cannot_lead_to_return)
380 *state = IPA_PURE;
381 *looping = true;
382 if (dump_file && (dump_flags & TDF_DETAILS))
383 fprintf (dump_file, " ignoring side effects->pure looping\n");
385 else
387 if (dump_file && (dump_flags & TDF_DETAILS))
388 fprintf (dump_file, " neither\n");
389 *state = IPA_NEITHER;
390 *looping = true;
394 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
395 into STATE and LOOPING better of the two variants.
396 Be sure to merge looping correctly. IPA_NEITHER functions
397 have looping 0 even if they don't have to return. */
399 static inline void
400 better_state (enum pure_const_state_e *state, bool *looping,
401 enum pure_const_state_e state2, bool looping2)
403 if (state2 < *state)
405 if (*state == IPA_NEITHER)
406 *looping = looping2;
407 else
408 *looping = MIN (*looping, looping2);
410 else if (state2 != IPA_NEITHER)
411 *looping = MIN (*looping, looping2);
414 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
415 into STATE and LOOPING worse of the two variants. */
417 static inline void
418 worse_state (enum pure_const_state_e *state, bool *looping,
419 enum pure_const_state_e state2, bool looping2)
421 *state = MAX (*state, state2);
422 *looping = MAX (*looping, looping2);
425 /* Recognize special cases of builtins that are by themselves not pure or const
426 but function using them is. */
427 static bool
428 special_builtin_state (enum pure_const_state_e *state, bool *looping,
429 tree callee)
431 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
432 switch (DECL_FUNCTION_CODE (callee))
434 case BUILT_IN_RETURN:
435 case BUILT_IN_UNREACHABLE:
436 case BUILT_IN_ALLOCA:
437 case BUILT_IN_ALLOCA_WITH_ALIGN:
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
545 && recursive_call_p (current_function_decl, callee_t))
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\n");
673 local->looping = true;
675 if (stmt_can_throw_external (stmt))
677 if (dump_file)
678 fprintf (dump_file, " can throw externally\n");
679 local->can_throw = true;
681 else
682 if (dump_file)
683 fprintf (dump_file, " can throw\n");
685 switch (gimple_code (stmt))
687 case GIMPLE_CALL:
688 check_call (local, stmt, ipa);
689 break;
690 case GIMPLE_LABEL:
691 if (DECL_NONLOCAL (gimple_label_label (stmt)))
692 /* Target of long jump. */
694 if (dump_file)
695 fprintf (dump_file, " nonlocal label is not const/pure\n");
696 local->pure_const_state = IPA_NEITHER;
698 break;
699 case GIMPLE_ASM:
700 if (gimple_asm_clobbers_memory_p (stmt))
702 if (dump_file)
703 fprintf (dump_file, " memory asm clobber is not const/pure\n");
704 /* Abandon all hope, ye who enter here. */
705 local->pure_const_state = IPA_NEITHER;
707 if (gimple_asm_volatile_p (stmt))
709 if (dump_file)
710 fprintf (dump_file, " volatile is not const/pure\n");
711 /* Abandon all hope, ye who enter here. */
712 local->pure_const_state = IPA_NEITHER;
713 local->looping = true;
715 return;
716 default:
717 break;
722 /* This is the main routine for finding the reference patterns for
723 global variables within a function FN. */
725 static funct_state
726 analyze_function (struct cgraph_node *fn, bool ipa)
728 tree decl = fn->symbol.decl;
729 funct_state l;
730 basic_block this_block;
732 l = XCNEW (struct funct_state_d);
733 l->pure_const_state = IPA_CONST;
734 l->state_previously_known = IPA_NEITHER;
735 l->looping_previously_known = true;
736 l->looping = false;
737 l->can_throw = false;
738 state_from_flags (&l->state_previously_known, &l->looping_previously_known,
739 flags_from_decl_or_type (fn->symbol.decl),
740 cgraph_node_cannot_return (fn));
742 if (fn->thunk.thunk_p || fn->symbol.alias)
744 /* Thunk gets propagated through, so nothing interesting happens. */
745 gcc_assert (ipa);
746 return l;
749 if (dump_file)
751 fprintf (dump_file, "\n\n local analysis of %s\n ",
752 cgraph_node_name (fn));
755 push_cfun (DECL_STRUCT_FUNCTION (decl));
757 FOR_EACH_BB (this_block)
759 gimple_stmt_iterator gsi;
760 struct walk_stmt_info wi;
762 memset (&wi, 0, sizeof(wi));
763 for (gsi = gsi_start_bb (this_block);
764 !gsi_end_p (gsi);
765 gsi_next (&gsi))
767 check_stmt (&gsi, l, ipa);
768 if (l->pure_const_state == IPA_NEITHER && l->looping && l->can_throw)
769 goto end;
773 end:
774 if (l->pure_const_state != IPA_NEITHER)
776 /* Const functions cannot have back edges (an
777 indication of possible infinite loop side
778 effect. */
779 if (mark_dfs_back_edges ())
781 /* Preheaders are needed for SCEV to work.
782 Simple latches and recorded exits improve chances that loop will
783 proved to be finite in testcases such as in loop-15.c
784 and loop-24.c */
785 loop_optimizer_init (LOOPS_HAVE_PREHEADERS
786 | LOOPS_HAVE_SIMPLE_LATCHES
787 | LOOPS_HAVE_RECORDED_EXITS);
788 if (dump_file && (dump_flags & TDF_DETAILS))
789 flow_loops_dump (dump_file, NULL, 0);
790 if (mark_irreducible_loops ())
792 if (dump_file)
793 fprintf (dump_file, " has irreducible loops\n");
794 l->looping = true;
796 else
798 loop_iterator li;
799 struct loop *loop;
800 scev_initialize ();
801 FOR_EACH_LOOP (li, loop, 0)
802 if (!finite_loop_p (loop))
804 if (dump_file)
805 fprintf (dump_file, " can not prove finiteness of "
806 "loop %i\n", loop->num);
807 l->looping =true;
808 FOR_EACH_LOOP_BREAK (li);
810 scev_finalize ();
812 loop_optimizer_finalize ();
816 if (dump_file && (dump_flags & TDF_DETAILS))
817 fprintf (dump_file, " checking previously known:");
819 better_state (&l->pure_const_state, &l->looping,
820 l->state_previously_known,
821 l->looping_previously_known);
822 if (TREE_NOTHROW (decl))
823 l->can_throw = false;
825 pop_cfun ();
826 if (dump_file)
828 if (l->looping)
829 fprintf (dump_file, "Function is locally looping.\n");
830 if (l->can_throw)
831 fprintf (dump_file, "Function is locally throwing.\n");
832 if (l->pure_const_state == IPA_CONST)
833 fprintf (dump_file, "Function is locally const.\n");
834 if (l->pure_const_state == IPA_PURE)
835 fprintf (dump_file, "Function is locally pure.\n");
837 return l;
840 /* Called when new function is inserted to callgraph late. */
841 static void
842 add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
844 if (cgraph_function_body_availability (node) < AVAIL_OVERWRITABLE)
845 return;
846 /* There are some shared nodes, in particular the initializers on
847 static declarations. We do not need to scan them more than once
848 since all we would be interested in are the addressof
849 operations. */
850 visited_nodes = pointer_set_create ();
851 if (cgraph_function_body_availability (node) > AVAIL_OVERWRITABLE)
852 set_function_state (node, analyze_function (node, true));
853 pointer_set_destroy (visited_nodes);
854 visited_nodes = NULL;
857 /* Called when new clone is inserted to callgraph late. */
859 static void
860 duplicate_node_data (struct cgraph_node *src, struct cgraph_node *dst,
861 void *data ATTRIBUTE_UNUSED)
863 if (has_function_state (src))
865 funct_state l = XNEW (struct funct_state_d);
866 gcc_assert (!has_function_state (dst));
867 memcpy (l, get_function_state (src), sizeof (*l));
868 set_function_state (dst, l);
872 /* Called when new clone is inserted to callgraph late. */
874 static void
875 remove_node_data (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
877 if (has_function_state (node))
879 funct_state l = get_function_state (node);
880 if (l != &varying_state)
881 free (l);
882 set_function_state (node, NULL);
887 static void
888 register_hooks (void)
890 static bool init_p = false;
892 if (init_p)
893 return;
895 init_p = true;
897 node_removal_hook_holder =
898 cgraph_add_node_removal_hook (&remove_node_data, NULL);
899 node_duplication_hook_holder =
900 cgraph_add_node_duplication_hook (&duplicate_node_data, NULL);
901 function_insertion_hook_holder =
902 cgraph_add_function_insertion_hook (&add_new_function, NULL);
906 /* Analyze each function in the cgraph to see if it is locally PURE or
907 CONST. */
909 static void
910 pure_const_generate_summary (void)
912 struct cgraph_node *node;
914 register_hooks ();
916 /* There are some shared nodes, in particular the initializers on
917 static declarations. We do not need to scan them more than once
918 since all we would be interested in are the addressof
919 operations. */
920 visited_nodes = pointer_set_create ();
922 /* Process all of the functions.
924 We process AVAIL_OVERWRITABLE functions. We can not use the results
925 by default, but the info can be used at LTO with -fwhole-program or
926 when function got cloned and the clone is AVAILABLE. */
928 FOR_EACH_DEFINED_FUNCTION (node)
929 if (cgraph_function_body_availability (node) >= AVAIL_OVERWRITABLE)
930 set_function_state (node, analyze_function (node, true));
932 pointer_set_destroy (visited_nodes);
933 visited_nodes = NULL;
937 /* Serialize the ipa info for lto. */
939 static void
940 pure_const_write_summary (void)
942 struct cgraph_node *node;
943 struct lto_simple_output_block *ob
944 = lto_create_simple_output_block (LTO_section_ipa_pure_const);
945 unsigned int count = 0;
946 lto_symtab_encoder_iterator lsei;
947 lto_symtab_encoder_t encoder;
949 encoder = lto_get_out_decl_state ()->symtab_node_encoder;
951 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
952 lsei_next_function_in_partition (&lsei))
954 node = lsei_cgraph_node (lsei);
955 if (node->symbol.definition && has_function_state (node))
956 count++;
959 streamer_write_uhwi_stream (ob->main_stream, count);
961 /* Process all of the functions. */
962 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
963 lsei_next_function_in_partition (&lsei))
965 node = lsei_cgraph_node (lsei);
966 if (node->symbol.definition && has_function_state (node))
968 struct bitpack_d bp;
969 funct_state fs;
970 int node_ref;
971 lto_symtab_encoder_t encoder;
973 fs = get_function_state (node);
975 encoder = ob->decl_state->symtab_node_encoder;
976 node_ref = lto_symtab_encoder_encode (encoder, (symtab_node)node);
977 streamer_write_uhwi_stream (ob->main_stream, node_ref);
979 /* Note that flags will need to be read in the opposite
980 order as we are pushing the bitflags into FLAGS. */
981 bp = bitpack_create (ob->main_stream);
982 bp_pack_value (&bp, fs->pure_const_state, 2);
983 bp_pack_value (&bp, fs->state_previously_known, 2);
984 bp_pack_value (&bp, fs->looping_previously_known, 1);
985 bp_pack_value (&bp, fs->looping, 1);
986 bp_pack_value (&bp, fs->can_throw, 1);
987 streamer_write_bitpack (&bp);
991 lto_destroy_simple_output_block (ob);
995 /* Deserialize the ipa info for lto. */
997 static void
998 pure_const_read_summary (void)
1000 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
1001 struct lto_file_decl_data *file_data;
1002 unsigned int j = 0;
1004 register_hooks ();
1005 while ((file_data = file_data_vec[j++]))
1007 const char *data;
1008 size_t len;
1009 struct lto_input_block *ib
1010 = lto_create_simple_input_block (file_data,
1011 LTO_section_ipa_pure_const,
1012 &data, &len);
1013 if (ib)
1015 unsigned int i;
1016 unsigned int count = streamer_read_uhwi (ib);
1018 for (i = 0; i < count; i++)
1020 unsigned int index;
1021 struct cgraph_node *node;
1022 struct bitpack_d bp;
1023 funct_state fs;
1024 lto_symtab_encoder_t encoder;
1026 fs = XCNEW (struct funct_state_d);
1027 index = streamer_read_uhwi (ib);
1028 encoder = file_data->symtab_node_encoder;
1029 node = cgraph (lto_symtab_encoder_deref (encoder, index));
1030 set_function_state (node, fs);
1032 /* Note that the flags must be read in the opposite
1033 order in which they were written (the bitflags were
1034 pushed into FLAGS). */
1035 bp = streamer_read_bitpack (ib);
1036 fs->pure_const_state
1037 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1038 fs->state_previously_known
1039 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1040 fs->looping_previously_known = bp_unpack_value (&bp, 1);
1041 fs->looping = bp_unpack_value (&bp, 1);
1042 fs->can_throw = bp_unpack_value (&bp, 1);
1043 if (dump_file)
1045 int flags = flags_from_decl_or_type (node->symbol.decl);
1046 fprintf (dump_file, "Read info for %s/%i ",
1047 cgraph_node_name (node),
1048 node->symbol.order);
1049 if (flags & ECF_CONST)
1050 fprintf (dump_file, " const");
1051 if (flags & ECF_PURE)
1052 fprintf (dump_file, " pure");
1053 if (flags & ECF_NOTHROW)
1054 fprintf (dump_file, " nothrow");
1055 fprintf (dump_file, "\n pure const state: %s\n",
1056 pure_const_names[fs->pure_const_state]);
1057 fprintf (dump_file, " previously known state: %s\n",
1058 pure_const_names[fs->looping_previously_known]);
1059 if (fs->looping)
1060 fprintf (dump_file," function is locally looping\n");
1061 if (fs->looping_previously_known)
1062 fprintf (dump_file," function is previously known looping\n");
1063 if (fs->can_throw)
1064 fprintf (dump_file," function is locally throwing\n");
1068 lto_destroy_simple_input_block (file_data,
1069 LTO_section_ipa_pure_const,
1070 ib, data, len);
1076 static bool
1077 ignore_edge (struct cgraph_edge *e)
1079 return (!e->can_throw_external);
1082 /* Return true if NODE is self recursive function.
1083 Indirectly recursive functions appears as non-trivial strongly
1084 connected components, so we need to care about self recursion
1085 only. */
1087 static bool
1088 self_recursive_p (struct cgraph_node *node)
1090 struct cgraph_edge *e;
1091 for (e = node->callees; e; e = e->next_callee)
1092 if (cgraph_function_node (e->callee, NULL) == node)
1093 return true;
1094 return false;
1097 /* Produce transitive closure over the callgraph and compute pure/const
1098 attributes. */
1100 static void
1101 propagate_pure_const (void)
1103 struct cgraph_node *node;
1104 struct cgraph_node *w;
1105 struct cgraph_node **order =
1106 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1107 int order_pos;
1108 int i;
1109 struct ipa_dfs_info * w_info;
1111 order_pos = ipa_reduced_postorder (order, true, false, NULL);
1112 if (dump_file)
1114 dump_cgraph (dump_file);
1115 ipa_print_order (dump_file, "reduced", order, order_pos);
1118 /* Propagate the local information through the call graph to produce
1119 the global information. All the nodes within a cycle will have
1120 the same info so we collapse cycles first. Then we can do the
1121 propagation in one pass from the leaves to the roots. */
1122 for (i = 0; i < order_pos; i++ )
1124 enum pure_const_state_e pure_const_state = IPA_CONST;
1125 bool looping = false;
1126 int count = 0;
1127 node = order[i];
1129 if (node->symbol.alias)
1130 continue;
1132 if (dump_file && (dump_flags & TDF_DETAILS))
1133 fprintf (dump_file, "Starting cycle\n");
1135 /* Find the worst state for any node in the cycle. */
1136 w = node;
1137 while (w && pure_const_state != IPA_NEITHER)
1139 struct cgraph_edge *e;
1140 struct cgraph_edge *ie;
1141 int i;
1142 struct ipa_ref *ref;
1144 funct_state w_l = get_function_state (w);
1145 if (dump_file && (dump_flags & TDF_DETAILS))
1146 fprintf (dump_file, " Visiting %s/%i state:%s looping %i\n",
1147 cgraph_node_name (w),
1148 w->symbol.order,
1149 pure_const_names[w_l->pure_const_state],
1150 w_l->looping);
1152 /* First merge in function body properties. */
1153 worse_state (&pure_const_state, &looping,
1154 w_l->pure_const_state, w_l->looping);
1155 if (pure_const_state == IPA_NEITHER)
1156 break;
1158 /* For overwritable nodes we can not assume anything. */
1159 if (cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1161 worse_state (&pure_const_state, &looping,
1162 w_l->state_previously_known,
1163 w_l->looping_previously_known);
1164 if (dump_file && (dump_flags & TDF_DETAILS))
1166 fprintf (dump_file,
1167 " Overwritable. state %s looping %i\n",
1168 pure_const_names[w_l->state_previously_known],
1169 w_l->looping_previously_known);
1171 break;
1174 count++;
1176 /* We consider recursive cycles as possibly infinite.
1177 This might be relaxed since infinite recursion leads to stack
1178 overflow. */
1179 if (count > 1)
1180 looping = true;
1182 /* Now walk the edges and merge in callee properties. */
1183 for (e = w->callees; e; e = e->next_callee)
1185 enum availability avail;
1186 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1187 enum pure_const_state_e edge_state = IPA_CONST;
1188 bool edge_looping = false;
1190 if (dump_file && (dump_flags & TDF_DETAILS))
1192 fprintf (dump_file,
1193 " Call to %s/%i",
1194 cgraph_node_name (e->callee),
1195 e->callee->symbol.order);
1197 if (avail > AVAIL_OVERWRITABLE)
1199 funct_state y_l = get_function_state (y);
1200 if (dump_file && (dump_flags & TDF_DETAILS))
1202 fprintf (dump_file,
1203 " state:%s looping:%i\n",
1204 pure_const_names[y_l->pure_const_state],
1205 y_l->looping);
1207 if (y_l->pure_const_state > IPA_PURE
1208 && cgraph_edge_cannot_lead_to_return (e))
1210 if (dump_file && (dump_flags & TDF_DETAILS))
1211 fprintf (dump_file,
1212 " Ignoring side effects"
1213 " -> pure, looping\n");
1214 edge_state = IPA_PURE;
1215 edge_looping = true;
1217 else
1219 edge_state = y_l->pure_const_state;
1220 edge_looping = y_l->looping;
1223 else if (special_builtin_state (&edge_state, &edge_looping,
1224 y->symbol.decl))
1226 else
1227 state_from_flags (&edge_state, &edge_looping,
1228 flags_from_decl_or_type (y->symbol.decl),
1229 cgraph_edge_cannot_lead_to_return (e));
1231 /* Merge the results with what we already know. */
1232 better_state (&edge_state, &edge_looping,
1233 w_l->state_previously_known,
1234 w_l->looping_previously_known);
1235 worse_state (&pure_const_state, &looping,
1236 edge_state, edge_looping);
1237 if (pure_const_state == IPA_NEITHER)
1238 break;
1240 if (pure_const_state == IPA_NEITHER)
1241 break;
1243 /* Now process the indirect call. */
1244 for (ie = w->indirect_calls; ie; ie = ie->next_callee)
1246 enum pure_const_state_e edge_state = IPA_CONST;
1247 bool edge_looping = false;
1249 if (dump_file && (dump_flags & TDF_DETAILS))
1250 fprintf (dump_file, " Indirect call");
1251 state_from_flags (&edge_state, &edge_looping,
1252 ie->indirect_info->ecf_flags,
1253 cgraph_edge_cannot_lead_to_return (ie));
1254 /* Merge the results with what we already know. */
1255 better_state (&edge_state, &edge_looping,
1256 w_l->state_previously_known,
1257 w_l->looping_previously_known);
1258 worse_state (&pure_const_state, &looping,
1259 edge_state, edge_looping);
1260 if (pure_const_state == IPA_NEITHER)
1261 break;
1263 if (pure_const_state == IPA_NEITHER)
1264 break;
1266 /* And finally all loads and stores. */
1267 for (i = 0; ipa_ref_list_reference_iterate (&w->symbol.ref_list, i, ref); i++)
1269 enum pure_const_state_e ref_state = IPA_CONST;
1270 bool ref_looping = false;
1271 switch (ref->use)
1273 case IPA_REF_LOAD:
1274 /* readonly reads are safe. */
1275 if (TREE_READONLY (ipa_ref_varpool_node (ref)->symbol.decl))
1276 break;
1277 if (dump_file && (dump_flags & TDF_DETAILS))
1278 fprintf (dump_file, " nonreadonly global var read\n");
1279 ref_state = IPA_PURE;
1280 break;
1281 case IPA_REF_STORE:
1282 if (ipa_ref_cannot_lead_to_return (ref))
1283 break;
1284 ref_state = IPA_NEITHER;
1285 if (dump_file && (dump_flags & TDF_DETAILS))
1286 fprintf (dump_file, " global var write\n");
1287 break;
1288 case IPA_REF_ADDR:
1289 break;
1291 better_state (&ref_state, &ref_looping,
1292 w_l->state_previously_known,
1293 w_l->looping_previously_known);
1294 worse_state (&pure_const_state, &looping,
1295 ref_state, ref_looping);
1296 if (pure_const_state == IPA_NEITHER)
1297 break;
1299 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1300 w = w_info->next_cycle;
1302 if (dump_file && (dump_flags & TDF_DETAILS))
1303 fprintf (dump_file, "Result %s looping %i\n",
1304 pure_const_names [pure_const_state],
1305 looping);
1307 /* Copy back the region's pure_const_state which is shared by
1308 all nodes in the region. */
1309 w = node;
1310 while (w)
1312 funct_state w_l = get_function_state (w);
1313 enum pure_const_state_e this_state = pure_const_state;
1314 bool this_looping = looping;
1316 if (w_l->state_previously_known != IPA_NEITHER
1317 && this_state > w_l->state_previously_known)
1319 this_state = w_l->state_previously_known;
1320 this_looping |= w_l->looping_previously_known;
1322 if (!this_looping && self_recursive_p (w))
1323 this_looping = true;
1324 if (!w_l->looping_previously_known)
1325 this_looping = false;
1327 /* All nodes within a cycle share the same info. */
1328 w_l->pure_const_state = this_state;
1329 w_l->looping = this_looping;
1331 switch (this_state)
1333 case IPA_CONST:
1334 if (!TREE_READONLY (w->symbol.decl))
1336 warn_function_const (w->symbol.decl, !this_looping);
1337 if (dump_file)
1338 fprintf (dump_file, "Function found to be %sconst: %s\n",
1339 this_looping ? "looping " : "",
1340 cgraph_node_name (w));
1342 cgraph_set_const_flag (w, true, this_looping);
1343 break;
1345 case IPA_PURE:
1346 if (!DECL_PURE_P (w->symbol.decl))
1348 warn_function_pure (w->symbol.decl, !this_looping);
1349 if (dump_file)
1350 fprintf (dump_file, "Function found to be %spure: %s\n",
1351 this_looping ? "looping " : "",
1352 cgraph_node_name (w));
1354 cgraph_set_pure_flag (w, true, this_looping);
1355 break;
1357 default:
1358 break;
1360 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1361 w = w_info->next_cycle;
1365 ipa_free_postorder_info ();
1366 free (order);
1369 /* Produce transitive closure over the callgraph and compute nothrow
1370 attributes. */
1372 static void
1373 propagate_nothrow (void)
1375 struct cgraph_node *node;
1376 struct cgraph_node *w;
1377 struct cgraph_node **order =
1378 XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1379 int order_pos;
1380 int i;
1381 struct ipa_dfs_info * w_info;
1383 order_pos = ipa_reduced_postorder (order, true, false, ignore_edge);
1384 if (dump_file)
1386 dump_cgraph (dump_file);
1387 ipa_print_order (dump_file, "reduced for nothrow", order, order_pos);
1390 /* Propagate the local information through the call graph to produce
1391 the global information. All the nodes within a cycle will have
1392 the same info so we collapse cycles first. Then we can do the
1393 propagation in one pass from the leaves to the roots. */
1394 for (i = 0; i < order_pos; i++ )
1396 bool can_throw = false;
1397 node = order[i];
1399 if (node->symbol.alias)
1400 continue;
1402 /* Find the worst state for any node in the cycle. */
1403 w = node;
1404 while (w)
1406 struct cgraph_edge *e, *ie;
1407 funct_state w_l = get_function_state (w);
1409 if (w_l->can_throw
1410 || cgraph_function_body_availability (w) == AVAIL_OVERWRITABLE)
1411 can_throw = true;
1413 if (can_throw)
1414 break;
1416 for (e = w->callees; e; e = e->next_callee)
1418 enum availability avail;
1419 struct cgraph_node *y = cgraph_function_node (e->callee, &avail);
1421 if (avail > AVAIL_OVERWRITABLE)
1423 funct_state y_l = get_function_state (y);
1425 if (can_throw)
1426 break;
1427 if (y_l->can_throw && !TREE_NOTHROW (w->symbol.decl)
1428 && e->can_throw_external)
1429 can_throw = true;
1431 else if (e->can_throw_external && !TREE_NOTHROW (y->symbol.decl))
1432 can_throw = true;
1434 for (ie = node->indirect_calls; ie; ie = ie->next_callee)
1435 if (ie->can_throw_external)
1437 can_throw = true;
1438 break;
1440 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1441 w = w_info->next_cycle;
1444 /* Copy back the region's pure_const_state which is shared by
1445 all nodes in the region. */
1446 w = node;
1447 while (w)
1449 funct_state w_l = get_function_state (w);
1450 if (!can_throw && !TREE_NOTHROW (w->symbol.decl))
1452 cgraph_set_nothrow_flag (w, true);
1453 if (dump_file)
1454 fprintf (dump_file, "Function found to be nothrow: %s\n",
1455 cgraph_node_name (w));
1457 else if (can_throw && !TREE_NOTHROW (w->symbol.decl))
1458 w_l->can_throw = true;
1459 w_info = (struct ipa_dfs_info *) w->symbol.aux;
1460 w = w_info->next_cycle;
1464 ipa_free_postorder_info ();
1465 free (order);
1469 /* Produce the global information by preforming a transitive closure
1470 on the local information that was produced by generate_summary. */
1472 static unsigned int
1473 propagate (void)
1475 struct cgraph_node *node;
1477 cgraph_remove_function_insertion_hook (function_insertion_hook_holder);
1478 cgraph_remove_node_duplication_hook (node_duplication_hook_holder);
1479 cgraph_remove_node_removal_hook (node_removal_hook_holder);
1481 /* Nothrow makes more function to not lead to return and improve
1482 later analysis. */
1483 propagate_nothrow ();
1484 propagate_pure_const ();
1486 /* Cleanup. */
1487 FOR_EACH_FUNCTION (node)
1488 if (has_function_state (node))
1489 free (get_function_state (node));
1490 funct_state_vec.release ();
1491 finish_state ();
1492 return 0;
1495 static bool
1496 gate_pure_const (void)
1498 return (flag_ipa_pure_const
1499 /* Don't bother doing anything if the program has errors. */
1500 && !seen_error ());
1503 namespace {
1505 const pass_data pass_data_ipa_pure_const =
1507 IPA_PASS, /* type */
1508 "pure-const", /* name */
1509 OPTGROUP_NONE, /* optinfo_flags */
1510 true, /* has_gate */
1511 true, /* has_execute */
1512 TV_IPA_PURE_CONST, /* tv_id */
1513 0, /* properties_required */
1514 0, /* properties_provided */
1515 0, /* properties_destroyed */
1516 0, /* todo_flags_start */
1517 0, /* todo_flags_finish */
1520 class pass_ipa_pure_const : public ipa_opt_pass_d
1522 public:
1523 pass_ipa_pure_const(gcc::context *ctxt)
1524 : ipa_opt_pass_d(pass_data_ipa_pure_const, ctxt,
1525 pure_const_generate_summary, /* generate_summary */
1526 pure_const_write_summary, /* write_summary */
1527 pure_const_read_summary, /* read_summary */
1528 NULL, /* write_optimization_summary */
1529 NULL, /* read_optimization_summary */
1530 NULL, /* stmt_fixup */
1531 0, /* function_transform_todo_flags_start */
1532 NULL, /* function_transform */
1533 NULL) /* variable_transform */
1536 /* opt_pass methods: */
1537 bool gate () { return gate_pure_const (); }
1538 unsigned int execute () { return propagate (); }
1540 }; // class pass_ipa_pure_const
1542 } // anon namespace
1544 ipa_opt_pass_d *
1545 make_pass_ipa_pure_const (gcc::context *ctxt)
1547 return new pass_ipa_pure_const (ctxt);
1550 /* Return true if function should be skipped for local pure const analysis. */
1552 static bool
1553 skip_function_for_local_pure_const (struct cgraph_node *node)
1555 /* Because we do not schedule pass_fixup_cfg over whole program after early optimizations
1556 we must not promote functions that are called by already processed functions. */
1558 if (function_called_by_processed_nodes_p ())
1560 if (dump_file)
1561 fprintf (dump_file, "Function called in recursive cycle; ignoring\n");
1562 return true;
1564 if (cgraph_function_body_availability (node) <= AVAIL_OVERWRITABLE)
1566 if (dump_file)
1567 fprintf (dump_file, "Function is not available or overwritable; not analyzing.\n");
1568 return true;
1570 return false;
1573 /* Simple local pass for pure const discovery reusing the analysis from
1574 ipa_pure_const. This pass is effective when executed together with
1575 other optimization passes in early optimization pass queue. */
1577 static unsigned int
1578 local_pure_const (void)
1580 bool changed = false;
1581 funct_state l;
1582 bool skip;
1583 struct cgraph_node *node;
1585 node = cgraph_get_node (current_function_decl);
1586 skip = skip_function_for_local_pure_const (node);
1587 if (!warn_suggest_attribute_const
1588 && !warn_suggest_attribute_pure
1589 && skip)
1590 return 0;
1592 l = analyze_function (node, false);
1594 /* Do NORETURN discovery. */
1595 if (!skip && !TREE_THIS_VOLATILE (current_function_decl)
1596 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0)
1598 warn_function_noreturn (cfun->decl);
1599 if (dump_file)
1600 fprintf (dump_file, "Function found to be noreturn: %s\n",
1601 current_function_name ());
1603 /* Update declaration and reduce profile to executed once. */
1604 TREE_THIS_VOLATILE (current_function_decl) = 1;
1605 if (node->frequency > NODE_FREQUENCY_EXECUTED_ONCE)
1606 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
1608 changed = true;
1611 switch (l->pure_const_state)
1613 case IPA_CONST:
1614 if (!TREE_READONLY (current_function_decl))
1616 warn_function_const (current_function_decl, !l->looping);
1617 if (!skip)
1619 cgraph_set_const_flag (node, true, l->looping);
1620 changed = true;
1622 if (dump_file)
1623 fprintf (dump_file, "Function found to be %sconst: %s\n",
1624 l->looping ? "looping " : "",
1625 current_function_name ());
1627 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1628 && !l->looping)
1630 if (!skip)
1632 cgraph_set_const_flag (node, true, false);
1633 changed = true;
1635 if (dump_file)
1636 fprintf (dump_file, "Function found to be non-looping: %s\n",
1637 current_function_name ());
1639 break;
1641 case IPA_PURE:
1642 if (!DECL_PURE_P (current_function_decl))
1644 if (!skip)
1646 cgraph_set_pure_flag (node, true, l->looping);
1647 changed = true;
1649 warn_function_pure (current_function_decl, !l->looping);
1650 if (dump_file)
1651 fprintf (dump_file, "Function found to be %spure: %s\n",
1652 l->looping ? "looping " : "",
1653 current_function_name ());
1655 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1656 && !l->looping)
1658 if (!skip)
1660 cgraph_set_pure_flag (node, true, false);
1661 changed = true;
1663 if (dump_file)
1664 fprintf (dump_file, "Function found to be non-looping: %s\n",
1665 current_function_name ());
1667 break;
1669 default:
1670 break;
1672 if (!l->can_throw && !TREE_NOTHROW (current_function_decl))
1674 cgraph_set_nothrow_flag (node, true);
1675 changed = true;
1676 if (dump_file)
1677 fprintf (dump_file, "Function found to be nothrow: %s\n",
1678 current_function_name ());
1680 free (l);
1681 if (changed)
1682 return execute_fixup_cfg ();
1683 else
1684 return 0;
1687 namespace {
1689 const pass_data pass_data_local_pure_const =
1691 GIMPLE_PASS, /* type */
1692 "local-pure-const", /* name */
1693 OPTGROUP_NONE, /* optinfo_flags */
1694 true, /* has_gate */
1695 true, /* has_execute */
1696 TV_IPA_PURE_CONST, /* tv_id */
1697 0, /* properties_required */
1698 0, /* properties_provided */
1699 0, /* properties_destroyed */
1700 0, /* todo_flags_start */
1701 0, /* todo_flags_finish */
1704 class pass_local_pure_const : public gimple_opt_pass
1706 public:
1707 pass_local_pure_const(gcc::context *ctxt)
1708 : gimple_opt_pass(pass_data_local_pure_const, ctxt)
1711 /* opt_pass methods: */
1712 opt_pass * clone () { return new pass_local_pure_const (ctxt_); }
1713 bool gate () { return gate_pure_const (); }
1714 unsigned int execute () { return local_pure_const (); }
1716 }; // class pass_local_pure_const
1718 } // anon namespace
1720 gimple_opt_pass *
1721 make_pass_local_pure_const (gcc::context *ctxt)
1723 return new pass_local_pure_const (ctxt);