1 /* Callgraph based analysis of static variables.
2 Copyright (C) 2004, 2005 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 2, 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 COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
23 /* This file gathers information about how variables whose scope is
24 confined to the compilation unit are used.
26 There are two categories of information produced by this pass:
28 1) The addressable (TREE_ADDRESSABLE) bit and readonly
29 (TREE_READONLY) bit associated with these variables is properly set
30 based on scanning all of the code withing the compilation unit.
32 2) The transitive call site specific clobber effects are computed
33 for the variables whose scope is contained within this compilation
36 First each function and static variable initialization is analyzed
37 to determine which local static variables are either read, written,
38 or have their address taken. Any local static that has its address
39 taken is removed from consideration. Once the local read and
40 writes are determined, a transitive closure of this information is
41 performed over the call graph to determine the worst case set of
42 side effects of each call. In later parts of the compiler, these
43 local and global sets are examined to make the call clobbering less
44 traumatic, promote some statics to registers, and improve aliasing
47 Currently must be run after inlining decisions have been made since
48 otherwise, the local sets will not contain information that is
49 consistent with post inlined state. The global sets are not prone
50 to this problem since they are by definition transitive.
55 #include "coretypes.h"
58 #include "tree-flow.h"
59 #include "tree-inline.h"
60 #include "tree-pass.h"
61 #include "langhooks.h"
62 #include "pointer-set.h"
64 #include "ipa-utils.h"
65 #include "ipa-reference.h"
67 #include "tree-gimple.h"
72 #include "diagnostic.h"
73 #include "langhooks.h"
75 /* This splay tree contains all of the static variables that are
76 being considered by the compilation level alias analysis. For
77 module_at_a_time compilation, this is the set of static but not
78 public variables. Any variables that either have their address
79 taken or participate in otherwise unsavory operations are deleted
81 static GTY((param1_is(int), param2_is(tree
)))
82 splay_tree reference_vars_to_consider
;
84 /* This bitmap is used to knock out the module static variables whose
85 addresses have been taken and passed around. */
86 static bitmap module_statics_escape
;
88 /* This bitmap is used to knock out the module static variables that
90 static bitmap module_statics_written
;
92 /* A bit is set for every module static we are considering. This is
93 ored into the local info when asm code is found that clobbers all
95 static bitmap all_module_statics
;
97 static struct pointer_set_t
*visited_nodes
;
99 static bitmap_obstack ipa_obstack
;
101 enum initialization_status_t
108 tree memory_identifier_string
;
110 /* Return the ipa_reference_vars structure starting from the cgraph NODE. */
111 static inline ipa_reference_vars_info_t
112 get_reference_vars_info_from_cgraph (struct cgraph_node
* node
)
114 return get_function_ann (node
->decl
)->reference_vars_info
;
117 /* Get a bitmap that contains all of the locally referenced static
118 variables for function FN. */
119 static ipa_reference_local_vars_info_t
120 get_local_reference_vars_info (tree fn
)
122 ipa_reference_vars_info_t info
= get_function_ann (fn
)->reference_vars_info
;
127 /* This phase was not run. */
131 /* Get a bitmap that contains all of the globally referenced static
132 variables for function FN. */
134 static ipa_reference_global_vars_info_t
135 get_global_reference_vars_info (tree fn
)
137 ipa_reference_vars_info_t info
= get_function_ann (fn
)->reference_vars_info
;
142 /* This phase was not run. */
146 /* Return a bitmap indexed by VAR_DECL uid for the static variables
147 that may be read locally by the execution of the function fn.
148 Returns NULL if no data is available. */
151 ipa_reference_get_read_local (tree fn
)
153 ipa_reference_local_vars_info_t l
= get_local_reference_vars_info (fn
);
155 return l
->statics_read
;
160 /* Return a bitmap indexed by VAR_DECL uid for the static variables
161 that may be written locally by the execution of the function fn.
162 Returns NULL if no data is available. */
165 ipa_reference_get_written_local (tree fn
)
167 ipa_reference_local_vars_info_t l
= get_local_reference_vars_info (fn
);
169 return l
->statics_written
;
174 /* Return a bitmap indexed by VAR_DECL uid for the static variables
175 that are read during the execution of the function FN. Returns
176 NULL if no data is available. */
179 ipa_reference_get_read_global (tree fn
)
181 ipa_reference_global_vars_info_t g
= get_global_reference_vars_info (fn
);
183 return g
->statics_read
;
188 /* Return a bitmap indexed by VAR_DECL uid for the static variables
189 that are written during the execution of the function FN. Note
190 that variables written may or may not be read during the function
191 call. Returns NULL if no data is available. */
194 ipa_reference_get_written_global (tree fn
)
196 ipa_reference_global_vars_info_t g
= get_global_reference_vars_info (fn
);
198 return g
->statics_written
;
203 /* Return a bitmap indexed by_DECL_UID uid for the static variables
204 that are not read during the execution of the function FN. Returns
205 NULL if no data is available. */
208 ipa_reference_get_not_read_global (tree fn
)
210 ipa_reference_global_vars_info_t g
= get_global_reference_vars_info (fn
);
212 return g
->statics_not_read
;
217 /* Return a bitmap indexed by DECL_UID uid for the static variables
218 that are not written during the execution of the function FN. Note
219 that variables written may or may not be read during the function
220 call. Returns NULL if no data is available. */
223 ipa_reference_get_not_written_global (tree fn
)
225 ipa_reference_global_vars_info_t g
= get_global_reference_vars_info (fn
);
227 return g
->statics_not_written
;
234 /* Add VAR to all_module_statics and the two
235 reference_vars_to_consider* sets. */
238 add_static_var (tree var
)
240 int uid
= DECL_UID (var
);
241 if (!bitmap_bit_p (all_module_statics
, uid
))
243 splay_tree_insert (reference_vars_to_consider
,
244 uid
, (splay_tree_value
)var
);
245 bitmap_set_bit (all_module_statics
, uid
);
249 /* Return true if the variable T is the right kind of static variable to
250 perform compilation unit scope escape analysis. */
253 has_proper_scope_for_analysis (tree t
)
255 /* If the variable has the "used" attribute, treat it as if it had a
256 been touched by the devil. */
257 if (lookup_attribute ("used", DECL_ATTRIBUTES (t
)))
260 /* Do not want to do anything with volatile except mark any
261 function that uses one to be not const or pure. */
262 if (TREE_THIS_VOLATILE (t
))
265 /* Do not care about a local automatic that is not static. */
266 if (!TREE_STATIC (t
) && !DECL_EXTERNAL (t
))
269 if (DECL_EXTERNAL (t
) || TREE_PUBLIC (t
))
272 /* This is a variable we care about. Check if we have seen it
273 before, and if not add it the set of variables we care about. */
274 if (!bitmap_bit_p (all_module_statics
, DECL_UID (t
)))
280 /* If T is a VAR_DECL for a static that we are interested in, add the
281 uid to the bitmap. */
284 check_operand (ipa_reference_local_vars_info_t local
,
285 tree t
, bool checking_write
)
289 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == FUNCTION_DECL
)
290 && (has_proper_scope_for_analysis (t
)))
295 bitmap_set_bit (local
->statics_written
, DECL_UID (t
));
296 /* Mark the write so we can tell which statics are
298 bitmap_set_bit (module_statics_written
, DECL_UID (t
));
301 bitmap_set_bit (local
->statics_read
, DECL_UID (t
));
305 /* Examine tree T for references to static variables. All internal
306 references like array references or indirect references are added
307 to the READ_BM. Direct references are added to either READ_BM or
308 WRITE_BM depending on the value of CHECKING_WRITE. */
311 check_tree (ipa_reference_local_vars_info_t local
, tree t
, bool checking_write
)
313 if ((TREE_CODE (t
) == EXC_PTR_EXPR
) || (TREE_CODE (t
) == FILTER_EXPR
))
316 while (TREE_CODE (t
) == REALPART_EXPR
317 || TREE_CODE (t
) == IMAGPART_EXPR
318 || handled_component_p (t
))
320 if (TREE_CODE (t
) == ARRAY_REF
)
321 check_operand (local
, TREE_OPERAND (t
, 1), false);
322 t
= TREE_OPERAND (t
, 0);
325 /* The bottom of an indirect reference can only be read, not
326 written. So just recurse and whatever we find, check it against
329 /* if (INDIRECT_REF_P (t) || TREE_CODE (t) == MEM_REF) */
330 /* FIXME when we have array_ref's of pointers. */
331 if (INDIRECT_REF_P (t
))
332 check_tree (local
, TREE_OPERAND (t
, 0), false);
335 check_operand (local
, t
, checking_write
);
338 /* Scan tree T to see if there are any addresses taken in within T. */
341 look_for_address_of (tree t
)
343 if (TREE_CODE (t
) == ADDR_EXPR
)
345 tree x
= get_base_var (t
);
346 if (TREE_CODE (x
) == VAR_DECL
|| TREE_CODE (x
) == FUNCTION_DECL
)
347 if (has_proper_scope_for_analysis (x
))
348 bitmap_set_bit (module_statics_escape
, DECL_UID (x
));
352 /* Check to see if T is a read or address of operation on a static var
353 we are interested in analyzing. LOCAL is passed in to get access
354 to its bit vectors. Local is NULL if this is called from a static
358 check_rhs_var (ipa_reference_local_vars_info_t local
, tree t
)
360 look_for_address_of (t
);
365 check_tree(local
, t
, false);
368 /* Check to see if T is an assignment to a static var we are
369 interested in analyzing. LOCAL is passed in to get access to its bit
373 check_lhs_var (ipa_reference_local_vars_info_t local
, tree t
)
378 check_tree(local
, t
, true);
381 /* This is a scaled down version of get_asm_expr_operands from
382 tree_ssa_operands.c. The version there runs much later and assumes
383 that aliasing information is already available. Here we are just
384 trying to find if the set of inputs and outputs contain references
385 or address of operations to local static variables. FN is the
386 function being analyzed and STMT is the actual asm statement. */
389 get_asm_expr_operands (ipa_reference_local_vars_info_t local
, tree stmt
)
391 int noutputs
= list_length (ASM_OUTPUTS (stmt
));
392 const char **oconstraints
393 = (const char **) alloca ((noutputs
) * sizeof (const char *));
396 const char *constraint
;
397 bool allows_mem
, allows_reg
, is_inout
;
399 for (i
=0, link
= ASM_OUTPUTS (stmt
); link
; ++i
, link
= TREE_CHAIN (link
))
401 oconstraints
[i
] = constraint
402 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
403 parse_output_constraint (&constraint
, i
, 0, 0,
404 &allows_mem
, &allows_reg
, &is_inout
);
406 check_lhs_var (local
, TREE_VALUE (link
));
409 for (link
= ASM_INPUTS (stmt
); link
; link
= TREE_CHAIN (link
))
412 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link
)));
413 parse_input_constraint (&constraint
, 0, 0, noutputs
, 0,
414 oconstraints
, &allows_mem
, &allows_reg
);
416 check_rhs_var (local
, TREE_VALUE (link
));
419 for (link
= ASM_CLOBBERS (stmt
); link
; link
= TREE_CHAIN (link
))
420 if (simple_cst_equal(TREE_VALUE (link
), memory_identifier_string
) == 1)
422 /* Abandon all hope, ye who enter here. */
423 local
->calls_read_all
= true;
424 local
->calls_write_all
= true;
428 /* Check the parameters of a function call from CALLER to CALL_EXPR to
429 see if any of them are static vars. Also check to see if this is
430 either an indirect call, a call outside the compilation unit, or
431 has special attributes that effect the clobbers. The caller
432 parameter is the tree node for the caller and the second operand is
433 the tree node for the entire call expression. */
436 check_call (ipa_reference_local_vars_info_t local
, tree call_expr
)
438 int flags
= call_expr_flags (call_expr
);
439 tree operand_list
= TREE_OPERAND (call_expr
, 1);
441 tree callee_t
= get_callee_fndecl (call_expr
);
442 enum availability avail
= AVAIL_NOT_AVAILABLE
;
444 for (operand
= operand_list
;
445 operand
!= NULL_TREE
;
446 operand
= TREE_CHAIN (operand
))
448 tree argument
= TREE_VALUE (operand
);
449 check_rhs_var (local
, argument
);
454 struct cgraph_node
* callee
= cgraph_node(callee_t
);
455 avail
= cgraph_function_body_availability (callee
);
458 if (avail
== AVAIL_NOT_AVAILABLE
|| avail
== AVAIL_OVERWRITABLE
)
461 if (flags
& ECF_PURE
)
462 local
->calls_read_all
= true;
465 local
->calls_read_all
= true;
466 local
->calls_write_all
= true;
471 /* TP is the part of the tree currently under the microscope.
472 WALK_SUBTREES is part of the walk_tree api but is unused here.
473 DATA is cgraph_node of the function being walked. */
475 /* FIXME: When this is converted to run over SSA form, this code
476 should be converted to use the operand scanner. */
479 scan_for_static_refs (tree
*tp
,
483 struct cgraph_node
*fn
= data
;
485 ipa_reference_local_vars_info_t local
= NULL
;
487 local
= get_reference_vars_info_from_cgraph (fn
)->local
;
489 switch (TREE_CODE (t
))
492 if (DECL_INITIAL (t
))
493 walk_tree (&DECL_INITIAL (t
), scan_for_static_refs
, fn
, visited_nodes
);
499 /* First look on the lhs and see what variable is stored to */
500 tree lhs
= TREE_OPERAND (t
, 0);
501 tree rhs
= TREE_OPERAND (t
, 1);
502 check_lhs_var (local
, lhs
);
504 /* For the purposes of figuring out what the cast affects */
506 /* Next check the operands on the rhs to see if they are ok. */
507 switch (TREE_CODE_CLASS (TREE_CODE (rhs
)))
511 tree op0
= TREE_OPERAND (rhs
, 0);
512 tree op1
= TREE_OPERAND (rhs
, 1);
513 check_rhs_var (local
, op0
);
514 check_rhs_var (local
, op1
);
519 tree op0
= TREE_OPERAND (rhs
, 0);
520 check_rhs_var (local
, op0
);
525 check_rhs_var (local
, rhs
);
527 case tcc_declaration
:
528 check_rhs_var (local
, rhs
);
531 switch (TREE_CODE (rhs
))
534 check_rhs_var (local
, rhs
);
537 check_call (local
, rhs
);
551 /* This case is here to find addresses on rhs of constructors in
552 decl_initial of static variables. */
553 check_rhs_var (local
, t
);
558 if (DECL_NONLOCAL (TREE_OPERAND (t
, 0)))
560 /* Target of long jump. */
561 local
->calls_read_all
= true;
562 local
->calls_write_all
= true;
567 check_call (local
, t
);
572 get_asm_expr_operands (local
, t
);
583 /* Lookup the tree node for the static variable that has UID. */
585 get_static_decl (int index
)
587 splay_tree_node stn
=
588 splay_tree_lookup (reference_vars_to_consider
, index
);
590 return (tree
)stn
->value
;
594 /* Lookup the tree node for the static variable that has UID and
595 convert the name to a string for debugging. */
598 get_static_name (int index
)
600 splay_tree_node stn
=
601 splay_tree_lookup (reference_vars_to_consider
, index
);
603 return lang_hooks
.decl_printable_name ((tree
)(stn
->value
), 2);
607 /* Or in all of the bits from every callee into X, the caller's, bit
608 vector. There are several cases to check to avoid the sparse
612 propagate_bits (struct cgraph_node
*x
)
614 ipa_reference_vars_info_t x_info
= get_reference_vars_info_from_cgraph (x
);
615 ipa_reference_global_vars_info_t x_global
= x_info
->global
;
617 struct cgraph_edge
*e
;
618 for (e
= x
->callees
; e
; e
= e
->next_callee
)
620 struct cgraph_node
*y
= e
->callee
;
622 /* Only look at the master nodes and skip external nodes. */
623 y
= cgraph_master_clone (y
);
626 if (get_reference_vars_info_from_cgraph (y
))
628 ipa_reference_vars_info_t y_info
= get_reference_vars_info_from_cgraph (y
);
629 ipa_reference_global_vars_info_t y_global
= y_info
->global
;
631 if (x_global
->statics_read
632 != all_module_statics
)
634 if (y_global
->statics_read
635 == all_module_statics
)
637 BITMAP_FREE (x_global
->statics_read
);
638 x_global
->statics_read
639 = all_module_statics
;
641 /* Skip bitmaps that are pointer equal to node's bitmap
642 (no reason to spin within the cycle). */
643 else if (x_global
->statics_read
644 != y_global
->statics_read
)
645 bitmap_ior_into (x_global
->statics_read
,
646 y_global
->statics_read
);
649 if (x_global
->statics_written
650 != all_module_statics
)
652 if (y_global
->statics_written
653 == all_module_statics
)
655 BITMAP_FREE (x_global
->statics_written
);
656 x_global
->statics_written
657 = all_module_statics
;
659 /* Skip bitmaps that are pointer equal to node's bitmap
660 (no reason to spin within the cycle). */
661 else if (x_global
->statics_written
662 != y_global
->statics_written
)
663 bitmap_ior_into (x_global
->statics_written
,
664 y_global
->statics_written
);
675 /* Look at all of the callees of X to see which ones represent inlined
676 calls. For each of these callees, merge their local info into
677 TARGET and check their children recursively.
679 This function goes away when Jan changes the inliner and IPA
680 analysis so that this is not run between the time when inlining
681 decisions are made and when the inlining actually occurs. */
684 merge_callee_local_info (struct cgraph_node
*target
,
685 struct cgraph_node
*x
)
687 struct cgraph_edge
*e
;
688 ipa_reference_local_vars_info_t x_l
=
689 get_reference_vars_info_from_cgraph (target
)->local
;
691 /* Make the world safe for tail recursion. */
692 struct ipa_dfs_info
*node_info
= x
->aux
;
699 for (e
= x
->callees
; e
; e
= e
->next_callee
)
701 struct cgraph_node
*y
= e
->callee
;
702 if (y
->global
.inlined_to
)
704 ipa_reference_vars_info_t y_info
;
705 ipa_reference_local_vars_info_t y_l
;
706 struct cgraph_node
* orig_y
= y
;
708 y
= cgraph_master_clone (y
);
711 y_info
= get_reference_vars_info_from_cgraph (y
);
715 bitmap_ior_into (x_l
->statics_read
,
717 bitmap_ior_into (x_l
->statics_written
,
718 y_l
->statics_written
);
720 x_l
->calls_read_all
|= y_l
->calls_read_all
;
721 x_l
->calls_write_all
|= y_l
->calls_write_all
;
722 merge_callee_local_info (target
, y
);
726 fprintf(stderr
, "suspect inlining of ");
727 dump_cgraph_node (stderr
, orig_y
);
728 fprintf(stderr
, "\ninto ");
729 dump_cgraph_node (stderr
, target
);
730 dump_cgraph (stderr
);
736 node_info
->aux
= NULL
;
739 /* The init routine for analyzing global static variable usage. See
740 comments at top for description. */
744 struct cgraph_node
*node
;
745 memory_identifier_string
= build_string(7, "memory");
747 reference_vars_to_consider
=
748 splay_tree_new_ggc (splay_tree_compare_ints
);
750 bitmap_obstack_initialize (&ipa_obstack
);
751 module_statics_escape
= BITMAP_ALLOC (&ipa_obstack
);
752 module_statics_written
= BITMAP_ALLOC (&ipa_obstack
);
753 all_module_statics
= BITMAP_ALLOC (&ipa_obstack
);
755 /* This will add NODE->DECL to the splay trees. */
756 for (node
= cgraph_nodes
; node
; node
= node
->next
)
757 has_proper_scope_for_analysis (node
->decl
);
759 /* There are some shared nodes, in particular the initializers on
760 static declarations. We do not need to scan them more than once
761 since all we would be interested in are the addressof
763 visited_nodes
= pointer_set_create ();
766 /* Check out the rhs of a static or global initialization VNODE to see
767 if any of them contain addressof operations. Note that some of
768 these variables may not even be referenced in the code in this
769 compilation unit but their right hand sides may contain references
770 to variables defined within this unit. */
773 analyze_variable (struct cgraph_varpool_node
*vnode
)
775 tree global
= vnode
->decl
;
776 if (TREE_CODE (global
) == VAR_DECL
)
778 if (DECL_INITIAL (global
))
779 walk_tree (&DECL_INITIAL (global
), scan_for_static_refs
,
780 NULL
, visited_nodes
);
782 else gcc_unreachable ();
785 /* This is the main routine for finding the reference patterns for
786 global variables within a function FN. */
789 analyze_function (struct cgraph_node
*fn
)
791 ipa_reference_vars_info_t info
792 = xcalloc (1, sizeof (struct ipa_reference_vars_info_d
));
793 ipa_reference_local_vars_info_t l
794 = xcalloc (1, sizeof (struct ipa_reference_local_vars_info_d
));
795 tree decl
= fn
->decl
;
797 /* Add the info to the tree's annotation. */
798 get_function_ann (fn
->decl
)->reference_vars_info
= info
;
801 l
->statics_read
= BITMAP_ALLOC (&ipa_obstack
);
802 l
->statics_written
= BITMAP_ALLOC (&ipa_obstack
);
805 fprintf (dump_file
, "\n local analysis of %s\n", cgraph_node_name (fn
));
808 struct function
*this_cfun
= DECL_STRUCT_FUNCTION (decl
);
809 basic_block this_block
;
811 FOR_EACH_BB_FN (this_block
, this_cfun
)
813 block_stmt_iterator bsi
;
814 for (bsi
= bsi_start (this_block
); !bsi_end_p (bsi
); bsi_next (&bsi
))
815 walk_tree (bsi_stmt_ptr (bsi
), scan_for_static_refs
,
820 /* There may be const decls with interesting right hand sides. */
821 if (DECL_STRUCT_FUNCTION (decl
))
824 for (step
= DECL_STRUCT_FUNCTION (decl
)->unexpanded_var_list
;
826 step
= TREE_CHAIN (step
))
828 tree var
= TREE_VALUE (step
);
829 if (TREE_CODE (var
) == VAR_DECL
830 && DECL_INITIAL (var
)
831 && !TREE_STATIC (var
))
832 walk_tree (&DECL_INITIAL (var
), scan_for_static_refs
,
838 /* If FN is avail == AVAIL_OVERWRITABLE, replace the effects bit
839 vectors with worst case bit vectors. We had to analyze it above to
840 find out if it took the address of any statics. However, now that
841 we know that, we can get rid of all of the other side effects. */
844 clean_function (struct cgraph_node
*fn
)
846 ipa_reference_vars_info_t info
= get_reference_vars_info_from_cgraph (fn
);
847 ipa_reference_local_vars_info_t l
= info
->local
;
848 ipa_reference_global_vars_info_t g
= info
->global
;
853 && l
->statics_read
!= all_module_statics
)
854 BITMAP_FREE (l
->statics_read
);
855 if (l
->statics_written
856 &&l
->statics_written
!= all_module_statics
)
857 BITMAP_FREE (l
->statics_written
);
864 && g
->statics_read
!= all_module_statics
)
865 BITMAP_FREE (g
->statics_read
);
867 if (g
->statics_written
868 && g
->statics_written
!= all_module_statics
)
869 BITMAP_FREE (g
->statics_written
);
871 if (g
->statics_not_read
872 && g
->statics_not_read
!= all_module_statics
)
873 BITMAP_FREE (g
->statics_not_read
);
875 if (g
->statics_not_written
876 && g
->statics_not_written
!= all_module_statics
)
877 BITMAP_FREE (g
->statics_not_written
);
882 free (get_function_ann (fn
->decl
)->reference_vars_info
);
883 get_function_ann (fn
->decl
)->reference_vars_info
= NULL
;
887 /* Produce the global information by preforming a transitive closure
888 on the local information that was produced by ipa_analyze_function
889 and ipa_analyze_variable. */
892 static_execute (void)
894 struct cgraph_node
*node
;
895 struct cgraph_varpool_node
*vnode
;
896 struct cgraph_node
*w
;
897 struct cgraph_node
**order
=
898 xcalloc (cgraph_n_nodes
, sizeof (struct cgraph_node
*));
899 int order_pos
= order_pos
= ipa_utils_reduced_inorder (order
, false, true);
904 /* Process all of the variables first. */
905 for (vnode
= cgraph_varpool_nodes_queue
; vnode
; vnode
= vnode
->next_needed
)
906 analyze_variable (vnode
);
908 /* Process all of the functions next.
910 We do not want to process any of the clones so we check that this
911 is a master clone. However, we do need to process any
912 AVAIL_OVERWRITABLE functions (these are never clones) because
913 they may cause a static variable to escape. The code that can
914 overwrite such a function cannot access the statics because it
915 would not be in the same compilation unit. When the analysis is
916 finished, the computed information of these AVAIL_OVERWRITABLE is
917 replaced with worst case info.
919 for (node
= cgraph_nodes
; node
; node
= node
->next
)
921 && (cgraph_is_master_clone (node
)
922 || (cgraph_function_body_availability (node
)
923 == AVAIL_OVERWRITABLE
)))
924 analyze_function (node
);
926 pointer_set_destroy (visited_nodes
);
927 visited_nodes
= NULL
;
929 dump_cgraph (dump_file
);
931 /* Prune out the variables that were found to behave badly
932 (i.e. have their address taken). */
936 bitmap module_statics_readonly
= BITMAP_ALLOC (&ipa_obstack
);
937 bitmap module_statics_const
= BITMAP_ALLOC (&ipa_obstack
);
938 bitmap bm_temp
= BITMAP_ALLOC (&ipa_obstack
);
940 EXECUTE_IF_SET_IN_BITMAP (module_statics_escape
, 0, index
, bi
)
942 splay_tree_remove (reference_vars_to_consider
, index
);
945 bitmap_and_compl_into (all_module_statics
,
946 module_statics_escape
);
948 bitmap_and_compl (module_statics_readonly
, all_module_statics
,
949 module_statics_written
);
951 /* If the address is not taken, we can unset the addressable bit
953 EXECUTE_IF_SET_IN_BITMAP (all_module_statics
, 0, index
, bi
)
955 tree var
= get_static_decl (index
);
956 TREE_ADDRESSABLE (var
) = 0;
958 fprintf (dump_file
, "Not TREE_ADDRESSABLE var %s\n",
959 get_static_name (index
));
962 /* If the variable is never written, we can set the TREE_READONLY
963 flag. Additionally if it has a DECL_INITIAL that is made up of
964 constants we can treat the entire global as a constant. */
966 bitmap_and_compl (module_statics_readonly
, all_module_statics
,
967 module_statics_written
);
968 EXECUTE_IF_SET_IN_BITMAP (module_statics_readonly
, 0, index
, bi
)
970 tree var
= get_static_decl (index
);
972 /* Readonly on a function decl is very different from the
974 if (TREE_CODE (var
) == FUNCTION_DECL
)
977 /* Ignore variables in named sections - changing TREE_READONLY
978 changes the section flags, potentially causing conflicts with
979 other variables in the same named section. */
980 if (DECL_SECTION_NAME (var
) == NULL_TREE
)
982 TREE_READONLY (var
) = 1;
984 fprintf (dump_file
, "read-only var %s\n",
985 get_static_name (index
));
987 if (DECL_INITIAL (var
)
988 && is_gimple_min_invariant (DECL_INITIAL (var
)))
990 bitmap_set_bit (module_statics_const
, index
);
992 fprintf (dump_file
, "read-only constant %s\n",
993 get_static_name (index
));
997 BITMAP_FREE(module_statics_escape
);
998 BITMAP_FREE(module_statics_written
);
1001 EXECUTE_IF_SET_IN_BITMAP (all_module_statics
, 0, index
, bi
)
1003 fprintf (dump_file
, "\nPromotable global:%s",
1004 get_static_name (index
));
1007 for (i
= 0; i
< order_pos
; i
++ )
1009 ipa_reference_local_vars_info_t l
;
1011 l
= get_reference_vars_info_from_cgraph (node
)->local
;
1013 /* Any variables that are not in all_module_statics are
1014 removed from the local maps. This will include all of the
1015 variables that were found to escape in the function
1017 bitmap_and_into (l
->statics_read
,
1018 all_module_statics
);
1019 bitmap_and_into (l
->statics_written
,
1020 all_module_statics
);
1023 BITMAP_FREE(module_statics_readonly
);
1024 BITMAP_FREE(module_statics_const
);
1025 BITMAP_FREE(bm_temp
);
1030 for (i
= 0; i
< order_pos
; i
++ )
1033 ipa_reference_local_vars_info_t l
;
1037 l
= get_reference_vars_info_from_cgraph (node
)->local
;
1039 "\nFunction name:%s/%i:",
1040 cgraph_node_name (node
), node
->uid
);
1041 fprintf (dump_file
, "\n locals read: ");
1042 EXECUTE_IF_SET_IN_BITMAP (l
->statics_read
,
1045 fprintf (dump_file
, "%s ",
1046 get_static_name (index
));
1048 fprintf (dump_file
, "\n locals written: ");
1049 EXECUTE_IF_SET_IN_BITMAP (l
->statics_written
,
1052 fprintf(dump_file
, "%s ",
1053 get_static_name (index
));
1058 /* Propagate the local information thru the call graph to produce
1059 the global information. All the nodes within a cycle will have
1060 the same info so we collapse cycles first. Then we can do the
1061 propagation in one pass from the leaves to the roots. */
1062 order_pos
= ipa_utils_reduced_inorder (order
, true, true);
1064 ipa_utils_print_order(dump_file
, "reduced", order
, order_pos
);
1066 for (i
= 0; i
< order_pos
; i
++ )
1068 ipa_reference_vars_info_t node_info
;
1069 ipa_reference_global_vars_info_t node_g
=
1070 xcalloc (1, sizeof (struct ipa_reference_global_vars_info_d
));
1071 ipa_reference_local_vars_info_t node_l
;
1075 struct ipa_dfs_info
* w_info
;
1078 node_info
= get_reference_vars_info_from_cgraph (node
);
1081 dump_cgraph_node (stderr
, node
);
1082 dump_cgraph (stderr
);
1086 node_info
->global
= node_g
;
1087 node_l
= node_info
->local
;
1089 read_all
= node_l
->calls_read_all
;
1090 write_all
= node_l
->calls_write_all
;
1092 /* If any node in a cycle is calls_read_all or calls_write_all
1095 w
= w_info
->next_cycle
;
1098 ipa_reference_local_vars_info_t w_l
=
1099 get_reference_vars_info_from_cgraph (w
)->local
;
1100 read_all
|= w_l
->calls_read_all
;
1101 write_all
|= w_l
->calls_write_all
;
1104 w
= w_info
->next_cycle
;
1107 /* Initialized the bitmaps for the reduced nodes */
1109 node_g
->statics_read
= all_module_statics
;
1112 node_g
->statics_read
= BITMAP_ALLOC (&ipa_obstack
);
1113 bitmap_copy (node_g
->statics_read
,
1114 node_l
->statics_read
);
1118 node_g
->statics_written
= all_module_statics
;
1121 node_g
->statics_written
= BITMAP_ALLOC (&ipa_obstack
);
1122 bitmap_copy (node_g
->statics_written
,
1123 node_l
->statics_written
);
1127 w
= w_info
->next_cycle
;
1130 ipa_reference_vars_info_t w_ri
=
1131 get_reference_vars_info_from_cgraph (w
);
1132 ipa_reference_local_vars_info_t w_l
= w_ri
->local
;
1134 /* All nodes within a cycle share the same global info bitmaps. */
1135 w_ri
->global
= node_g
;
1137 /* These global bitmaps are initialized from the local info
1138 of all of the nodes in the region. However there is no
1139 need to do any work if the bitmaps were set to
1140 all_module_statics. */
1142 bitmap_ior_into (node_g
->statics_read
,
1145 bitmap_ior_into (node_g
->statics_written
,
1146 w_l
->statics_written
);
1148 w
= w_info
->next_cycle
;
1156 w
= w_info
->next_cycle
;
1160 /* Need to fix up the local information sets. The information that
1161 has been gathered so far is preinlining. However, the
1162 compilation will progress post inlining so the local sets for the
1163 inlined calls need to be merged into the callers. Note that the
1164 local sets are not shared between all of the nodes in a cycle so
1165 those nodes in the cycle must be processed explicitly. */
1166 for (i
= 0; i
< order_pos
; i
++ )
1168 struct ipa_dfs_info
* w_info
;
1170 merge_callee_local_info (node
, node
);
1173 w
= w_info
->next_cycle
;
1176 merge_callee_local_info (w
, w
);
1178 w
= w_info
->next_cycle
;
1184 for (i
= 0; i
< order_pos
; i
++ )
1186 ipa_reference_vars_info_t node_info
;
1187 ipa_reference_global_vars_info_t node_g
;
1188 ipa_reference_local_vars_info_t node_l
;
1191 struct ipa_dfs_info
* w_info
;
1194 node_info
= get_reference_vars_info_from_cgraph (node
);
1195 node_g
= node_info
->global
;
1196 node_l
= node_info
->local
;
1198 "\nFunction name:%s/%i:",
1199 cgraph_node_name (node
), node
->uid
);
1200 fprintf (dump_file
, "\n locals read: ");
1201 EXECUTE_IF_SET_IN_BITMAP (node_l
->statics_read
,
1204 fprintf (dump_file
, "%s ",
1205 get_static_name (index
));
1207 fprintf (dump_file
, "\n locals written: ");
1208 EXECUTE_IF_SET_IN_BITMAP (node_l
->statics_written
,
1211 fprintf(dump_file
, "%s ",
1212 get_static_name (index
));
1216 w
= w_info
->next_cycle
;
1219 ipa_reference_vars_info_t w_ri
=
1220 get_reference_vars_info_from_cgraph (w
);
1221 ipa_reference_local_vars_info_t w_l
= w_ri
->local
;
1222 fprintf (dump_file
, "\n next cycle: %s/%i ",
1223 cgraph_node_name (w
), w
->uid
);
1224 fprintf (dump_file
, "\n locals read: ");
1225 EXECUTE_IF_SET_IN_BITMAP (w_l
->statics_read
,
1228 fprintf (dump_file
, "%s ",
1229 get_static_name (index
));
1232 fprintf (dump_file
, "\n locals written: ");
1233 EXECUTE_IF_SET_IN_BITMAP (w_l
->statics_written
,
1236 fprintf(dump_file
, "%s ",
1237 get_static_name (index
));
1242 w
= w_info
->next_cycle
;
1244 fprintf (dump_file
, "\n globals read: ");
1245 EXECUTE_IF_SET_IN_BITMAP (node_g
->statics_read
,
1248 fprintf (dump_file
, "%s ",
1249 get_static_name (index
));
1251 fprintf (dump_file
, "\n globals written: ");
1252 EXECUTE_IF_SET_IN_BITMAP (node_g
->statics_written
,
1255 fprintf (dump_file
, "%s ",
1256 get_static_name (index
));
1262 for (i
= 0; i
< order_pos
; i
++ )
1264 ipa_reference_vars_info_t node_info
;
1265 ipa_reference_global_vars_info_t node_g
;
1267 node_info
= get_reference_vars_info_from_cgraph (node
);
1268 node_g
= node_info
->global
;
1270 /* Create the complimentary sets. These are more useful for
1272 node_g
->statics_not_read
= BITMAP_ALLOC (&ipa_obstack
);
1273 node_g
->statics_not_written
= BITMAP_ALLOC (&ipa_obstack
);
1275 if (node_g
->statics_read
!= all_module_statics
)
1277 bitmap_and_compl (node_g
->statics_not_read
,
1279 node_g
->statics_read
);
1282 if (node_g
->statics_written
1283 != all_module_statics
)
1284 bitmap_and_compl (node_g
->statics_not_written
,
1286 node_g
->statics_written
);
1291 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1293 /* Get rid of the aux information. */
1302 && (cgraph_function_body_availability (node
) == AVAIL_OVERWRITABLE
))
1303 clean_function (node
);
1310 gate_reference (void)
1312 return (flag_unit_at_a_time
!= 0 && flag_ipa_reference
1313 /* Don't bother doing anything if the program has errors. */
1314 && !(errorcount
|| sorrycount
));
1317 struct tree_opt_pass pass_ipa_reference
=
1319 "static-var", /* name */
1320 gate_reference
, /* gate */
1321 static_execute
, /* execute */
1324 0, /* static_pass_number */
1325 TV_IPA_REFERENCE
, /* tv_id */
1326 0, /* properties_required */
1327 0, /* properties_provided */
1328 0, /* properties_destroyed */
1329 0, /* todo_flags_start */
1330 0, /* todo_flags_finish */
1334 #include "gt-ipa-reference.h"