[RTL-ifcvt] PR rtl-optimization/68506: Fix emitting order of insns in IF-THEN-JOIN...
[official-gcc.git] / gcc / ipa-pure-const.c
blob840ca7ad844edc51236c917365700c2fe3101124
1 /* Callgraph based analysis of static variables.
2 Copyright (C) 2004-2015 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 "backend.h"
38 #include "target.h"
39 #include "tree.h"
40 #include "gimple.h"
41 #include "tree-pass.h"
42 #include "tree-streamer.h"
43 #include "cgraph.h"
44 #include "diagnostic.h"
45 #include "calls.h"
46 #include "cfganal.h"
47 #include "tree-eh.h"
48 #include "gimple-iterator.h"
49 #include "gimple-walk.h"
50 #include "tree-cfg.h"
51 #include "tree-ssa-loop-niter.h"
52 #include "langhooks.h"
53 #include "ipa-utils.h"
54 #include "gimple-pretty-print.h"
55 #include "cfgloop.h"
56 #include "tree-scalar-evolution.h"
57 #include "intl.h"
58 #include "opts.h"
60 /* Lattice values for const and pure functions. Everything starts out
61 being const, then may drop to pure and then neither depending on
62 what is found. */
63 enum pure_const_state_e
65 IPA_CONST,
66 IPA_PURE,
67 IPA_NEITHER
70 const char *pure_const_names[3] = {"const", "pure", "neither"};
72 /* Holder for the const_state. There is one of these per function
73 decl. */
74 struct funct_state_d
76 /* See above. */
77 enum pure_const_state_e pure_const_state;
78 /* What user set here; we can be always sure about this. */
79 enum pure_const_state_e state_previously_known;
80 bool looping_previously_known;
82 /* True if the function could possibly infinite loop. There are a
83 lot of ways that this could be determined. We are pretty
84 conservative here. While it is possible to cse pure and const
85 calls, it is not legal to have dce get rid of the call if there
86 is a possibility that the call could infinite loop since this is
87 a behavioral change. */
88 bool looping;
90 bool can_throw;
92 /* If function can call free, munmap or otherwise make previously
93 non-trapping memory accesses trapping. */
94 bool can_free;
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, 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 static vec<funct_state> funct_state_vec;
112 static bool gate_pure_const (void);
114 namespace {
116 const pass_data pass_data_ipa_pure_const =
118 IPA_PASS, /* type */
119 "pure-const", /* name */
120 OPTGROUP_NONE, /* optinfo_flags */
121 TV_IPA_PURE_CONST, /* tv_id */
122 0, /* properties_required */
123 0, /* properties_provided */
124 0, /* properties_destroyed */
125 0, /* todo_flags_start */
126 0, /* todo_flags_finish */
129 class pass_ipa_pure_const : public ipa_opt_pass_d
131 public:
132 pass_ipa_pure_const(gcc::context *ctxt);
134 /* opt_pass methods: */
135 bool gate (function *) { return gate_pure_const (); }
136 unsigned int execute (function *fun);
138 void register_hooks (void);
140 private:
141 bool init_p;
143 /* Holders of ipa cgraph hooks: */
144 struct cgraph_node_hook_list *function_insertion_hook_holder;
145 struct cgraph_2node_hook_list *node_duplication_hook_holder;
146 struct cgraph_node_hook_list *node_removal_hook_holder;
148 }; // class pass_ipa_pure_const
150 } // anon namespace
152 /* Try to guess if function body will always be visible to compiler
153 when compiling the call and whether compiler will be able
154 to propagate the information by itself. */
156 static bool
157 function_always_visible_to_compiler_p (tree decl)
159 return (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl));
162 /* Emit suggestion about attribute ATTRIB_NAME for DECL. KNOWN_FINITE
163 is true if the function is known to be finite. The diagnostic is
164 controlled by OPTION. WARNED_ABOUT is a hash_set<tree> unique for
165 OPTION, this function may initialize it and it is always returned
166 by the function. */
168 static hash_set<tree> *
169 suggest_attribute (int option, tree decl, bool known_finite,
170 hash_set<tree> *warned_about,
171 const char * attrib_name)
173 if (!option_enabled (option, &global_options))
174 return warned_about;
175 if (TREE_THIS_VOLATILE (decl)
176 || (known_finite && function_always_visible_to_compiler_p (decl)))
177 return warned_about;
179 if (!warned_about)
180 warned_about = new hash_set<tree>;
181 if (warned_about->contains (decl))
182 return warned_about;
183 warned_about->add (decl);
184 warning_at (DECL_SOURCE_LOCATION (decl),
185 option,
186 known_finite
187 ? _("function might be candidate for attribute %<%s%>")
188 : _("function might be candidate for attribute %<%s%>"
189 " if it is known to return normally"), attrib_name);
190 return warned_about;
193 /* Emit suggestion about __attribute_((pure)) for DECL. KNOWN_FINITE
194 is true if the function is known to be finite. */
196 static void
197 warn_function_pure (tree decl, bool known_finite)
199 static hash_set<tree> *warned_about;
201 warned_about
202 = suggest_attribute (OPT_Wsuggest_attribute_pure, decl,
203 known_finite, warned_about, "pure");
206 /* Emit suggestion about __attribute_((const)) for DECL. KNOWN_FINITE
207 is true if the function is known to be finite. */
209 static void
210 warn_function_const (tree decl, bool known_finite)
212 static hash_set<tree> *warned_about;
213 warned_about
214 = suggest_attribute (OPT_Wsuggest_attribute_const, decl,
215 known_finite, warned_about, "const");
218 static void
219 warn_function_noreturn (tree decl)
221 static hash_set<tree> *warned_about;
222 if (!lang_hooks.missing_noreturn_ok_p (decl)
223 && targetm.warn_func_return (decl))
224 warned_about
225 = suggest_attribute (OPT_Wsuggest_attribute_noreturn, decl,
226 true, warned_about, "noreturn");
229 /* Return true if we have a function state for NODE. */
231 static inline bool
232 has_function_state (struct cgraph_node *node)
234 if (!funct_state_vec.exists ()
235 || funct_state_vec.length () <= (unsigned int)node->uid)
236 return false;
237 return funct_state_vec[node->uid] != NULL;
240 /* Return the function state from NODE. */
242 static inline funct_state
243 get_function_state (struct cgraph_node *node)
245 if (!funct_state_vec.exists ()
246 || funct_state_vec.length () <= (unsigned int)node->uid
247 || !funct_state_vec[node->uid])
248 /* We might want to put correct previously_known state into varying. */
249 return &varying_state;
250 return funct_state_vec[node->uid];
253 /* Set the function state S for NODE. */
255 static inline void
256 set_function_state (struct cgraph_node *node, funct_state s)
258 if (!funct_state_vec.exists ()
259 || funct_state_vec.length () <= (unsigned int)node->uid)
260 funct_state_vec.safe_grow_cleared (node->uid + 1);
261 funct_state_vec[node->uid] = s;
264 /* Check to see if the use (or definition when CHECKING_WRITE is true)
265 variable T is legal in a function that is either pure or const. */
267 static inline void
268 check_decl (funct_state local,
269 tree t, bool checking_write, bool ipa)
271 /* Do not want to do anything with volatile except mark any
272 function that uses one to be not const or pure. */
273 if (TREE_THIS_VOLATILE (t))
275 local->pure_const_state = IPA_NEITHER;
276 if (dump_file)
277 fprintf (dump_file, " Volatile operand is not const/pure");
278 return;
281 /* Do not care about a local automatic that is not static. */
282 if (!TREE_STATIC (t) && !DECL_EXTERNAL (t))
283 return;
285 /* If the variable has the "used" attribute, treat it as if it had a
286 been touched by the devil. */
287 if (DECL_PRESERVE_P (t))
289 local->pure_const_state = IPA_NEITHER;
290 if (dump_file)
291 fprintf (dump_file, " Used static/global variable is not const/pure\n");
292 return;
295 /* In IPA mode we are not interested in checking actual loads and stores;
296 they will be processed at propagation time using ipa_ref. */
297 if (ipa)
298 return;
300 /* Since we have dealt with the locals and params cases above, if we
301 are CHECKING_WRITE, this cannot be a pure or constant
302 function. */
303 if (checking_write)
305 local->pure_const_state = IPA_NEITHER;
306 if (dump_file)
307 fprintf (dump_file, " static/global memory write is not const/pure\n");
308 return;
311 if (DECL_EXTERNAL (t) || TREE_PUBLIC (t))
313 /* Readonly reads are safe. */
314 if (TREE_READONLY (t) && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (t)))
315 return; /* Read of a constant, do not change the function state. */
316 else
318 if (dump_file)
319 fprintf (dump_file, " global memory read is not const\n");
320 /* Just a regular read. */
321 if (local->pure_const_state == IPA_CONST)
322 local->pure_const_state = IPA_PURE;
325 else
327 /* Compilation level statics can be read if they are readonly
328 variables. */
329 if (TREE_READONLY (t))
330 return;
332 if (dump_file)
333 fprintf (dump_file, " static memory read is not const\n");
334 /* Just a regular read. */
335 if (local->pure_const_state == IPA_CONST)
336 local->pure_const_state = IPA_PURE;
341 /* Check to see if the use (or definition when CHECKING_WRITE is true)
342 variable T is legal in a function that is either pure or const. */
344 static inline void
345 check_op (funct_state local, tree t, bool checking_write)
347 t = get_base_address (t);
348 if (t && TREE_THIS_VOLATILE (t))
350 local->pure_const_state = IPA_NEITHER;
351 if (dump_file)
352 fprintf (dump_file, " Volatile indirect ref is not const/pure\n");
353 return;
355 else if (t
356 && (INDIRECT_REF_P (t) || TREE_CODE (t) == MEM_REF)
357 && TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME
358 && !ptr_deref_may_alias_global_p (TREE_OPERAND (t, 0)))
360 if (dump_file)
361 fprintf (dump_file, " Indirect ref to local memory is OK\n");
362 return;
364 else if (checking_write)
366 local->pure_const_state = IPA_NEITHER;
367 if (dump_file)
368 fprintf (dump_file, " Indirect ref write is not const/pure\n");
369 return;
371 else
373 if (dump_file)
374 fprintf (dump_file, " Indirect ref read is not const\n");
375 if (local->pure_const_state == IPA_CONST)
376 local->pure_const_state = IPA_PURE;
380 /* compute state based on ECF FLAGS and store to STATE and LOOPING. */
382 static void
383 state_from_flags (enum pure_const_state_e *state, bool *looping,
384 int flags, bool cannot_lead_to_return)
386 *looping = false;
387 if (flags & ECF_LOOPING_CONST_OR_PURE)
389 *looping = true;
390 if (dump_file && (dump_flags & TDF_DETAILS))
391 fprintf (dump_file, " looping");
393 if (flags & ECF_CONST)
395 *state = IPA_CONST;
396 if (dump_file && (dump_flags & TDF_DETAILS))
397 fprintf (dump_file, " const\n");
399 else if (flags & ECF_PURE)
401 *state = IPA_PURE;
402 if (dump_file && (dump_flags & TDF_DETAILS))
403 fprintf (dump_file, " pure\n");
405 else if (cannot_lead_to_return)
407 *state = IPA_PURE;
408 *looping = true;
409 if (dump_file && (dump_flags & TDF_DETAILS))
410 fprintf (dump_file, " ignoring side effects->pure looping\n");
412 else
414 if (dump_file && (dump_flags & TDF_DETAILS))
415 fprintf (dump_file, " neither\n");
416 *state = IPA_NEITHER;
417 *looping = true;
421 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
422 into STATE and LOOPING better of the two variants.
423 Be sure to merge looping correctly. IPA_NEITHER functions
424 have looping 0 even if they don't have to return. */
426 static inline void
427 better_state (enum pure_const_state_e *state, bool *looping,
428 enum pure_const_state_e state2, bool looping2)
430 if (state2 < *state)
432 if (*state == IPA_NEITHER)
433 *looping = looping2;
434 else
435 *looping = MIN (*looping, looping2);
436 *state = state2;
438 else if (state2 != IPA_NEITHER)
439 *looping = MIN (*looping, looping2);
442 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
443 into STATE and LOOPING worse of the two variants. */
445 static inline void
446 worse_state (enum pure_const_state_e *state, bool *looping,
447 enum pure_const_state_e state2, bool looping2)
449 *state = MAX (*state, state2);
450 *looping = MAX (*looping, looping2);
453 /* Recognize special cases of builtins that are by themselves not pure or const
454 but function using them is. */
455 static bool
456 special_builtin_state (enum pure_const_state_e *state, bool *looping,
457 tree callee)
459 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
460 switch (DECL_FUNCTION_CODE (callee))
462 case BUILT_IN_RETURN:
463 case BUILT_IN_UNREACHABLE:
464 case BUILT_IN_ALLOCA:
465 case BUILT_IN_ALLOCA_WITH_ALIGN:
466 case BUILT_IN_STACK_SAVE:
467 case BUILT_IN_STACK_RESTORE:
468 case BUILT_IN_EH_POINTER:
469 case BUILT_IN_EH_FILTER:
470 case BUILT_IN_UNWIND_RESUME:
471 case BUILT_IN_CXA_END_CLEANUP:
472 case BUILT_IN_EH_COPY_VALUES:
473 case BUILT_IN_FRAME_ADDRESS:
474 case BUILT_IN_APPLY:
475 case BUILT_IN_APPLY_ARGS:
476 *looping = false;
477 *state = IPA_CONST;
478 return true;
479 case BUILT_IN_PREFETCH:
480 *looping = true;
481 *state = IPA_CONST;
482 return true;
483 default:
484 break;
486 return false;
489 /* Check the parameters of a function call to CALL_EXPR to see if
490 there are any references in the parameters that are not allowed for
491 pure or const functions. Also check to see if this is either an
492 indirect call, a call outside the compilation unit, or has special
493 attributes that may also effect the purity. The CALL_EXPR node for
494 the entire call expression. */
496 static void
497 check_call (funct_state local, gcall *call, bool ipa)
499 int flags = gimple_call_flags (call);
500 tree callee_t = gimple_call_fndecl (call);
501 bool possibly_throws = stmt_could_throw_p (call);
502 bool possibly_throws_externally = (possibly_throws
503 && stmt_can_throw_external (call));
505 if (possibly_throws)
507 unsigned int i;
508 for (i = 0; i < gimple_num_ops (call); i++)
509 if (gimple_op (call, i)
510 && tree_could_throw_p (gimple_op (call, i)))
512 if (possibly_throws && cfun->can_throw_non_call_exceptions)
514 if (dump_file)
515 fprintf (dump_file, " operand can throw; looping\n");
516 local->looping = true;
518 if (possibly_throws_externally)
520 if (dump_file)
521 fprintf (dump_file, " operand can throw externally\n");
522 local->can_throw = true;
527 /* The const and pure flags are set by a variety of places in the
528 compiler (including here). If someone has already set the flags
529 for the callee, (such as for some of the builtins) we will use
530 them, otherwise we will compute our own information.
532 Const and pure functions have less clobber effects than other
533 functions so we process these first. Otherwise if it is a call
534 outside the compilation unit or an indirect call we punt. This
535 leaves local calls which will be processed by following the call
536 graph. */
537 if (callee_t)
539 enum pure_const_state_e call_state;
540 bool call_looping;
542 if (gimple_call_builtin_p (call, BUILT_IN_NORMAL)
543 && !nonfreeing_call_p (call))
544 local->can_free = true;
546 if (special_builtin_state (&call_state, &call_looping, callee_t))
548 worse_state (&local->pure_const_state, &local->looping,
549 call_state, call_looping);
550 return;
552 /* When bad things happen to bad functions, they cannot be const
553 or pure. */
554 if (setjmp_call_p (callee_t))
556 if (dump_file)
557 fprintf (dump_file, " setjmp is not const/pure\n");
558 local->looping = true;
559 local->pure_const_state = IPA_NEITHER;
562 if (DECL_BUILT_IN_CLASS (callee_t) == BUILT_IN_NORMAL)
563 switch (DECL_FUNCTION_CODE (callee_t))
565 case BUILT_IN_LONGJMP:
566 case BUILT_IN_NONLOCAL_GOTO:
567 if (dump_file)
568 fprintf (dump_file, " longjmp and nonlocal goto is not const/pure\n");
569 local->pure_const_state = IPA_NEITHER;
570 local->looping = true;
571 break;
572 default:
573 break;
576 else if (gimple_call_internal_p (call) && !nonfreeing_call_p (call))
577 local->can_free = true;
579 /* When not in IPA mode, we can still handle self recursion. */
580 if (!ipa && callee_t
581 && recursive_call_p (current_function_decl, callee_t))
583 if (dump_file)
584 fprintf (dump_file, " Recursive call can loop.\n");
585 local->looping = true;
587 /* Either callee is unknown or we are doing local analysis.
588 Look to see if there are any bits available for the callee (such as by
589 declaration or because it is builtin) and process solely on the basis of
590 those bits. */
591 else if (!ipa)
593 enum pure_const_state_e call_state;
594 bool call_looping;
595 if (possibly_throws && cfun->can_throw_non_call_exceptions)
597 if (dump_file)
598 fprintf (dump_file, " can throw; looping\n");
599 local->looping = true;
601 if (possibly_throws_externally)
603 if (dump_file)
605 fprintf (dump_file, " can throw externally to lp %i\n",
606 lookup_stmt_eh_lp (call));
607 if (callee_t)
608 fprintf (dump_file, " callee:%s\n",
609 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (callee_t)));
611 local->can_throw = true;
613 if (dump_file && (dump_flags & TDF_DETAILS))
614 fprintf (dump_file, " checking flags for call:");
615 state_from_flags (&call_state, &call_looping, flags,
616 ((flags & (ECF_NORETURN | ECF_NOTHROW))
617 == (ECF_NORETURN | ECF_NOTHROW))
618 || (!flag_exceptions && (flags & ECF_NORETURN)));
619 worse_state (&local->pure_const_state, &local->looping,
620 call_state, call_looping);
622 /* Direct functions calls are handled by IPA propagation. */
625 /* Wrapper around check_decl for loads in local more. */
627 static bool
628 check_load (gimple *, tree op, tree, void *data)
630 if (DECL_P (op))
631 check_decl ((funct_state)data, op, false, false);
632 else
633 check_op ((funct_state)data, op, false);
634 return false;
637 /* Wrapper around check_decl for stores in local more. */
639 static bool
640 check_store (gimple *, tree op, tree, void *data)
642 if (DECL_P (op))
643 check_decl ((funct_state)data, op, true, false);
644 else
645 check_op ((funct_state)data, op, true);
646 return false;
649 /* Wrapper around check_decl for loads in ipa mode. */
651 static bool
652 check_ipa_load (gimple *, tree op, tree, void *data)
654 if (DECL_P (op))
655 check_decl ((funct_state)data, op, false, true);
656 else
657 check_op ((funct_state)data, op, false);
658 return false;
661 /* Wrapper around check_decl for stores in ipa mode. */
663 static bool
664 check_ipa_store (gimple *, tree op, tree, void *data)
666 if (DECL_P (op))
667 check_decl ((funct_state)data, op, true, true);
668 else
669 check_op ((funct_state)data, op, true);
670 return false;
673 /* Look into pointer pointed to by GSIP and figure out what interesting side
674 effects it has. */
675 static void
676 check_stmt (gimple_stmt_iterator *gsip, funct_state local, bool ipa)
678 gimple *stmt = gsi_stmt (*gsip);
680 if (is_gimple_debug (stmt))
681 return;
683 /* Do consider clobber as side effects before IPA, so we rather inline
684 C++ destructors and keep clobber semantics than eliminate them.
686 TODO: We may get smarter during early optimizations on these and let
687 functions containing only clobbers to be optimized more. This is a common
688 case of C++ destructors. */
690 if ((ipa || cfun->after_inlining) && gimple_clobber_p (stmt))
691 return;
693 if (dump_file)
695 fprintf (dump_file, " scanning: ");
696 print_gimple_stmt (dump_file, stmt, 0, 0);
699 if (gimple_has_volatile_ops (stmt)
700 && !gimple_clobber_p (stmt))
702 local->pure_const_state = IPA_NEITHER;
703 if (dump_file)
704 fprintf (dump_file, " Volatile stmt is not const/pure\n");
707 /* Look for loads and stores. */
708 walk_stmt_load_store_ops (stmt, local,
709 ipa ? check_ipa_load : check_load,
710 ipa ? check_ipa_store : check_store);
712 if (gimple_code (stmt) != GIMPLE_CALL
713 && stmt_could_throw_p (stmt))
715 if (cfun->can_throw_non_call_exceptions)
717 if (dump_file)
718 fprintf (dump_file, " can throw; looping\n");
719 local->looping = true;
721 if (stmt_can_throw_external (stmt))
723 if (dump_file)
724 fprintf (dump_file, " can throw externally\n");
725 local->can_throw = true;
727 else
728 if (dump_file)
729 fprintf (dump_file, " can throw\n");
731 switch (gimple_code (stmt))
733 case GIMPLE_CALL:
734 check_call (local, as_a <gcall *> (stmt), ipa);
735 break;
736 case GIMPLE_LABEL:
737 if (DECL_NONLOCAL (gimple_label_label (as_a <glabel *> (stmt))))
738 /* Target of long jump. */
740 if (dump_file)
741 fprintf (dump_file, " nonlocal label is not const/pure\n");
742 local->pure_const_state = IPA_NEITHER;
744 break;
745 case GIMPLE_ASM:
746 if (gimple_asm_clobbers_memory_p (as_a <gasm *> (stmt)))
748 if (dump_file)
749 fprintf (dump_file, " memory asm clobber is not const/pure\n");
750 /* Abandon all hope, ye who enter here. */
751 local->pure_const_state = IPA_NEITHER;
752 local->can_free = true;
754 if (gimple_asm_volatile_p (as_a <gasm *> (stmt)))
756 if (dump_file)
757 fprintf (dump_file, " volatile is not const/pure\n");
758 /* Abandon all hope, ye who enter here. */
759 local->pure_const_state = IPA_NEITHER;
760 local->looping = true;
761 local->can_free = true;
763 return;
764 default:
765 break;
770 /* This is the main routine for finding the reference patterns for
771 global variables within a function FN. */
773 static funct_state
774 analyze_function (struct cgraph_node *fn, bool ipa)
776 tree decl = fn->decl;
777 funct_state l;
778 basic_block this_block;
780 l = XCNEW (struct funct_state_d);
781 l->pure_const_state = IPA_CONST;
782 l->state_previously_known = IPA_NEITHER;
783 l->looping_previously_known = true;
784 l->looping = false;
785 l->can_throw = false;
786 l->can_free = false;
787 state_from_flags (&l->state_previously_known, &l->looping_previously_known,
788 flags_from_decl_or_type (fn->decl),
789 fn->cannot_return_p ());
791 if (fn->thunk.thunk_p || fn->alias)
793 /* Thunk gets propagated through, so nothing interesting happens. */
794 gcc_assert (ipa);
795 if (fn->thunk.thunk_p && fn->thunk.virtual_offset_p)
796 l->pure_const_state = IPA_NEITHER;
797 return l;
800 if (dump_file)
802 fprintf (dump_file, "\n\n local analysis of %s\n ",
803 fn->name ());
806 push_cfun (DECL_STRUCT_FUNCTION (decl));
808 FOR_EACH_BB_FN (this_block, cfun)
810 gimple_stmt_iterator gsi;
811 struct walk_stmt_info wi;
813 memset (&wi, 0, sizeof (wi));
814 for (gsi = gsi_start_bb (this_block);
815 !gsi_end_p (gsi);
816 gsi_next (&gsi))
818 check_stmt (&gsi, l, ipa);
819 if (l->pure_const_state == IPA_NEITHER
820 && l->looping
821 && l->can_throw
822 && l->can_free)
823 goto end;
827 end:
828 if (l->pure_const_state != IPA_NEITHER)
830 /* Const functions cannot have back edges (an
831 indication of possible infinite loop side
832 effect. */
833 if (mark_dfs_back_edges ())
835 /* Preheaders are needed for SCEV to work.
836 Simple latches and recorded exits improve chances that loop will
837 proved to be finite in testcases such as in loop-15.c
838 and loop-24.c */
839 loop_optimizer_init (LOOPS_HAVE_PREHEADERS
840 | LOOPS_HAVE_SIMPLE_LATCHES
841 | LOOPS_HAVE_RECORDED_EXITS);
842 if (dump_file && (dump_flags & TDF_DETAILS))
843 flow_loops_dump (dump_file, NULL, 0);
844 if (mark_irreducible_loops ())
846 if (dump_file)
847 fprintf (dump_file, " has irreducible loops\n");
848 l->looping = true;
850 else
852 struct loop *loop;
853 scev_initialize ();
854 FOR_EACH_LOOP (loop, 0)
855 if (!finite_loop_p (loop))
857 if (dump_file)
858 fprintf (dump_file, " can not prove finiteness of "
859 "loop %i\n", loop->num);
860 l->looping =true;
861 break;
863 scev_finalize ();
865 loop_optimizer_finalize ();
869 if (dump_file && (dump_flags & TDF_DETAILS))
870 fprintf (dump_file, " checking previously known:");
872 better_state (&l->pure_const_state, &l->looping,
873 l->state_previously_known,
874 l->looping_previously_known);
875 if (TREE_NOTHROW (decl))
876 l->can_throw = false;
878 pop_cfun ();
879 if (dump_file)
881 if (l->looping)
882 fprintf (dump_file, "Function is locally looping.\n");
883 if (l->can_throw)
884 fprintf (dump_file, "Function is locally throwing.\n");
885 if (l->pure_const_state == IPA_CONST)
886 fprintf (dump_file, "Function is locally const.\n");
887 if (l->pure_const_state == IPA_PURE)
888 fprintf (dump_file, "Function is locally pure.\n");
889 if (l->can_free)
890 fprintf (dump_file, "Function can locally free.\n");
892 return l;
895 /* Called when new function is inserted to callgraph late. */
896 static void
897 add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
899 if (node->get_availability () < AVAIL_INTERPOSABLE)
900 return;
901 /* There are some shared nodes, in particular the initializers on
902 static declarations. We do not need to scan them more than once
903 since all we would be interested in are the addressof
904 operations. */
905 if (node->get_availability () > AVAIL_INTERPOSABLE
906 && opt_for_fn (node->decl, flag_ipa_pure_const))
907 set_function_state (node, analyze_function (node, true));
910 /* Called when new clone is inserted to callgraph late. */
912 static void
913 duplicate_node_data (struct cgraph_node *src, struct cgraph_node *dst,
914 void *data ATTRIBUTE_UNUSED)
916 if (has_function_state (src))
918 funct_state l = XNEW (struct funct_state_d);
919 gcc_assert (!has_function_state (dst));
920 memcpy (l, get_function_state (src), sizeof (*l));
921 set_function_state (dst, l);
925 /* Called when new clone is inserted to callgraph late. */
927 static void
928 remove_node_data (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
930 if (has_function_state (node))
932 funct_state l = get_function_state (node);
933 if (l != &varying_state)
934 free (l);
935 set_function_state (node, NULL);
940 void
941 pass_ipa_pure_const::
942 register_hooks (void)
944 if (init_p)
945 return;
947 init_p = true;
949 node_removal_hook_holder =
950 symtab->add_cgraph_removal_hook (&remove_node_data, NULL);
951 node_duplication_hook_holder =
952 symtab->add_cgraph_duplication_hook (&duplicate_node_data, NULL);
953 function_insertion_hook_holder =
954 symtab->add_cgraph_insertion_hook (&add_new_function, NULL);
958 /* Analyze each function in the cgraph to see if it is locally PURE or
959 CONST. */
961 static void
962 pure_const_generate_summary (void)
964 struct cgraph_node *node;
966 pass_ipa_pure_const *pass = static_cast <pass_ipa_pure_const *> (current_pass);
967 pass->register_hooks ();
969 /* Process all of the functions.
971 We process AVAIL_INTERPOSABLE functions. We can not use the results
972 by default, but the info can be used at LTO with -fwhole-program or
973 when function got cloned and the clone is AVAILABLE. */
975 FOR_EACH_DEFINED_FUNCTION (node)
976 if (node->get_availability () >= AVAIL_INTERPOSABLE
977 && opt_for_fn (node->decl, flag_ipa_pure_const))
978 set_function_state (node, analyze_function (node, true));
982 /* Serialize the ipa info for lto. */
984 static void
985 pure_const_write_summary (void)
987 struct cgraph_node *node;
988 struct lto_simple_output_block *ob
989 = lto_create_simple_output_block (LTO_section_ipa_pure_const);
990 unsigned int count = 0;
991 lto_symtab_encoder_iterator lsei;
992 lto_symtab_encoder_t encoder;
994 encoder = lto_get_out_decl_state ()->symtab_node_encoder;
996 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
997 lsei_next_function_in_partition (&lsei))
999 node = lsei_cgraph_node (lsei);
1000 if (node->definition && has_function_state (node))
1001 count++;
1004 streamer_write_uhwi_stream (ob->main_stream, count);
1006 /* Process all of the functions. */
1007 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
1008 lsei_next_function_in_partition (&lsei))
1010 node = lsei_cgraph_node (lsei);
1011 if (node->definition && has_function_state (node))
1013 struct bitpack_d bp;
1014 funct_state fs;
1015 int node_ref;
1016 lto_symtab_encoder_t encoder;
1018 fs = get_function_state (node);
1020 encoder = ob->decl_state->symtab_node_encoder;
1021 node_ref = lto_symtab_encoder_encode (encoder, node);
1022 streamer_write_uhwi_stream (ob->main_stream, node_ref);
1024 /* Note that flags will need to be read in the opposite
1025 order as we are pushing the bitflags into FLAGS. */
1026 bp = bitpack_create (ob->main_stream);
1027 bp_pack_value (&bp, fs->pure_const_state, 2);
1028 bp_pack_value (&bp, fs->state_previously_known, 2);
1029 bp_pack_value (&bp, fs->looping_previously_known, 1);
1030 bp_pack_value (&bp, fs->looping, 1);
1031 bp_pack_value (&bp, fs->can_throw, 1);
1032 bp_pack_value (&bp, fs->can_free, 1);
1033 streamer_write_bitpack (&bp);
1037 lto_destroy_simple_output_block (ob);
1041 /* Deserialize the ipa info for lto. */
1043 static void
1044 pure_const_read_summary (void)
1046 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
1047 struct lto_file_decl_data *file_data;
1048 unsigned int j = 0;
1050 pass_ipa_pure_const *pass = static_cast <pass_ipa_pure_const *> (current_pass);
1051 pass->register_hooks ();
1053 while ((file_data = file_data_vec[j++]))
1055 const char *data;
1056 size_t len;
1057 struct lto_input_block *ib
1058 = lto_create_simple_input_block (file_data,
1059 LTO_section_ipa_pure_const,
1060 &data, &len);
1061 if (ib)
1063 unsigned int i;
1064 unsigned int count = streamer_read_uhwi (ib);
1066 for (i = 0; i < count; i++)
1068 unsigned int index;
1069 struct cgraph_node *node;
1070 struct bitpack_d bp;
1071 funct_state fs;
1072 lto_symtab_encoder_t encoder;
1074 fs = XCNEW (struct funct_state_d);
1075 index = streamer_read_uhwi (ib);
1076 encoder = file_data->symtab_node_encoder;
1077 node = dyn_cast<cgraph_node *> (lto_symtab_encoder_deref (encoder,
1078 index));
1079 set_function_state (node, fs);
1081 /* Note that the flags must be read in the opposite
1082 order in which they were written (the bitflags were
1083 pushed into FLAGS). */
1084 bp = streamer_read_bitpack (ib);
1085 fs->pure_const_state
1086 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1087 fs->state_previously_known
1088 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1089 fs->looping_previously_known = bp_unpack_value (&bp, 1);
1090 fs->looping = bp_unpack_value (&bp, 1);
1091 fs->can_throw = bp_unpack_value (&bp, 1);
1092 fs->can_free = bp_unpack_value (&bp, 1);
1093 if (dump_file)
1095 int flags = flags_from_decl_or_type (node->decl);
1096 fprintf (dump_file, "Read info for %s/%i ",
1097 node->name (),
1098 node->order);
1099 if (flags & ECF_CONST)
1100 fprintf (dump_file, " const");
1101 if (flags & ECF_PURE)
1102 fprintf (dump_file, " pure");
1103 if (flags & ECF_NOTHROW)
1104 fprintf (dump_file, " nothrow");
1105 fprintf (dump_file, "\n pure const state: %s\n",
1106 pure_const_names[fs->pure_const_state]);
1107 fprintf (dump_file, " previously known state: %s\n",
1108 pure_const_names[fs->looping_previously_known]);
1109 if (fs->looping)
1110 fprintf (dump_file," function is locally looping\n");
1111 if (fs->looping_previously_known)
1112 fprintf (dump_file," function is previously known looping\n");
1113 if (fs->can_throw)
1114 fprintf (dump_file," function is locally throwing\n");
1115 if (fs->can_free)
1116 fprintf (dump_file," function can locally free\n");
1120 lto_destroy_simple_input_block (file_data,
1121 LTO_section_ipa_pure_const,
1122 ib, data, len);
1128 static bool
1129 ignore_edge (struct cgraph_edge *e)
1131 return (!e->can_throw_external);
1134 /* Return true if NODE is self recursive function.
1135 Indirectly recursive functions appears as non-trivial strongly
1136 connected components, so we need to care about self recursion
1137 only. */
1139 static bool
1140 self_recursive_p (struct cgraph_node *node)
1142 struct cgraph_edge *e;
1143 for (e = node->callees; e; e = e->next_callee)
1144 if (e->callee->function_symbol () == node)
1145 return true;
1146 return false;
1149 /* Return true if N is cdtor that is not const or pure. In this case we may
1150 need to remove unreachable function if it is marked const/pure. */
1152 static bool
1153 cdtor_p (cgraph_node *n, void *)
1155 if (DECL_STATIC_CONSTRUCTOR (n->decl) || DECL_STATIC_DESTRUCTOR (n->decl))
1156 return !TREE_READONLY (n->decl) && !DECL_PURE_P (n->decl);
1157 return false;
1160 /* Produce transitive closure over the callgraph and compute pure/const
1161 attributes. */
1163 static bool
1164 propagate_pure_const (void)
1166 struct cgraph_node *node;
1167 struct cgraph_node *w;
1168 struct cgraph_node **order =
1169 XCNEWVEC (struct cgraph_node *, symtab->cgraph_count);
1170 int order_pos;
1171 int i;
1172 struct ipa_dfs_info * w_info;
1173 bool remove_p = false;
1175 order_pos = ipa_reduced_postorder (order, true, false, NULL);
1176 if (dump_file)
1178 cgraph_node::dump_cgraph (dump_file);
1179 ipa_print_order (dump_file, "reduced", order, order_pos);
1182 /* Propagate the local information through the call graph to produce
1183 the global information. All the nodes within a cycle will have
1184 the same info so we collapse cycles first. Then we can do the
1185 propagation in one pass from the leaves to the roots. */
1186 for (i = 0; i < order_pos; i++ )
1188 enum pure_const_state_e pure_const_state = IPA_CONST;
1189 bool looping = false;
1190 int count = 0;
1191 node = order[i];
1193 if (node->alias)
1194 continue;
1196 if (dump_file && (dump_flags & TDF_DETAILS))
1197 fprintf (dump_file, "Starting cycle\n");
1199 /* Find the worst state for any node in the cycle. */
1200 w = node;
1201 while (w && pure_const_state != IPA_NEITHER)
1203 struct cgraph_edge *e;
1204 struct cgraph_edge *ie;
1205 int i;
1206 struct ipa_ref *ref = NULL;
1208 funct_state w_l = get_function_state (w);
1209 if (dump_file && (dump_flags & TDF_DETAILS))
1210 fprintf (dump_file, " Visiting %s/%i state:%s looping %i\n",
1211 w->name (),
1212 w->order,
1213 pure_const_names[w_l->pure_const_state],
1214 w_l->looping);
1216 /* First merge in function body properties. */
1217 worse_state (&pure_const_state, &looping,
1218 w_l->pure_const_state, w_l->looping);
1219 if (pure_const_state == IPA_NEITHER)
1220 break;
1222 /* For overwritable nodes we can not assume anything. */
1223 if (w->get_availability () == AVAIL_INTERPOSABLE)
1225 worse_state (&pure_const_state, &looping,
1226 w_l->state_previously_known,
1227 w_l->looping_previously_known);
1228 if (dump_file && (dump_flags & TDF_DETAILS))
1230 fprintf (dump_file,
1231 " Overwritable. state %s looping %i\n",
1232 pure_const_names[w_l->state_previously_known],
1233 w_l->looping_previously_known);
1235 break;
1238 count++;
1240 /* We consider recursive cycles as possibly infinite.
1241 This might be relaxed since infinite recursion leads to stack
1242 overflow. */
1243 if (count > 1)
1244 looping = true;
1246 /* Now walk the edges and merge in callee properties. */
1247 for (e = w->callees; e; e = e->next_callee)
1249 enum availability avail;
1250 struct cgraph_node *y = e->callee->
1251 function_or_virtual_thunk_symbol (&avail);
1252 enum pure_const_state_e edge_state = IPA_CONST;
1253 bool edge_looping = false;
1255 if (dump_file && (dump_flags & TDF_DETAILS))
1257 fprintf (dump_file,
1258 " Call to %s/%i",
1259 e->callee->name (),
1260 e->callee->order);
1262 if (avail > AVAIL_INTERPOSABLE)
1264 funct_state y_l = get_function_state (y);
1265 if (dump_file && (dump_flags & TDF_DETAILS))
1267 fprintf (dump_file,
1268 " state:%s looping:%i\n",
1269 pure_const_names[y_l->pure_const_state],
1270 y_l->looping);
1272 if (y_l->pure_const_state > IPA_PURE
1273 && e->cannot_lead_to_return_p ())
1275 if (dump_file && (dump_flags & TDF_DETAILS))
1276 fprintf (dump_file,
1277 " Ignoring side effects"
1278 " -> pure, looping\n");
1279 edge_state = IPA_PURE;
1280 edge_looping = true;
1282 else
1284 edge_state = y_l->pure_const_state;
1285 edge_looping = y_l->looping;
1288 else if (special_builtin_state (&edge_state, &edge_looping,
1289 y->decl))
1291 else
1292 state_from_flags (&edge_state, &edge_looping,
1293 flags_from_decl_or_type (y->decl),
1294 e->cannot_lead_to_return_p ());
1296 /* Merge the results with what we already know. */
1297 better_state (&edge_state, &edge_looping,
1298 w_l->state_previously_known,
1299 w_l->looping_previously_known);
1300 worse_state (&pure_const_state, &looping,
1301 edge_state, edge_looping);
1302 if (pure_const_state == IPA_NEITHER)
1303 break;
1305 if (pure_const_state == IPA_NEITHER)
1306 break;
1308 /* Now process the indirect call. */
1309 for (ie = w->indirect_calls; ie; ie = ie->next_callee)
1311 enum pure_const_state_e edge_state = IPA_CONST;
1312 bool edge_looping = false;
1314 if (dump_file && (dump_flags & TDF_DETAILS))
1315 fprintf (dump_file, " Indirect call");
1316 state_from_flags (&edge_state, &edge_looping,
1317 ie->indirect_info->ecf_flags,
1318 ie->cannot_lead_to_return_p ());
1319 /* Merge the results with what we already know. */
1320 better_state (&edge_state, &edge_looping,
1321 w_l->state_previously_known,
1322 w_l->looping_previously_known);
1323 worse_state (&pure_const_state, &looping,
1324 edge_state, edge_looping);
1325 if (pure_const_state == IPA_NEITHER)
1326 break;
1328 if (pure_const_state == IPA_NEITHER)
1329 break;
1331 /* And finally all loads and stores. */
1332 for (i = 0; w->iterate_reference (i, ref); i++)
1334 enum pure_const_state_e ref_state = IPA_CONST;
1335 bool ref_looping = false;
1336 switch (ref->use)
1338 case IPA_REF_LOAD:
1339 /* readonly reads are safe. */
1340 if (TREE_READONLY (ref->referred->decl))
1341 break;
1342 if (dump_file && (dump_flags & TDF_DETAILS))
1343 fprintf (dump_file, " nonreadonly global var read\n");
1344 ref_state = IPA_PURE;
1345 break;
1346 case IPA_REF_STORE:
1347 if (ref->cannot_lead_to_return ())
1348 break;
1349 ref_state = IPA_NEITHER;
1350 if (dump_file && (dump_flags & TDF_DETAILS))
1351 fprintf (dump_file, " global var write\n");
1352 break;
1353 case IPA_REF_ADDR:
1354 case IPA_REF_CHKP:
1355 break;
1356 default:
1357 gcc_unreachable ();
1359 better_state (&ref_state, &ref_looping,
1360 w_l->state_previously_known,
1361 w_l->looping_previously_known);
1362 worse_state (&pure_const_state, &looping,
1363 ref_state, ref_looping);
1364 if (pure_const_state == IPA_NEITHER)
1365 break;
1367 w_info = (struct ipa_dfs_info *) w->aux;
1368 w = w_info->next_cycle;
1370 if (dump_file && (dump_flags & TDF_DETAILS))
1371 fprintf (dump_file, "Result %s looping %i\n",
1372 pure_const_names [pure_const_state],
1373 looping);
1375 /* Find the worst state of can_free for any node in the cycle. */
1376 bool can_free = false;
1377 w = node;
1378 while (w && !can_free)
1380 struct cgraph_edge *e;
1381 funct_state w_l = get_function_state (w);
1383 if (w_l->can_free
1384 || w->get_availability () == AVAIL_INTERPOSABLE
1385 || w->indirect_calls)
1386 can_free = true;
1388 for (e = w->callees; e && !can_free; e = e->next_callee)
1390 enum availability avail;
1391 struct cgraph_node *y = e->callee->
1392 function_or_virtual_thunk_symbol (&avail);
1394 if (avail > AVAIL_INTERPOSABLE)
1395 can_free = get_function_state (y)->can_free;
1396 else
1397 can_free = true;
1399 w_info = (struct ipa_dfs_info *) w->aux;
1400 w = w_info->next_cycle;
1403 /* Copy back the region's pure_const_state which is shared by
1404 all nodes in the region. */
1405 w = node;
1406 while (w)
1408 funct_state w_l = get_function_state (w);
1409 enum pure_const_state_e this_state = pure_const_state;
1410 bool this_looping = looping;
1412 w_l->can_free = can_free;
1413 w->nonfreeing_fn = !can_free;
1414 if (!can_free && dump_file)
1415 fprintf (dump_file, "Function found not to call free: %s\n",
1416 w->name ());
1418 if (w_l->state_previously_known != IPA_NEITHER
1419 && this_state > w_l->state_previously_known)
1421 this_state = w_l->state_previously_known;
1422 this_looping |= w_l->looping_previously_known;
1424 if (!this_looping && self_recursive_p (w))
1425 this_looping = true;
1426 if (!w_l->looping_previously_known)
1427 this_looping = false;
1429 /* All nodes within a cycle share the same info. */
1430 w_l->pure_const_state = this_state;
1431 w_l->looping = this_looping;
1433 /* Inline clones share declaration with their offline copies;
1434 do not modify their declarations since the offline copy may
1435 be different. */
1436 if (!w->global.inlined_to)
1437 switch (this_state)
1439 case IPA_CONST:
1440 if (!TREE_READONLY (w->decl))
1442 warn_function_const (w->decl, !this_looping);
1443 if (dump_file)
1444 fprintf (dump_file, "Function found to be %sconst: %s\n",
1445 this_looping ? "looping " : "",
1446 w->name ());
1448 remove_p |= w->call_for_symbol_and_aliases (cdtor_p,
1449 NULL, true);
1450 w->set_const_flag (true, this_looping);
1451 break;
1453 case IPA_PURE:
1454 if (!DECL_PURE_P (w->decl))
1456 warn_function_pure (w->decl, !this_looping);
1457 if (dump_file)
1458 fprintf (dump_file, "Function found to be %spure: %s\n",
1459 this_looping ? "looping " : "",
1460 w->name ());
1462 remove_p |= w->call_for_symbol_and_aliases (cdtor_p,
1463 NULL, true);
1464 w->set_pure_flag (true, this_looping);
1465 break;
1467 default:
1468 break;
1470 w_info = (struct ipa_dfs_info *) w->aux;
1471 w = w_info->next_cycle;
1475 ipa_free_postorder_info ();
1476 free (order);
1477 return remove_p;
1480 /* Produce transitive closure over the callgraph and compute nothrow
1481 attributes. */
1483 static void
1484 propagate_nothrow (void)
1486 struct cgraph_node *node;
1487 struct cgraph_node *w;
1488 struct cgraph_node **order =
1489 XCNEWVEC (struct cgraph_node *, symtab->cgraph_count);
1490 int order_pos;
1491 int i;
1492 struct ipa_dfs_info * w_info;
1494 order_pos = ipa_reduced_postorder (order, true, false, ignore_edge);
1495 if (dump_file)
1497 cgraph_node::dump_cgraph (dump_file);
1498 ipa_print_order (dump_file, "reduced for nothrow", order, order_pos);
1501 /* Propagate the local information through the call graph to produce
1502 the global information. All the nodes within a cycle will have
1503 the same info so we collapse cycles first. Then we can do the
1504 propagation in one pass from the leaves to the roots. */
1505 for (i = 0; i < order_pos; i++ )
1507 bool can_throw = false;
1508 node = order[i];
1510 if (node->alias)
1511 continue;
1513 /* Find the worst state for any node in the cycle. */
1514 w = node;
1515 while (w && !can_throw)
1517 struct cgraph_edge *e, *ie;
1518 funct_state w_l = get_function_state (w);
1520 if (w_l->can_throw
1521 || w->get_availability () == AVAIL_INTERPOSABLE)
1522 can_throw = true;
1524 for (e = w->callees; e && !can_throw; e = e->next_callee)
1526 enum availability avail;
1527 struct cgraph_node *y = e->callee->
1528 function_or_virtual_thunk_symbol (&avail);
1530 if (avail > AVAIL_INTERPOSABLE)
1532 funct_state y_l = get_function_state (y);
1534 if (y_l->can_throw && !TREE_NOTHROW (w->decl)
1535 && e->can_throw_external)
1536 can_throw = true;
1538 else if (e->can_throw_external && !TREE_NOTHROW (y->decl))
1539 can_throw = true;
1541 for (ie = w->indirect_calls; ie && !can_throw; ie = ie->next_callee)
1542 if (ie->can_throw_external)
1543 can_throw = true;
1544 w_info = (struct ipa_dfs_info *) w->aux;
1545 w = w_info->next_cycle;
1548 /* Copy back the region's pure_const_state which is shared by
1549 all nodes in the region. */
1550 w = node;
1551 while (w)
1553 funct_state w_l = get_function_state (w);
1554 if (!can_throw && !TREE_NOTHROW (w->decl))
1556 /* Inline clones share declaration with their offline copies;
1557 do not modify their declarations since the offline copy may
1558 be different. */
1559 if (!w->global.inlined_to)
1561 w->set_nothrow_flag (true);
1562 if (dump_file)
1563 fprintf (dump_file, "Function found to be nothrow: %s\n",
1564 w->name ());
1567 else if (can_throw && !TREE_NOTHROW (w->decl))
1568 w_l->can_throw = true;
1569 w_info = (struct ipa_dfs_info *) w->aux;
1570 w = w_info->next_cycle;
1574 ipa_free_postorder_info ();
1575 free (order);
1579 /* Produce the global information by preforming a transitive closure
1580 on the local information that was produced by generate_summary. */
1582 unsigned int
1583 pass_ipa_pure_const::
1584 execute (function *)
1586 struct cgraph_node *node;
1587 bool remove_p;
1589 symtab->remove_cgraph_insertion_hook (function_insertion_hook_holder);
1590 symtab->remove_cgraph_duplication_hook (node_duplication_hook_holder);
1591 symtab->remove_cgraph_removal_hook (node_removal_hook_holder);
1593 /* Nothrow makes more function to not lead to return and improve
1594 later analysis. */
1595 propagate_nothrow ();
1596 remove_p = propagate_pure_const ();
1598 /* Cleanup. */
1599 FOR_EACH_FUNCTION (node)
1600 if (has_function_state (node))
1601 free (get_function_state (node));
1602 funct_state_vec.release ();
1603 return remove_p ? TODO_remove_functions : 0;
1606 static bool
1607 gate_pure_const (void)
1609 return flag_ipa_pure_const || in_lto_p;
1612 pass_ipa_pure_const::pass_ipa_pure_const(gcc::context *ctxt)
1613 : ipa_opt_pass_d(pass_data_ipa_pure_const, ctxt,
1614 pure_const_generate_summary, /* generate_summary */
1615 pure_const_write_summary, /* write_summary */
1616 pure_const_read_summary, /* read_summary */
1617 NULL, /* write_optimization_summary */
1618 NULL, /* read_optimization_summary */
1619 NULL, /* stmt_fixup */
1620 0, /* function_transform_todo_flags_start */
1621 NULL, /* function_transform */
1622 NULL), /* variable_transform */
1623 init_p(false),
1624 function_insertion_hook_holder(NULL),
1625 node_duplication_hook_holder(NULL),
1626 node_removal_hook_holder(NULL)
1630 ipa_opt_pass_d *
1631 make_pass_ipa_pure_const (gcc::context *ctxt)
1633 return new pass_ipa_pure_const (ctxt);
1636 /* Return true if function should be skipped for local pure const analysis. */
1638 static bool
1639 skip_function_for_local_pure_const (struct cgraph_node *node)
1641 /* Because we do not schedule pass_fixup_cfg over whole program after early optimizations
1642 we must not promote functions that are called by already processed functions. */
1644 if (function_called_by_processed_nodes_p ())
1646 if (dump_file)
1647 fprintf (dump_file, "Function called in recursive cycle; ignoring\n");
1648 return true;
1650 if (node->get_availability () <= AVAIL_INTERPOSABLE)
1652 if (dump_file)
1653 fprintf (dump_file, "Function is not available or overwritable; not analyzing.\n");
1654 return true;
1656 return false;
1659 /* Simple local pass for pure const discovery reusing the analysis from
1660 ipa_pure_const. This pass is effective when executed together with
1661 other optimization passes in early optimization pass queue. */
1663 namespace {
1665 const pass_data pass_data_local_pure_const =
1667 GIMPLE_PASS, /* type */
1668 "local-pure-const", /* name */
1669 OPTGROUP_NONE, /* optinfo_flags */
1670 TV_IPA_PURE_CONST, /* tv_id */
1671 0, /* properties_required */
1672 0, /* properties_provided */
1673 0, /* properties_destroyed */
1674 0, /* todo_flags_start */
1675 0, /* todo_flags_finish */
1678 class pass_local_pure_const : public gimple_opt_pass
1680 public:
1681 pass_local_pure_const (gcc::context *ctxt)
1682 : gimple_opt_pass (pass_data_local_pure_const, ctxt)
1685 /* opt_pass methods: */
1686 opt_pass * clone () { return new pass_local_pure_const (m_ctxt); }
1687 virtual bool gate (function *) { return gate_pure_const (); }
1688 virtual unsigned int execute (function *);
1690 }; // class pass_local_pure_const
1692 unsigned int
1693 pass_local_pure_const::execute (function *fun)
1695 bool changed = false;
1696 funct_state l;
1697 bool skip;
1698 struct cgraph_node *node;
1700 node = cgraph_node::get (current_function_decl);
1701 skip = skip_function_for_local_pure_const (node);
1702 if (!warn_suggest_attribute_const
1703 && !warn_suggest_attribute_pure
1704 && skip)
1705 return 0;
1707 l = analyze_function (node, false);
1709 /* Do NORETURN discovery. */
1710 if (!skip && !TREE_THIS_VOLATILE (current_function_decl)
1711 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun)->preds) == 0)
1713 warn_function_noreturn (fun->decl);
1714 if (dump_file)
1715 fprintf (dump_file, "Function found to be noreturn: %s\n",
1716 current_function_name ());
1718 /* Update declaration and reduce profile to executed once. */
1719 TREE_THIS_VOLATILE (current_function_decl) = 1;
1720 if (node->frequency > NODE_FREQUENCY_EXECUTED_ONCE)
1721 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
1723 changed = true;
1726 switch (l->pure_const_state)
1728 case IPA_CONST:
1729 if (!TREE_READONLY (current_function_decl))
1731 warn_function_const (current_function_decl, !l->looping);
1732 if (!skip)
1734 node->set_const_flag (true, l->looping);
1735 changed = true;
1737 if (dump_file)
1738 fprintf (dump_file, "Function found to be %sconst: %s\n",
1739 l->looping ? "looping " : "",
1740 current_function_name ());
1742 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1743 && !l->looping)
1745 if (!skip)
1747 node->set_const_flag (true, false);
1748 changed = true;
1750 if (dump_file)
1751 fprintf (dump_file, "Function found to be non-looping: %s\n",
1752 current_function_name ());
1754 break;
1756 case IPA_PURE:
1757 if (!DECL_PURE_P (current_function_decl))
1759 if (!skip)
1761 node->set_pure_flag (true, l->looping);
1762 changed = true;
1764 warn_function_pure (current_function_decl, !l->looping);
1765 if (dump_file)
1766 fprintf (dump_file, "Function found to be %spure: %s\n",
1767 l->looping ? "looping " : "",
1768 current_function_name ());
1770 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1771 && !l->looping)
1773 if (!skip)
1775 node->set_pure_flag (true, false);
1776 changed = true;
1778 if (dump_file)
1779 fprintf (dump_file, "Function found to be non-looping: %s\n",
1780 current_function_name ());
1782 break;
1784 default:
1785 break;
1787 if (!l->can_throw && !TREE_NOTHROW (current_function_decl))
1789 node->set_nothrow_flag (true);
1790 changed = true;
1791 if (dump_file)
1792 fprintf (dump_file, "Function found to be nothrow: %s\n",
1793 current_function_name ());
1795 free (l);
1796 if (changed)
1797 return execute_fixup_cfg ();
1798 else
1799 return 0;
1802 } // anon namespace
1804 gimple_opt_pass *
1805 make_pass_local_pure_const (gcc::context *ctxt)
1807 return new pass_local_pure_const (ctxt);
1810 /* Emit noreturn warnings. */
1812 namespace {
1814 const pass_data pass_data_warn_function_noreturn =
1816 GIMPLE_PASS, /* type */
1817 "*warn_function_noreturn", /* name */
1818 OPTGROUP_NONE, /* optinfo_flags */
1819 TV_NONE, /* tv_id */
1820 PROP_cfg, /* properties_required */
1821 0, /* properties_provided */
1822 0, /* properties_destroyed */
1823 0, /* todo_flags_start */
1824 0, /* todo_flags_finish */
1827 class pass_warn_function_noreturn : public gimple_opt_pass
1829 public:
1830 pass_warn_function_noreturn (gcc::context *ctxt)
1831 : gimple_opt_pass (pass_data_warn_function_noreturn, ctxt)
1834 /* opt_pass methods: */
1835 virtual bool gate (function *) { return warn_suggest_attribute_noreturn; }
1836 virtual unsigned int execute (function *fun)
1838 if (!TREE_THIS_VOLATILE (current_function_decl)
1839 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun)->preds) == 0)
1840 warn_function_noreturn (current_function_decl);
1841 return 0;
1844 }; // class pass_warn_function_noreturn
1846 } // anon namespace
1848 gimple_opt_pass *
1849 make_pass_warn_function_noreturn (gcc::context *ctxt)
1851 return new pass_warn_function_noreturn (ctxt);
1854 /* Simple local pass for pure const discovery reusing the analysis from
1855 ipa_pure_const. This pass is effective when executed together with
1856 other optimization passes in early optimization pass queue. */
1858 namespace {
1860 const pass_data pass_data_nothrow =
1862 GIMPLE_PASS, /* type */
1863 "nothrow", /* name */
1864 OPTGROUP_NONE, /* optinfo_flags */
1865 TV_IPA_PURE_CONST, /* tv_id */
1866 0, /* properties_required */
1867 0, /* properties_provided */
1868 0, /* properties_destroyed */
1869 0, /* todo_flags_start */
1870 0, /* todo_flags_finish */
1873 class pass_nothrow : public gimple_opt_pass
1875 public:
1876 pass_nothrow (gcc::context *ctxt)
1877 : gimple_opt_pass (pass_data_nothrow, ctxt)
1880 /* opt_pass methods: */
1881 opt_pass * clone () { return new pass_nothrow (m_ctxt); }
1882 virtual bool gate (function *) { return optimize; }
1883 virtual unsigned int execute (function *);
1885 }; // class pass_nothrow
1887 unsigned int
1888 pass_nothrow::execute (function *)
1890 struct cgraph_node *node;
1891 basic_block this_block;
1893 if (TREE_NOTHROW (current_function_decl))
1894 return 0;
1896 node = cgraph_node::get (current_function_decl);
1898 /* We run during lowering, we can not really use availability yet. */
1899 if (cgraph_node::get (current_function_decl)->get_availability ()
1900 <= AVAIL_INTERPOSABLE)
1902 if (dump_file)
1903 fprintf (dump_file, "Function is interposable;"
1904 " not analyzing.\n");
1905 return true;
1908 FOR_EACH_BB_FN (this_block, cfun)
1910 for (gimple_stmt_iterator gsi = gsi_start_bb (this_block);
1911 !gsi_end_p (gsi);
1912 gsi_next (&gsi))
1913 if (stmt_can_throw_external (gsi_stmt (gsi)))
1915 if (is_gimple_call (gsi_stmt (gsi)))
1917 tree callee_t = gimple_call_fndecl (gsi_stmt (gsi));
1918 if (callee_t && recursive_call_p (current_function_decl,
1919 callee_t))
1920 continue;
1923 if (dump_file)
1925 fprintf (dump_file, "Statement can throw: ");
1926 print_gimple_stmt (dump_file, gsi_stmt (gsi), 0, 0);
1928 return 0;
1932 node->set_nothrow_flag (true);
1933 if (dump_file)
1934 fprintf (dump_file, "Function found to be nothrow: %s\n",
1935 current_function_name ());
1936 return 0;
1939 } // anon namespace
1941 gimple_opt_pass *
1942 make_pass_nothrow (gcc::context *ctxt)
1944 return new pass_nothrow (ctxt);