1 /* Callgraph based analysis of static variables.
2 Copyright (C) 2004-2017 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
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
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. */
36 #include "coretypes.h"
41 #include "tree-pass.h"
42 #include "tree-streamer.h"
44 #include "diagnostic.h"
48 #include "gimple-iterator.h"
49 #include "gimple-walk.h"
51 #include "tree-ssa-loop-niter.h"
52 #include "langhooks.h"
53 #include "ipa-utils.h"
54 #include "gimple-pretty-print.h"
56 #include "tree-scalar-evolution.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
63 enum pure_const_state_e
70 const char *pure_const_names
[3] = {"const", "pure", "neither"};
72 /* Holder for the const_state. There is one of these per function
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. */
92 /* If function can call free, munmap or otherwise make previously
93 non-trapping memory accesses trapping. */
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
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);
116 const pass_data pass_data_ipa_pure_const
=
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
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);
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
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. */
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
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
))
175 if (TREE_THIS_VOLATILE (decl
)
176 || (known_finite
&& function_always_visible_to_compiler_p (decl
)))
180 warned_about
= new hash_set
<tree
>;
181 if (warned_about
->contains (decl
))
183 warned_about
->add (decl
);
184 warning_at (DECL_SOURCE_LOCATION (decl
),
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
);
193 /* Emit suggestion about __attribute_((pure)) for DECL. KNOWN_FINITE
194 is true if the function is known to be finite. */
197 warn_function_pure (tree decl
, bool known_finite
)
199 static hash_set
<tree
> *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. */
210 warn_function_const (tree decl
, bool known_finite
)
212 static hash_set
<tree
> *warned_about
;
214 = suggest_attribute (OPT_Wsuggest_attribute_const
, decl
,
215 known_finite
, warned_about
, "const");
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
))
225 = suggest_attribute (OPT_Wsuggest_attribute_noreturn
, decl
,
226 true, warned_about
, "noreturn");
229 /* Return true if we have a function state for NODE. */
232 has_function_state (struct cgraph_node
*node
)
234 if (!funct_state_vec
.exists ()
235 || funct_state_vec
.length () <= (unsigned int)node
->uid
)
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. */
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);
262 /* If funct_state_vec already contains a funct_state, we have to release
263 it before it's going to be ovewritten. */
264 if (funct_state_vec
[node
->uid
] != NULL
265 && funct_state_vec
[node
->uid
] != &varying_state
)
266 free (funct_state_vec
[node
->uid
]);
268 funct_state_vec
[node
->uid
] = s
;
271 /* Check to see if the use (or definition when CHECKING_WRITE is true)
272 variable T is legal in a function that is either pure or const. */
275 check_decl (funct_state local
,
276 tree t
, bool checking_write
, bool ipa
)
278 /* Do not want to do anything with volatile except mark any
279 function that uses one to be not const or pure. */
280 if (TREE_THIS_VOLATILE (t
))
282 local
->pure_const_state
= IPA_NEITHER
;
284 fprintf (dump_file
, " Volatile operand is not const/pure");
288 /* Do not care about a local automatic that is not static. */
289 if (!TREE_STATIC (t
) && !DECL_EXTERNAL (t
))
292 /* If the variable has the "used" attribute, treat it as if it had a
293 been touched by the devil. */
294 if (DECL_PRESERVE_P (t
))
296 local
->pure_const_state
= IPA_NEITHER
;
298 fprintf (dump_file
, " Used static/global variable is not const/pure\n");
302 /* In IPA mode we are not interested in checking actual loads and stores;
303 they will be processed at propagation time using ipa_ref. */
307 /* Since we have dealt with the locals and params cases above, if we
308 are CHECKING_WRITE, this cannot be a pure or constant
312 local
->pure_const_state
= IPA_NEITHER
;
314 fprintf (dump_file
, " static/global memory write is not const/pure\n");
318 if (DECL_EXTERNAL (t
) || TREE_PUBLIC (t
))
320 /* Readonly reads are safe. */
321 if (TREE_READONLY (t
) && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (t
)))
322 return; /* Read of a constant, do not change the function state. */
326 fprintf (dump_file
, " global memory read is not const\n");
327 /* Just a regular read. */
328 if (local
->pure_const_state
== IPA_CONST
)
329 local
->pure_const_state
= IPA_PURE
;
334 /* Compilation level statics can be read if they are readonly
336 if (TREE_READONLY (t
))
340 fprintf (dump_file
, " static memory read is not const\n");
341 /* Just a regular read. */
342 if (local
->pure_const_state
== IPA_CONST
)
343 local
->pure_const_state
= IPA_PURE
;
348 /* Check to see if the use (or definition when CHECKING_WRITE is true)
349 variable T is legal in a function that is either pure or const. */
352 check_op (funct_state local
, tree t
, bool checking_write
)
354 t
= get_base_address (t
);
355 if (t
&& TREE_THIS_VOLATILE (t
))
357 local
->pure_const_state
= IPA_NEITHER
;
359 fprintf (dump_file
, " Volatile indirect ref is not const/pure\n");
363 && (INDIRECT_REF_P (t
) || TREE_CODE (t
) == MEM_REF
)
364 && TREE_CODE (TREE_OPERAND (t
, 0)) == SSA_NAME
365 && !ptr_deref_may_alias_global_p (TREE_OPERAND (t
, 0)))
368 fprintf (dump_file
, " Indirect ref to local memory is OK\n");
371 else if (checking_write
)
373 local
->pure_const_state
= IPA_NEITHER
;
375 fprintf (dump_file
, " Indirect ref write is not const/pure\n");
381 fprintf (dump_file
, " Indirect ref read is not const\n");
382 if (local
->pure_const_state
== IPA_CONST
)
383 local
->pure_const_state
= IPA_PURE
;
387 /* compute state based on ECF FLAGS and store to STATE and LOOPING. */
390 state_from_flags (enum pure_const_state_e
*state
, bool *looping
,
391 int flags
, bool cannot_lead_to_return
)
394 if (flags
& ECF_LOOPING_CONST_OR_PURE
)
397 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
398 fprintf (dump_file
, " looping");
400 if (flags
& ECF_CONST
)
403 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
404 fprintf (dump_file
, " const\n");
406 else if (flags
& ECF_PURE
)
409 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
410 fprintf (dump_file
, " pure\n");
412 else if (cannot_lead_to_return
)
416 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
417 fprintf (dump_file
, " ignoring side effects->pure looping\n");
421 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
422 fprintf (dump_file
, " neither\n");
423 *state
= IPA_NEITHER
;
428 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
429 into STATE and LOOPING better of the two variants.
430 Be sure to merge looping correctly. IPA_NEITHER functions
431 have looping 0 even if they don't have to return. */
434 better_state (enum pure_const_state_e
*state
, bool *looping
,
435 enum pure_const_state_e state2
, bool looping2
)
439 if (*state
== IPA_NEITHER
)
442 *looping
= MIN (*looping
, looping2
);
445 else if (state2
!= IPA_NEITHER
)
446 *looping
= MIN (*looping
, looping2
);
449 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
450 into STATE and LOOPING worse of the two variants.
451 N is the actual node called. */
454 worse_state (enum pure_const_state_e
*state
, bool *looping
,
455 enum pure_const_state_e state2
, bool looping2
,
456 struct symtab_node
*from
,
457 struct symtab_node
*to
)
459 /* Consider function:
466 During early optimization we will turn this into:
473 Now if this function will be detected as CONST however when interposed it
474 may end up being just pure. We always must assume the worst scenario here.
476 if (*state
== IPA_CONST
&& state2
== IPA_CONST
477 && to
&& !TREE_READONLY (to
->decl
) && !to
->binds_to_current_def_p (from
))
479 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
480 fprintf (dump_file
, "Dropping state to PURE because call to %s may not "
481 "bind to current def.\n", to
->name ());
484 *state
= MAX (*state
, state2
);
485 *looping
= MAX (*looping
, looping2
);
488 /* Recognize special cases of builtins that are by themselves not pure or const
489 but function using them is. */
491 special_builtin_state (enum pure_const_state_e
*state
, bool *looping
,
494 if (DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
)
495 switch (DECL_FUNCTION_CODE (callee
))
497 case BUILT_IN_RETURN
:
498 case BUILT_IN_UNREACHABLE
:
499 case BUILT_IN_ALLOCA
:
500 case BUILT_IN_ALLOCA_WITH_ALIGN
:
501 case BUILT_IN_STACK_SAVE
:
502 case BUILT_IN_STACK_RESTORE
:
503 case BUILT_IN_EH_POINTER
:
504 case BUILT_IN_EH_FILTER
:
505 case BUILT_IN_UNWIND_RESUME
:
506 case BUILT_IN_CXA_END_CLEANUP
:
507 case BUILT_IN_EH_COPY_VALUES
:
508 case BUILT_IN_FRAME_ADDRESS
:
510 case BUILT_IN_APPLY_ARGS
:
511 case BUILT_IN_ASAN_BEFORE_DYNAMIC_INIT
:
512 case BUILT_IN_ASAN_AFTER_DYNAMIC_INIT
:
516 case BUILT_IN_PREFETCH
:
526 /* Check the parameters of a function call to CALL_EXPR to see if
527 there are any references in the parameters that are not allowed for
528 pure or const functions. Also check to see if this is either an
529 indirect call, a call outside the compilation unit, or has special
530 attributes that may also effect the purity. The CALL_EXPR node for
531 the entire call expression. */
534 check_call (funct_state local
, gcall
*call
, bool ipa
)
536 int flags
= gimple_call_flags (call
);
537 tree callee_t
= gimple_call_fndecl (call
);
538 bool possibly_throws
= stmt_could_throw_p (call
);
539 bool possibly_throws_externally
= (possibly_throws
540 && stmt_can_throw_external (call
));
545 for (i
= 0; i
< gimple_num_ops (call
); i
++)
546 if (gimple_op (call
, i
)
547 && tree_could_throw_p (gimple_op (call
, i
)))
549 if (possibly_throws
&& cfun
->can_throw_non_call_exceptions
)
552 fprintf (dump_file
, " operand can throw; looping\n");
553 local
->looping
= true;
555 if (possibly_throws_externally
)
558 fprintf (dump_file
, " operand can throw externally\n");
559 local
->can_throw
= true;
564 /* The const and pure flags are set by a variety of places in the
565 compiler (including here). If someone has already set the flags
566 for the callee, (such as for some of the builtins) we will use
567 them, otherwise we will compute our own information.
569 Const and pure functions have less clobber effects than other
570 functions so we process these first. Otherwise if it is a call
571 outside the compilation unit or an indirect call we punt. This
572 leaves local calls which will be processed by following the call
576 enum pure_const_state_e call_state
;
579 if (gimple_call_builtin_p (call
, BUILT_IN_NORMAL
)
580 && !nonfreeing_call_p (call
))
581 local
->can_free
= true;
583 if (special_builtin_state (&call_state
, &call_looping
, callee_t
))
585 worse_state (&local
->pure_const_state
, &local
->looping
,
586 call_state
, call_looping
,
590 /* When bad things happen to bad functions, they cannot be const
592 if (setjmp_call_p (callee_t
))
595 fprintf (dump_file
, " setjmp is not const/pure\n");
596 local
->looping
= true;
597 local
->pure_const_state
= IPA_NEITHER
;
600 if (DECL_BUILT_IN_CLASS (callee_t
) == BUILT_IN_NORMAL
)
601 switch (DECL_FUNCTION_CODE (callee_t
))
603 case BUILT_IN_LONGJMP
:
604 case BUILT_IN_NONLOCAL_GOTO
:
606 fprintf (dump_file
, " longjmp and nonlocal goto is not const/pure\n");
607 local
->pure_const_state
= IPA_NEITHER
;
608 local
->looping
= true;
614 else if (gimple_call_internal_p (call
) && !nonfreeing_call_p (call
))
615 local
->can_free
= true;
617 /* When not in IPA mode, we can still handle self recursion. */
619 && recursive_call_p (current_function_decl
, callee_t
))
622 fprintf (dump_file
, " Recursive call can loop.\n");
623 local
->looping
= true;
625 /* Either callee is unknown or we are doing local analysis.
626 Look to see if there are any bits available for the callee (such as by
627 declaration or because it is builtin) and process solely on the basis of
628 those bits. Handle internal calls always, those calls don't have
629 corresponding cgraph edges and thus aren't processed during
631 else if (!ipa
|| gimple_call_internal_p (call
))
633 enum pure_const_state_e call_state
;
635 if (possibly_throws
&& cfun
->can_throw_non_call_exceptions
)
638 fprintf (dump_file
, " can throw; looping\n");
639 local
->looping
= true;
641 if (possibly_throws_externally
)
645 fprintf (dump_file
, " can throw externally to lp %i\n",
646 lookup_stmt_eh_lp (call
));
648 fprintf (dump_file
, " callee:%s\n",
649 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (callee_t
)));
651 local
->can_throw
= true;
653 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
654 fprintf (dump_file
, " checking flags for call:");
655 state_from_flags (&call_state
, &call_looping
, flags
,
656 ((flags
& (ECF_NORETURN
| ECF_NOTHROW
))
657 == (ECF_NORETURN
| ECF_NOTHROW
))
658 || (!flag_exceptions
&& (flags
& ECF_NORETURN
)));
659 worse_state (&local
->pure_const_state
, &local
->looping
,
660 call_state
, call_looping
, NULL
, NULL
);
662 /* Direct functions calls are handled by IPA propagation. */
665 /* Wrapper around check_decl for loads in local more. */
668 check_load (gimple
*, tree op
, tree
, void *data
)
671 check_decl ((funct_state
)data
, op
, false, false);
673 check_op ((funct_state
)data
, op
, false);
677 /* Wrapper around check_decl for stores in local more. */
680 check_store (gimple
*, tree op
, tree
, void *data
)
683 check_decl ((funct_state
)data
, op
, true, false);
685 check_op ((funct_state
)data
, op
, true);
689 /* Wrapper around check_decl for loads in ipa mode. */
692 check_ipa_load (gimple
*, tree op
, tree
, void *data
)
695 check_decl ((funct_state
)data
, op
, false, true);
697 check_op ((funct_state
)data
, op
, false);
701 /* Wrapper around check_decl for stores in ipa mode. */
704 check_ipa_store (gimple
*, tree op
, tree
, void *data
)
707 check_decl ((funct_state
)data
, op
, true, true);
709 check_op ((funct_state
)data
, op
, true);
713 /* Look into pointer pointed to by GSIP and figure out what interesting side
716 check_stmt (gimple_stmt_iterator
*gsip
, funct_state local
, bool ipa
)
718 gimple
*stmt
= gsi_stmt (*gsip
);
720 if (is_gimple_debug (stmt
))
723 /* Do consider clobber as side effects before IPA, so we rather inline
724 C++ destructors and keep clobber semantics than eliminate them.
726 TODO: We may get smarter during early optimizations on these and let
727 functions containing only clobbers to be optimized more. This is a common
728 case of C++ destructors. */
730 if ((ipa
|| cfun
->after_inlining
) && gimple_clobber_p (stmt
))
735 fprintf (dump_file
, " scanning: ");
736 print_gimple_stmt (dump_file
, stmt
, 0, 0);
739 if (gimple_has_volatile_ops (stmt
)
740 && !gimple_clobber_p (stmt
))
742 local
->pure_const_state
= IPA_NEITHER
;
744 fprintf (dump_file
, " Volatile stmt is not const/pure\n");
747 /* Look for loads and stores. */
748 walk_stmt_load_store_ops (stmt
, local
,
749 ipa
? check_ipa_load
: check_load
,
750 ipa
? check_ipa_store
: check_store
);
752 if (gimple_code (stmt
) != GIMPLE_CALL
753 && stmt_could_throw_p (stmt
))
755 if (cfun
->can_throw_non_call_exceptions
)
758 fprintf (dump_file
, " can throw; looping\n");
759 local
->looping
= true;
761 if (stmt_can_throw_external (stmt
))
764 fprintf (dump_file
, " can throw externally\n");
765 local
->can_throw
= true;
769 fprintf (dump_file
, " can throw\n");
771 switch (gimple_code (stmt
))
774 check_call (local
, as_a
<gcall
*> (stmt
), ipa
);
777 if (DECL_NONLOCAL (gimple_label_label (as_a
<glabel
*> (stmt
))))
778 /* Target of long jump. */
781 fprintf (dump_file
, " nonlocal label is not const/pure\n");
782 local
->pure_const_state
= IPA_NEITHER
;
786 if (gimple_asm_clobbers_memory_p (as_a
<gasm
*> (stmt
)))
789 fprintf (dump_file
, " memory asm clobber is not const/pure\n");
790 /* Abandon all hope, ye who enter here. */
791 local
->pure_const_state
= IPA_NEITHER
;
792 local
->can_free
= true;
794 if (gimple_asm_volatile_p (as_a
<gasm
*> (stmt
)))
797 fprintf (dump_file
, " volatile is not const/pure\n");
798 /* Abandon all hope, ye who enter here. */
799 local
->pure_const_state
= IPA_NEITHER
;
800 local
->looping
= true;
801 local
->can_free
= true;
810 /* This is the main routine for finding the reference patterns for
811 global variables within a function FN. */
814 analyze_function (struct cgraph_node
*fn
, bool ipa
)
816 tree decl
= fn
->decl
;
818 basic_block this_block
;
820 l
= XCNEW (struct funct_state_d
);
821 l
->pure_const_state
= IPA_CONST
;
822 l
->state_previously_known
= IPA_NEITHER
;
823 l
->looping_previously_known
= true;
825 l
->can_throw
= false;
827 state_from_flags (&l
->state_previously_known
, &l
->looping_previously_known
,
828 flags_from_decl_or_type (fn
->decl
),
829 fn
->cannot_return_p ());
831 if (fn
->thunk
.thunk_p
|| fn
->alias
)
833 /* Thunk gets propagated through, so nothing interesting happens. */
835 if (fn
->thunk
.thunk_p
&& fn
->thunk
.virtual_offset_p
)
836 l
->pure_const_state
= IPA_NEITHER
;
842 fprintf (dump_file
, "\n\n local analysis of %s\n ",
846 push_cfun (DECL_STRUCT_FUNCTION (decl
));
848 FOR_EACH_BB_FN (this_block
, cfun
)
850 gimple_stmt_iterator gsi
;
851 struct walk_stmt_info wi
;
853 memset (&wi
, 0, sizeof (wi
));
854 for (gsi
= gsi_start_bb (this_block
);
858 check_stmt (&gsi
, l
, ipa
);
859 if (l
->pure_const_state
== IPA_NEITHER
868 if (l
->pure_const_state
!= IPA_NEITHER
)
870 /* Const functions cannot have back edges (an
871 indication of possible infinite loop side
873 if (mark_dfs_back_edges ())
875 /* Preheaders are needed for SCEV to work.
876 Simple latches and recorded exits improve chances that loop will
877 proved to be finite in testcases such as in loop-15.c
879 loop_optimizer_init (LOOPS_HAVE_PREHEADERS
880 | LOOPS_HAVE_SIMPLE_LATCHES
881 | LOOPS_HAVE_RECORDED_EXITS
);
882 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
883 flow_loops_dump (dump_file
, NULL
, 0);
884 if (mark_irreducible_loops ())
887 fprintf (dump_file
, " has irreducible loops\n");
894 FOR_EACH_LOOP (loop
, 0)
895 if (!finite_loop_p (loop
))
898 fprintf (dump_file
, " can not prove finiteness of "
899 "loop %i\n", loop
->num
);
905 loop_optimizer_finalize ();
909 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
910 fprintf (dump_file
, " checking previously known:");
912 better_state (&l
->pure_const_state
, &l
->looping
,
913 l
->state_previously_known
,
914 l
->looping_previously_known
);
915 if (TREE_NOTHROW (decl
))
916 l
->can_throw
= false;
922 fprintf (dump_file
, "Function is locally looping.\n");
924 fprintf (dump_file
, "Function is locally throwing.\n");
925 if (l
->pure_const_state
== IPA_CONST
)
926 fprintf (dump_file
, "Function is locally const.\n");
927 if (l
->pure_const_state
== IPA_PURE
)
928 fprintf (dump_file
, "Function is locally pure.\n");
930 fprintf (dump_file
, "Function can locally free.\n");
935 /* Called when new function is inserted to callgraph late. */
937 add_new_function (struct cgraph_node
*node
, void *data ATTRIBUTE_UNUSED
)
939 /* There are some shared nodes, in particular the initializers on
940 static declarations. We do not need to scan them more than once
941 since all we would be interested in are the addressof
943 if (opt_for_fn (node
->decl
, flag_ipa_pure_const
))
944 set_function_state (node
, analyze_function (node
, true));
947 /* Called when new clone is inserted to callgraph late. */
950 duplicate_node_data (struct cgraph_node
*src
, struct cgraph_node
*dst
,
951 void *data ATTRIBUTE_UNUSED
)
953 if (has_function_state (src
))
955 funct_state l
= XNEW (struct funct_state_d
);
956 gcc_assert (!has_function_state (dst
));
957 memcpy (l
, get_function_state (src
), sizeof (*l
));
958 set_function_state (dst
, l
);
962 /* Called when new clone is inserted to callgraph late. */
965 remove_node_data (struct cgraph_node
*node
, void *data ATTRIBUTE_UNUSED
)
967 if (has_function_state (node
))
968 set_function_state (node
, NULL
);
973 pass_ipa_pure_const::
974 register_hooks (void)
981 node_removal_hook_holder
=
982 symtab
->add_cgraph_removal_hook (&remove_node_data
, NULL
);
983 node_duplication_hook_holder
=
984 symtab
->add_cgraph_duplication_hook (&duplicate_node_data
, NULL
);
985 function_insertion_hook_holder
=
986 symtab
->add_cgraph_insertion_hook (&add_new_function
, NULL
);
990 /* Analyze each function in the cgraph to see if it is locally PURE or
994 pure_const_generate_summary (void)
996 struct cgraph_node
*node
;
998 pass_ipa_pure_const
*pass
= static_cast <pass_ipa_pure_const
*> (current_pass
);
999 pass
->register_hooks ();
1001 /* Process all of the functions.
1003 We process AVAIL_INTERPOSABLE functions. We can not use the results
1004 by default, but the info can be used at LTO with -fwhole-program or
1005 when function got cloned and the clone is AVAILABLE. */
1007 FOR_EACH_DEFINED_FUNCTION (node
)
1008 if (opt_for_fn (node
->decl
, flag_ipa_pure_const
))
1009 set_function_state (node
, analyze_function (node
, true));
1013 /* Serialize the ipa info for lto. */
1016 pure_const_write_summary (void)
1018 struct cgraph_node
*node
;
1019 struct lto_simple_output_block
*ob
1020 = lto_create_simple_output_block (LTO_section_ipa_pure_const
);
1021 unsigned int count
= 0;
1022 lto_symtab_encoder_iterator lsei
;
1023 lto_symtab_encoder_t encoder
;
1025 encoder
= lto_get_out_decl_state ()->symtab_node_encoder
;
1027 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
1028 lsei_next_function_in_partition (&lsei
))
1030 node
= lsei_cgraph_node (lsei
);
1031 if (node
->definition
&& has_function_state (node
))
1035 streamer_write_uhwi_stream (ob
->main_stream
, count
);
1037 /* Process all of the functions. */
1038 for (lsei
= lsei_start_function_in_partition (encoder
); !lsei_end_p (lsei
);
1039 lsei_next_function_in_partition (&lsei
))
1041 node
= lsei_cgraph_node (lsei
);
1042 if (node
->definition
&& has_function_state (node
))
1044 struct bitpack_d bp
;
1047 lto_symtab_encoder_t encoder
;
1049 fs
= get_function_state (node
);
1051 encoder
= ob
->decl_state
->symtab_node_encoder
;
1052 node_ref
= lto_symtab_encoder_encode (encoder
, node
);
1053 streamer_write_uhwi_stream (ob
->main_stream
, node_ref
);
1055 /* Note that flags will need to be read in the opposite
1056 order as we are pushing the bitflags into FLAGS. */
1057 bp
= bitpack_create (ob
->main_stream
);
1058 bp_pack_value (&bp
, fs
->pure_const_state
, 2);
1059 bp_pack_value (&bp
, fs
->state_previously_known
, 2);
1060 bp_pack_value (&bp
, fs
->looping_previously_known
, 1);
1061 bp_pack_value (&bp
, fs
->looping
, 1);
1062 bp_pack_value (&bp
, fs
->can_throw
, 1);
1063 bp_pack_value (&bp
, fs
->can_free
, 1);
1064 streamer_write_bitpack (&bp
);
1068 lto_destroy_simple_output_block (ob
);
1072 /* Deserialize the ipa info for lto. */
1075 pure_const_read_summary (void)
1077 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
1078 struct lto_file_decl_data
*file_data
;
1081 pass_ipa_pure_const
*pass
= static_cast <pass_ipa_pure_const
*> (current_pass
);
1082 pass
->register_hooks ();
1084 while ((file_data
= file_data_vec
[j
++]))
1088 struct lto_input_block
*ib
1089 = lto_create_simple_input_block (file_data
,
1090 LTO_section_ipa_pure_const
,
1095 unsigned int count
= streamer_read_uhwi (ib
);
1097 for (i
= 0; i
< count
; i
++)
1100 struct cgraph_node
*node
;
1101 struct bitpack_d bp
;
1103 lto_symtab_encoder_t encoder
;
1105 fs
= XCNEW (struct funct_state_d
);
1106 index
= streamer_read_uhwi (ib
);
1107 encoder
= file_data
->symtab_node_encoder
;
1108 node
= dyn_cast
<cgraph_node
*> (lto_symtab_encoder_deref (encoder
,
1110 set_function_state (node
, fs
);
1112 /* Note that the flags must be read in the opposite
1113 order in which they were written (the bitflags were
1114 pushed into FLAGS). */
1115 bp
= streamer_read_bitpack (ib
);
1116 fs
->pure_const_state
1117 = (enum pure_const_state_e
) bp_unpack_value (&bp
, 2);
1118 fs
->state_previously_known
1119 = (enum pure_const_state_e
) bp_unpack_value (&bp
, 2);
1120 fs
->looping_previously_known
= bp_unpack_value (&bp
, 1);
1121 fs
->looping
= bp_unpack_value (&bp
, 1);
1122 fs
->can_throw
= bp_unpack_value (&bp
, 1);
1123 fs
->can_free
= bp_unpack_value (&bp
, 1);
1126 int flags
= flags_from_decl_or_type (node
->decl
);
1127 fprintf (dump_file
, "Read info for %s/%i ",
1130 if (flags
& ECF_CONST
)
1131 fprintf (dump_file
, " const");
1132 if (flags
& ECF_PURE
)
1133 fprintf (dump_file
, " pure");
1134 if (flags
& ECF_NOTHROW
)
1135 fprintf (dump_file
, " nothrow");
1136 fprintf (dump_file
, "\n pure const state: %s\n",
1137 pure_const_names
[fs
->pure_const_state
]);
1138 fprintf (dump_file
, " previously known state: %s\n",
1139 pure_const_names
[fs
->state_previously_known
]);
1141 fprintf (dump_file
," function is locally looping\n");
1142 if (fs
->looping_previously_known
)
1143 fprintf (dump_file
," function is previously known looping\n");
1145 fprintf (dump_file
," function is locally throwing\n");
1147 fprintf (dump_file
," function can locally free\n");
1151 lto_destroy_simple_input_block (file_data
,
1152 LTO_section_ipa_pure_const
,
1158 /* We only propagate across edges that can throw externally and their callee
1159 is not interposable. */
1162 ignore_edge_for_nothrow (struct cgraph_edge
*e
)
1164 if (!e
->can_throw_external
|| TREE_NOTHROW (e
->callee
->decl
))
1167 enum availability avail
;
1168 cgraph_node
*n
= e
->callee
->function_or_virtual_thunk_symbol (&avail
,
1170 if (avail
<= AVAIL_INTERPOSABLE
|| TREE_NOTHROW (n
->decl
))
1172 return opt_for_fn (e
->callee
->decl
, flag_non_call_exceptions
)
1173 && !e
->callee
->binds_to_current_def_p (e
->caller
);
1176 /* Return true if NODE is self recursive function.
1177 Indirectly recursive functions appears as non-trivial strongly
1178 connected components, so we need to care about self recursion
1182 self_recursive_p (struct cgraph_node
*node
)
1184 struct cgraph_edge
*e
;
1185 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1186 if (e
->callee
->function_symbol () == node
)
1191 /* Return true if N is cdtor that is not const or pure. In this case we may
1192 need to remove unreachable function if it is marked const/pure. */
1195 cdtor_p (cgraph_node
*n
, void *)
1197 if (DECL_STATIC_CONSTRUCTOR (n
->decl
) || DECL_STATIC_DESTRUCTOR (n
->decl
))
1198 return ((!TREE_READONLY (n
->decl
) && !DECL_PURE_P (n
->decl
))
1199 || DECL_LOOPING_CONST_OR_PURE_P (n
->decl
));
1203 /* We only propagate across edges with non-interposable callee. */
1206 ignore_edge_for_pure_const (struct cgraph_edge
*e
)
1208 enum availability avail
;
1209 e
->callee
->function_or_virtual_thunk_symbol (&avail
, e
->caller
);
1210 return (avail
<= AVAIL_INTERPOSABLE
);
1214 /* Produce transitive closure over the callgraph and compute pure/const
1218 propagate_pure_const (void)
1220 struct cgraph_node
*node
;
1221 struct cgraph_node
*w
;
1222 struct cgraph_node
**order
=
1223 XCNEWVEC (struct cgraph_node
*, symtab
->cgraph_count
);
1226 struct ipa_dfs_info
* w_info
;
1227 bool remove_p
= false;
1230 order_pos
= ipa_reduced_postorder (order
, true, false,
1231 ignore_edge_for_pure_const
);
1234 cgraph_node::dump_cgraph (dump_file
);
1235 ipa_print_order (dump_file
, "reduced", order
, order_pos
);
1238 /* Propagate the local information through the call graph to produce
1239 the global information. All the nodes within a cycle will have
1240 the same info so we collapse cycles first. Then we can do the
1241 propagation in one pass from the leaves to the roots. */
1242 for (i
= 0; i
< order_pos
; i
++ )
1244 enum pure_const_state_e pure_const_state
= IPA_CONST
;
1245 bool looping
= false;
1252 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1253 fprintf (dump_file
, "Starting cycle\n");
1255 /* Find the worst state for any node in the cycle. */
1257 while (w
&& pure_const_state
!= IPA_NEITHER
)
1259 struct cgraph_edge
*e
;
1260 struct cgraph_edge
*ie
;
1262 struct ipa_ref
*ref
= NULL
;
1264 funct_state w_l
= get_function_state (w
);
1265 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1266 fprintf (dump_file
, " Visiting %s/%i state:%s looping %i\n",
1269 pure_const_names
[w_l
->pure_const_state
],
1272 /* First merge in function body properties.
1273 We are safe to pass NULL as FROM and TO because we will take care
1274 of possible interposition when walking callees. */
1275 worse_state (&pure_const_state
, &looping
,
1276 w_l
->pure_const_state
, w_l
->looping
,
1278 if (pure_const_state
== IPA_NEITHER
)
1283 /* We consider recursive cycles as possibly infinite.
1284 This might be relaxed since infinite recursion leads to stack
1289 /* Now walk the edges and merge in callee properties. */
1290 for (e
= w
->callees
; e
&& pure_const_state
!= IPA_NEITHER
;
1293 enum availability avail
;
1294 struct cgraph_node
*y
= e
->callee
->
1295 function_or_virtual_thunk_symbol (&avail
,
1297 enum pure_const_state_e edge_state
= IPA_CONST
;
1298 bool edge_looping
= false;
1300 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1307 if (avail
> AVAIL_INTERPOSABLE
)
1309 funct_state y_l
= get_function_state (y
);
1310 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1313 " state:%s looping:%i\n",
1314 pure_const_names
[y_l
->pure_const_state
],
1317 if (y_l
->pure_const_state
> IPA_PURE
1318 && e
->cannot_lead_to_return_p ())
1320 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1322 " Ignoring side effects"
1323 " -> pure, looping\n");
1324 edge_state
= IPA_PURE
;
1325 edge_looping
= true;
1329 edge_state
= y_l
->pure_const_state
;
1330 edge_looping
= y_l
->looping
;
1333 else if (special_builtin_state (&edge_state
, &edge_looping
,
1337 state_from_flags (&edge_state
, &edge_looping
,
1338 flags_from_decl_or_type (y
->decl
),
1339 e
->cannot_lead_to_return_p ());
1341 /* Merge the results with what we already know. */
1342 better_state (&edge_state
, &edge_looping
,
1343 w_l
->state_previously_known
,
1344 w_l
->looping_previously_known
);
1345 worse_state (&pure_const_state
, &looping
,
1346 edge_state
, edge_looping
, e
->caller
, e
->callee
);
1347 if (pure_const_state
== IPA_NEITHER
)
1351 /* Now process the indirect call. */
1352 for (ie
= w
->indirect_calls
;
1353 ie
&& pure_const_state
!= IPA_NEITHER
; ie
= ie
->next_callee
)
1355 enum pure_const_state_e edge_state
= IPA_CONST
;
1356 bool edge_looping
= false;
1358 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1359 fprintf (dump_file
, " Indirect call");
1360 state_from_flags (&edge_state
, &edge_looping
,
1361 ie
->indirect_info
->ecf_flags
,
1362 ie
->cannot_lead_to_return_p ());
1363 /* Merge the results with what we already know. */
1364 better_state (&edge_state
, &edge_looping
,
1365 w_l
->state_previously_known
,
1366 w_l
->looping_previously_known
);
1367 worse_state (&pure_const_state
, &looping
,
1368 edge_state
, edge_looping
, NULL
, NULL
);
1369 if (pure_const_state
== IPA_NEITHER
)
1373 /* And finally all loads and stores. */
1374 for (i
= 0; w
->iterate_reference (i
, ref
)
1375 && pure_const_state
!= IPA_NEITHER
; i
++)
1377 enum pure_const_state_e ref_state
= IPA_CONST
;
1378 bool ref_looping
= false;
1382 /* readonly reads are safe. */
1383 if (TREE_READONLY (ref
->referred
->decl
))
1385 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1386 fprintf (dump_file
, " nonreadonly global var read\n");
1387 ref_state
= IPA_PURE
;
1390 if (ref
->cannot_lead_to_return ())
1392 ref_state
= IPA_NEITHER
;
1393 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1394 fprintf (dump_file
, " global var write\n");
1402 better_state (&ref_state
, &ref_looping
,
1403 w_l
->state_previously_known
,
1404 w_l
->looping_previously_known
);
1405 worse_state (&pure_const_state
, &looping
,
1406 ref_state
, ref_looping
, NULL
, NULL
);
1407 if (pure_const_state
== IPA_NEITHER
)
1410 w_info
= (struct ipa_dfs_info
*) w
->aux
;
1411 w
= w_info
->next_cycle
;
1413 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1414 fprintf (dump_file
, "Result %s looping %i\n",
1415 pure_const_names
[pure_const_state
],
1418 /* Find the worst state of can_free for any node in the cycle. */
1419 bool can_free
= false;
1421 while (w
&& !can_free
)
1423 struct cgraph_edge
*e
;
1424 funct_state w_l
= get_function_state (w
);
1427 || w
->get_availability () == AVAIL_INTERPOSABLE
1428 || w
->indirect_calls
)
1431 for (e
= w
->callees
; e
&& !can_free
; e
= e
->next_callee
)
1433 enum availability avail
;
1434 struct cgraph_node
*y
= e
->callee
->
1435 function_or_virtual_thunk_symbol (&avail
,
1438 if (avail
> AVAIL_INTERPOSABLE
)
1439 can_free
= get_function_state (y
)->can_free
;
1443 w_info
= (struct ipa_dfs_info
*) w
->aux
;
1444 w
= w_info
->next_cycle
;
1447 /* Copy back the region's pure_const_state which is shared by
1448 all nodes in the region. */
1452 funct_state w_l
= get_function_state (w
);
1453 enum pure_const_state_e this_state
= pure_const_state
;
1454 bool this_looping
= looping
;
1456 w_l
->can_free
= can_free
;
1457 w
->nonfreeing_fn
= !can_free
;
1458 if (!can_free
&& dump_file
)
1459 fprintf (dump_file
, "Function found not to call free: %s\n",
1462 if (w_l
->state_previously_known
!= IPA_NEITHER
1463 && this_state
> w_l
->state_previously_known
)
1465 this_state
= w_l
->state_previously_known
;
1466 if (this_state
== IPA_NEITHER
)
1467 this_looping
= w_l
->looping_previously_known
;
1469 if (!this_looping
&& self_recursive_p (w
))
1470 this_looping
= true;
1471 if (!w_l
->looping_previously_known
)
1472 this_looping
= false;
1474 /* All nodes within a cycle share the same info. */
1475 w_l
->pure_const_state
= this_state
;
1476 w_l
->looping
= this_looping
;
1478 /* Inline clones share declaration with their offline copies;
1479 do not modify their declarations since the offline copy may
1481 if (!w
->global
.inlined_to
)
1485 if (!TREE_READONLY (w
->decl
))
1487 warn_function_const (w
->decl
, !this_looping
);
1489 fprintf (dump_file
, "Function found to be %sconst: %s\n",
1490 this_looping
? "looping " : "",
1493 /* Turning constructor or destructor to non-looping const/pure
1494 enables us to possibly remove the function completely. */
1498 has_cdtor
= w
->call_for_symbol_and_aliases (cdtor_p
,
1500 if (w
->set_const_flag (true, this_looping
))
1504 "Declaration updated to be %sconst: %s\n",
1505 this_looping
? "looping " : "",
1507 remove_p
|= has_cdtor
;
1512 if (!DECL_PURE_P (w
->decl
))
1514 warn_function_pure (w
->decl
, !this_looping
);
1516 fprintf (dump_file
, "Function found to be %spure: %s\n",
1517 this_looping
? "looping " : "",
1523 has_cdtor
= w
->call_for_symbol_and_aliases (cdtor_p
,
1525 if (w
->set_pure_flag (true, this_looping
))
1529 "Declaration updated to be %spure: %s\n",
1530 this_looping
? "looping " : "",
1532 remove_p
|= has_cdtor
;
1539 w_info
= (struct ipa_dfs_info
*) w
->aux
;
1540 w
= w_info
->next_cycle
;
1544 ipa_free_postorder_info ();
1549 /* Produce transitive closure over the callgraph and compute nothrow
1553 propagate_nothrow (void)
1555 struct cgraph_node
*node
;
1556 struct cgraph_node
*w
;
1557 struct cgraph_node
**order
=
1558 XCNEWVEC (struct cgraph_node
*, symtab
->cgraph_count
);
1561 struct ipa_dfs_info
* w_info
;
1563 order_pos
= ipa_reduced_postorder (order
, true, false,
1564 ignore_edge_for_nothrow
);
1567 cgraph_node::dump_cgraph (dump_file
);
1568 ipa_print_order (dump_file
, "reduced for nothrow", order
, order_pos
);
1571 /* Propagate the local information through the call graph to produce
1572 the global information. All the nodes within a cycle will have
1573 the same info so we collapse cycles first. Then we can do the
1574 propagation in one pass from the leaves to the roots. */
1575 for (i
= 0; i
< order_pos
; i
++ )
1577 bool can_throw
= false;
1583 /* Find the worst state for any node in the cycle. */
1585 while (w
&& !can_throw
)
1587 struct cgraph_edge
*e
, *ie
;
1589 if (!TREE_NOTHROW (w
->decl
))
1591 funct_state w_l
= get_function_state (w
);
1594 || w
->get_availability () == AVAIL_INTERPOSABLE
)
1597 for (e
= w
->callees
; e
&& !can_throw
; e
= e
->next_callee
)
1599 enum availability avail
;
1601 if (!e
->can_throw_external
|| TREE_NOTHROW (e
->callee
->decl
))
1604 struct cgraph_node
*y
= e
->callee
->
1605 function_or_virtual_thunk_symbol (&avail
,
1608 /* We can use info about the callee only if we know it can
1610 When callee is compiled with non-call exceptions we also
1611 must check that the declaration is bound to current
1612 body as other semantically equivalent body may still
1614 if (avail
<= AVAIL_INTERPOSABLE
1615 || (!TREE_NOTHROW (y
->decl
)
1616 && (get_function_state (y
)->can_throw
1617 || (opt_for_fn (y
->decl
, flag_non_call_exceptions
)
1618 && !e
->callee
->binds_to_current_def_p (w
)))))
1621 for (ie
= w
->indirect_calls
; ie
&& !can_throw
;
1622 ie
= ie
->next_callee
)
1623 if (ie
->can_throw_external
1624 && !(ie
->indirect_info
->ecf_flags
& ECF_NOTHROW
))
1627 w_info
= (struct ipa_dfs_info
*) w
->aux
;
1628 w
= w_info
->next_cycle
;
1631 /* Copy back the region's pure_const_state which is shared by
1632 all nodes in the region. */
1636 funct_state w_l
= get_function_state (w
);
1637 if (!can_throw
&& !TREE_NOTHROW (w
->decl
))
1639 /* Inline clones share declaration with their offline copies;
1640 do not modify their declarations since the offline copy may
1642 if (!w
->global
.inlined_to
)
1644 w
->set_nothrow_flag (true);
1646 fprintf (dump_file
, "Function found to be nothrow: %s\n",
1650 else if (can_throw
&& !TREE_NOTHROW (w
->decl
))
1651 w_l
->can_throw
= true;
1652 w_info
= (struct ipa_dfs_info
*) w
->aux
;
1653 w
= w_info
->next_cycle
;
1657 ipa_free_postorder_info ();
1662 /* Produce the global information by preforming a transitive closure
1663 on the local information that was produced by generate_summary. */
1666 pass_ipa_pure_const::
1667 execute (function
*)
1669 struct cgraph_node
*node
;
1672 symtab
->remove_cgraph_insertion_hook (function_insertion_hook_holder
);
1673 symtab
->remove_cgraph_duplication_hook (node_duplication_hook_holder
);
1674 symtab
->remove_cgraph_removal_hook (node_removal_hook_holder
);
1676 /* Nothrow makes more function to not lead to return and improve
1678 propagate_nothrow ();
1679 remove_p
= propagate_pure_const ();
1682 FOR_EACH_FUNCTION (node
)
1683 if (has_function_state (node
))
1684 free (get_function_state (node
));
1685 funct_state_vec
.release ();
1686 return remove_p
? TODO_remove_functions
: 0;
1690 gate_pure_const (void)
1692 return flag_ipa_pure_const
|| in_lto_p
;
1695 pass_ipa_pure_const::pass_ipa_pure_const(gcc::context
*ctxt
)
1696 : ipa_opt_pass_d(pass_data_ipa_pure_const
, ctxt
,
1697 pure_const_generate_summary
, /* generate_summary */
1698 pure_const_write_summary
, /* write_summary */
1699 pure_const_read_summary
, /* read_summary */
1700 NULL
, /* write_optimization_summary */
1701 NULL
, /* read_optimization_summary */
1702 NULL
, /* stmt_fixup */
1703 0, /* function_transform_todo_flags_start */
1704 NULL
, /* function_transform */
1705 NULL
), /* variable_transform */
1707 function_insertion_hook_holder(NULL
),
1708 node_duplication_hook_holder(NULL
),
1709 node_removal_hook_holder(NULL
)
1714 make_pass_ipa_pure_const (gcc::context
*ctxt
)
1716 return new pass_ipa_pure_const (ctxt
);
1719 /* Return true if function should be skipped for local pure const analysis. */
1722 skip_function_for_local_pure_const (struct cgraph_node
*node
)
1724 /* Because we do not schedule pass_fixup_cfg over whole program after early
1725 optimizations we must not promote functions that are called by already
1726 processed functions. */
1728 if (function_called_by_processed_nodes_p ())
1731 fprintf (dump_file
, "Function called in recursive cycle; ignoring\n");
1734 /* Save some work and do not analyze functions which are interposable and
1735 do not have any non-interposable aliases. */
1736 if (node
->get_availability () <= AVAIL_INTERPOSABLE
1737 && !node
->has_aliases_p ())
1741 "Function is interposable; not analyzing.\n");
1747 /* Simple local pass for pure const discovery reusing the analysis from
1748 ipa_pure_const. This pass is effective when executed together with
1749 other optimization passes in early optimization pass queue. */
1753 const pass_data pass_data_local_pure_const
=
1755 GIMPLE_PASS
, /* type */
1756 "local-pure-const", /* name */
1757 OPTGROUP_NONE
, /* optinfo_flags */
1758 TV_IPA_PURE_CONST
, /* tv_id */
1759 0, /* properties_required */
1760 0, /* properties_provided */
1761 0, /* properties_destroyed */
1762 0, /* todo_flags_start */
1763 0, /* todo_flags_finish */
1766 class pass_local_pure_const
: public gimple_opt_pass
1769 pass_local_pure_const (gcc::context
*ctxt
)
1770 : gimple_opt_pass (pass_data_local_pure_const
, ctxt
)
1773 /* opt_pass methods: */
1774 opt_pass
* clone () { return new pass_local_pure_const (m_ctxt
); }
1775 virtual bool gate (function
*) { return gate_pure_const (); }
1776 virtual unsigned int execute (function
*);
1778 }; // class pass_local_pure_const
1781 pass_local_pure_const::execute (function
*fun
)
1783 bool changed
= false;
1786 struct cgraph_node
*node
;
1788 node
= cgraph_node::get (current_function_decl
);
1789 skip
= skip_function_for_local_pure_const (node
);
1790 if (!warn_suggest_attribute_const
1791 && !warn_suggest_attribute_pure
1795 l
= analyze_function (node
, false);
1797 /* Do NORETURN discovery. */
1798 if (!skip
&& !TREE_THIS_VOLATILE (current_function_decl
)
1799 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun
)->preds
) == 0)
1801 warn_function_noreturn (fun
->decl
);
1803 fprintf (dump_file
, "Function found to be noreturn: %s\n",
1804 current_function_name ());
1806 /* Update declaration and reduce profile to executed once. */
1807 TREE_THIS_VOLATILE (current_function_decl
) = 1;
1808 if (node
->frequency
> NODE_FREQUENCY_EXECUTED_ONCE
)
1809 node
->frequency
= NODE_FREQUENCY_EXECUTED_ONCE
;
1814 switch (l
->pure_const_state
)
1817 if (!TREE_READONLY (current_function_decl
))
1819 warn_function_const (current_function_decl
, !l
->looping
);
1821 fprintf (dump_file
, "Function found to be %sconst: %s\n",
1822 l
->looping
? "looping " : "",
1823 current_function_name ());
1825 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl
)
1829 fprintf (dump_file
, "Function found to be non-looping: %s\n",
1830 current_function_name ());
1832 if (!skip
&& node
->set_const_flag (true, l
->looping
))
1835 fprintf (dump_file
, "Declaration updated to be %sconst: %s\n",
1836 l
->looping
? "looping " : "",
1837 current_function_name ());
1843 if (!DECL_PURE_P (current_function_decl
))
1845 warn_function_pure (current_function_decl
, !l
->looping
);
1847 fprintf (dump_file
, "Function found to be %spure: %s\n",
1848 l
->looping
? "looping " : "",
1849 current_function_name ());
1851 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl
)
1855 fprintf (dump_file
, "Function found to be non-looping: %s\n",
1856 current_function_name ());
1858 if (!skip
&& node
->set_pure_flag (true, l
->looping
))
1861 fprintf (dump_file
, "Declaration updated to be %spure: %s\n",
1862 l
->looping
? "looping " : "",
1863 current_function_name ());
1871 if (!l
->can_throw
&& !TREE_NOTHROW (current_function_decl
))
1873 node
->set_nothrow_flag (true);
1876 fprintf (dump_file
, "Function found to be nothrow: %s\n",
1877 current_function_name ());
1881 return execute_fixup_cfg ();
1889 make_pass_local_pure_const (gcc::context
*ctxt
)
1891 return new pass_local_pure_const (ctxt
);
1894 /* Emit noreturn warnings. */
1898 const pass_data pass_data_warn_function_noreturn
=
1900 GIMPLE_PASS
, /* type */
1901 "*warn_function_noreturn", /* name */
1902 OPTGROUP_NONE
, /* optinfo_flags */
1903 TV_NONE
, /* tv_id */
1904 PROP_cfg
, /* properties_required */
1905 0, /* properties_provided */
1906 0, /* properties_destroyed */
1907 0, /* todo_flags_start */
1908 0, /* todo_flags_finish */
1911 class pass_warn_function_noreturn
: public gimple_opt_pass
1914 pass_warn_function_noreturn (gcc::context
*ctxt
)
1915 : gimple_opt_pass (pass_data_warn_function_noreturn
, ctxt
)
1918 /* opt_pass methods: */
1919 virtual bool gate (function
*) { return warn_suggest_attribute_noreturn
; }
1920 virtual unsigned int execute (function
*fun
)
1922 if (!TREE_THIS_VOLATILE (current_function_decl
)
1923 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun
)->preds
) == 0)
1924 warn_function_noreturn (current_function_decl
);
1928 }; // class pass_warn_function_noreturn
1933 make_pass_warn_function_noreturn (gcc::context
*ctxt
)
1935 return new pass_warn_function_noreturn (ctxt
);
1938 /* Simple local pass for pure const discovery reusing the analysis from
1939 ipa_pure_const. This pass is effective when executed together with
1940 other optimization passes in early optimization pass queue. */
1944 const pass_data pass_data_nothrow
=
1946 GIMPLE_PASS
, /* type */
1947 "nothrow", /* name */
1948 OPTGROUP_NONE
, /* optinfo_flags */
1949 TV_IPA_PURE_CONST
, /* tv_id */
1950 0, /* properties_required */
1951 0, /* properties_provided */
1952 0, /* properties_destroyed */
1953 0, /* todo_flags_start */
1954 0, /* todo_flags_finish */
1957 class pass_nothrow
: public gimple_opt_pass
1960 pass_nothrow (gcc::context
*ctxt
)
1961 : gimple_opt_pass (pass_data_nothrow
, ctxt
)
1964 /* opt_pass methods: */
1965 opt_pass
* clone () { return new pass_nothrow (m_ctxt
); }
1966 virtual bool gate (function
*) { return optimize
; }
1967 virtual unsigned int execute (function
*);
1969 }; // class pass_nothrow
1972 pass_nothrow::execute (function
*)
1974 struct cgraph_node
*node
;
1975 basic_block this_block
;
1977 if (TREE_NOTHROW (current_function_decl
))
1980 node
= cgraph_node::get (current_function_decl
);
1982 /* We run during lowering, we can not really use availability yet. */
1983 if (cgraph_node::get (current_function_decl
)->get_availability ()
1984 <= AVAIL_INTERPOSABLE
)
1987 fprintf (dump_file
, "Function is interposable;"
1988 " not analyzing.\n");
1992 FOR_EACH_BB_FN (this_block
, cfun
)
1994 for (gimple_stmt_iterator gsi
= gsi_start_bb (this_block
);
1997 if (stmt_can_throw_external (gsi_stmt (gsi
)))
1999 if (is_gimple_call (gsi_stmt (gsi
)))
2001 tree callee_t
= gimple_call_fndecl (gsi_stmt (gsi
));
2002 if (callee_t
&& recursive_call_p (current_function_decl
,
2009 fprintf (dump_file
, "Statement can throw: ");
2010 print_gimple_stmt (dump_file
, gsi_stmt (gsi
), 0, 0);
2016 node
->set_nothrow_flag (true);
2018 bool cfg_changed
= false;
2019 if (self_recursive_p (node
))
2020 FOR_EACH_BB_FN (this_block
, cfun
)
2021 if (gimple
*g
= last_stmt (this_block
))
2022 if (is_gimple_call (g
))
2024 tree callee_t
= gimple_call_fndecl (g
);
2026 && recursive_call_p (current_function_decl
, callee_t
)
2027 && maybe_clean_eh_stmt (g
)
2028 && gimple_purge_dead_eh_edges (this_block
))
2033 fprintf (dump_file
, "Function found to be nothrow: %s\n",
2034 current_function_name ());
2035 return cfg_changed
? TODO_cleanup_cfg
: 0;
2041 make_pass_nothrow (gcc::context
*ctxt
)
2043 return new pass_nothrow (ctxt
);