This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] analysis of global statics and removal associated vdefsand vuses


Kenneth Zadeck wrote:

Mark Mitchell wrote:

Diego Novillo wrote:


+ if (strcmp (TREE_STRING_POINTER (TREE_VALUE (link)), "memory") == 0)
is wrong; TREE_IDENTIFIERs are unique. So, what you want is a global tree:


memory_identifier = get_identifier ("memory")

and then, here, you just want to do: "TREE_VALUE (link) == memory_identifier".


I'm going to approve the patch, if you make those changes, since Diego's looked it over and is happy, and since I don't see anything algorithm that looks too scary. You also need to run the regression testsuite after you fix up the issues above, and you should always post the platform on which you tested with your submission.


Enclosed is revised patch from a week ago. I am committing it in now. The only two changes from Mark's approval are that because of the week delay, the makefile changes are a little different and I have incorporated the changes as mark described to do the the get_identifier once at initialization.

This has been tested on 1-686 linux.
Kenny
cvs diff: Diffing .
Index: gcc/Makefile.in
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1384
diff -3 -c -p -r1.1384 Makefile.in
*** gcc/Makefile.in	11 Sep 2004 04:22:14 -0000	1.1384
--- gcc/Makefile.in	13 Sep 2004 00:38:22 -0000
*************** INTEGRATE_H = integrate.h varray.h
*** 702,707 ****
--- 702,708 ----
  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
*************** TREE_DUMP_H = tree-dump.h $(SPLAY_TREE_H
*** 722,728 ****
  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)
  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)
--- 723,729 ----
  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) $(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)
*************** c-incpath.o: c-incpath.c c-incpath.h $(C
*** 1370,1376 ****
  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 \
      $(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) \
--- 1371,1377 ----
  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 \
      $(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) \
*************** c-ppoutput.o : c-ppoutput.c $(CONFIG_H) 
*** 1390,1396 ****
  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
  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) \
--- 1391,1397 ----
  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
  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) \
*************** gtype-desc.o: gtype-desc.c $(CONFIG_H) $
*** 1551,1557 ****
  	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)
  
  ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GGC_H) \
  	$(HASHTAB_H) toplev.h $(PARAMS_H) hosthooks.h
--- 1552,1558 ----
  	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)
  
  ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GGC_H) \
  	$(HASHTAB_H) toplev.h $(PARAMS_H) hosthooks.h
*************** tree-dump.o: tree-dump.c $(CONFIG_H) $(S
*** 1586,1592 ****
  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 \
     $(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
--- 1587,1593 ----
  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 \
     $(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
*************** tree-tailcall.o : tree-tailcall.c $(TREE
*** 1670,1676 ****
     $(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-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 \
--- 1671,1677 ----
     $(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-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 \
*************** tree-dfa.o : tree-dfa.c $(TREE_FLOW_H) $
*** 1681,1689 ****
     $(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-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 \
     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 \
--- 1682,1690 ----
     $(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 $(CGRAPH_H)
  tree-ssa-operands.o : tree-ssa-operands.c $(TREE_FLOW_H) $(CONFIG_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 \
*************** tree-optimize.o : tree-optimize.c $(TREE
*** 1725,1739 ****
     $(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
  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
  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 \
     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 \
--- 1726,1740 ----
     $(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
  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)
  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 \
     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 \
*************** tree-gimple.o : tree-gimple.c $(CONFIG_H
*** 1766,1772 ****
  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-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
--- 1767,1773 ----
  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-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
*************** toplev.o : toplev.c $(CONFIG_H) $(SYSTEM
*** 1793,1799 ****
     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
  	$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  	  -DTARGET_NAME=\"$(target_noncanonical)\" \
  	  -c $(srcdir)/toplev.c $(OUTPUT_OPTION)
--- 1794,1800 ----
     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
  	$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  	  -DTARGET_NAME=\"$(target_noncanonical)\" \
  	  -c $(srcdir)/toplev.c $(OUTPUT_OPTION)
*************** passes.o : passes.c $(CONFIG_H) $(SYSTEM
*** 1805,1811 ****
     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 \
     tree-pass.h tree-dump.h
  
  main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h
--- 1806,1812 ----
     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 \
     tree-pass.h tree-dump.h
  
  main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h
*************** except.o : except.c $(CONFIG_H) $(SYSTEM
*** 1842,1848 ****
     $(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
  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 \
--- 1843,1849 ----
     $(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)
  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 \
*************** builtins.o : builtins.c $(CONFIG_H) $(SY
*** 1858,1864 ****
     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
  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
--- 1859,1865 ----
     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
  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
*************** dwarf2out.o : dwarf2out.c $(CONFIG_H) $(
*** 1882,1888 ****
     $(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 \
     $(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
--- 1883,1889 ----
     $(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) \
     $(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
*************** simplify-rtx.o : simplify-rtx.c $(CONFIG
*** 1908,1918 ****
     $(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 \
     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
  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 \
--- 1909,1919 ----
     $(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 \
     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 $(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 \
*************** reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H
*** 2095,2101 ****
  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
  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
--- 2096,2102 ----
  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)
  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
*************** GTFILES = $(srcdir)/input.h $(srcdir)/co
*** 2398,2403 ****
--- 2399,2405 ----
    $(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 \
Index: gcc/cgraph.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/cgraph.c,v
retrieving revision 1.56
diff -3 -c -p -r1.56 cgraph.c
*** gcc/cgraph.c	8 Sep 2004 09:28:05 -0000	1.56
--- gcc/cgraph.c	13 Sep 2004 00:38:22 -0000
*************** dump_cgraph_node (FILE *f, struct cgraph
*** 474,479 ****
--- 474,485 ----
  
    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)
Index: gcc/cgraph.h
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/cgraph.h,v
retrieving revision 1.35
diff -3 -c -p -r1.35 cgraph.h
*** gcc/cgraph.h	10 Sep 2004 08:20:07 -0000	1.35
--- gcc/cgraph.h	13 Sep 2004 00:38:22 -0000
*************** Software Foundation, 59 Temple Place - S
*** 22,27 ****
--- 22,29 ----
  #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.  */
*************** struct cgraph_local_info GTY(())
*** 30,48 ****
--- 32,68 ----
  {
    /* 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
*************** struct cgraph_rtl_info GTY(())
*** 70,75 ****
--- 90,158 ----
     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.  */
*************** struct cgraph_node GTY((chain_next ("%h.
*** 91,101 ****
--- 174,191 ----
    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
*************** void verify_cgraph_node (struct cgraph_n
*** 192,197 ****
--- 282,290 ----
  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  */
Index: gcc/cgraphunit.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/cgraphunit.c,v
retrieving revision 1.79
diff -3 -c -p -r1.79 cgraphunit.c
*** gcc/cgraphunit.c	10 Sep 2004 08:56:35 -0000	1.79
--- gcc/cgraphunit.c	13 Sep 2004 00:38:23 -0000
*************** Software Foundation, 59 Temple Place - S
*** 164,175 ****
--- 164,189 ----
  	into account, while cgraph_decide_inlining_incrementally considers
  	only one function at a time and is used in non-unit-at-a-time mode.  */
  
+ 
+ /* Additionally this file gathers information about how local statics
+    are used.  This is done in cgraph_charactize_statics.  After the
+    call graph has been built, each function is analyzed to determine
+    which local static variables are either read or written or have
+    their address taken.  Any local static that has its address taken
+    is removed from consideration.  Once the local read and writes
+    are determined, a transitive closure of this information is
+    performed over the call graph to determine the worst case set of
+    side effects of each call.  In a later part of the compiler, these
+    local and global sets are examined to make the call clobbering less
+    traumatic both with respect to aliasing and to code generation.  */
+ 
  #include "config.h"
  #include "system.h"
  #include "coretypes.h"
  #include "tm.h"
  #include "tree.h"
  #include "rtl.h"
+ #include "tree-flow.h"
  #include "tree-inline.h"
  #include "langhooks.h"
  #include "hashtab.h"
*************** Software Foundation, 59 Temple Place - S
*** 186,191 ****
--- 200,206 ----
  #include "c-common.h"
  #include "intl.h"
  #include "function.h"
+ #include "tree-gimple.h"
  
  #define INSNS_PER_CALL 10
  
*************** static void cgraph_expand_all_functions 
*** 193,199 ****
  static void cgraph_mark_functions_to_output (void);
  static void cgraph_expand_function (struct cgraph_node *);
  static tree record_call_1 (tree *, int *, void *);
! static void cgraph_mark_local_functions (void);
  static bool cgraph_default_inline_p (struct cgraph_node *n);
  static void cgraph_analyze_function (struct cgraph_node *node);
  static void cgraph_decide_inlining_incrementally (struct cgraph_node *);
--- 208,214 ----
  static void cgraph_mark_functions_to_output (void);
  static void cgraph_expand_function (struct cgraph_node *);
  static tree record_call_1 (tree *, int *, void *);
! static void cgraph_mark_local_and_external_functions (void);
  static bool cgraph_default_inline_p (struct cgraph_node *n);
  static void cgraph_analyze_function (struct cgraph_node *node);
  static void cgraph_decide_inlining_incrementally (struct cgraph_node *);
*************** static htab_t visited_nodes;
*** 212,217 ****
--- 227,260 ----
  
  static FILE *cgraph_dump_file;
  
+ /* These splay trees contain all of the static variables that are
+    being considered by the compilation level alias analysis.  For
+    module_at_a_time compilation, this is the set of static but not
+    public variables.  Any variables that either have their address
+    taken or participate in otherwise unsavory operations are deleted
+    from this list.  */
+ static GTY((param1_is(tree), param2_is(tree)))
+      splay_tree static_vars_to_consider_by_tree;
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: change comment from DECL_UID to var-ann. */    
+ /* same as above but indexed by DECL_UID */
+ static GTY((param1_is(int), param2_is(tree)))
+      splay_tree static_vars_to_consider_by_uid;
+ 
+ /* This bitmap is used to knock out the module static variables whose
+    addresses have been taken and passed around.  This is indexed by
+    uid.  */
+ static bitmap module_statics_escape;
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: change comment from DECL_UID to var-ann. */    
+ /* A bit is set for every module static we are considering and is
+    indexed by DECL_UID.  This is ored into the local info when asm
+    code is found that clobbers all memory. */
+ static GTY(()) bitmap all_module_statics;
+ 
+ /* Holds the value of "memory".  */
+ static tree memory_identifier;
+ 
  /* Determine if function DECL is needed.  That is, visible to something
     either outside this translation unit, something magic in the system
     configury, or (if not doing unit-at-a-time) to something we havn't
*************** decide_is_function_needed (struct cgraph
*** 277,282 ****
--- 320,508 ----
    return false;
  }
  
+ /* Debugging function for postorder and inorder code. NOTE is a string
+    that is printed before the nodes are printed.  ORDER is an array of
+    cgraph_nodes that has COUNT useful nodes in it.  */
+ 
+ static void 
+ print_order (const char * note, struct cgraph_node** order, int count) 
+ {
+   int i;
+   fprintf (cgraph_dump_file, "\n\n ordered call graph: %s\n", note);
+   
+   for (i = count - 1; i >= 0; i--)
+     {
+       struct cgraph_edge *edge;
+ 
+       fprintf (cgraph_dump_file, "\n  %s<-(", cgraph_node_name (order[i]));
+ 
+       for (edge = order[i]->callers; edge; edge = edge->next_caller)
+ 	fprintf (cgraph_dump_file, " %s", cgraph_node_name (edge->caller));
+       fprintf (cgraph_dump_file, ")");
+     }
+   fprintf (cgraph_dump_file, "\n");
+ }
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: Remove this function, it becomes a nop. */    
+ /* Convert IN_DECL bitmap which is indexed by DECL_UID to IN_ANN, a
+    bitmap indexed by var_ann (VAR_DECL)->uid.  */
+ 
+ static void 
+ convert_UIDs_in_bitmap (bitmap in_ann, bitmap in_decl) 
+ {
+   int index;
+   EXECUTE_IF_SET_IN_BITMAP(in_decl, 0, index,
+       {
+ 	splay_tree_node n = 
+ 	  splay_tree_lookup (static_vars_to_consider_by_uid, index);
+ 	if (n != NULL) 
+ 	  {
+ 	    tree t = (tree)n->value;
+ 	    var_ann_t va = var_ann (t);
+ 	    if (va) 
+ 	      bitmap_set_bit(in_ann, va->uid);
+ 	  }
+       });
+ }
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: Delete all stmts initing *_decl_uid
+    variables.  Add code to create a var_ann for tree node within the
+    cgraph_node and have it point to the newly created
+    static_vars_info.  */
+ /* Create a new static_vars_info structure and place it into
+    cgraph_node, NODE.  INIT_GLOBAL causes the global part of the
+    structure to be initialized.  */
+ static static_vars_info_t
+ new_static_vars_info(struct cgraph_node* node, 
+ 		     bool init_global)
+ {
+   static_vars_info_t info = ggc_calloc (1, sizeof (struct static_vars_info_d));
+   local_static_vars_info_t l
+     = ggc_calloc (1, sizeof (struct local_static_vars_info_d));
+ 
+   /* Add the info to the tree's annotation.  */
+   var_ann_t var_ann = get_var_ann(node->decl);
+   node->static_vars_info = info;
+   var_ann->static_vars_info = info;
+ 
+   info->local = l;
+   l->statics_read_by_decl_uid = BITMAP_GGC_ALLOC ();
+   l->statics_written_by_decl_uid = BITMAP_GGC_ALLOC ();
+ 
+   if (init_global)
+     {
+       global_static_vars_info_t g
+ 	= ggc_calloc (1, sizeof (struct global_static_vars_info_d));
+       info->global = g;
+       g->statics_read_by_decl_uid = BITMAP_GGC_ALLOC ();
+       g->statics_written_by_decl_uid = BITMAP_GGC_ALLOC ();
+       g->statics_read_by_ann_uid = BITMAP_GGC_ALLOC ();
+       g->statics_written_by_ann_uid = BITMAP_GGC_ALLOC ();
+       g->statics_not_read_by_decl_uid = BITMAP_GGC_ALLOC ();
+       g->statics_not_written_by_decl_uid = BITMAP_GGC_ALLOC ();
+       g->statics_not_read_by_ann_uid = BITMAP_GGC_ALLOC ();
+       g->statics_not_written_by_ann_uid = BITMAP_GGC_ALLOC ();
+     }
+   return info;
+ }
+ 
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: Remove this function, it becomes a
+    nop. */    
+ /* The bitmaps used to represent the static global variables are
+    indexed by DECL_UID however, this is not used inside of functions
+    to index the ssa variables.  The denser var_ann (VAR_DECL)->uid is
+    used there.  This function is called from
+    tree_dfa:find_referenced_vars after the denser representation is
+    built.  This function invalidates any cached indexes.  */ 
+ 
+ void
+ cgraph_reset_static_var_maps (void) 
+ {
+   struct cgraph_node *node;
+   
+   for (node = cgraph_nodes; node; node = node->next)
+     {
+       static_vars_info_t info = node->static_vars_info;
+       if (info) 
+ 	{
+ 	  global_static_vars_info_t g = info->global;
+ 	  if (g->var_anns_valid) 
+ 	    {
+ 	      bitmap_clear (g->statics_read_by_ann_uid);
+ 	      bitmap_clear (g->statics_written_by_ann_uid);
+ 	      bitmap_clear (g->statics_not_read_by_ann_uid);
+ 	      bitmap_clear (g->statics_not_written_by_ann_uid);
+ 	      g->var_anns_valid = false;
+ 	    }
+ 	}
+       else 
+ 	/* Handle the case where a cgraph node has been inserted
+ 	   after the analysis.  We know nothing.  */
+ 	new_static_vars_info(node, true);
+     }
+ }
+ 
+ /* Get the global static_vars_info structure for the function FN and
+    make sure the ann_uid's bitmaps are properly converted.  */
+  
+ static global_static_vars_info_t
+ get_global_static_vars_info (tree fn) 
+ {
+   global_static_vars_info_t g;
+ 
+   /* Was not compiled -O2 or higher.  */ 
+   static_vars_info_t info = get_var_ann(fn)->static_vars_info;
+   if (!info)
+     return NULL;
+ 
+   g = info->global;
+   if (!g->var_anns_valid) 
+     {
+       convert_UIDs_in_bitmap (g->statics_read_by_ann_uid, 
+ 			      g->statics_read_by_decl_uid);
+       convert_UIDs_in_bitmap (g->statics_written_by_ann_uid, 
+ 			      g->statics_written_by_decl_uid);
+       convert_UIDs_in_bitmap (g->statics_not_read_by_ann_uid, 
+ 			      g->statics_not_read_by_decl_uid);
+       convert_UIDs_in_bitmap (g->statics_not_written_by_ann_uid, 
+ 			      g->statics_not_written_by_decl_uid);
+       g->var_anns_valid = true;
+     }
+   return g;
+ }
+ 
+ /* Return a bitmap indexed by var_ann (VAR_DECL)->uid for the static
+    variables that are not read during the execution of the function
+    FN.  Returns NULL if no data is available, such as it was not
+    compiled with -O2 or higher.  */
+ 
+ bitmap 
+ get_global_statics_not_read (tree fn) 
+ {
+   global_static_vars_info_t g = get_global_static_vars_info (fn);
+   if (g) 
+     return g->statics_not_read_by_ann_uid;
+   else
+     return NULL;
+ }
+ 
+ /* Return a bitmap indexed by var_ann (VAR_DECL)->uid for the static
+    variables that are not written during the execution of the function
+    FN.  Note that variables written may or may not be read during the
+    function call.  Returns NULL if no data is available, such as it
+    was not compiled with -O2 or higher.  */
+ 
+ bitmap 
+ get_global_statics_not_written (tree fn) 
+ {
+   global_static_vars_info_t g = get_global_static_vars_info (fn);
+   if (g) 
+     return g->statics_not_written_by_ann_uid;
+   else
+     return NULL;
+ }
+ 
  /* When not doing unit-at-a-time, output all functions enqueued.
     Return true when such a functions were found.  */
  
*************** cgraph_postorder (struct cgraph_node **o
*** 892,897 ****
--- 1118,1267 ----
    return order_pos;
  }
  
+ struct searchc_env {
+   struct cgraph_node **stack;
+   int stack_size;
+   struct cgraph_node **result;
+   int order_pos;
+   splay_tree nodes_marked_new;
+   bool reduce;
+   int count;
+ };
+ 
+ struct dfs_info {
+   int dfn_number;
+   int low_link;
+   bool new;
+   bool on_stack;
+ };
+ 
+ /* This is an implementation of Tarjan's strongly connected region
+    finder as reprinted in Aho Hopcraft and Ullman's The Design and
+    Analysis of Computer Programs (1975) pages 192-193.  This version
+    has been customized for cgraph_nodes.  The env parameter is because
+    it is recursive and there are no nested functions here.  This
+    function should only be called from itself or
+    cgraph_reduced_inorder.  ENV is a stack env and would be
+    unnecessary if C had nested functions.  V is the node to start
+    searching from.  */
+ 
+ static void
+ searchc (struct searchc_env* env, struct cgraph_node *v) 
+ {
+   struct cgraph_edge *edge;
+   struct dfs_info *v_info = v->aux;
+   
+   /* mark node as old */
+   v_info->new = false;
+   splay_tree_remove (env->nodes_marked_new, v->uid);
+   
+   v_info->dfn_number = env->count;
+   v_info->low_link = env->count;
+   env->count++;
+   env->stack[(env->stack_size)++] = v;
+   v_info->on_stack = true;
+   
+   for (edge = v->callers; edge; edge = edge->next_caller)
+     {
+       struct dfs_info * w_info;
+       struct cgraph_node *w = edge->caller;
+       /* skip the nodes that we are supposed to ignore */
+       if (w->aux) 
+ 	{
+ 	  w_info = w->aux;
+ 	  if (w_info->new) 
+ 	    {
+ 	      searchc (env, w);
+ 	      v_info->low_link =
+ 		(v_info->low_link < w_info->low_link) ?
+ 		v_info->low_link : w_info->low_link;
+ 	    } 
+ 	  else 
+ 	    if ((w_info->dfn_number < v_info->dfn_number) 
+ 		&& (w_info->on_stack)) 
+ 	      v_info->low_link =
+ 		(w_info->dfn_number < v_info->low_link) ?
+ 		w_info->dfn_number : v_info->low_link;
+ 	}
+     }
+ 
+ 
+   if (v_info->low_link == v_info->dfn_number) 
+     {
+       struct cgraph_node *last = NULL;
+       struct cgraph_node *x;
+       struct dfs_info *x_info;
+       do {
+ 	x = env->stack[--(env->stack_size)];
+ 	x_info = x->aux;
+ 	x_info->on_stack = false;
+ 	
+ 	if (env->reduce) 
+ 	  {
+ 	    x->next_cycle = last;
+ 	    last = x;
+ 	  } 
+ 	else 
+ 	  env->result[env->order_pos++] = x;
+       } 
+       while (v != x);
+       if (env->reduce) 
+ 	env->result[env->order_pos++] = v;
+     }
+ }
+ 
+ /* Topsort the call graph by caller relation.  Put the result in ORDER.
+ 
+    The REDUCE flag is true if you want the cycles reduced to single
+    nodes.  Only consider nodes that have the output bit set. */
+ 
+ static int
+ cgraph_reduced_inorder (struct cgraph_node **order, bool reduce)
+ {
+   struct cgraph_node *node;
+   struct searchc_env env;
+   splay_tree_node result;
+   env.stack = xcalloc (cgraph_n_nodes, sizeof (struct cgraph_node *));
+   env.stack_size = 0;
+   env.result = order;
+   env.order_pos = 0;
+   env.nodes_marked_new = splay_tree_new (splay_tree_compare_ints, 0, 0);
+   env.count = 1;
+   env.reduce = reduce;
+   
+   for (node = cgraph_nodes; node; node = node->next)
+     if (node->output) 
+       {
+ 	struct dfs_info *info = xcalloc (1, sizeof (struct dfs_info));
+ 	info->new = true;
+ 	info->on_stack = false;
+ 	node->aux = info;
+ 	node->next_cycle = NULL;
+ 	
+ 	splay_tree_insert (env.nodes_marked_new,
+ 			   node->uid, (splay_tree_value)node);
+       } 
+     else 
+       node->aux = NULL;
+   result = splay_tree_min (env.nodes_marked_new);
+   while (result)
+     {
+       node = (struct cgraph_node *)result->value;
+       searchc (&env, node);
+       result = splay_tree_min (env.nodes_marked_new);
+     }
+   splay_tree_delete (env.nodes_marked_new);
+   free (env.stack);
+ 
+   for (node = cgraph_nodes; node; node = node->next)
+     if (node->aux)
+       {
+ 	free (node->aux);
+ 	node->aux = NULL;
+       }
+   return env.order_pos;
+ }
+ 
  /* Perform reachability analysis and reclaim all unreachable nodes.
     This function also remove unneeded bodies of extern inline functions
     and thus needs to be done only after inlining decisions has been made.  */
*************** cgraph_inline_p (struct cgraph_edge *e, 
*** 1640,1645 ****
--- 2010,2673 ----
    return !e->inline_failed;
  }
  
+ /* FIXME this needs to be enhanced.  If we are compiling a single
+    module this returns true if the variable is a module level static,
+    but if we are doing whole program compilation, this could return
+    true if TREE_PUBLIC is true. */
+ /* Return true if the variable T is the right kind of static variable to
+    perform compilation unit scope escape analysis.  */
+ 
+ static inline
+ bool has_proper_scope_for_analysis (tree t)
+ {
+   return (TREE_STATIC(t)) && !(TREE_PUBLIC(t)) && !(TREE_THIS_VOLATILE(t));
+ }
+ 
+ /* Check to see if T is a read or address of operation on a static var
+    we are interrested in analyzing.  FN is passed in to get access to
+    its bit vectors.  */
+ 
+ static void
+ check_rhs_var (struct cgraph_node *fn, tree t)
+ {
+   if (TREE_CODE (t) == ADDR_EXPR)
+     {
+       tree x = TREE_OPERAND (t, 0);
+       if ((TREE_CODE (x) == VAR_DECL) && has_proper_scope_for_analysis (x))
+ 	{
+ 	  if (cgraph_dump_file)
+ 	    fprintf (cgraph_dump_file, "\nadding address:%s",
+ 		     lang_hooks.decl_printable_name (x, 2));
+ 	  
+ 	  /* FIXME -- PROFILE-RESTRUCTURE: Change the call from
+ 	     DECL_UID to get the uid from the var_ann field. */    
+ 	  bitmap_set_bit (module_statics_escape, DECL_UID (x));
+ 	}
+     }
+   t = get_base_address (t);
+   if (!t) return;
+   if ((TREE_CODE (t) == VAR_DECL) && has_proper_scope_for_analysis (t))
+     {
+       if (cgraph_dump_file)
+ 	fprintf (cgraph_dump_file, "\nadding rhs:%s",
+ 		 lang_hooks.decl_printable_name (t, 2));
+       /* FIXME -- PROFILE-RESTRUCTURE: Change the call from
+ 	 DECL_UID to get the uid from the var_ann field. */    
+       bitmap_set_bit (fn->static_vars_info->local->statics_read_by_decl_uid, 
+ 		      DECL_UID (t));
+     }
+ }
+ 
+ /* Check to see if T is an assignement to a static var we are
+    interrested in analyzing.  FN is passed in to get access to its bit
+    vectors.
+ */
+ 
+ static void
+ check_lhs_var (struct cgraph_node *fn, tree t)
+ {
+   t = get_base_address (t);
+   if (!t) return;
+   if ((TREE_CODE (t) == VAR_DECL) && has_proper_scope_for_analysis (t))
+     {
+       if (cgraph_dump_file)
+ 	fprintf (cgraph_dump_file, "\nadding lhs:%s",
+ 		 lang_hooks.decl_printable_name (t, 2));
+       
+       /* FIXME -- PROFILE-RESTRUCTURE: Change the call from
+ 	 DECL_UID to get the uid from the var_ann field. */    
+       bitmap_set_bit (fn->static_vars_info->local->statics_written_by_decl_uid,
+ 		      DECL_UID (t));
+     }
+ }
+ 
+ /* This is a scaled down version of get_asm_expr_operands from
+    tree_ssa_operands.c.  The version there runs much later and assumes
+    that aliasing information is already available. Here we are just
+    trying to find if the set of inputs and outputs contain references
+    or address of operations to local static variables.  FN is the
+    function being analyzed and STMT is the actual asm statement.  */
+ 
+ static void
+ get_asm_expr_operands (struct cgraph_node * fn, tree stmt)
+ {
+   int noutputs = list_length (ASM_OUTPUTS (stmt));
+   const char **oconstraints
+     = (const char **) alloca ((noutputs) * sizeof (const char *));
+   int i;
+   tree link;
+   const char *constraint;
+   bool allows_mem, allows_reg, is_inout;
+   
+   for (i=0, link = ASM_OUTPUTS (stmt); link; ++i, link = TREE_CHAIN (link))
+     {
+       oconstraints[i] = constraint
+ 	= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
+       parse_output_constraint (&constraint, i, 0, 0,
+ 			       &allows_mem, &allows_reg, &is_inout);
+       
+       /* Memory operands are addressable.  Note that STMT needs the
+ 	 address of this operand.  */
+       if (!allows_reg && allows_mem)
+ 	{
+ 	  check_lhs_var (fn, TREE_VALUE (link));
+ 	}
+     }
+ 
+   for (link = ASM_INPUTS (stmt); link; link = TREE_CHAIN (link))
+     {
+       constraint
+ 	= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link)));
+       parse_input_constraint (&constraint, 0, 0, noutputs, 0,
+ 			      oconstraints, &allows_mem, &allows_reg);
+       
+       /* Memory operands are addressable.  Note that STMT needs the
+ 	 address of this operand.  */
+       if (!allows_reg && allows_mem)
+ 	{
+ 	  check_rhs_var (fn, TREE_VALUE (link));
+ 	}
+     }
+   
+   for (link = ASM_CLOBBERS (stmt); link; link = TREE_CHAIN (link))
+     if (TREE_VALUE (link) == memory_identifier) 
+       {
+ 	/* Abandon all hope, ye who enter here. */
+ 	local_static_vars_info_t l = fn->static_vars_info->local;
+ 	bitmap_a_or_b (l->statics_read_by_decl_uid,
+ 		       l->statics_read_by_decl_uid,
+ 		       all_module_statics);
+ 	bitmap_a_or_b (l->statics_written_by_decl_uid,
+ 		       l->statics_written_by_decl_uid,
+ 		       all_module_statics);
+ 	
+       }
+ }
+ 
+ /* Check the parameters of a function call from CALLER to CALL_EXPR to
+    see if any of them are static vars.  Also check to see if this is
+    either an indirect call, a call outside the compilation unit, or
+    has special attributes that effect the clobbers.  The caller
+    parameter is the tree node for the caller and the second operand is
+    the tree node for the entire call expression.  */
+ static void
+ process_call_for_static_vars(struct cgraph_node * caller, tree call_expr) 
+ {
+   int flags = call_expr_flags(call_expr);
+   tree operandList = TREE_OPERAND (call_expr, 1);
+   tree operand;
+ 
+   for (operand = operandList;
+        operand != NULL_TREE;
+        operand = TREE_CHAIN (operand))
+     {
+       tree argument = TREE_VALUE (operand);
+       check_rhs_var (caller, argument);
+     }
+ 
+   /* Const and pure functions have less clobber effects than other
+      functions so we process these first.  Otherwise if it is a call
+      outside the compilation unit or an indirect call we punt.  This
+      leaves local calls which will be processed by following the call
+      graph.  */  
+   if (flags & ECF_CONST) 
+     return;
+   else if (flags & ECF_PURE) 
+     caller->local.calls_write_all = true;
+   else 
+     {
+       tree callee_t = get_callee_fndecl (call_expr);
+       if (callee_t == NULL) 
+ 	{
+ 	  /* Indirect call. */
+ 	  caller->local.calls_read_all = true;
+ 	  caller->local.calls_write_all = true;
+ 	}
+       else 
+ 	{
+  	  struct cgraph_node* callee = cgraph_node(callee_t);
+ 
+ 	  if (callee->local.external) 
+ 	    {
+ 	      caller->local.calls_read_all = true;
+ 	      caller->local.calls_write_all = true;
+ 	    }
+ 	}
+     }
+ }
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: Change to walk by explicitly walking
+    the basic blocks rather than calling walktree.  */    
+ 
+ /* Walk tree and record all calls.  Called via walk_tree.  FIXME When
+    this is moved into the tree-profiling-branch, and is dealing with
+    low GIMPLE, this routine should be changed to use tree iterators
+    rather than being a walk_tree callback.  The data is the function
+    that is being scanned.  */
+ /* TP is the part of the tree currently under the
+    microscope. WALK_SUBTREES is part of the walk_tree api but is
+    unused here.  DATA is cgraph_node of the function being walked.  */
+ 
+ static tree
+ scan_for_static_refs (tree *tp, 
+ 		      int *walk_subtrees ATTRIBUTE_UNUSED, 
+ 		      void *data)
+ {
+   struct cgraph_node *fn = data;
+   tree t = *tp;
+   
+   switch (TREE_CODE (t))  
+     {
+     case MODIFY_EXPR:
+       {
+ 	/* First look on the lhs and see what variable is stored to */
+ 	tree rhs = TREE_OPERAND (t, 1);
+ 	check_lhs_var (fn, TREE_OPERAND (t, 0));
+ 	/* Next check the operands on the rhs to see if they are ok. */
+ 	switch (TREE_CODE_CLASS (TREE_CODE (rhs))) {
+ 	case '2':
+ 	  check_rhs_var (fn, TREE_OPERAND (rhs, 0));
+ 	  check_rhs_var (fn, TREE_OPERAND (rhs, 1));
+ 	  break;
+ 	case '1':
+ 	case 'r':
+ 	  check_rhs_var (fn, TREE_OPERAND (rhs, 0));
+ 	  break;
+ 	case 'd':
+ 	  check_rhs_var (fn, rhs);
+ 	  break;
+ 	case 'e':
+ 	  switch (TREE_CODE (rhs)) {
+ 	  case ADDR_EXPR:
+ 	    check_rhs_var (fn, rhs);
+ 	    break;
+ 	  case CALL_EXPR: 
+ 	    process_call_for_static_vars (fn, rhs);
+ 	    break;
+ 	  default:
+ 	    break;
+ 	  }
+ 	  break;
+ 	default:
+ 	  break;
+ 	}
+       }
+       break;
+       
+       
+     case CALL_EXPR: 
+       process_call_for_static_vars (fn, t);
+       break;
+       
+     case ASM_EXPR:
+       get_asm_expr_operands (fn, t);
+       break;
+       
+     default:
+       break;
+     }
+   return NULL;
+ }
+ 
+ 
+ /* This is the main routine for finding the reference patterns for
+    global variables within a function FN */
+  static void
+ cgraph_characterize_statics_local (struct cgraph_node *fn)
+ {
+   tree decl = fn->decl;
+   static_vars_info_t info = new_static_vars_info(fn, false);
+   local_static_vars_info_t l = info->local;
+ 
+ 
+   /* The nodes we're interested in are never shared, so walk
+      the tree ignoring duplicates.  */
+   visited_nodes = htab_create (37, htab_hash_pointer,
+ 			       htab_eq_pointer, NULL);
+   
+   /* FIXME -- PROFILE-RESTRUCTURE: Remove creation of _decl_uid vars.  */
+   l->statics_read_by_decl_uid = BITMAP_GGC_ALLOC ();
+   l->statics_written_by_decl_uid = BITMAP_GGC_ALLOC ();
+   
+   if (cgraph_dump_file)
+     fprintf (cgraph_dump_file, "\n local analysis of %s", cgraph_node_name (fn));
+   
+   walk_tree (&DECL_SAVED_TREE (decl), scan_for_static_refs, fn, visited_nodes);
+   htab_delete (visited_nodes);
+   visited_nodes = NULL;
+ }
+ 
+ /* Lookup the tree node for the static variable that has UID and
+    conver the name to a string for debugging. */
+ static const char *
+ cgraph_get_static_name_by_uid (int index)
+ {
+   splay_tree_node stn = splay_tree_lookup (static_vars_to_consider_by_uid, index);
+   if (stn)
+     return lang_hooks.decl_printable_name ((tree)(stn->value), 2);
+   return NULL;
+ }
+ 
+ /* Clear out any the static variable with uid INDEX from further
+    consideration because it escapes (i.e. has had its address
+    taken).  */
+ static void
+ clear_static_vars_maps (int index)
+ {
+   splay_tree_node stn = splay_tree_lookup (static_vars_to_consider_by_uid, index);
+   if (stn) 
+     {
+       splay_tree_remove (static_vars_to_consider_by_tree, stn->value);
+       splay_tree_remove (static_vars_to_consider_by_uid, index);
+     }
+ }
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: Change all *_decl_uid to *_ann_uid.  */
+ 
+ /* Or in all of the bits from every callee into X, the caller's, bit
+    vector.  There are several cases to check to avoid the sparce
+    bitmap oring.  */
+ static void
+ cgraph_propagate_bits (struct cgraph_node *x)
+ {
+   static_vars_info_t x_info = x->static_vars_info;
+   global_static_vars_info_t x_global = x_info->global;
+ 
+   struct cgraph_edge *e;
+   for (e = x->callees; e; e = e->next_callee) 
+     {
+       struct cgraph_node *y = e->callee;
+ 
+       /* We are only going to look at edges that point to nodes that
+ 	 have their output bit set.  */
+       if (y->output)
+ 	{
+ 	  static_vars_info_t y_info; 
+ 	  global_static_vars_info_t y_global;
+ 	  y_info = y->static_vars_info;
+ 	  y_global = y_info->global;
+ 
+ 	  if (x_global->statics_read_by_decl_uid != all_module_statics)
+ 	    {
+ 	      if (y_global->statics_read_by_decl_uid == all_module_statics) 
+ 		x_global->statics_read_by_decl_uid = all_module_statics;
+ 	      /* Skip bitmaps that are pointer equal to node's bitmap
+ 		 (no reason to spin within the cycle).  */
+ 	      else if (x_global->statics_read_by_decl_uid != y_global->statics_read_by_decl_uid)
+ 		bitmap_a_or_b (x_global->statics_read_by_decl_uid,
+ 			       x_global->statics_read_by_decl_uid,
+ 			       y_global->statics_read_by_decl_uid);
+ 	    }
+ 
+ 	  if (x_global->statics_written_by_decl_uid != all_module_statics)
+ 	    {
+ 	      if (y_global->statics_written_by_decl_uid == all_module_statics) 
+ 		x_global->statics_written_by_decl_uid = all_module_statics;
+ 	      /* Skip bitmaps that are pointer equal to node's bitmap
+ 		 (no reason to spin within the cycle).  */
+ 	      else if (x_global->statics_written_by_decl_uid != y_global->statics_written_by_decl_uid)
+ 		bitmap_a_or_b (x_global->statics_written_by_decl_uid,
+ 			       x_global->statics_written_by_decl_uid,
+ 			       y_global->statics_written_by_decl_uid);
+ 	    }
+ 	}
+     }
+ }
+ 
+ /* FIXME -- PROFILE-RESTRUCTURE: Change all *_decl_uid to *_ann_uid
+    except where noted below.  */
+ 
+ /* The main routine for analyzing global static variable usage. See
+    comments at top for description.  */
+ 
+ static void
+ cgraph_characterize_statics (void)
+ {
+   struct cgraph_node *node;
+   struct cgraph_node *w;
+   struct cgraph_node **order =
+     xcalloc (cgraph_n_nodes, sizeof (struct cgraph_node *));
+   int order_pos = 0;
+   int i;
+   
+   struct cgraph_varpool_node *vnode;
+   tree global;
+ 
+   /* get rid of the splay trees from the previous compilation unit. */
+   
+   static_vars_to_consider_by_tree =
+     splay_tree_new_ggc (splay_tree_compare_pointers);
+   static_vars_to_consider_by_uid =
+     splay_tree_new_ggc (splay_tree_compare_ints);
+ 
+   if (module_statics_escape) 
+     {
+       bitmap_clear (module_statics_escape);
+       bitmap_clear (all_module_statics);
+     } 
+   else
+     {
+       module_statics_escape = BITMAP_XMALLOC ();
+       all_module_statics = BITMAP_GGC_ALLOC ();
+     }
+ 
+   /* Find all of the global variables that we wish to analyze. */
+   for (vnode = cgraph_varpool_nodes_queue; vnode; vnode = vnode->next_needed)
+     {
+       global = vnode->decl;
+       if ((TREE_CODE (global) == VAR_DECL) &&
+ 	  has_proper_scope_for_analysis (global)) 
+ 	{
+ 	  splay_tree_insert (static_vars_to_consider_by_tree,
+ 			     (splay_tree_key) global, 
+ 			     (splay_tree_value) global);
+ 	  /* FIXME -- PROFILE-RESTRUCTURE: Change the call from
+ 	     DECL_UID to get the uid from the var_ann field. */    
+ 	  splay_tree_insert (static_vars_to_consider_by_uid,
+ 			     DECL_UID (global), (splay_tree_value)global);
+ 	  
+ 	  if (cgraph_dump_file)
+ 	    fprintf (cgraph_dump_file, "\nConsidering global:%s",
+ 		     lang_hooks.decl_printable_name (global, 2));
+ 	  /* FIXME -- PROFILE-RESTRUCTURE: Change the call from
+ 	     DECL_UID to get the uid from the var_ann field. */    
+ 	  bitmap_set_bit (all_module_statics, DECL_UID (global));
+ 	}
+     }
+ 
+   order_pos = cgraph_reduced_inorder (order, false);
+   if (cgraph_dump_file)
+     print_order("new", order, order_pos);
+ 
+   for (i = order_pos - 1; i >= 0; i--)
+     {
+       node = order[i];
+ 
+       /* Scan each function to determine the variable usage
+ 	 patterns.  */ 
+       cgraph_characterize_statics_local (node);
+     }
+ 
+   /* Prune out the variables that were found to behave badly
+      (i.e. have there address taken).  */
+   {
+     int index;
+     EXECUTE_IF_SET_IN_BITMAP (module_statics_escape,
+ 			      0, index, clear_static_vars_maps (index));
+     bitmap_operation (all_module_statics, all_module_statics,
+ 		      module_statics_escape, BITMAP_AND_COMPL);
+ 
+     for (i = order_pos - 1; i >= 0; i--)
+       {
+ 	local_static_vars_info_t l;
+ 	node = order[i];
+ 	l = node->static_vars_info->local;
+ 
+ 	bitmap_operation (l->statics_read_by_decl_uid, 
+ 			  l->statics_read_by_decl_uid,
+ 			  module_statics_escape, 
+ 			  BITMAP_AND_COMPL);
+ 	bitmap_operation (l->statics_written_by_decl_uid, 
+ 			  l->statics_written_by_decl_uid,
+ 			  module_statics_escape, 
+ 			  BITMAP_AND_COMPL);
+       }
+   }
+ 
+   if (cgraph_dump_file)
+     {
+       for (i = order_pos - 1; i >= 0; i--)
+ 	{
+ 	  int index;
+ 	  local_static_vars_info_t l;
+ 	  node = order[i];
+ 	  l = node->static_vars_info->local;
+ 	  fprintf (cgraph_dump_file, 
+ 		   "\nFunction name:%s/%i:", 
+ 		   cgraph_node_name (node), node->uid);
+ 	  fprintf (cgraph_dump_file, "\n  locals read: ");
+ 	  EXECUTE_IF_SET_IN_BITMAP (l->statics_read_by_decl_uid,
+ 				    0, index,
+ 				    fprintf (cgraph_dump_file, "%s ",
+ 					     cgraph_get_static_name_by_uid (index)));
+ 	  fprintf (cgraph_dump_file, "\n  locals written: ");
+ 	  EXECUTE_IF_SET_IN_BITMAP (l->statics_written_by_decl_uid,
+ 				    0, index,
+ 				    fprintf(cgraph_dump_file, "%s ",
+ 					   cgraph_get_static_name_by_uid (index)));
+ 	}
+     }
+ 
+   /* Propagate the local information thru the call graph to produce
+      the global information.  All the nodes within a cycle will have
+      the same info so we collapse cycles first.  Then we can do the
+      propagation in one pass from the leaves to the roots.  */
+   order_pos = cgraph_reduced_inorder (order, true);
+   for (i = order_pos - 1; i >= 0; i--)
+     {
+       static_vars_info_t node_info;
+       global_static_vars_info_t node_g = 
+ 	ggc_calloc (1, sizeof (struct global_static_vars_info_d));
+       local_static_vars_info_t node_l;
+       
+ 
+       bool read_all;
+       bool write_all;
+ 
+       node = order[i];
+       node_info = node->static_vars_info;
+       node_info->global = node_g;
+       node_l = node_info->local;
+ 
+       read_all = node->local.calls_read_all;
+       write_all = node->local.calls_write_all;
+ 
+       /* If any node in a cycle is calls_read_all or calls_write_all
+ 	 they all are. */
+       w = node->next_cycle;
+       while (w)
+ 	{
+ 	  read_all |= w->local.calls_read_all;
+ 	  write_all |= w->local.calls_write_all;
+ 	  w = w->next_cycle;
+ 	}
+ 
+       /* Initialized the bitmaps for the reduced nodes */
+       if (read_all) 
+ 	node_g->statics_read_by_decl_uid = all_module_statics;
+       else 
+ 	{
+ 	  node_g->statics_read_by_decl_uid = BITMAP_GGC_ALLOC ();
+ 	  bitmap_copy (node_g->statics_read_by_decl_uid, 
+ 		       node_l->statics_read_by_decl_uid);
+ 	}
+ 
+       if (write_all) 
+ 	node_g->statics_written_by_decl_uid = all_module_statics;
+       else
+ 	{
+ 	  node_g->statics_written_by_decl_uid = BITMAP_GGC_ALLOC ();
+ 	  bitmap_copy (node_g->statics_written_by_decl_uid, 
+ 		       node_l->statics_written_by_decl_uid);
+ 	}
+ 
+       w = node->next_cycle;
+       while (w)
+ 	{
+ 	  /* All nodes within a cycle share the same global info bitmaps.  */
+ 	  static_vars_info_t w_info = w->static_vars_info;
+ 	  local_static_vars_info_t w_l;
+ 
+ 	  w_info->global = node_g;
+ 	  w_l = w_info->local;
+ 	  
+ 	  /* These global bitmaps are initialized from the local info
+ 	     of all of the nodes in the region.  However there is no
+ 	     need to do any work if the bitmaps were set to
+ 	     all_module_statics.  */
+ 	  if (!read_all)
+ 	    bitmap_a_or_b (node_g->statics_read_by_decl_uid,
+ 			   node_g->statics_read_by_decl_uid,
+ 			   w_l->statics_read_by_decl_uid);
+ 	  if (!write_all)
+ 	    bitmap_a_or_b (node_g->statics_written_by_decl_uid,
+ 			   node_g->statics_written_by_decl_uid,
+ 			   w_l->statics_written_by_decl_uid);
+ 	  w = w->next_cycle;
+ 	}
+ 
+       cgraph_propagate_bits (node);
+ 
+       w = node->next_cycle;
+       while (w)
+ 	{
+ 	  cgraph_propagate_bits (w);
+ 	  w = w->next_cycle;
+ 	}
+     }
+ 
+   if (cgraph_dump_file)
+     {
+       for (i = order_pos - 1; i >= 0; i--)
+ 	{
+ 	  static_vars_info_t node_info;
+ 	  global_static_vars_info_t node_g;
+ 	  int index;
+ 	  node = order[i];
+ 	  node_info = node->static_vars_info;
+ 	  node_g = node_info->global;
+ 	  fprintf (cgraph_dump_file, 
+ 		   "\nFunction name:%s/%i:", 
+ 		   cgraph_node_name (node), node->uid);
+ 	  w = node->next_cycle;
+ 	  while (w) 
+ 	    {
+ 	      fprintf (cgraph_dump_file, "\n  next cycle: %s/%i ",
+ 		       cgraph_node_name (w), w->uid);
+ 	      w = w->next_cycle;
+ 	    }
+ 	  fprintf (cgraph_dump_file, "\n  globals read: ");
+ 	  EXECUTE_IF_SET_IN_BITMAP (node_g->statics_read_by_decl_uid,
+ 				    0, index,
+ 				    fprintf (cgraph_dump_file, "%s ",
+ 					     cgraph_get_static_name_by_uid (index)));
+ 	  fprintf (cgraph_dump_file, "\n  globals written: ");
+ 	  EXECUTE_IF_SET_IN_BITMAP (node_g->statics_written_by_decl_uid,
+ 				    0, index,
+ 				    fprintf (cgraph_dump_file, "%s ",
+ 					     cgraph_get_static_name_by_uid (index)));
+ 	}
+     }
+ 
+   /* Cleanup. */
+   for (i = order_pos - 1; i >= 0; i--)
+     {
+       static_vars_info_t node_info;
+       global_static_vars_info_t node_g;
+       node = order[i];
+       node_info = node->static_vars_info;
+       node_g = node_info->global;
+       
+       node_g->var_anns_valid = false;
+ 
+       /* Create the complimentary sets.  These are more useful for
+ 	 certain apis.  */
+       node_g->statics_not_read_by_decl_uid = BITMAP_GGC_ALLOC ();
+       node_g->statics_not_written_by_decl_uid = BITMAP_GGC_ALLOC ();
+ 
+       /* FIXME -- PROFILE-RESTRUCTURE: Delete next 4 assignments.  */
+       node_g->statics_read_by_ann_uid = BITMAP_GGC_ALLOC ();
+       node_g->statics_written_by_ann_uid = BITMAP_GGC_ALLOC ();
+       node_g->statics_not_read_by_ann_uid = BITMAP_GGC_ALLOC ();
+       node_g->statics_not_written_by_ann_uid = BITMAP_GGC_ALLOC ();
+ 
+       if (node_g->statics_read_by_decl_uid != all_module_statics) 
+ 	{
+ 	  bitmap_operation (node_g->statics_not_read_by_decl_uid, 
+ 			    all_module_statics,
+ 			    node_g->statics_read_by_decl_uid,
+ 			    BITMAP_AND_COMPL);
+ 	}
+ 
+       if (node_g->statics_written_by_decl_uid != all_module_statics) 
+ 	bitmap_operation (node_g->statics_not_written_by_decl_uid, 
+ 			  all_module_statics,
+ 			  node_g->statics_written_by_decl_uid,
+ 			  BITMAP_AND_COMPL);
+ 
+       w = node->next_cycle;
+ 
+       while (w)
+ 	{
+ 	  struct cgraph_node * last = w;
+ 	  w = w->next_cycle;
+ 	  last->next_cycle = NULL;
+ 	}
+     }
+ 
+   free (order);
+ }
+ 
  /* Expand all functions that must be output.
  
     Attempt to topologically sort the nodes so function is output when
*************** cgraph_expand_all_functions (void)
*** 1659,1666 ****
    int order_pos = 0, new_order_pos = 0;
    int i;
  
-   cgraph_mark_functions_to_output ();
- 
    order_pos = cgraph_postorder (order);
    gcc_assert (order_pos == cgraph_n_nodes);
  
--- 2687,2692 ----
*************** cgraph_expand_all_functions (void)
*** 1683,1716 ****
    free (order);
  }
  
! /* Mark all local functions.
  
!    A local function is one whose calls can occur only in the
!    current compilation unit and all its calls are explicit,
!    so we can change its calling convention.
!    We simply mark all static functions whose address is not taken
!    as local.  */
  
  static void
! cgraph_mark_local_functions (void)
  {
    struct cgraph_node *node;
  
-   if (cgraph_dump_file)
-     fprintf (cgraph_dump_file, "\nMarking local functions:");
- 
    /* Figure out functions we want to assemble.  */
    for (node = cgraph_nodes; node; node = node->next)
      {
        node->local.local = (!node->needed
  		           && DECL_SAVED_TREE (node->decl)
  		           && !TREE_PUBLIC (node->decl));
!       if (cgraph_dump_file && node->local.local)
! 	fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
      }
    if (cgraph_dump_file)
      fprintf (cgraph_dump_file, "\n\n");
  }
  
  /* Return true when function body of DECL still needs to be kept around
     for later re-use.  */
--- 2709,2754 ----
    free (order);
  }
  
! /* Mark all local and external functions.
!    
!    A local function is one whose calls can occur only in the current
!    compilation unit and all its calls are explicit, so we can change
!    its calling convention.  We simply mark all static functions whose
!    address is not taken as local.
  
!    An external function is one whose body is outside the current
!    compilation unit.  */
  
  static void
! cgraph_mark_local_and_external_functions (void)
  {
    struct cgraph_node *node;
  
    /* Figure out functions we want to assemble.  */
    for (node = cgraph_nodes; node; node = node->next)
      {
        node->local.local = (!node->needed
  		           && DECL_SAVED_TREE (node->decl)
  		           && !TREE_PUBLIC (node->decl));
!       node->local.external = (!DECL_SAVED_TREE (node->decl)
! 			   && TREE_PUBLIC (node->decl));
      }
+ 
    if (cgraph_dump_file)
+     {
+       fprintf (cgraph_dump_file, "\nMarking local functions:");
+       for (node = cgraph_nodes; node; node = node->next)
+ 	if (node->local.local)
+ 	  fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
+       fprintf (cgraph_dump_file, "\n\n");
+ 
+       fprintf (cgraph_dump_file, "\nMarking external functions:");
+       for (node = cgraph_nodes; node; node = node->next)
+ 	if (node->local.external)
+ 	  fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
      fprintf (cgraph_dump_file, "\n\n");
  }
+ }
  
  /* Return true when function body of DECL still needs to be kept around
     for later re-use.  */
*************** cgraph_optimize (void)
*** 1744,1750 ****
    if (!quiet_flag)
      fprintf (stderr, "Performing intraprocedural optimizations\n");
  
!   cgraph_mark_local_functions ();
    if (cgraph_dump_file)
      {
        fprintf (cgraph_dump_file, "Marked ");
--- 2782,2788 ----
    if (!quiet_flag)
      fprintf (stderr, "Performing intraprocedural optimizations\n");
  
!   cgraph_mark_local_and_external_functions ();
    if (cgraph_dump_file)
      {
        fprintf (cgraph_dump_file, "Marked ");
*************** cgraph_optimize (void)
*** 1767,1772 ****
--- 2805,2819 ----
  #ifdef ENABLE_CHECKING
    verify_cgraph ();
  #endif
+   
+   /* This call was moved here from cgraph_expand_all_functions so that
+      cgraph_characterize_statics could use the output flag of the cgraph
+      node.  */
+   
+   cgraph_mark_functions_to_output ();
+   
+   cgraph_characterize_statics ();
+   
    cgraph_expand_all_functions ();
    if (cgraph_dump_file)
      {
*************** void
*** 1874,1877 ****
--- 2921,2926 ----
  init_cgraph (void)
  {
    cgraph_dump_file = dump_begin (TDI_cgraph, NULL);
+   memory_identifier = get_identifier("memory");
  }
+ #include "gt-cgraphunit.h"
Index: gcc/tree-dfa.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/tree-dfa.c,v
retrieving revision 2.29
diff -3 -c -p -r2.29 tree-dfa.c
*** gcc/tree-dfa.c	11 Sep 2004 20:42:06 -0000	2.29
--- gcc/tree-dfa.c	13 Sep 2004 00:38:24 -0000
*************** Boston, MA 02111-1307, USA.  */
*** 45,50 ****
--- 45,51 ----
  #include "tree-pass.h"
  #include "convert.h"
  #include "params.h"
+ #include "cgraph.h"
  
  /* Build and maintain data flow information for trees.  */
  
*************** find_referenced_vars (void)
*** 107,112 ****
--- 108,114 ----
    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;
Index: gcc/tree-flow.h
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/tree-flow.h,v
retrieving revision 2.43
diff -3 -c -p -r2.43 tree-flow.h
*** gcc/tree-flow.h	10 Sep 2004 10:44:46 -0000	2.43
--- gcc/tree-flow.h	13 Sep 2004 00:38:24 -0000
*************** Boston, MA 02111-1307, USA.  */
*** 28,33 ****
--- 28,34 ----
  #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
*************** struct var_ann_d GTY(())
*** 199,204 ****
--- 200,210 ----
       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;
  };
  
  
Index: gcc/tree-ssa-operands.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/tree-ssa-operands.c,v
retrieving revision 2.39
diff -3 -c -p -r2.39 tree-ssa-operands.c
*** gcc/tree-ssa-operands.c	10 Sep 2004 10:44:47 -0000	2.39
--- gcc/tree-ssa-operands.c	13 Sep 2004 00:38:24 -0000
*************** Boston, MA 02111-1307, USA.  */
*** 32,38 ****
--- 32,40 ----
  #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 
*************** static inline void append_def (tree *);
*** 133,140 ****
  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_stmt_operand (tree *, tree, int);
  
  /* Return a vector of contiguous memory for NUM def operands.  */
--- 135,142 ----
  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, 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.  */
*************** get_call_expr_operands (tree stmt, tree 
*** 1380,1385 ****
--- 1382,1388 ----
  {
    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);
*************** get_call_expr_operands (tree stmt, tree 
*** 1396,1404 ****
  	 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);
        else if (!(call_flags & ECF_CONST))
! 	add_call_read_ops (stmt);
      }
  }
  
--- 1399,1407 ----
  	 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, callee);
        else if (!(call_flags & ECF_CONST))
! 	add_call_read_ops (stmt, callee);
      }
  }
  
*************** note_addressable (tree var, stmt_ann_t s
*** 1562,1568 ****
     clobbered variables in the function.  */
  
  static void
! add_call_clobber_ops (tree stmt)
  {
    /* Functions that are not const, pure or never return may clobber
       call-clobbered variables.  */
--- 1565,1571 ----
     clobbered variables in the function.  */
  
  static void
! add_call_clobber_ops (tree stmt, tree callee)
  {
    /* Functions that are not const, pure or never return may clobber
       call-clobbered variables.  */
*************** add_call_clobber_ops (tree stmt)
*** 1579,1594 ****
      {
        size_t i;
  
        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);
  	  else
! 	    add_stmt_operand (&var, stmt, opf_none);
  	});
      }
  }
--- 1582,1634 ----
      {
        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);
  
! 	  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
! 	    { /* 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);
! 	    }	      
  	});
      }
  }
*************** add_call_clobber_ops (tree stmt)
*** 1598,1604 ****
     function.  */
  
  static void
! add_call_read_ops (tree stmt)
  {
    /* 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
--- 1638,1644 ----
     function.  */
  
  static void
! 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
*************** add_call_read_ops (tree stmt)
*** 1609,1618 ****
--- 1649,1663 ----
    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);
  	});
      }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]