]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ipa-pure-const.c
Merger of git branch "gimple-classes-v2-option-3"
[thirdparty/gcc.git] / gcc / ipa-pure-const.c
1 /* Callgraph based analysis of static variables.
2 Copyright (C) 2004-2014 Free Software Foundation, Inc.
3 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
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).
24
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. */
29
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. */
33
34 #include "config.h"
35 #include "system.h"
36 #include "coretypes.h"
37 #include "tm.h"
38 #include "tree.h"
39 #include "print-tree.h"
40 #include "calls.h"
41 #include "predict.h"
42 #include "vec.h"
43 #include "hashtab.h"
44 #include "hash-set.h"
45 #include "machmode.h"
46 #include "hard-reg-set.h"
47 #include "input.h"
48 #include "function.h"
49 #include "dominance.h"
50 #include "cfg.h"
51 #include "cfganal.h"
52 #include "basic-block.h"
53 #include "tree-ssa-alias.h"
54 #include "internal-fn.h"
55 #include "tree-eh.h"
56 #include "gimple-expr.h"
57 #include "is-a.h"
58 #include "gimple.h"
59 #include "gimple-iterator.h"
60 #include "gimple-walk.h"
61 #include "tree-cfg.h"
62 #include "tree-ssa-loop-niter.h"
63 #include "tree-inline.h"
64 #include "tree-pass.h"
65 #include "langhooks.h"
66 #include "hash-map.h"
67 #include "plugin-api.h"
68 #include "ipa-ref.h"
69 #include "cgraph.h"
70 #include "ipa-utils.h"
71 #include "flags.h"
72 #include "diagnostic.h"
73 #include "gimple-pretty-print.h"
74 #include "langhooks.h"
75 #include "target.h"
76 #include "lto-streamer.h"
77 #include "data-streamer.h"
78 #include "tree-streamer.h"
79 #include "cfgloop.h"
80 #include "tree-scalar-evolution.h"
81 #include "intl.h"
82 #include "opts.h"
83
84 /* Lattice values for const and pure functions. Everything starts out
85 being const, then may drop to pure and then neither depending on
86 what is found. */
87 enum pure_const_state_e
88 {
89 IPA_CONST,
90 IPA_PURE,
91 IPA_NEITHER
92 };
93
94 const char *pure_const_names[3] = {"const", "pure", "neither"};
95
96 /* Holder for the const_state. There is one of these per function
97 decl. */
98 struct funct_state_d
99 {
100 /* See above. */
101 enum pure_const_state_e pure_const_state;
102 /* What user set here; we can be always sure about this. */
103 enum pure_const_state_e state_previously_known;
104 bool looping_previously_known;
105
106 /* True if the function could possibly infinite loop. There are a
107 lot of ways that this could be determined. We are pretty
108 conservative here. While it is possible to cse pure and const
109 calls, it is not legal to have dce get rid of the call if there
110 is a possibility that the call could infinite loop since this is
111 a behavioral change. */
112 bool looping;
113
114 bool can_throw;
115
116 /* If function can call free, munmap or otherwise make previously
117 non-trapping memory accesses trapping. */
118 bool can_free;
119 };
120
121 /* State used when we know nothing about function. */
122 static struct funct_state_d varying_state
123 = { IPA_NEITHER, IPA_NEITHER, true, true, true, true };
124
125
126 typedef struct funct_state_d * funct_state;
127
128 /* The storage of the funct_state is abstracted because there is the
129 possibility that it may be desirable to move this to the cgraph
130 local info. */
131
132 /* Array, indexed by cgraph node uid, of function states. */
133
134 static vec<funct_state> funct_state_vec;
135
136 static bool gate_pure_const (void);
137
138 namespace {
139
140 const pass_data pass_data_ipa_pure_const =
141 {
142 IPA_PASS, /* type */
143 "pure-const", /* name */
144 OPTGROUP_NONE, /* optinfo_flags */
145 TV_IPA_PURE_CONST, /* tv_id */
146 0, /* properties_required */
147 0, /* properties_provided */
148 0, /* properties_destroyed */
149 0, /* todo_flags_start */
150 0, /* todo_flags_finish */
151 };
152
153 class pass_ipa_pure_const : public ipa_opt_pass_d
154 {
155 public:
156 pass_ipa_pure_const(gcc::context *ctxt);
157
158 /* opt_pass methods: */
159 bool gate (function *) { return gate_pure_const (); }
160 unsigned int execute (function *fun);
161
162 void register_hooks (void);
163
164 private:
165 bool init_p;
166
167 /* Holders of ipa cgraph hooks: */
168 struct cgraph_node_hook_list *function_insertion_hook_holder;
169 struct cgraph_2node_hook_list *node_duplication_hook_holder;
170 struct cgraph_node_hook_list *node_removal_hook_holder;
171
172 }; // class pass_ipa_pure_const
173
174 } // anon namespace
175
176 /* Try to guess if function body will always be visible to compiler
177 when compiling the call and whether compiler will be able
178 to propagate the information by itself. */
179
180 static bool
181 function_always_visible_to_compiler_p (tree decl)
182 {
183 return (!TREE_PUBLIC (decl) || DECL_DECLARED_INLINE_P (decl));
184 }
185
186 /* Emit suggestion about attribute ATTRIB_NAME for DECL. KNOWN_FINITE
187 is true if the function is known to be finite. The diagnostic is
188 controlled by OPTION. WARNED_ABOUT is a hash_set<tree> unique for
189 OPTION, this function may initialize it and it is always returned
190 by the function. */
191
192 static hash_set<tree> *
193 suggest_attribute (int option, tree decl, bool known_finite,
194 hash_set<tree> *warned_about,
195 const char * attrib_name)
196 {
197 if (!option_enabled (option, &global_options))
198 return warned_about;
199 if (TREE_THIS_VOLATILE (decl)
200 || (known_finite && function_always_visible_to_compiler_p (decl)))
201 return warned_about;
202
203 if (!warned_about)
204 warned_about = new hash_set<tree>;
205 if (warned_about->contains (decl))
206 return warned_about;
207 warned_about->add (decl);
208 warning_at (DECL_SOURCE_LOCATION (decl),
209 option,
210 known_finite
211 ? _("function might be candidate for attribute %<%s%>")
212 : _("function might be candidate for attribute %<%s%>"
213 " if it is known to return normally"), attrib_name);
214 return warned_about;
215 }
216
217 /* Emit suggestion about __attribute_((pure)) for DECL. KNOWN_FINITE
218 is true if the function is known to be finite. */
219
220 static void
221 warn_function_pure (tree decl, bool known_finite)
222 {
223 static hash_set<tree> *warned_about;
224
225 warned_about
226 = suggest_attribute (OPT_Wsuggest_attribute_pure, decl,
227 known_finite, warned_about, "pure");
228 }
229
230 /* Emit suggestion about __attribute_((const)) for DECL. KNOWN_FINITE
231 is true if the function is known to be finite. */
232
233 static void
234 warn_function_const (tree decl, bool known_finite)
235 {
236 static hash_set<tree> *warned_about;
237 warned_about
238 = suggest_attribute (OPT_Wsuggest_attribute_const, decl,
239 known_finite, warned_about, "const");
240 }
241
242 static void
243 warn_function_noreturn (tree decl)
244 {
245 static hash_set<tree> *warned_about;
246 if (!lang_hooks.missing_noreturn_ok_p (decl)
247 && targetm.warn_func_return (decl))
248 warned_about
249 = suggest_attribute (OPT_Wsuggest_attribute_noreturn, decl,
250 true, warned_about, "noreturn");
251 }
252
253 /* Return true if we have a function state for NODE. */
254
255 static inline bool
256 has_function_state (struct cgraph_node *node)
257 {
258 if (!funct_state_vec.exists ()
259 || funct_state_vec.length () <= (unsigned int)node->uid)
260 return false;
261 return funct_state_vec[node->uid] != NULL;
262 }
263
264 /* Return the function state from NODE. */
265
266 static inline funct_state
267 get_function_state (struct cgraph_node *node)
268 {
269 if (!funct_state_vec.exists ()
270 || funct_state_vec.length () <= (unsigned int)node->uid
271 || !funct_state_vec[node->uid])
272 /* We might want to put correct previously_known state into varying. */
273 return &varying_state;
274 return funct_state_vec[node->uid];
275 }
276
277 /* Set the function state S for NODE. */
278
279 static inline void
280 set_function_state (struct cgraph_node *node, funct_state s)
281 {
282 if (!funct_state_vec.exists ()
283 || funct_state_vec.length () <= (unsigned int)node->uid)
284 funct_state_vec.safe_grow_cleared (node->uid + 1);
285 funct_state_vec[node->uid] = s;
286 }
287
288 /* Check to see if the use (or definition when CHECKING_WRITE is true)
289 variable T is legal in a function that is either pure or const. */
290
291 static inline void
292 check_decl (funct_state local,
293 tree t, bool checking_write, bool ipa)
294 {
295 /* Do not want to do anything with volatile except mark any
296 function that uses one to be not const or pure. */
297 if (TREE_THIS_VOLATILE (t))
298 {
299 local->pure_const_state = IPA_NEITHER;
300 if (dump_file)
301 fprintf (dump_file, " Volatile operand is not const/pure");
302 return;
303 }
304
305 /* Do not care about a local automatic that is not static. */
306 if (!TREE_STATIC (t) && !DECL_EXTERNAL (t))
307 return;
308
309 /* If the variable has the "used" attribute, treat it as if it had a
310 been touched by the devil. */
311 if (DECL_PRESERVE_P (t))
312 {
313 local->pure_const_state = IPA_NEITHER;
314 if (dump_file)
315 fprintf (dump_file, " Used static/global variable is not const/pure\n");
316 return;
317 }
318
319 /* In IPA mode we are not interested in checking actual loads and stores;
320 they will be processed at propagation time using ipa_ref. */
321 if (ipa)
322 return;
323
324 /* Since we have dealt with the locals and params cases above, if we
325 are CHECKING_WRITE, this cannot be a pure or constant
326 function. */
327 if (checking_write)
328 {
329 local->pure_const_state = IPA_NEITHER;
330 if (dump_file)
331 fprintf (dump_file, " static/global memory write is not const/pure\n");
332 return;
333 }
334
335 if (DECL_EXTERNAL (t) || TREE_PUBLIC (t))
336 {
337 /* Readonly reads are safe. */
338 if (TREE_READONLY (t) && !TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (t)))
339 return; /* Read of a constant, do not change the function state. */
340 else
341 {
342 if (dump_file)
343 fprintf (dump_file, " global memory read is not const\n");
344 /* Just a regular read. */
345 if (local->pure_const_state == IPA_CONST)
346 local->pure_const_state = IPA_PURE;
347 }
348 }
349 else
350 {
351 /* Compilation level statics can be read if they are readonly
352 variables. */
353 if (TREE_READONLY (t))
354 return;
355
356 if (dump_file)
357 fprintf (dump_file, " static memory read is not const\n");
358 /* Just a regular read. */
359 if (local->pure_const_state == IPA_CONST)
360 local->pure_const_state = IPA_PURE;
361 }
362 }
363
364
365 /* Check to see if the use (or definition when CHECKING_WRITE is true)
366 variable T is legal in a function that is either pure or const. */
367
368 static inline void
369 check_op (funct_state local, tree t, bool checking_write)
370 {
371 t = get_base_address (t);
372 if (t && TREE_THIS_VOLATILE (t))
373 {
374 local->pure_const_state = IPA_NEITHER;
375 if (dump_file)
376 fprintf (dump_file, " Volatile indirect ref is not const/pure\n");
377 return;
378 }
379 else if (t
380 && (INDIRECT_REF_P (t) || TREE_CODE (t) == MEM_REF)
381 && TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME
382 && !ptr_deref_may_alias_global_p (TREE_OPERAND (t, 0)))
383 {
384 if (dump_file)
385 fprintf (dump_file, " Indirect ref to local memory is OK\n");
386 return;
387 }
388 else if (checking_write)
389 {
390 local->pure_const_state = IPA_NEITHER;
391 if (dump_file)
392 fprintf (dump_file, " Indirect ref write is not const/pure\n");
393 return;
394 }
395 else
396 {
397 if (dump_file)
398 fprintf (dump_file, " Indirect ref read is not const\n");
399 if (local->pure_const_state == IPA_CONST)
400 local->pure_const_state = IPA_PURE;
401 }
402 }
403
404 /* compute state based on ECF FLAGS and store to STATE and LOOPING. */
405
406 static void
407 state_from_flags (enum pure_const_state_e *state, bool *looping,
408 int flags, bool cannot_lead_to_return)
409 {
410 *looping = false;
411 if (flags & ECF_LOOPING_CONST_OR_PURE)
412 {
413 *looping = true;
414 if (dump_file && (dump_flags & TDF_DETAILS))
415 fprintf (dump_file, " looping");
416 }
417 if (flags & ECF_CONST)
418 {
419 *state = IPA_CONST;
420 if (dump_file && (dump_flags & TDF_DETAILS))
421 fprintf (dump_file, " const\n");
422 }
423 else if (flags & ECF_PURE)
424 {
425 *state = IPA_PURE;
426 if (dump_file && (dump_flags & TDF_DETAILS))
427 fprintf (dump_file, " pure\n");
428 }
429 else if (cannot_lead_to_return)
430 {
431 *state = IPA_PURE;
432 *looping = true;
433 if (dump_file && (dump_flags & TDF_DETAILS))
434 fprintf (dump_file, " ignoring side effects->pure looping\n");
435 }
436 else
437 {
438 if (dump_file && (dump_flags & TDF_DETAILS))
439 fprintf (dump_file, " neither\n");
440 *state = IPA_NEITHER;
441 *looping = true;
442 }
443 }
444
445 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
446 into STATE and LOOPING better of the two variants.
447 Be sure to merge looping correctly. IPA_NEITHER functions
448 have looping 0 even if they don't have to return. */
449
450 static inline void
451 better_state (enum pure_const_state_e *state, bool *looping,
452 enum pure_const_state_e state2, bool looping2)
453 {
454 if (state2 < *state)
455 {
456 if (*state == IPA_NEITHER)
457 *looping = looping2;
458 else
459 *looping = MIN (*looping, looping2);
460 *state = state2;
461 }
462 else if (state2 != IPA_NEITHER)
463 *looping = MIN (*looping, looping2);
464 }
465
466 /* Merge STATE and STATE2 and LOOPING and LOOPING2 and store
467 into STATE and LOOPING worse of the two variants. */
468
469 static inline void
470 worse_state (enum pure_const_state_e *state, bool *looping,
471 enum pure_const_state_e state2, bool looping2)
472 {
473 *state = MAX (*state, state2);
474 *looping = MAX (*looping, looping2);
475 }
476
477 /* Recognize special cases of builtins that are by themselves not pure or const
478 but function using them is. */
479 static bool
480 special_builtin_state (enum pure_const_state_e *state, bool *looping,
481 tree callee)
482 {
483 if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
484 switch (DECL_FUNCTION_CODE (callee))
485 {
486 case BUILT_IN_RETURN:
487 case BUILT_IN_UNREACHABLE:
488 case BUILT_IN_ALLOCA:
489 case BUILT_IN_ALLOCA_WITH_ALIGN:
490 case BUILT_IN_STACK_SAVE:
491 case BUILT_IN_STACK_RESTORE:
492 case BUILT_IN_EH_POINTER:
493 case BUILT_IN_EH_FILTER:
494 case BUILT_IN_UNWIND_RESUME:
495 case BUILT_IN_CXA_END_CLEANUP:
496 case BUILT_IN_EH_COPY_VALUES:
497 case BUILT_IN_FRAME_ADDRESS:
498 case BUILT_IN_APPLY:
499 case BUILT_IN_APPLY_ARGS:
500 *looping = false;
501 *state = IPA_CONST;
502 return true;
503 case BUILT_IN_PREFETCH:
504 *looping = true;
505 *state = IPA_CONST;
506 return true;
507 default:
508 break;
509 }
510 return false;
511 }
512
513 /* Check the parameters of a function call to CALL_EXPR to see if
514 there are any references in the parameters that are not allowed for
515 pure or const functions. Also check to see if this is either an
516 indirect call, a call outside the compilation unit, or has special
517 attributes that may also effect the purity. The CALL_EXPR node for
518 the entire call expression. */
519
520 static void
521 check_call (funct_state local, gcall *call, bool ipa)
522 {
523 int flags = gimple_call_flags (call);
524 tree callee_t = gimple_call_fndecl (call);
525 bool possibly_throws = stmt_could_throw_p (call);
526 bool possibly_throws_externally = (possibly_throws
527 && stmt_can_throw_external (call));
528
529 if (possibly_throws)
530 {
531 unsigned int i;
532 for (i = 0; i < gimple_num_ops (call); i++)
533 if (gimple_op (call, i)
534 && tree_could_throw_p (gimple_op (call, i)))
535 {
536 if (possibly_throws && cfun->can_throw_non_call_exceptions)
537 {
538 if (dump_file)
539 fprintf (dump_file, " operand can throw; looping\n");
540 local->looping = true;
541 }
542 if (possibly_throws_externally)
543 {
544 if (dump_file)
545 fprintf (dump_file, " operand can throw externally\n");
546 local->can_throw = true;
547 }
548 }
549 }
550
551 /* The const and pure flags are set by a variety of places in the
552 compiler (including here). If someone has already set the flags
553 for the callee, (such as for some of the builtins) we will use
554 them, otherwise we will compute our own information.
555
556 Const and pure functions have less clobber effects than other
557 functions so we process these first. Otherwise if it is a call
558 outside the compilation unit or an indirect call we punt. This
559 leaves local calls which will be processed by following the call
560 graph. */
561 if (callee_t)
562 {
563 enum pure_const_state_e call_state;
564 bool call_looping;
565
566 if (gimple_call_builtin_p (call, BUILT_IN_NORMAL)
567 && !nonfreeing_call_p (call))
568 local->can_free = true;
569
570 if (special_builtin_state (&call_state, &call_looping, callee_t))
571 {
572 worse_state (&local->pure_const_state, &local->looping,
573 call_state, call_looping);
574 return;
575 }
576 /* When bad things happen to bad functions, they cannot be const
577 or pure. */
578 if (setjmp_call_p (callee_t))
579 {
580 if (dump_file)
581 fprintf (dump_file, " setjmp is not const/pure\n");
582 local->looping = true;
583 local->pure_const_state = IPA_NEITHER;
584 }
585
586 if (DECL_BUILT_IN_CLASS (callee_t) == BUILT_IN_NORMAL)
587 switch (DECL_FUNCTION_CODE (callee_t))
588 {
589 case BUILT_IN_LONGJMP:
590 case BUILT_IN_NONLOCAL_GOTO:
591 if (dump_file)
592 fprintf (dump_file, " longjmp and nonlocal goto is not const/pure\n");
593 local->pure_const_state = IPA_NEITHER;
594 local->looping = true;
595 break;
596 default:
597 break;
598 }
599 }
600 else if (gimple_call_internal_p (call) && !nonfreeing_call_p (call))
601 local->can_free = true;
602
603 /* When not in IPA mode, we can still handle self recursion. */
604 if (!ipa && callee_t
605 && recursive_call_p (current_function_decl, callee_t))
606 {
607 if (dump_file)
608 fprintf (dump_file, " Recursive call can loop.\n");
609 local->looping = true;
610 }
611 /* Either callee is unknown or we are doing local analysis.
612 Look to see if there are any bits available for the callee (such as by
613 declaration or because it is builtin) and process solely on the basis of
614 those bits. */
615 else if (!ipa)
616 {
617 enum pure_const_state_e call_state;
618 bool call_looping;
619 if (possibly_throws && cfun->can_throw_non_call_exceptions)
620 {
621 if (dump_file)
622 fprintf (dump_file, " can throw; looping\n");
623 local->looping = true;
624 }
625 if (possibly_throws_externally)
626 {
627 if (dump_file)
628 {
629 fprintf (dump_file, " can throw externally to lp %i\n",
630 lookup_stmt_eh_lp (call));
631 if (callee_t)
632 fprintf (dump_file, " callee:%s\n",
633 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (callee_t)));
634 }
635 local->can_throw = true;
636 }
637 if (dump_file && (dump_flags & TDF_DETAILS))
638 fprintf (dump_file, " checking flags for call:");
639 state_from_flags (&call_state, &call_looping, flags,
640 ((flags & (ECF_NORETURN | ECF_NOTHROW))
641 == (ECF_NORETURN | ECF_NOTHROW))
642 || (!flag_exceptions && (flags & ECF_NORETURN)));
643 worse_state (&local->pure_const_state, &local->looping,
644 call_state, call_looping);
645 }
646 /* Direct functions calls are handled by IPA propagation. */
647 }
648
649 /* Wrapper around check_decl for loads in local more. */
650
651 static bool
652 check_load (gimple, tree op, tree, void *data)
653 {
654 if (DECL_P (op))
655 check_decl ((funct_state)data, op, false, false);
656 else
657 check_op ((funct_state)data, op, false);
658 return false;
659 }
660
661 /* Wrapper around check_decl for stores in local more. */
662
663 static bool
664 check_store (gimple, tree op, tree, void *data)
665 {
666 if (DECL_P (op))
667 check_decl ((funct_state)data, op, true, false);
668 else
669 check_op ((funct_state)data, op, true);
670 return false;
671 }
672
673 /* Wrapper around check_decl for loads in ipa mode. */
674
675 static bool
676 check_ipa_load (gimple, tree op, tree, void *data)
677 {
678 if (DECL_P (op))
679 check_decl ((funct_state)data, op, false, true);
680 else
681 check_op ((funct_state)data, op, false);
682 return false;
683 }
684
685 /* Wrapper around check_decl for stores in ipa mode. */
686
687 static bool
688 check_ipa_store (gimple, tree op, tree, void *data)
689 {
690 if (DECL_P (op))
691 check_decl ((funct_state)data, op, true, true);
692 else
693 check_op ((funct_state)data, op, true);
694 return false;
695 }
696
697 /* Look into pointer pointed to by GSIP and figure out what interesting side
698 effects it has. */
699 static void
700 check_stmt (gimple_stmt_iterator *gsip, funct_state local, bool ipa)
701 {
702 gimple stmt = gsi_stmt (*gsip);
703
704 if (is_gimple_debug (stmt))
705 return;
706
707 if (dump_file)
708 {
709 fprintf (dump_file, " scanning: ");
710 print_gimple_stmt (dump_file, stmt, 0, 0);
711 }
712
713 if (gimple_has_volatile_ops (stmt)
714 && !gimple_clobber_p (stmt))
715 {
716 local->pure_const_state = IPA_NEITHER;
717 if (dump_file)
718 fprintf (dump_file, " Volatile stmt is not const/pure\n");
719 }
720
721 /* Look for loads and stores. */
722 walk_stmt_load_store_ops (stmt, local,
723 ipa ? check_ipa_load : check_load,
724 ipa ? check_ipa_store : check_store);
725
726 if (gimple_code (stmt) != GIMPLE_CALL
727 && stmt_could_throw_p (stmt))
728 {
729 if (cfun->can_throw_non_call_exceptions)
730 {
731 if (dump_file)
732 fprintf (dump_file, " can throw; looping\n");
733 local->looping = true;
734 }
735 if (stmt_can_throw_external (stmt))
736 {
737 if (dump_file)
738 fprintf (dump_file, " can throw externally\n");
739 local->can_throw = true;
740 }
741 else
742 if (dump_file)
743 fprintf (dump_file, " can throw\n");
744 }
745 switch (gimple_code (stmt))
746 {
747 case GIMPLE_CALL:
748 check_call (local, as_a <gcall *> (stmt), ipa);
749 break;
750 case GIMPLE_LABEL:
751 if (DECL_NONLOCAL (gimple_label_label (as_a <glabel *> (stmt))))
752 /* Target of long jump. */
753 {
754 if (dump_file)
755 fprintf (dump_file, " nonlocal label is not const/pure\n");
756 local->pure_const_state = IPA_NEITHER;
757 }
758 break;
759 case GIMPLE_ASM:
760 if (gimple_asm_clobbers_memory_p (as_a <gasm *> (stmt)))
761 {
762 if (dump_file)
763 fprintf (dump_file, " memory asm clobber is not const/pure\n");
764 /* Abandon all hope, ye who enter here. */
765 local->pure_const_state = IPA_NEITHER;
766 local->can_free = true;
767 }
768 if (gimple_asm_volatile_p (as_a <gasm *> (stmt)))
769 {
770 if (dump_file)
771 fprintf (dump_file, " volatile is not const/pure\n");
772 /* Abandon all hope, ye who enter here. */
773 local->pure_const_state = IPA_NEITHER;
774 local->looping = true;
775 local->can_free = true;
776 }
777 return;
778 default:
779 break;
780 }
781 }
782
783
784 /* This is the main routine for finding the reference patterns for
785 global variables within a function FN. */
786
787 static funct_state
788 analyze_function (struct cgraph_node *fn, bool ipa)
789 {
790 tree decl = fn->decl;
791 funct_state l;
792 basic_block this_block;
793
794 l = XCNEW (struct funct_state_d);
795 l->pure_const_state = IPA_CONST;
796 l->state_previously_known = IPA_NEITHER;
797 l->looping_previously_known = true;
798 l->looping = false;
799 l->can_throw = false;
800 l->can_free = false;
801 state_from_flags (&l->state_previously_known, &l->looping_previously_known,
802 flags_from_decl_or_type (fn->decl),
803 fn->cannot_return_p ());
804
805 if (fn->thunk.thunk_p || fn->alias)
806 {
807 /* Thunk gets propagated through, so nothing interesting happens. */
808 gcc_assert (ipa);
809 return l;
810 }
811
812 if (dump_file)
813 {
814 fprintf (dump_file, "\n\n local analysis of %s\n ",
815 fn->name ());
816 }
817
818 push_cfun (DECL_STRUCT_FUNCTION (decl));
819
820 FOR_EACH_BB_FN (this_block, cfun)
821 {
822 gimple_stmt_iterator gsi;
823 struct walk_stmt_info wi;
824
825 memset (&wi, 0, sizeof (wi));
826 for (gsi = gsi_start_bb (this_block);
827 !gsi_end_p (gsi);
828 gsi_next (&gsi))
829 {
830 check_stmt (&gsi, l, ipa);
831 if (l->pure_const_state == IPA_NEITHER
832 && l->looping
833 && l->can_throw
834 && l->can_free)
835 goto end;
836 }
837 }
838
839 end:
840 if (l->pure_const_state != IPA_NEITHER)
841 {
842 /* Const functions cannot have back edges (an
843 indication of possible infinite loop side
844 effect. */
845 if (mark_dfs_back_edges ())
846 {
847 /* Preheaders are needed for SCEV to work.
848 Simple latches and recorded exits improve chances that loop will
849 proved to be finite in testcases such as in loop-15.c
850 and loop-24.c */
851 loop_optimizer_init (LOOPS_HAVE_PREHEADERS
852 | LOOPS_HAVE_SIMPLE_LATCHES
853 | LOOPS_HAVE_RECORDED_EXITS);
854 if (dump_file && (dump_flags & TDF_DETAILS))
855 flow_loops_dump (dump_file, NULL, 0);
856 if (mark_irreducible_loops ())
857 {
858 if (dump_file)
859 fprintf (dump_file, " has irreducible loops\n");
860 l->looping = true;
861 }
862 else
863 {
864 struct loop *loop;
865 scev_initialize ();
866 FOR_EACH_LOOP (loop, 0)
867 if (!finite_loop_p (loop))
868 {
869 if (dump_file)
870 fprintf (dump_file, " can not prove finiteness of "
871 "loop %i\n", loop->num);
872 l->looping =true;
873 break;
874 }
875 scev_finalize ();
876 }
877 loop_optimizer_finalize ();
878 }
879 }
880
881 if (dump_file && (dump_flags & TDF_DETAILS))
882 fprintf (dump_file, " checking previously known:");
883
884 better_state (&l->pure_const_state, &l->looping,
885 l->state_previously_known,
886 l->looping_previously_known);
887 if (TREE_NOTHROW (decl))
888 l->can_throw = false;
889
890 pop_cfun ();
891 if (dump_file)
892 {
893 if (l->looping)
894 fprintf (dump_file, "Function is locally looping.\n");
895 if (l->can_throw)
896 fprintf (dump_file, "Function is locally throwing.\n");
897 if (l->pure_const_state == IPA_CONST)
898 fprintf (dump_file, "Function is locally const.\n");
899 if (l->pure_const_state == IPA_PURE)
900 fprintf (dump_file, "Function is locally pure.\n");
901 if (l->can_free)
902 fprintf (dump_file, "Function can locally free.\n");
903 }
904 return l;
905 }
906
907 /* Called when new function is inserted to callgraph late. */
908 static void
909 add_new_function (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
910 {
911 if (node->get_availability () < AVAIL_INTERPOSABLE)
912 return;
913 /* There are some shared nodes, in particular the initializers on
914 static declarations. We do not need to scan them more than once
915 since all we would be interested in are the addressof
916 operations. */
917 if (node->get_availability () > AVAIL_INTERPOSABLE
918 && opt_for_fn (node->decl, flag_ipa_pure_const))
919 set_function_state (node, analyze_function (node, true));
920 }
921
922 /* Called when new clone is inserted to callgraph late. */
923
924 static void
925 duplicate_node_data (struct cgraph_node *src, struct cgraph_node *dst,
926 void *data ATTRIBUTE_UNUSED)
927 {
928 if (has_function_state (src))
929 {
930 funct_state l = XNEW (struct funct_state_d);
931 gcc_assert (!has_function_state (dst));
932 memcpy (l, get_function_state (src), sizeof (*l));
933 set_function_state (dst, l);
934 }
935 }
936
937 /* Called when new clone is inserted to callgraph late. */
938
939 static void
940 remove_node_data (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
941 {
942 if (has_function_state (node))
943 {
944 funct_state l = get_function_state (node);
945 if (l != &varying_state)
946 free (l);
947 set_function_state (node, NULL);
948 }
949 }
950
951 \f
952 void
953 pass_ipa_pure_const::
954 register_hooks (void)
955 {
956 if (init_p)
957 return;
958
959 init_p = true;
960
961 node_removal_hook_holder =
962 symtab->add_cgraph_removal_hook (&remove_node_data, NULL);
963 node_duplication_hook_holder =
964 symtab->add_cgraph_duplication_hook (&duplicate_node_data, NULL);
965 function_insertion_hook_holder =
966 symtab->add_cgraph_insertion_hook (&add_new_function, NULL);
967 }
968
969
970 /* Analyze each function in the cgraph to see if it is locally PURE or
971 CONST. */
972
973 static void
974 pure_const_generate_summary (void)
975 {
976 struct cgraph_node *node;
977
978 pass_ipa_pure_const *pass = static_cast <pass_ipa_pure_const *> (current_pass);
979 pass->register_hooks ();
980
981 /* Process all of the functions.
982
983 We process AVAIL_INTERPOSABLE functions. We can not use the results
984 by default, but the info can be used at LTO with -fwhole-program or
985 when function got cloned and the clone is AVAILABLE. */
986
987 FOR_EACH_DEFINED_FUNCTION (node)
988 if (node->get_availability () >= AVAIL_INTERPOSABLE
989 && opt_for_fn (node->decl, flag_ipa_pure_const))
990 set_function_state (node, analyze_function (node, true));
991 }
992
993
994 /* Serialize the ipa info for lto. */
995
996 static void
997 pure_const_write_summary (void)
998 {
999 struct cgraph_node *node;
1000 struct lto_simple_output_block *ob
1001 = lto_create_simple_output_block (LTO_section_ipa_pure_const);
1002 unsigned int count = 0;
1003 lto_symtab_encoder_iterator lsei;
1004 lto_symtab_encoder_t encoder;
1005
1006 encoder = lto_get_out_decl_state ()->symtab_node_encoder;
1007
1008 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
1009 lsei_next_function_in_partition (&lsei))
1010 {
1011 node = lsei_cgraph_node (lsei);
1012 if (node->definition && has_function_state (node))
1013 count++;
1014 }
1015
1016 streamer_write_uhwi_stream (ob->main_stream, count);
1017
1018 /* Process all of the functions. */
1019 for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei);
1020 lsei_next_function_in_partition (&lsei))
1021 {
1022 node = lsei_cgraph_node (lsei);
1023 if (node->definition && has_function_state (node))
1024 {
1025 struct bitpack_d bp;
1026 funct_state fs;
1027 int node_ref;
1028 lto_symtab_encoder_t encoder;
1029
1030 fs = get_function_state (node);
1031
1032 encoder = ob->decl_state->symtab_node_encoder;
1033 node_ref = lto_symtab_encoder_encode (encoder, node);
1034 streamer_write_uhwi_stream (ob->main_stream, node_ref);
1035
1036 /* Note that flags will need to be read in the opposite
1037 order as we are pushing the bitflags into FLAGS. */
1038 bp = bitpack_create (ob->main_stream);
1039 bp_pack_value (&bp, fs->pure_const_state, 2);
1040 bp_pack_value (&bp, fs->state_previously_known, 2);
1041 bp_pack_value (&bp, fs->looping_previously_known, 1);
1042 bp_pack_value (&bp, fs->looping, 1);
1043 bp_pack_value (&bp, fs->can_throw, 1);
1044 bp_pack_value (&bp, fs->can_free, 1);
1045 streamer_write_bitpack (&bp);
1046 }
1047 }
1048
1049 lto_destroy_simple_output_block (ob);
1050 }
1051
1052
1053 /* Deserialize the ipa info for lto. */
1054
1055 static void
1056 pure_const_read_summary (void)
1057 {
1058 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
1059 struct lto_file_decl_data *file_data;
1060 unsigned int j = 0;
1061
1062 pass_ipa_pure_const *pass = static_cast <pass_ipa_pure_const *> (current_pass);
1063 pass->register_hooks ();
1064
1065 while ((file_data = file_data_vec[j++]))
1066 {
1067 const char *data;
1068 size_t len;
1069 struct lto_input_block *ib
1070 = lto_create_simple_input_block (file_data,
1071 LTO_section_ipa_pure_const,
1072 &data, &len);
1073 if (ib)
1074 {
1075 unsigned int i;
1076 unsigned int count = streamer_read_uhwi (ib);
1077
1078 for (i = 0; i < count; i++)
1079 {
1080 unsigned int index;
1081 struct cgraph_node *node;
1082 struct bitpack_d bp;
1083 funct_state fs;
1084 lto_symtab_encoder_t encoder;
1085
1086 fs = XCNEW (struct funct_state_d);
1087 index = streamer_read_uhwi (ib);
1088 encoder = file_data->symtab_node_encoder;
1089 node = dyn_cast<cgraph_node *> (lto_symtab_encoder_deref (encoder,
1090 index));
1091 set_function_state (node, fs);
1092
1093 /* Note that the flags must be read in the opposite
1094 order in which they were written (the bitflags were
1095 pushed into FLAGS). */
1096 bp = streamer_read_bitpack (ib);
1097 fs->pure_const_state
1098 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1099 fs->state_previously_known
1100 = (enum pure_const_state_e) bp_unpack_value (&bp, 2);
1101 fs->looping_previously_known = bp_unpack_value (&bp, 1);
1102 fs->looping = bp_unpack_value (&bp, 1);
1103 fs->can_throw = bp_unpack_value (&bp, 1);
1104 fs->can_free = bp_unpack_value (&bp, 1);
1105 if (dump_file)
1106 {
1107 int flags = flags_from_decl_or_type (node->decl);
1108 fprintf (dump_file, "Read info for %s/%i ",
1109 node->name (),
1110 node->order);
1111 if (flags & ECF_CONST)
1112 fprintf (dump_file, " const");
1113 if (flags & ECF_PURE)
1114 fprintf (dump_file, " pure");
1115 if (flags & ECF_NOTHROW)
1116 fprintf (dump_file, " nothrow");
1117 fprintf (dump_file, "\n pure const state: %s\n",
1118 pure_const_names[fs->pure_const_state]);
1119 fprintf (dump_file, " previously known state: %s\n",
1120 pure_const_names[fs->looping_previously_known]);
1121 if (fs->looping)
1122 fprintf (dump_file," function is locally looping\n");
1123 if (fs->looping_previously_known)
1124 fprintf (dump_file," function is previously known looping\n");
1125 if (fs->can_throw)
1126 fprintf (dump_file," function is locally throwing\n");
1127 if (fs->can_free)
1128 fprintf (dump_file," function can locally free\n");
1129 }
1130 }
1131
1132 lto_destroy_simple_input_block (file_data,
1133 LTO_section_ipa_pure_const,
1134 ib, data, len);
1135 }
1136 }
1137 }
1138
1139
1140 static bool
1141 ignore_edge (struct cgraph_edge *e)
1142 {
1143 return (!e->can_throw_external);
1144 }
1145
1146 /* Return true if NODE is self recursive function.
1147 Indirectly recursive functions appears as non-trivial strongly
1148 connected components, so we need to care about self recursion
1149 only. */
1150
1151 static bool
1152 self_recursive_p (struct cgraph_node *node)
1153 {
1154 struct cgraph_edge *e;
1155 for (e = node->callees; e; e = e->next_callee)
1156 if (e->callee->function_symbol () == node)
1157 return true;
1158 return false;
1159 }
1160
1161 /* Produce transitive closure over the callgraph and compute pure/const
1162 attributes. */
1163
1164 static void
1165 propagate_pure_const (void)
1166 {
1167 struct cgraph_node *node;
1168 struct cgraph_node *w;
1169 struct cgraph_node **order =
1170 XCNEWVEC (struct cgraph_node *, symtab->cgraph_count);
1171 int order_pos;
1172 int i;
1173 struct ipa_dfs_info * w_info;
1174
1175 order_pos = ipa_reduced_postorder (order, true, false, NULL);
1176 if (dump_file)
1177 {
1178 cgraph_node::dump_cgraph (dump_file);
1179 ipa_print_order (dump_file, "reduced", order, order_pos);
1180 }
1181
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++ )
1187 {
1188 enum pure_const_state_e pure_const_state = IPA_CONST;
1189 bool looping = false;
1190 int count = 0;
1191 node = order[i];
1192
1193 if (node->alias)
1194 continue;
1195
1196 if (dump_file && (dump_flags & TDF_DETAILS))
1197 fprintf (dump_file, "Starting cycle\n");
1198
1199 /* Find the worst state for any node in the cycle. */
1200 w = node;
1201 while (w && pure_const_state != IPA_NEITHER)
1202 {
1203 struct cgraph_edge *e;
1204 struct cgraph_edge *ie;
1205 int i;
1206 struct ipa_ref *ref = NULL;
1207
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);
1215
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;
1221
1222 /* For overwritable nodes we can not assume anything. */
1223 if (w->get_availability () == AVAIL_INTERPOSABLE)
1224 {
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))
1229 {
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);
1234 }
1235 break;
1236 }
1237
1238 count++;
1239
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;
1245
1246 /* Now walk the edges and merge in callee properties. */
1247 for (e = w->callees; e; e = e->next_callee)
1248 {
1249 enum availability avail;
1250 struct cgraph_node *y = e->callee->function_symbol (&avail);
1251 enum pure_const_state_e edge_state = IPA_CONST;
1252 bool edge_looping = false;
1253
1254 if (dump_file && (dump_flags & TDF_DETAILS))
1255 {
1256 fprintf (dump_file,
1257 " Call to %s/%i",
1258 e->callee->name (),
1259 e->callee->order);
1260 }
1261 if (avail > AVAIL_INTERPOSABLE)
1262 {
1263 funct_state y_l = get_function_state (y);
1264 if (dump_file && (dump_flags & TDF_DETAILS))
1265 {
1266 fprintf (dump_file,
1267 " state:%s looping:%i\n",
1268 pure_const_names[y_l->pure_const_state],
1269 y_l->looping);
1270 }
1271 if (y_l->pure_const_state > IPA_PURE
1272 && e->cannot_lead_to_return_p ())
1273 {
1274 if (dump_file && (dump_flags & TDF_DETAILS))
1275 fprintf (dump_file,
1276 " Ignoring side effects"
1277 " -> pure, looping\n");
1278 edge_state = IPA_PURE;
1279 edge_looping = true;
1280 }
1281 else
1282 {
1283 edge_state = y_l->pure_const_state;
1284 edge_looping = y_l->looping;
1285 }
1286 }
1287 else if (special_builtin_state (&edge_state, &edge_looping,
1288 y->decl))
1289 ;
1290 else
1291 state_from_flags (&edge_state, &edge_looping,
1292 flags_from_decl_or_type (y->decl),
1293 e->cannot_lead_to_return_p ());
1294
1295 /* Merge the results with what we already know. */
1296 better_state (&edge_state, &edge_looping,
1297 w_l->state_previously_known,
1298 w_l->looping_previously_known);
1299 worse_state (&pure_const_state, &looping,
1300 edge_state, edge_looping);
1301 if (pure_const_state == IPA_NEITHER)
1302 break;
1303 }
1304 if (pure_const_state == IPA_NEITHER)
1305 break;
1306
1307 /* Now process the indirect call. */
1308 for (ie = w->indirect_calls; ie; ie = ie->next_callee)
1309 {
1310 enum pure_const_state_e edge_state = IPA_CONST;
1311 bool edge_looping = false;
1312
1313 if (dump_file && (dump_flags & TDF_DETAILS))
1314 fprintf (dump_file, " Indirect call");
1315 state_from_flags (&edge_state, &edge_looping,
1316 ie->indirect_info->ecf_flags,
1317 ie->cannot_lead_to_return_p ());
1318 /* Merge the results with what we already know. */
1319 better_state (&edge_state, &edge_looping,
1320 w_l->state_previously_known,
1321 w_l->looping_previously_known);
1322 worse_state (&pure_const_state, &looping,
1323 edge_state, edge_looping);
1324 if (pure_const_state == IPA_NEITHER)
1325 break;
1326 }
1327 if (pure_const_state == IPA_NEITHER)
1328 break;
1329
1330 /* And finally all loads and stores. */
1331 for (i = 0; w->iterate_reference (i, ref); i++)
1332 {
1333 enum pure_const_state_e ref_state = IPA_CONST;
1334 bool ref_looping = false;
1335 switch (ref->use)
1336 {
1337 case IPA_REF_LOAD:
1338 /* readonly reads are safe. */
1339 if (TREE_READONLY (ref->referred->decl))
1340 break;
1341 if (dump_file && (dump_flags & TDF_DETAILS))
1342 fprintf (dump_file, " nonreadonly global var read\n");
1343 ref_state = IPA_PURE;
1344 break;
1345 case IPA_REF_STORE:
1346 if (ref->cannot_lead_to_return ())
1347 break;
1348 ref_state = IPA_NEITHER;
1349 if (dump_file && (dump_flags & TDF_DETAILS))
1350 fprintf (dump_file, " global var write\n");
1351 break;
1352 case IPA_REF_ADDR:
1353 case IPA_REF_CHKP:
1354 break;
1355 default:
1356 gcc_unreachable ();
1357 }
1358 better_state (&ref_state, &ref_looping,
1359 w_l->state_previously_known,
1360 w_l->looping_previously_known);
1361 worse_state (&pure_const_state, &looping,
1362 ref_state, ref_looping);
1363 if (pure_const_state == IPA_NEITHER)
1364 break;
1365 }
1366 w_info = (struct ipa_dfs_info *) w->aux;
1367 w = w_info->next_cycle;
1368 }
1369 if (dump_file && (dump_flags & TDF_DETAILS))
1370 fprintf (dump_file, "Result %s looping %i\n",
1371 pure_const_names [pure_const_state],
1372 looping);
1373
1374 /* Find the worst state of can_free for any node in the cycle. */
1375 bool can_free = false;
1376 w = node;
1377 while (w && !can_free)
1378 {
1379 struct cgraph_edge *e;
1380 funct_state w_l = get_function_state (w);
1381
1382 if (w_l->can_free
1383 || w->get_availability () == AVAIL_INTERPOSABLE
1384 || w->indirect_calls)
1385 can_free = true;
1386
1387 for (e = w->callees; e && !can_free; e = e->next_callee)
1388 {
1389 enum availability avail;
1390 struct cgraph_node *y = e->callee->function_symbol (&avail);
1391
1392 if (avail > AVAIL_INTERPOSABLE)
1393 can_free = get_function_state (y)->can_free;
1394 else
1395 can_free = true;
1396 }
1397 w_info = (struct ipa_dfs_info *) w->aux;
1398 w = w_info->next_cycle;
1399 }
1400
1401 /* Copy back the region's pure_const_state which is shared by
1402 all nodes in the region. */
1403 w = node;
1404 while (w)
1405 {
1406 funct_state w_l = get_function_state (w);
1407 enum pure_const_state_e this_state = pure_const_state;
1408 bool this_looping = looping;
1409
1410 w_l->can_free = can_free;
1411 w->nonfreeing_fn = !can_free;
1412 if (!can_free && dump_file)
1413 fprintf (dump_file, "Function found not to call free: %s\n",
1414 w->name ());
1415
1416 if (w_l->state_previously_known != IPA_NEITHER
1417 && this_state > w_l->state_previously_known)
1418 {
1419 this_state = w_l->state_previously_known;
1420 this_looping |= w_l->looping_previously_known;
1421 }
1422 if (!this_looping && self_recursive_p (w))
1423 this_looping = true;
1424 if (!w_l->looping_previously_known)
1425 this_looping = false;
1426
1427 /* All nodes within a cycle share the same info. */
1428 w_l->pure_const_state = this_state;
1429 w_l->looping = this_looping;
1430
1431 /* Inline clones share declaration with their offline copies;
1432 do not modify their declarations since the offline copy may
1433 be different. */
1434 if (!w->global.inlined_to)
1435 switch (this_state)
1436 {
1437 case IPA_CONST:
1438 if (!TREE_READONLY (w->decl))
1439 {
1440 warn_function_const (w->decl, !this_looping);
1441 if (dump_file)
1442 fprintf (dump_file, "Function found to be %sconst: %s\n",
1443 this_looping ? "looping " : "",
1444 w->name ());
1445 }
1446 w->set_const_flag (true, this_looping);
1447 break;
1448
1449 case IPA_PURE:
1450 if (!DECL_PURE_P (w->decl))
1451 {
1452 warn_function_pure (w->decl, !this_looping);
1453 if (dump_file)
1454 fprintf (dump_file, "Function found to be %spure: %s\n",
1455 this_looping ? "looping " : "",
1456 w->name ());
1457 }
1458 w->set_pure_flag (true, this_looping);
1459 break;
1460
1461 default:
1462 break;
1463 }
1464 w_info = (struct ipa_dfs_info *) w->aux;
1465 w = w_info->next_cycle;
1466 }
1467 }
1468
1469 ipa_free_postorder_info ();
1470 free (order);
1471 }
1472
1473 /* Produce transitive closure over the callgraph and compute nothrow
1474 attributes. */
1475
1476 static void
1477 propagate_nothrow (void)
1478 {
1479 struct cgraph_node *node;
1480 struct cgraph_node *w;
1481 struct cgraph_node **order =
1482 XCNEWVEC (struct cgraph_node *, symtab->cgraph_count);
1483 int order_pos;
1484 int i;
1485 struct ipa_dfs_info * w_info;
1486
1487 order_pos = ipa_reduced_postorder (order, true, false, ignore_edge);
1488 if (dump_file)
1489 {
1490 cgraph_node::dump_cgraph (dump_file);
1491 ipa_print_order (dump_file, "reduced for nothrow", order, order_pos);
1492 }
1493
1494 /* Propagate the local information through the call graph to produce
1495 the global information. All the nodes within a cycle will have
1496 the same info so we collapse cycles first. Then we can do the
1497 propagation in one pass from the leaves to the roots. */
1498 for (i = 0; i < order_pos; i++ )
1499 {
1500 bool can_throw = false;
1501 node = order[i];
1502
1503 if (node->alias)
1504 continue;
1505
1506 /* Find the worst state for any node in the cycle. */
1507 w = node;
1508 while (w && !can_throw)
1509 {
1510 struct cgraph_edge *e, *ie;
1511 funct_state w_l = get_function_state (w);
1512
1513 if (w_l->can_throw
1514 || w->get_availability () == AVAIL_INTERPOSABLE)
1515 can_throw = true;
1516
1517 for (e = w->callees; e && !can_throw; e = e->next_callee)
1518 {
1519 enum availability avail;
1520 struct cgraph_node *y = e->callee->function_symbol (&avail);
1521
1522 if (avail > AVAIL_INTERPOSABLE)
1523 {
1524 funct_state y_l = get_function_state (y);
1525
1526 if (y_l->can_throw && !TREE_NOTHROW (w->decl)
1527 && e->can_throw_external)
1528 can_throw = true;
1529 }
1530 else if (e->can_throw_external && !TREE_NOTHROW (y->decl))
1531 can_throw = true;
1532 }
1533 for (ie = w->indirect_calls; ie && !can_throw; ie = ie->next_callee)
1534 if (ie->can_throw_external)
1535 can_throw = true;
1536 w_info = (struct ipa_dfs_info *) w->aux;
1537 w = w_info->next_cycle;
1538 }
1539
1540 /* Copy back the region's pure_const_state which is shared by
1541 all nodes in the region. */
1542 w = node;
1543 while (w)
1544 {
1545 funct_state w_l = get_function_state (w);
1546 if (!can_throw && !TREE_NOTHROW (w->decl))
1547 {
1548 /* Inline clones share declaration with their offline copies;
1549 do not modify their declarations since the offline copy may
1550 be different. */
1551 if (!w->global.inlined_to)
1552 {
1553 w->set_nothrow_flag (true);
1554 if (dump_file)
1555 fprintf (dump_file, "Function found to be nothrow: %s\n",
1556 w->name ());
1557 }
1558 }
1559 else if (can_throw && !TREE_NOTHROW (w->decl))
1560 w_l->can_throw = true;
1561 w_info = (struct ipa_dfs_info *) w->aux;
1562 w = w_info->next_cycle;
1563 }
1564 }
1565
1566 ipa_free_postorder_info ();
1567 free (order);
1568 }
1569
1570
1571 /* Produce the global information by preforming a transitive closure
1572 on the local information that was produced by generate_summary. */
1573
1574 unsigned int
1575 pass_ipa_pure_const::
1576 execute (function *)
1577 {
1578 struct cgraph_node *node;
1579
1580 symtab->remove_cgraph_insertion_hook (function_insertion_hook_holder);
1581 symtab->remove_cgraph_duplication_hook (node_duplication_hook_holder);
1582 symtab->remove_cgraph_removal_hook (node_removal_hook_holder);
1583
1584 /* Nothrow makes more function to not lead to return and improve
1585 later analysis. */
1586 propagate_nothrow ();
1587 propagate_pure_const ();
1588
1589 /* Cleanup. */
1590 FOR_EACH_FUNCTION (node)
1591 if (has_function_state (node))
1592 free (get_function_state (node));
1593 funct_state_vec.release ();
1594 return 0;
1595 }
1596
1597 static bool
1598 gate_pure_const (void)
1599 {
1600 return flag_ipa_pure_const || in_lto_p;
1601 }
1602
1603 pass_ipa_pure_const::pass_ipa_pure_const(gcc::context *ctxt)
1604 : ipa_opt_pass_d(pass_data_ipa_pure_const, ctxt,
1605 pure_const_generate_summary, /* generate_summary */
1606 pure_const_write_summary, /* write_summary */
1607 pure_const_read_summary, /* read_summary */
1608 NULL, /* write_optimization_summary */
1609 NULL, /* read_optimization_summary */
1610 NULL, /* stmt_fixup */
1611 0, /* function_transform_todo_flags_start */
1612 NULL, /* function_transform */
1613 NULL), /* variable_transform */
1614 init_p(false),
1615 function_insertion_hook_holder(NULL),
1616 node_duplication_hook_holder(NULL),
1617 node_removal_hook_holder(NULL)
1618 {
1619 }
1620
1621 ipa_opt_pass_d *
1622 make_pass_ipa_pure_const (gcc::context *ctxt)
1623 {
1624 return new pass_ipa_pure_const (ctxt);
1625 }
1626
1627 /* Return true if function should be skipped for local pure const analysis. */
1628
1629 static bool
1630 skip_function_for_local_pure_const (struct cgraph_node *node)
1631 {
1632 /* Because we do not schedule pass_fixup_cfg over whole program after early optimizations
1633 we must not promote functions that are called by already processed functions. */
1634
1635 if (function_called_by_processed_nodes_p ())
1636 {
1637 if (dump_file)
1638 fprintf (dump_file, "Function called in recursive cycle; ignoring\n");
1639 return true;
1640 }
1641 if (node->get_availability () <= AVAIL_INTERPOSABLE)
1642 {
1643 if (dump_file)
1644 fprintf (dump_file, "Function is not available or overwritable; not analyzing.\n");
1645 return true;
1646 }
1647 return false;
1648 }
1649
1650 /* Simple local pass for pure const discovery reusing the analysis from
1651 ipa_pure_const. This pass is effective when executed together with
1652 other optimization passes in early optimization pass queue. */
1653
1654 namespace {
1655
1656 const pass_data pass_data_local_pure_const =
1657 {
1658 GIMPLE_PASS, /* type */
1659 "local-pure-const", /* name */
1660 OPTGROUP_NONE, /* optinfo_flags */
1661 TV_IPA_PURE_CONST, /* tv_id */
1662 0, /* properties_required */
1663 0, /* properties_provided */
1664 0, /* properties_destroyed */
1665 0, /* todo_flags_start */
1666 0, /* todo_flags_finish */
1667 };
1668
1669 class pass_local_pure_const : public gimple_opt_pass
1670 {
1671 public:
1672 pass_local_pure_const (gcc::context *ctxt)
1673 : gimple_opt_pass (pass_data_local_pure_const, ctxt)
1674 {}
1675
1676 /* opt_pass methods: */
1677 opt_pass * clone () { return new pass_local_pure_const (m_ctxt); }
1678 virtual bool gate (function *) { return gate_pure_const (); }
1679 virtual unsigned int execute (function *);
1680
1681 }; // class pass_local_pure_const
1682
1683 unsigned int
1684 pass_local_pure_const::execute (function *fun)
1685 {
1686 bool changed = false;
1687 funct_state l;
1688 bool skip;
1689 struct cgraph_node *node;
1690
1691 node = cgraph_node::get (current_function_decl);
1692 skip = skip_function_for_local_pure_const (node);
1693 if (!warn_suggest_attribute_const
1694 && !warn_suggest_attribute_pure
1695 && skip)
1696 return 0;
1697
1698 l = analyze_function (node, false);
1699
1700 /* Do NORETURN discovery. */
1701 if (!skip && !TREE_THIS_VOLATILE (current_function_decl)
1702 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun)->preds) == 0)
1703 {
1704 warn_function_noreturn (fun->decl);
1705 if (dump_file)
1706 fprintf (dump_file, "Function found to be noreturn: %s\n",
1707 current_function_name ());
1708
1709 /* Update declaration and reduce profile to executed once. */
1710 TREE_THIS_VOLATILE (current_function_decl) = 1;
1711 if (node->frequency > NODE_FREQUENCY_EXECUTED_ONCE)
1712 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
1713
1714 changed = true;
1715 }
1716
1717 switch (l->pure_const_state)
1718 {
1719 case IPA_CONST:
1720 if (!TREE_READONLY (current_function_decl))
1721 {
1722 warn_function_const (current_function_decl, !l->looping);
1723 if (!skip)
1724 {
1725 node->set_const_flag (true, l->looping);
1726 changed = true;
1727 }
1728 if (dump_file)
1729 fprintf (dump_file, "Function found to be %sconst: %s\n",
1730 l->looping ? "looping " : "",
1731 current_function_name ());
1732 }
1733 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1734 && !l->looping)
1735 {
1736 if (!skip)
1737 {
1738 node->set_const_flag (true, false);
1739 changed = true;
1740 }
1741 if (dump_file)
1742 fprintf (dump_file, "Function found to be non-looping: %s\n",
1743 current_function_name ());
1744 }
1745 break;
1746
1747 case IPA_PURE:
1748 if (!DECL_PURE_P (current_function_decl))
1749 {
1750 if (!skip)
1751 {
1752 node->set_pure_flag (true, l->looping);
1753 changed = true;
1754 }
1755 warn_function_pure (current_function_decl, !l->looping);
1756 if (dump_file)
1757 fprintf (dump_file, "Function found to be %spure: %s\n",
1758 l->looping ? "looping " : "",
1759 current_function_name ());
1760 }
1761 else if (DECL_LOOPING_CONST_OR_PURE_P (current_function_decl)
1762 && !l->looping)
1763 {
1764 if (!skip)
1765 {
1766 node->set_pure_flag (true, false);
1767 changed = true;
1768 }
1769 if (dump_file)
1770 fprintf (dump_file, "Function found to be non-looping: %s\n",
1771 current_function_name ());
1772 }
1773 break;
1774
1775 default:
1776 break;
1777 }
1778 if (!l->can_throw && !TREE_NOTHROW (current_function_decl))
1779 {
1780 node->set_nothrow_flag (true);
1781 changed = true;
1782 if (dump_file)
1783 fprintf (dump_file, "Function found to be nothrow: %s\n",
1784 current_function_name ());
1785 }
1786 free (l);
1787 if (changed)
1788 return execute_fixup_cfg ();
1789 else
1790 return 0;
1791 }
1792
1793 } // anon namespace
1794
1795 gimple_opt_pass *
1796 make_pass_local_pure_const (gcc::context *ctxt)
1797 {
1798 return new pass_local_pure_const (ctxt);
1799 }
1800
1801 /* Emit noreturn warnings. */
1802
1803 namespace {
1804
1805 const pass_data pass_data_warn_function_noreturn =
1806 {
1807 GIMPLE_PASS, /* type */
1808 "*warn_function_noreturn", /* name */
1809 OPTGROUP_NONE, /* optinfo_flags */
1810 TV_NONE, /* tv_id */
1811 PROP_cfg, /* properties_required */
1812 0, /* properties_provided */
1813 0, /* properties_destroyed */
1814 0, /* todo_flags_start */
1815 0, /* todo_flags_finish */
1816 };
1817
1818 class pass_warn_function_noreturn : public gimple_opt_pass
1819 {
1820 public:
1821 pass_warn_function_noreturn (gcc::context *ctxt)
1822 : gimple_opt_pass (pass_data_warn_function_noreturn, ctxt)
1823 {}
1824
1825 /* opt_pass methods: */
1826 virtual bool gate (function *) { return warn_suggest_attribute_noreturn; }
1827 virtual unsigned int execute (function *fun)
1828 {
1829 if (!TREE_THIS_VOLATILE (current_function_decl)
1830 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (fun)->preds) == 0)
1831 warn_function_noreturn (current_function_decl);
1832 return 0;
1833 }
1834
1835 }; // class pass_warn_function_noreturn
1836
1837 } // anon namespace
1838
1839 gimple_opt_pass *
1840 make_pass_warn_function_noreturn (gcc::context *ctxt)
1841 {
1842 return new pass_warn_function_noreturn (ctxt);
1843 }