New code to analyze file level static variables and to determine if...
New code to analyze file level static variables and to determine if they escape and also code to use this information to prune clobber lists. From-SVN: r87455
This commit is contained in:
parent
c56e3d82fc
commit
6674a6ce49
@ -1,3 +1,40 @@
|
||||
2004-09-26 Kenneth Zadeck <Kenneth.Zadeck@NaturalBridge.com>
|
||||
|
||||
|
||||
* tree-ssa-operands.c (get_call_expr_operands): Added parm to
|
||||
add_call_clobber_ops and add_call_read_ops.
|
||||
(add_call_clobber_ops, add_call_read_ops): Added code to reduce
|
||||
the number of vdefs and vuses inserted based on analysis of global
|
||||
variables across calls. * tree-dfa.c (find_referenced_vars):
|
||||
Needed to reset static var maps before each function is compiled.
|
||||
* cgraphunit.c:
|
||||
(static_vars_to_consider_by_tree,static_vars_to_consider_by_uid,
|
||||
static_vars_info,functions_to_static_vars_info,module_statics_escape,
|
||||
all_module_statics,searchc_env,dfs_info): New fields to support
|
||||
analysis of static global variables.
|
||||
(print_order, convert_UIDs_in_bitmap, new_static_vars_info,
|
||||
cgraph_reset_static_var_maps, get_global_static_vars_info,
|
||||
get_global_statics_not_read, get_global_statics_not_written,
|
||||
searchc, cgraph_reduced_inorder, has_proper_scope_for_analysis,
|
||||
check_rhs_var, check_lhs_var, get_asm_expr_operands,
|
||||
process_call_for_static_vars, scan_for_static_refs,
|
||||
cgraph_characterize_statics_local, cgraph_get_static_name_by_uid,
|
||||
clear_static_vars_maps, cgraph_propagate_bits,
|
||||
cgraph_characterize_statics): New. Functions to support analysis
|
||||
of static global variables.
|
||||
(cgraph_mark_local_and_external_functions): Renamed from:
|
||||
(cgraph_mark_local_functions)
|
||||
(cgraph_expand_all_functions): Remove call to
|
||||
cgraph_mark_local_and_external_functions.
|
||||
(cgraph_optimize): Added driver to analyze static variables whose
|
||||
scope is within the compilation unit. * cgraph.h (struct
|
||||
cgraph_local_info, GTY): Added statics_read, statics_written,
|
||||
local, calls_read_all, calls_write_all, for_functions_valid.
|
||||
(struct cgraph_node): Added next_cycle. * cgraph.c
|
||||
(dump_cgraph_node): Added print routines for new fields. *
|
||||
makefile.in: macroized cgraph.h, added cgraphunit.c to the ggc
|
||||
list.
|
||||
|
||||
2004-09-13 Joseph S. Myers <jsm@polyomino.org.uk>
|
||||
|
||||
* c-decl.c (grokdeclarator): Correct comments about where storage
|
||||
|
@ -702,6 +702,7 @@ INTEGRATE_H = integrate.h varray.h
|
||||
LOOP_H = loop.h varray.h bitmap.h
|
||||
CFGLAYOUT_H = cfglayout.h $(BASIC_BLOCK_H)
|
||||
CFGLOOP_H = cfgloop.h $(BASIC_BLOCK_H) $(RTL_H)
|
||||
CGRAPH_H = cgraph.h bitmap.h tree.h $(HASHTAB_H)
|
||||
DF_H = df.h bitmap.h sbitmap.h $(BASIC_BLOCK_H)
|
||||
DDG_H = ddg.h sbitmap.h $(DF_H)
|
||||
GCC_H = gcc.h version.h
|
||||
@ -722,7 +723,7 @@ TREE_DUMP_H = tree-dump.h $(SPLAY_TREE_H)
|
||||
TREE_GIMPLE_H = tree-gimple.h tree-iterator.h
|
||||
TREE_FLOW_H = tree-flow.h tree-flow-inline.h tree-ssa-operands.h \
|
||||
bitmap.h $(BASIC_BLOCK_H) hard-reg-set.h $(TREE_GIMPLE_H) \
|
||||
$(HASHTAB_H)
|
||||
$(HASHTAB_H) $(CGRAPH_H)
|
||||
TREE_SSA_LIVE_H = tree-ssa-live.h $(PARTITION_H)
|
||||
PRETTY_PRINT_H = pretty-print.h input.h $(OBSTACK_H)
|
||||
DIAGNOSTIC_H = diagnostic.h diagnostic.def $(PRETTY_PRINT_H)
|
||||
@ -1370,7 +1371,7 @@ c-incpath.o: c-incpath.c c-incpath.h $(CONFIG_H) $(SYSTEM_H) $(CPPLIB_H) \
|
||||
c-decl.o : c-decl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
$(RTL_H) $(C_TREE_H) $(GGC_H) $(TARGET_H) $(FLAGS_H) function.h output.h \
|
||||
$(EXPR_H) debug.h toplev.h intl.h $(TM_P_H) tree-inline.h $(TIMEVAR_H) \
|
||||
opts.h $(C_PRAGMA_H) gt-c-decl.h cgraph.h $(HASHTAB_H) libfuncs.h except.h \
|
||||
opts.h $(C_PRAGMA_H) gt-c-decl.h $(CGRAPH_H) $(HASHTAB_H) libfuncs.h except.h \
|
||||
$(LANGHOOKS_DEF_H) $(TREE_DUMP_H)
|
||||
c-typeck.o : c-typeck.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_TREE_H) \
|
||||
$(TARGET_H) $(FLAGS_H) intl.h output.h $(EXPR_H) $(RTL_H) toplev.h $(TM_P_H) \
|
||||
@ -1390,7 +1391,7 @@ c-ppoutput.o : c-ppoutput.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
|
||||
c-objc-common.o : c-objc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
$(C_TREE_H) $(RTL_H) insn-config.h $(INTEGRATE_H) $(EXPR_H) \
|
||||
$(FLAGS_H) toplev.h tree-inline.h $(DIAGNOSTIC_H) $(VARRAY_H) \
|
||||
langhooks.h $(GGC_H) $(TARGET_H) cgraph.h $(C_PRETTY_PRINT_H) c-objc-common.h
|
||||
langhooks.h $(GGC_H) $(TARGET_H) $(CGRAPH_H) $(C_PRETTY_PRINT_H) c-objc-common.h
|
||||
c-aux-info.o : c-aux-info.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
$(C_TREE_H) $(FLAGS_H) toplev.h
|
||||
c-convert.o : c-convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
@ -1551,7 +1552,7 @@ gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
|
||||
varray.h $(HASHTAB_H) $(SPLAY_TREE_H) bitmap.h $(TREE_H) $(RTL_H) \
|
||||
function.h insn-config.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \
|
||||
cselib.h insn-addr.h $(OPTABS_H) libfuncs.h debug.h $(GGC_H) \
|
||||
cgraph.h $(TREE_FLOW_H) reload.h $(CPP_ID_DATA_H)
|
||||
$(CGRAPH_H) $(TREE_FLOW_H) reload.h $(CPP_ID_DATA_H)
|
||||
|
||||
ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GGC_H) \
|
||||
$(HASHTAB_H) toplev.h $(PARAMS_H) hosthooks.h
|
||||
@ -1586,7 +1587,7 @@ tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
|
||||
$(TREE_H) $(RTL_H) $(EXPR_H) $(FLAGS_H) $(PARAMS_H) input.h insn-config.h \
|
||||
$(INTEGRATE_H) $(VARRAY_H) $(HASHTAB_H) $(SPLAY_TREE_H) toplev.h \
|
||||
langhooks.h $(C_COMMON_H) tree-inline.h cgraph.h intl.h function.h \
|
||||
langhooks.h $(C_COMMON_H) tree-inline.h $(CGRAPH_H) intl.h function.h \
|
||||
$(TREE_GIMPLE_H)
|
||||
print-tree.o : print-tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
$(GGC_H) langhooks.h real.h
|
||||
@ -1670,7 +1671,7 @@ tree-tailcall.o : tree-tailcall.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
|
||||
$(TREE_DUMP_H) diagnostic.h except.h tree-pass.h $(FLAGS_H) langhooks.h
|
||||
tree-nested.o: tree-nested.c $(CONFIG_H) $(SYSTEM_H) $(TM_H) $(TREE_H) \
|
||||
$(RTL_H) $(TM_P_H) function.h tree-dump.h tree-inline.h tree-iterator.h \
|
||||
tree-gimple.h cgraph.h $(EXPR_H) langhooks.h $(GGC_H) gt-tree-nested.h
|
||||
tree-gimple.h $(CGRAPH_H) $(EXPR_H) langhooks.h $(GGC_H) gt-tree-nested.h
|
||||
tree-if-conv.o: tree-if-conv.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
|
||||
$(TREE_H) flags.h $(TIMEVAR_H) varray.h $(BASIC_BLOCK_H) $(TREE_FLOW_H) \
|
||||
cfgloop.h $(RTL_H) c-common.h tree-chrec.h tree-data-ref.h \
|
||||
@ -1681,9 +1682,9 @@ tree-dfa.o : tree-dfa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
|
||||
$(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h diagnostic.h \
|
||||
errors.h tree-inline.h $(HASHTAB_H) $(FLAGS_H) function.h $(TIMEVAR_H) \
|
||||
convert.h $(TM_H) coretypes.h langhooks.h \
|
||||
$(TREE_DUMP_H) tree-pass.h params.h
|
||||
$(TREE_DUMP_H) tree-pass.h params.h $(CGRAPH_H)
|
||||
tree-ssa-operands.o : tree-ssa-operands.c $(TREE_FLOW_H) $(CONFIG_H) \
|
||||
$(SYSTEM_H) $(TREE_H) $(TM_P_H) $(GGC_H) diagnostic.h errors.h \
|
||||
$(SYSTEM_H) $(TREE_H) $(TM_P_H) $(GGC_H) $(CGRAPH_H) diagnostic.h errors.h \
|
||||
tree-inline.h $(FLAGS_H) function.h $(TM_H) $(TIMEVAR_H) tree-pass.h
|
||||
tree-eh.o : tree-eh.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
|
||||
$(RTL_H) $(TREE_H) $(TM_H) $(FLAGS_H) function.h except.h langhooks.h \
|
||||
@ -1725,15 +1726,15 @@ tree-optimize.o : tree-optimize.c $(TREE_FLOW_H) $(CONFIG_H) \
|
||||
$(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) \
|
||||
$(GGC_H) output.h diagnostic.h errors.h $(FLAGS_H) \
|
||||
$(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) toplev.h function.h \
|
||||
langhooks.h $(FLAGS_H) cgraph.h tree-inline.h tree-mudflap.h $(GGC_H) \
|
||||
cgraph.h tree-pass.h
|
||||
langhooks.h $(FLAGS_H) $(CGRAPH_H) tree-inline.h tree-mudflap.h $(GGC_H) \
|
||||
$(CGRAPH_H) tree-pass.h
|
||||
c-gimplify.o : c-gimplify.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) errors.h \
|
||||
$(C_TREE_H) $(C_COMMON_H) diagnostic.h $(TREE_GIMPLE_H) varray.h $(FLAGS_H) \
|
||||
langhooks.h toplev.h rtl.h $(TREE_FLOW_H) langhooks-def.h \
|
||||
$(TM_H) coretypes.h $(C_PRETTY_PRINT_H) cgraph.h
|
||||
$(TM_H) coretypes.h $(C_PRETTY_PRINT_H) $(CGRAPH_H)
|
||||
gimplify.o : gimplify.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) errors.h \
|
||||
diagnostic.h $(TREE_GIMPLE_H) tree-inline.h varray.h langhooks.h \
|
||||
langhooks-def.h $(TREE_FLOW_H) cgraph.h $(TIMEVAR_H) $(TM_H) coretypes.h \
|
||||
langhooks-def.h $(TREE_FLOW_H) $(CGRAPH_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
|
||||
except.h $(FLAGS_H) $(RTL_H) function.h $(EXPR_H) output.h $(GGC_H) \
|
||||
gt-gimplify.h
|
||||
gimple-low.o : gimple-low.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) errors.h \
|
||||
@ -1766,7 +1767,7 @@ tree-gimple.o : tree-gimple.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(EXPR_H) \
|
||||
tree-mudflap.o : $(CONFIG_H) errors.h $(SYSTEM_H) $(TREE_H) tree-inline.h \
|
||||
$(C_TREE_H) $(C_COMMON_H) $(TREE_GIMPLE_H) diagnostic.h $(HASHTAB_H) \
|
||||
output.h varray.h langhooks.h tree-mudflap.h $(TM_H) coretypes.h \
|
||||
$(TREE_DUMP_H) tree-pass.h cgraph.h
|
||||
$(TREE_DUMP_H) tree-pass.h $(CGRAPH_H)
|
||||
tree-nomudflap.o : $(CONFIG_H) errors.h $(SYSTEM_H) $(TREE_H) tree-inline.h \
|
||||
$(C_TREE_H) $(C_COMMON_H) $(TREE_GIMPLE_H) diagnostic.h $(HASHTAB_H) \
|
||||
output.h varray.h langhooks.h tree-mudflap.h $(TM_H) coretypes.h
|
||||
@ -1793,7 +1794,7 @@ toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) versio
|
||||
graph.h $(LOOP_H) except.h $(REGS_H) $(TIMEVAR_H) value-prof.h \
|
||||
$(PARAMS_H) $(TM_P_H) reload.h dwarf2asm.h $(TARGET_H) \
|
||||
langhooks.h insn-flags.h $(CFGLAYOUT_H) real.h $(CFGLOOP_H) \
|
||||
hosthooks.h $(LANGHOOKS_DEF_H) cgraph.h $(COVERAGE_H) alloc-pool.h
|
||||
hosthooks.h $(LANGHOOKS_DEF_H) $(CGRAPH_H) $(COVERAGE_H) alloc-pool.h
|
||||
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
|
||||
-DTARGET_NAME=\"$(target_noncanonical)\" \
|
||||
-c $(srcdir)/toplev.c $(OUTPUT_OPTION)
|
||||
@ -1805,7 +1806,7 @@ passes.o : passes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
graph.h $(LOOP_H) except.h $(REGS_H) $(TIMEVAR_H) value-prof.h \
|
||||
$(PARAMS_H) $(TM_P_H) reload.h dwarf2asm.h $(TARGET_H) \
|
||||
langhooks.h insn-flags.h $(CFGLAYOUT_H) real.h $(CFGLOOP_H) \
|
||||
hosthooks.h $(LANGHOOKS_DEF_H) cgraph.h $(COVERAGE_H) alloc-pool.h \
|
||||
hosthooks.h $(LANGHOOKS_DEF_H) $(CGRAPH_H) $(COVERAGE_H) alloc-pool.h \
|
||||
tree-pass.h tree-dump.h
|
||||
|
||||
main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h
|
||||
@ -1842,7 +1843,7 @@ except.o : except.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
|
||||
$(TREE_H) $(FLAGS_H) except.h function.h $(EXPR_H) libfuncs.h $(INTEGRATE_H) \
|
||||
langhooks.h insn-config.h hard-reg-set.h $(BASIC_BLOCK_H) output.h \
|
||||
dwarf2asm.h dwarf2out.h toplev.h $(HASHTAB_H) intl.h $(GGC_H) \
|
||||
gt-except.h cgraph.h
|
||||
gt-except.h $(CGRAPH_H)
|
||||
expr.o : expr.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) $(FLAGS_H) \
|
||||
function.h $(REGS_H) $(EXPR_H) $(OPTABS_H) libfuncs.h $(INSN_ATTR_H) insn-config.h \
|
||||
$(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
|
||||
@ -1858,7 +1859,7 @@ builtins.o : builtins.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(T
|
||||
tree-mudflap.h
|
||||
calls.o : calls.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) $(FLAGS_H) \
|
||||
$(EXPR_H) $(OPTABS_H) langhooks.h $(TARGET_H) \
|
||||
libfuncs.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H) $(TM_P_H) cgraph.h except.h
|
||||
libfuncs.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H) $(TM_P_H) $(CGRAPH_H) except.h
|
||||
expmed.o : expmed.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
|
||||
$(FLAGS_H) insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) real.h \
|
||||
toplev.h $(TM_P_H) langhooks.h
|
||||
@ -1882,7 +1883,7 @@ dwarf2out.o : dwarf2out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
|
||||
$(TREE_H) version.h $(RTL_H) dwarf2.h debug.h $(FLAGS_H) insn-config.h reload.h \
|
||||
output.h $(DIAGNOSTIC_H) real.h hard-reg-set.h $(REGS_H) $(EXPR_H) \
|
||||
libfuncs.h toplev.h dwarf2out.h varray.h $(GGC_H) except.h dwarf2asm.h \
|
||||
$(TM_P_H) langhooks.h $(HASHTAB_H) gt-dwarf2out.h $(TARGET_H) cgraph.h \
|
||||
$(TM_P_H) langhooks.h $(HASHTAB_H) gt-dwarf2out.h $(TARGET_H) $(CGRAPH_H) \
|
||||
$(MD5_H) input.h
|
||||
dwarf2asm.o : dwarf2asm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(FLAGS_H) $(RTL_H) \
|
||||
$(TREE_H) output.h dwarf2asm.h $(TM_P_H) $(GGC_H) gt-dwarf2asm.h
|
||||
@ -1908,11 +1909,11 @@ simplify-rtx.o : simplify-rtx.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RT
|
||||
$(REGS_H) hard-reg-set.h $(FLAGS_H) real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
|
||||
output.h function.h $(GGC_H) $(OBSTACK_H) $(TM_P_H) $(TREE_H) $(TARGET_H)
|
||||
cgraph.o : cgraph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
langhooks.h toplev.h $(FLAGS_H) $(GGC_H) $(TARGET_H) cgraph.h gt-cgraph.h \
|
||||
langhooks.h toplev.h $(FLAGS_H) $(GGC_H) $(TARGET_H) $(CGRAPH_H) gt-cgraph.h \
|
||||
output.h intl.h
|
||||
cgraphunit.o : cgraphunit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
|
||||
langhooks.h tree-inline.h toplev.h $(FLAGS_H) $(GGC_H) $(TARGET_H) cgraph.h intl.h \
|
||||
function.h
|
||||
langhooks.h tree-inline.h toplev.h $(FLAGS_H) $(GGC_H) $(TARGET_H) $(CGRAPH_H) intl.h \
|
||||
function.h $(TREE_GIMPLE_H) $(TREE_FLOW_H)
|
||||
coverage.o : coverage.c gcov-io.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
|
||||
$(TM_H) $(RTL_H) $(TREE_H) $(FLAGS_H) output.h $(REGS_H) $(EXPR_H) function.h \
|
||||
toplev.h $(GGC_H) $(TARGET_H) langhooks.h $(COVERAGE_H) libfuncs.h \
|
||||
@ -2095,7 +2096,7 @@ reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) condition
|
||||
alias.o : alias.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(FLAGS_H) \
|
||||
hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) toplev.h output.h $(ALIAS_H) $(EMIT_RTL_H) \
|
||||
$(GGC_H) function.h cselib.h $(TREE_H) $(TM_P_H) langhooks.h $(TARGET_H) \
|
||||
gt-alias.h $(TIMEVAR_H) cgraph.h
|
||||
gt-alias.h $(TIMEVAR_H) $(CGRAPH_H)
|
||||
regmove.o : regmove.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) insn-config.h \
|
||||
$(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) function.h \
|
||||
$(EXPR_H) $(BASIC_BLOCK_H) toplev.h $(TM_P_H) except.h reload.h
|
||||
@ -2398,6 +2399,7 @@ GTFILES = $(srcdir)/input.h $(srcdir)/coretypes.h \
|
||||
$(srcdir)/cselib.h $(srcdir)/basic-block.h $(srcdir)/cgraph.h \
|
||||
$(srcdir)/c-common.h $(srcdir)/c-tree.h $(srcdir)/reload.h \
|
||||
$(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c $(srcdir)/cgraph.c \
|
||||
$(srcdir)/cgraphunit.c \
|
||||
$(srcdir)/dbxout.c $(srcdir)/dwarf2out.c $(srcdir)/dwarf2asm.c \
|
||||
$(srcdir)/dojump.c \
|
||||
$(srcdir)/emit-rtl.c $(srcdir)/except.c $(srcdir)/explow.c $(srcdir)/expr.c \
|
||||
|
@ -474,6 +474,12 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node)
|
||||
|
||||
if (node->local.local)
|
||||
fprintf (f, " local");
|
||||
if (node->local.external)
|
||||
fprintf (f, " external");
|
||||
if (node->local.calls_read_all)
|
||||
fprintf (f, " calls_read_all");
|
||||
if (node->local.calls_write_all)
|
||||
fprintf (f, " calls_write_all");
|
||||
if (node->local.disregard_inline_limits)
|
||||
fprintf (f, " always_inline");
|
||||
else if (node->local.inlinable)
|
||||
|
93
gcc/cgraph.h
93
gcc/cgraph.h
@ -22,6 +22,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
||||
#ifndef GCC_CGRAPH_H
|
||||
#define GCC_CGRAPH_H
|
||||
#include "hashtab.h"
|
||||
#include "bitmap.h"
|
||||
#include "tree.h"
|
||||
|
||||
/* Information about the function collected locally.
|
||||
Available after function is analyzed. */
|
||||
@ -30,19 +32,37 @@ struct cgraph_local_info GTY(())
|
||||
{
|
||||
/* Size of the function before inlining. */
|
||||
int self_insns;
|
||||
|
||||
/* Set when function function is visible in current compilation unit only
|
||||
and it's address is never taken. */
|
||||
bool local;
|
||||
|
||||
/* Set when function is defined in another compilation unit. */
|
||||
bool external;
|
||||
|
||||
/* Set when this function calls a function external of the
|
||||
compilation unit. In general, such calls are modeled as reading
|
||||
and writing all variables (both bits on) but sometime there are
|
||||
attributes on the called function so we can do better. */
|
||||
bool calls_read_all;
|
||||
bool calls_write_all;
|
||||
|
||||
/* Set once it has been finalized so we consider it to be output. */
|
||||
bool finalized;
|
||||
|
||||
/* False when there something makes inlining impossible (such as va_arg). */
|
||||
bool inlinable;
|
||||
|
||||
/* True when function should be inlined independently on it's size. */
|
||||
bool disregard_inline_limits;
|
||||
|
||||
/* True when the function has been originally extern inline, but it is
|
||||
redefined now. */
|
||||
bool redefined_extern_inline;
|
||||
|
||||
/* True if statics_read_for_function and
|
||||
statics_written_for_function contain valid data. */
|
||||
bool for_functions_valid;
|
||||
};
|
||||
|
||||
/* Information about the function that needs to be computed globally
|
||||
@ -70,6 +90,69 @@ struct cgraph_rtl_info GTY(())
|
||||
bool pure_function;
|
||||
};
|
||||
|
||||
/* FIXME -- PROFILE-RESTRUCTURE: When the next round of the profiling
|
||||
code gets merged in, it will contain a restructing where ssa form
|
||||
is built for every function within the compilation unit before the
|
||||
rest of the compilation continues. When this reorgination is done,
|
||||
it will no longer be necessary to have the _decl_uid versions of
|
||||
local_static_vars_info and global_static_vars_info structures.
|
||||
Having both structures is now requirred because the _ann_uid values
|
||||
for static variables are reset as each function is compiled.
|
||||
Currently, the analysis is done using the _decl_uid versions and
|
||||
converted to the _var_ann versions on demand.
|
||||
|
||||
Also, the var_anns_valid fields within these structures can also go
|
||||
away.
|
||||
*/
|
||||
|
||||
/* The static variables defined within the compilation unit that are
|
||||
loaded or stored directly by function that owns this structure. */
|
||||
|
||||
struct local_static_vars_info_d GTY(())
|
||||
{
|
||||
bitmap statics_read_by_decl_uid;
|
||||
bitmap statics_written_by_decl_uid;
|
||||
};
|
||||
|
||||
struct global_static_vars_info_d GTY(())
|
||||
{
|
||||
bitmap statics_read_by_decl_uid;
|
||||
bitmap statics_written_by_decl_uid;
|
||||
bitmap statics_read_by_ann_uid;
|
||||
bitmap statics_written_by_ann_uid;
|
||||
bitmap statics_not_read_by_decl_uid;
|
||||
bitmap statics_not_written_by_decl_uid;
|
||||
bitmap statics_not_read_by_ann_uid;
|
||||
bitmap statics_not_written_by_ann_uid;
|
||||
|
||||
/* var_anns_valid is reset at the start of compilation for each
|
||||
function because the indexing that the "_var_anns" is based
|
||||
on is invalidated between function compilations. This allows for
|
||||
lazy creation of the "_var_ann" variables. */
|
||||
bool var_anns_valid;
|
||||
};
|
||||
|
||||
/* Statics that are read and written by some set of functions. The
|
||||
local ones are based on the loads and stores local to the function.
|
||||
The global ones are based on the local info as well as the
|
||||
transitive closure of the functions that are called. The
|
||||
structures are separated to allow the global structures to be
|
||||
shared between several functions since every function within a
|
||||
strongly connected component will have the same information. This
|
||||
sharing saves both time and space in the computation of the vectors
|
||||
as well as their translation from decl_uid form to ann_uid
|
||||
form. */
|
||||
|
||||
typedef struct local_static_vars_info_d *local_static_vars_info_t;
|
||||
typedef struct global_static_vars_info_d *global_static_vars_info_t;
|
||||
|
||||
struct static_vars_info_d GTY(())
|
||||
{
|
||||
local_static_vars_info_t local;
|
||||
global_static_vars_info_t global;
|
||||
};
|
||||
|
||||
typedef struct static_vars_info_d *static_vars_info_t;
|
||||
|
||||
/* The cgraph data structure.
|
||||
Each function decl has assigned cgraph_node listing callees and callers. */
|
||||
@ -91,11 +174,18 @@ struct cgraph_node GTY((chain_next ("%h.next"), chain_prev ("%h.previous")))
|
||||
struct cgraph_node *next_needed;
|
||||
/* Pointer to the next clone. */
|
||||
struct cgraph_node *next_clone;
|
||||
/* Pointer to next node in a recursive call graph cycle; */
|
||||
struct cgraph_node *next_cycle;
|
||||
PTR GTY ((skip)) aux;
|
||||
|
||||
struct cgraph_local_info local;
|
||||
struct cgraph_global_info global;
|
||||
struct cgraph_rtl_info rtl;
|
||||
|
||||
/* Pointer to the structure that contains the sets of global
|
||||
variables modified by function calls. */
|
||||
static_vars_info_t static_vars_info;
|
||||
|
||||
/* Unique id of the node. */
|
||||
int uid;
|
||||
/* Set when function must be output - it is externally visible
|
||||
@ -192,6 +282,9 @@ void verify_cgraph_node (struct cgraph_node *);
|
||||
void cgraph_mark_inline_edge (struct cgraph_edge *e);
|
||||
void cgraph_clone_inlined_nodes (struct cgraph_edge *e, bool duplicate);
|
||||
void cgraph_build_static_cdtor (char which, tree body, int priority);
|
||||
void cgraph_reset_static_var_maps (void);
|
||||
bitmap get_global_statics_not_read (tree fn);
|
||||
bitmap get_global_statics_not_written(tree fn);
|
||||
void init_cgraph (void);
|
||||
|
||||
#endif /* GCC_CGRAPH_H */
|
||||
|
1081
gcc/cgraphunit.c
1081
gcc/cgraphunit.c
File diff suppressed because it is too large
Load Diff
@ -45,6 +45,7 @@ Boston, MA 02111-1307, USA. */
|
||||
#include "tree-pass.h"
|
||||
#include "convert.h"
|
||||
#include "params.h"
|
||||
#include "cgraph.h"
|
||||
|
||||
/* Build and maintain data flow information for trees. */
|
||||
|
||||
@ -107,6 +108,7 @@ find_referenced_vars (void)
|
||||
block_stmt_iterator si;
|
||||
struct walk_state walk_state;
|
||||
|
||||
cgraph_reset_static_var_maps ();
|
||||
vars_found = htab_create (50, htab_hash_pointer, htab_eq_pointer, NULL);
|
||||
memset (&walk_state, 0, sizeof (walk_state));
|
||||
walk_state.vars_found = vars_found;
|
||||
|
@ -28,6 +28,7 @@ Boston, MA 02111-1307, USA. */
|
||||
#include "hashtab.h"
|
||||
#include "tree-gimple.h"
|
||||
#include "tree-ssa-operands.h"
|
||||
#include "cgraph.h"
|
||||
|
||||
/* Forward declare structures for the garbage collector GTY markers. */
|
||||
#ifndef GCC_BASIC_BLOCK_H
|
||||
@ -199,6 +200,11 @@ struct var_ann_d GTY(())
|
||||
live at the same time and this can happen for each call to the
|
||||
dominator optimizer. */
|
||||
tree current_def;
|
||||
|
||||
/* Pointer to the structure that contains the sets of global
|
||||
variables modified by function calls. This field is only used
|
||||
for FUNCTION_DECLs. */
|
||||
static_vars_info_t static_vars_info;
|
||||
};
|
||||
|
||||
|
||||
|
@ -32,7 +32,9 @@ Boston, MA 02111-1307, USA. */
|
||||
#include "tree-pass.h"
|
||||
#include "ggc.h"
|
||||
#include "timevar.h"
|
||||
#include "cgraph.h"
|
||||
|
||||
#include "langhooks.h"
|
||||
|
||||
/* This file contains the code required to manage the operands cache of the
|
||||
SSA optimizer. For every stmt, we maintain an operand cache in the stmt
|
||||
@ -133,8 +135,8 @@ static inline void append_def (tree *);
|
||||
static inline void append_use (tree *);
|
||||
static void append_v_may_def (tree);
|
||||
static void append_v_must_def (tree);
|
||||
static void add_call_clobber_ops (tree);
|
||||
static void add_call_read_ops (tree);
|
||||
static void add_call_clobber_ops (tree, tree);
|
||||
static void add_call_read_ops (tree, tree);
|
||||
static void add_stmt_operand (tree *, tree, int);
|
||||
|
||||
/* Return a vector of contiguous memory for NUM def operands. */
|
||||
@ -1380,6 +1382,7 @@ get_call_expr_operands (tree stmt, tree expr)
|
||||
{
|
||||
tree op;
|
||||
int call_flags = call_expr_flags (expr);
|
||||
tree callee = get_callee_fndecl (expr);
|
||||
|
||||
/* Find uses in the called function. */
|
||||
get_expr_operands (stmt, &TREE_OPERAND (expr, 0), opf_none);
|
||||
@ -1396,9 +1399,9 @@ get_call_expr_operands (tree stmt, tree expr)
|
||||
there is no point in recording that. */
|
||||
if (TREE_SIDE_EFFECTS (expr)
|
||||
&& !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
|
||||
add_call_clobber_ops (stmt);
|
||||
add_call_clobber_ops (stmt, callee);
|
||||
else if (!(call_flags & ECF_CONST))
|
||||
add_call_read_ops (stmt);
|
||||
add_call_read_ops (stmt, callee);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1562,7 +1565,7 @@ note_addressable (tree var, stmt_ann_t s_ann)
|
||||
clobbered variables in the function. */
|
||||
|
||||
static void
|
||||
add_call_clobber_ops (tree stmt)
|
||||
add_call_clobber_ops (tree stmt, tree callee)
|
||||
{
|
||||
/* Functions that are not const, pure or never return may clobber
|
||||
call-clobbered variables. */
|
||||
@ -1579,16 +1582,53 @@ add_call_clobber_ops (tree stmt)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
/* Get info for module level statics. There is a bit set for
|
||||
each static if the call being processed does not read or
|
||||
write that variable. */
|
||||
|
||||
bitmap not_read_b = callee
|
||||
? get_global_statics_not_read (callee) : NULL;
|
||||
bitmap not_written_b = callee
|
||||
? get_global_statics_not_written (callee) : NULL;
|
||||
|
||||
|
||||
EXECUTE_IF_SET_IN_BITMAP (call_clobbered_vars, 0, i,
|
||||
{
|
||||
tree var = referenced_var (i);
|
||||
|
||||
/* If VAR is read-only, don't add a V_MAY_DEF, just a
|
||||
VUSE operand. */
|
||||
if (!TREE_READONLY (var))
|
||||
add_stmt_operand (&var, stmt, opf_is_def);
|
||||
bool not_read = not_read_b
|
||||
? bitmap_bit_p(not_read_b, i) : false;
|
||||
bool not_written = not_written_b
|
||||
? bitmap_bit_p(not_written_b, i) : false;
|
||||
|
||||
|
||||
if (not_read)
|
||||
{ /* The var is not read during the call. */
|
||||
if (not_written)
|
||||
{
|
||||
/* Nothing. */
|
||||
}
|
||||
else
|
||||
add_stmt_operand (&var, stmt, opf_is_def);
|
||||
}
|
||||
else
|
||||
add_stmt_operand (&var, stmt, opf_none);
|
||||
{ /* The var is read during the call. */
|
||||
if (not_written)
|
||||
add_stmt_operand (&var, stmt, opf_none);
|
||||
else
|
||||
/* The not_read and not_written bits are only set
|
||||
for module static variables. Neither is set
|
||||
here, so we may be dealing with a module static
|
||||
or we may not. So we still must look anywhere
|
||||
else we can (such as the TREE_READONLY) to get
|
||||
better info. */
|
||||
/* If VAR is read-only, don't add a V_MAY_DEF, just a
|
||||
VUSE operand. */
|
||||
if (TREE_READONLY (var))
|
||||
add_stmt_operand (&var, stmt, opf_none);
|
||||
else
|
||||
add_stmt_operand (&var, stmt, opf_is_def);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
@ -1598,7 +1638,7 @@ add_call_clobber_ops (tree stmt)
|
||||
function. */
|
||||
|
||||
static void
|
||||
add_call_read_ops (tree stmt)
|
||||
add_call_read_ops (tree stmt, tree callee)
|
||||
{
|
||||
/* Otherwise, if the function is not pure, it may reference memory. Add
|
||||
a VUSE for .GLOBAL_VAR if it has been created. Otherwise, add a VUSE
|
||||
@ -1609,10 +1649,15 @@ add_call_read_ops (tree stmt)
|
||||
else
|
||||
{
|
||||
size_t i;
|
||||
bitmap not_read_b = callee
|
||||
? get_global_statics_not_read (callee) : NULL;
|
||||
|
||||
EXECUTE_IF_SET_IN_BITMAP (call_clobbered_vars, 0, i,
|
||||
{
|
||||
tree var = referenced_var (i);
|
||||
bool not_read = not_read_b
|
||||
? bitmap_bit_p(not_read_b, i) : false;
|
||||
if (!not_read)
|
||||
add_stmt_operand (&var, stmt, opf_none);
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user