From 2d4aecb33af569f9994d756e03f04326da59ec2a Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 26 May 2000 01:49:38 +0000 Subject: [PATCH] emit-rtl.c (reset_used_decls): New function. * emit-rtl.c (reset_used_decls): New function. (unshare_all_rtl_again): Call it. From-SVN: r34184 --- gcc/ChangeLog | 5 +++++ gcc/emit-rtl.c | 23 ++++++++++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a0a49c7..b3866d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-05-25 Alexandre Oliva + + * emit-rtl.c (reset_used_decls): New function. + (unshare_all_rtl_again): Call it. + 2000-05-25 Zack Weinberg * cpplex.c (maybe_macroexpand): Warn about function-like diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index a455c1e..d9a6c65 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -179,6 +179,7 @@ static rtx find_line_note PARAMS ((rtx)); static void mark_sequence_stack PARAMS ((struct sequence_stack *)); static void unshare_all_rtl_1 PARAMS ((rtx)); static void unshare_all_decls PARAMS ((tree)); +static void reset_used_decls PARAMS ((tree)); static hashval_t const_int_htab_hash PARAMS ((const void *)); static int const_int_htab_eq PARAMS ((const void *, const void *)); @@ -1733,6 +1734,9 @@ unshare_all_rtl_again (insn) reset_used_flags (LOG_LINKS (p)); } + /* Make sure that virtual stack slots are not shared. */ + reset_used_decls (DECL_INITIAL (cfun->decl)); + /* Make sure that virtual parameters are not shared. */ for (decl = DECL_ARGUMENTS (cfun->decl); decl; decl = TREE_CHAIN (decl)) reset_used_flags (DECL_RTL (decl)); @@ -1768,13 +1772,30 @@ unshare_all_decls (blk) /* Copy shared decls. */ for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t)) - DECL_RTL (t) = copy_rtx_if_shared (DECL_RTL (t)); + DECL_RTL (t) = copy_rtx_if_shared (DECL_RTL (t)); /* Now process sub-blocks. */ for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t)) unshare_all_decls (t); } +/* Go through all virtual stack slots of a function and mark them as + not shared. */ +static void +reset_used_decls (blk) + tree blk; +{ + tree t; + + /* Mark decls. */ + for (t = BLOCK_VARS (blk); t; t = TREE_CHAIN (t)) + reset_used_flags (DECL_RTL (t)); + + /* Now process sub-blocks. */ + for (t = BLOCK_SUBBLOCKS (blk); t; t = TREE_CHAIN (t)) + reset_used_decls (t); +} + /* Mark ORIG as in use, and return a copy of it if it was already in use. Recursively does the same for subexpressions. */ -- 2.7.4