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]

[pph] Fix merging for namespaces. (issue5280048)


Factor pph_out_binding_level and pph_in_binding_level into three
routines each: one to handle bindings that merge; one to handle those
that do not; and one to handle the parts common to both.

Streaming the global namespace now uses the mergeable version of
binding level streaming.  At present we are merging only the global
namespace.  Subsequent patches will merge nested namespaces and
classes.

Tested on x64.


Index: gcc/testsuite/ChangeLog.pph

2011-10-14   Lawrence Crowl  <crowl@google.com>

	* g++.dg/pph/c3variables.cc: Mark fixed.
	* g++.dg/pph/c4vardef.cc: Mark fixed.
	* g++.dg/pph/e4variables.cc: Mark fixed.
	* g++.dg/pph/z4nontrivinit.cc: Mark with fewer failures.

Index: gcc/cp/ChangeLog.pph

2011-10-14   Lawrence Crowl  <crowl@google.com>

	* pph-streamer.h (extern pph_dump_binding): New.
	* pph.c (pph_dump_binding): New.
	(pph_dump_namespace): Call pph_dump_binding instead of inlining it.
	* pph-streamer-in.c (pph_in_binding_level): Return to original value
	return.  Modify callers to match.
	(pph_in_binding_level_1): New.
	(pph_in_mergeable_binding_level): New.
	(pph_decl_already_emitted): New.
	(pph_in_symtab): Filter emmission by pph_decl_already_emitted.
	(pph_in_identifiers): Fix comment.
	(pph_in_scope_chain): Remove.
	(pph_read_file_1): Call pph_in_mergeable_binding_level instead of
	pph_in_scope_chain.
	* pph-streamer-out.c (pph_out_binding_level_1): Handle only the parts
	of bindings that do not differ with merging.
	(pph_out_binding_level): Handle non-merging bindings.
	(pph_out_mergeable_binding_level): New.
	(pph_out_scope_chain): Rename to pph_out_global_binding.  Call
	pph_out_mergeable_binding_level instead of pph_out_binding_level_1.


Index: gcc/testsuite/g++.dg/pph/c3variables.cc
===================================================================
--- gcc/testsuite/g++.dg/pph/c3variables.cc	(revision 179995)
+++ gcc/testsuite/g++.dg/pph/c3variables.cc	(working copy)
@@ -1,7 +1,3 @@
-// pph asm xdiff 34997
-// xfail BOGUS DUPVAR
-// tentative definition emitted twice
-
 #include "c0variables1.h"
 #include "c0variables2.h"
 #include "a0variables2.h"
Index: gcc/testsuite/g++.dg/pph/z4nontrivinit.cc
===================================================================
--- gcc/testsuite/g++.dg/pph/z4nontrivinit.cc	(revision 179995)
+++ gcc/testsuite/g++.dg/pph/z4nontrivinit.cc	(working copy)
@@ -1,5 +1,5 @@
-// pph asm xdiff 65039
-// xfail BOGUS DUPVAR
+// pph asm xdiff 46966
+// xfail BOGUS DOUBLE DYNINIT
 
 #include "x0nontrivinit1.h"
 #include "x0nontrivinit2.h"
Index: gcc/testsuite/g++.dg/pph/e4variables.cc
===================================================================
--- gcc/testsuite/g++.dg/pph/e4variables.cc	(revision 179995)
+++ gcc/testsuite/g++.dg/pph/e4variables.cc	(working copy)
@@ -1,6 +1,3 @@
-// pph asm xdiff 26015
-// xfail BOGUS DUPVAR
-
 #include "c0variables3.h"
 #include "c0variables4.h"
 
Index: gcc/testsuite/g++.dg/pph/c4vardef.cc
===================================================================
--- gcc/testsuite/g++.dg/pph/c4vardef.cc	(revision 179995)
+++ gcc/testsuite/g++.dg/pph/c4vardef.cc	(working copy)
@@ -1,6 +1,2 @@
-// pph asm xdiff 00553
-// xfail BOGUS DUPVAR
-// definition emitted twice
-
 #include "c0vardef1.h"
 #include "c0vardef2.h"
Index: gcc/cp/pph.c
===================================================================
--- gcc/cp/pph.c	(revision 179995)
+++ gcc/cp/pph.c	(working copy)
@@ -111,13 +111,21 @@ pph_dump_tree_name (FILE *file, tree t, 
 void
 pph_dump_namespace (FILE *file, tree ns)
 {
-  cp_binding_level *level;
-  tree t, chain;
-  level = NAMESPACE_LEVEL (ns);
-
   fprintf (file, "namespace ");
-  print_generic_expr (file, ns, 0);
+  pph_dump_tree_name (file, ns, 0);
   fprintf (file, " {\n");
+  pph_dump_binding (file, NAMESPACE_LEVEL (ns));
+  fprintf (file, "}\n");
+}
+
+
+/* Dump cp_binding_level LEVEL for PPH.  */
+
+void
+pph_dump_binding (FILE *file, cp_binding_level *level)
+{
+  tree t, chain;
+
   for (t = level->names; t; t = chain)
     {
       chain = DECL_CHAIN (t);
@@ -130,7 +138,6 @@ pph_dump_namespace (FILE *file, tree ns)
       if (!DECL_IS_BUILTIN (t))
         pph_dump_namespace (file, t);
     }
-  fprintf (file, "}\n");
 }
 
 
Index: gcc/cp/pph-streamer-in.c
===================================================================
--- gcc/cp/pph-streamer-in.c	(revision 179995)
+++ gcc/cp/pph-streamer-in.c	(working copy)
@@ -33,6 +33,7 @@ along with GCC; see the file COPYING3.  
 #include "cppbuiltin.h"
 #include "toplev.h"
 #include "parser.h"
+#include "pointer-set.h"
 
 typedef char *char_p;
 DEF_VEC_P(char_p);
@@ -57,6 +58,7 @@ static VEC(char_p,heap) *string_tables =
       pph_cache_insert_at (CACHE, DATA, IX, TAG);		\
     } while (0)
 
+/* FIXME pph: Unneeded macro.  */
 /* Same as ALLOC_AND_REGISTER, but instead of registering DATA into the
    cache at slot IX, it registers ALT_DATA.  Used to support mapping
    pointers to global data in the original CACHE that need to point
@@ -881,8 +883,8 @@ pph_merge_into_chain (pph_stream *stream
 
 
 /* Forward declaration to break cyclic dependencies.  */
-static void pph_in_binding_level (cp_binding_level **,
-				  pph_stream *, cp_binding_level *);
+static cp_binding_level *pph_in_binding_level (pph_stream *);
+static void pph_in_mergeable_binding_level (cp_binding_level *, pph_stream *);
 
 /* Helper for pph_in_cxx_binding.  Read and return a cxx_binding
    instance from STREAM.  */
@@ -907,7 +909,7 @@ pph_in_cxx_binding_1 (pph_stream *stream
   type = pph_in_tree (stream);
   ALLOC_AND_REGISTER (&stream->cache, ix, PPH_cxx_binding, cb,
                       cxx_binding_make (value, type));
-  pph_in_binding_level (&cb->scope, stream, NULL);
+  cb->scope = pph_in_binding_level (stream);
   bp = pph_in_bitpack (stream);
   cb->value_is_inherited = bp_unpack_value (&bp, 1);
   cb->is_local = bp_unpack_value (&bp, 1);
@@ -937,7 +939,7 @@ pph_in_cxx_binding (pph_stream *stream)
 }
 
 
-/* Read all the fields of cp_class_binding instance CB to OB.  */
+/* Read all the fields of cp_class_binding instance CB to STREAM.  */
 
 static cp_class_binding *
 pph_in_class_binding (pph_stream *stream)
@@ -987,79 +989,14 @@ pph_in_label_binding (pph_stream *stream
 }
 
 
-/* Read and return an instance of cp_binding_level from STREAM.
-   TO_REGISTER is used when the caller wants to read a binding level,
-   but register a different binding level in the streaming cache.
-   This is needed when reading the binding for global_namespace.
-
-   When the file was created global_namespace was localized to that
-   particular file.  However, when instantiating a PPH file into
-   memory, we are now using the global_namespace for the current
-   translation unit.  Therefore, every reference to the
-   global_namespace and its bindings should be pointing to the
-   CURRENT global namespace, not the one in STREAM.
-
-   Therefore, if TO_REGISTER is set, and we read a binding level from
-   STREAM for the first time, instead of registering the newly
-   instantiated binding level into the cache, we register the binding
-   level given in TO_REGISTER.  This way, subsequent references to the
-   global binding level will be done to the one set in TO_REGISTER.  */
+/* Help read binding level BL.
+   FIXME pph: Much of this may be wrong for mergeable bindings.  */
 
 static void
-pph_in_binding_level (cp_binding_level **out_field,
-                      pph_stream *stream, cp_binding_level *to_register)
+pph_in_binding_level_1 (cp_binding_level *bl, pph_stream *stream)
 {
-  unsigned i, num, image_ix, ix;
-  cp_binding_level *bl;
+  unsigned i, num;
   struct bitpack_d bp;
-  enum pph_record_marker marker;
-  tree entity;
-
-  marker = pph_in_start_record (stream, &image_ix, &ix, PPH_cp_binding_level);
-  if (marker == PPH_RECORD_END)
-    {
-      *out_field = NULL;
-      return;
-    }
-  else if (pph_is_reference_marker (marker))
-    {
-      *out_field = (cp_binding_level *)
-          pph_cache_find (stream, marker, image_ix, ix, PPH_cp_binding_level);
-      return;
-    }
-
-  /* If TO_REGISTER is set, register that binding level instead of the newly
-     allocated binding level into slot IX.  */
-  if (to_register == NULL)
-    ALLOC_AND_REGISTER (&stream->cache, ix, PPH_cp_binding_level, bl,
-			ggc_alloc_cleared_cp_binding_level ());
-  else
-    ALLOC_AND_REGISTER_ALTERNATE (&stream->cache, ix, PPH_cp_binding_level, bl,
-				  ggc_alloc_cleared_cp_binding_level (),
-				  to_register);
-
-  /* Now activate the encompasing field in case we need to insert into a
-     namespace that we just read.  */
-  *out_field = bl;
-
-  entity = bl->this_entity = pph_in_tree (stream);
-  if (NAMESPACE_SCOPE_P (entity) || DECL_CLASS_SCOPE_P (entity))
-    {
-      if (flag_pph_debug >= 3)
-        debug_tree_chain (bl->names);
-      pph_in_mergeable_chain (stream, &bl->names);
-      pph_in_mergeable_chain (stream, &bl->namespaces);
-      pph_in_mergeable_chain (stream, &bl->usings);
-      pph_in_mergeable_chain (stream, &bl->using_directives);
-    }
-  else
-    {
-      bl->names = pph_in_chain (stream);
-      bl->namespaces = pph_in_chain (stream);
-      bl->usings = pph_in_chain (stream);
-      bl->using_directives = pph_in_chain (stream);
-    }
-  bl->static_decls = pph_in_tree_vec (stream);
 
   num = pph_in_uint (stream);
   bl->class_shadowed = NULL;
@@ -1080,7 +1017,7 @@ pph_in_binding_level (cp_binding_level *
     }
 
   bl->blocks = pph_in_tree (stream);
-  pph_in_binding_level (&bl->level_chain, stream, NULL);
+  bl->level_chain = pph_in_binding_level (stream);
   bl->dead_vars_from_for = pph_in_tree_vec (stream);
   bl->statement_list = pph_in_chain (stream);
   bl->binding_depth = pph_in_uint (stream);
@@ -1093,6 +1030,75 @@ pph_in_binding_level (cp_binding_level *
 }
 
 
+/* Read and return an instance of cp_binding_level from STREAM.
+   This function is for use when we will not be merging the binding level.  */
+
+static cp_binding_level *
+pph_in_binding_level (pph_stream *stream)
+{
+  unsigned image_ix, ix;
+  cp_binding_level *bl;
+  enum pph_record_marker marker;
+
+  marker = pph_in_start_record (stream, &image_ix, &ix, PPH_cp_binding_level);
+  if (marker == PPH_RECORD_END)
+    {
+      return NULL;
+    }
+  else if (pph_is_reference_marker (marker))
+    {
+      return (cp_binding_level *)
+          pph_cache_find (stream, marker, image_ix, ix, PPH_cp_binding_level);
+    }
+
+  ALLOC_AND_REGISTER (&stream->cache, ix, PPH_cp_binding_level, bl,
+			ggc_alloc_cleared_cp_binding_level ());
+
+  bl->this_entity = pph_in_tree (stream);
+  bl->names = pph_in_chain (stream);
+  bl->namespaces = pph_in_chain (stream);
+  bl->usings = pph_in_chain (stream);
+  bl->using_directives = pph_in_chain (stream);
+  bl->static_decls = pph_in_tree_vec (stream);
+  pph_in_binding_level_1 (bl, stream);
+
+  return bl;
+}
+
+
+/* Read an instance of cp_binding_level from STREAM and merge into EXISTING.
+   The existing specifies the binding level to register in the cache
+   in place of allocating a binding.  */
+
+static void
+pph_in_mergeable_binding_level (cp_binding_level *existing, pph_stream *stream)
+{
+  unsigned image_ix, ix;
+  enum pph_record_marker marker;
+  tree entity;
+
+  marker = pph_in_start_record (stream, &image_ix, &ix, PPH_cp_binding_level);
+  gcc_assert (marker != PPH_RECORD_END && !pph_is_reference_marker (marker));
+  pph_cache_insert_at (&stream->cache, existing, ix, PPH_cp_binding_level);
+
+  entity = pph_in_tree (stream);
+  gcc_assert (entity == existing->this_entity);
+  if (flag_pph_debug >= 3)
+    {
+      fprintf (pph_logfile, "PPH: Merging into this chain:\n");
+      debug_tree_chain (existing->names);
+    }
+  pph_in_mergeable_chain (stream, &existing->names);
+  pph_in_mergeable_chain (stream, &existing->namespaces);
+  pph_in_mergeable_chain (stream, &existing->usings);
+  pph_in_mergeable_chain (stream, &existing->using_directives);
+  /* FIXME pph: We should really be merging the static_decls.  */
+  existing->static_decls = pph_in_tree_vec (stream);
+  /* FIXME pph: Note the suspect overwriting in the next call.  */
+  pph_in_binding_level_1 (existing, stream);
+}
+
+
 /********************************************************** tree aux classes */
 
 
@@ -1135,7 +1141,7 @@ pph_in_language_function (pph_stream *st
 
   /* FIXME pph.  We are not reading lf->x_named_labels.  */
 
-  pph_in_binding_level (&lf->bindings, stream, NULL);
+  lf->bindings = pph_in_binding_level (stream);
   lf->x_local_names = pph_in_tree_vec (stream);
 
   /* FIXME pph.  We are not reading lf->extern_decl_map.  */
@@ -1325,7 +1331,7 @@ pph_in_ld_fn (pph_stream *stream, struct
 static void
 pph_in_ld_ns (pph_stream *stream, struct lang_decl_ns *ldns)
 {
-  pph_in_binding_level (&ldns->level, stream, NULL);
+  ldns->level = pph_in_binding_level (stream);
 }
 
 
@@ -2138,6 +2144,19 @@ pph_in_cgraph_node (pph_stream *stream)
 }
 
 
+/* Have we already emitted this DECL?  */
+
+static bool
+pph_decl_already_emitted (tree decl)
+{
+  static struct pointer_set_t *emitted_syms = NULL;
+  gcc_assert (decl != NULL);
+  if (!emitted_syms)
+    emitted_syms = pointer_set_create ();
+  return pointer_set_insert (emitted_syms, decl) != 0;
+}
+
+
 /* Read the symbol table from STREAM.  When this image is read into
    another translation unit, we want to guarantee that the IL
    instances taken from this image are instantiated in the same order
@@ -2168,6 +2187,8 @@ pph_in_symtab (pph_stream *stream)
 	  bp = pph_in_bitpack (stream);
 	  top_level = bp_unpack_value (&bp, 1);
 	  at_end = bp_unpack_value (&bp, 1);
+          if (pph_decl_already_emitted (decl))
+            continue;
 	  cp_rest_of_decl_compilation (decl, top_level, at_end);
 	}
       else if (action == PPH_SYMTAB_EXPAND)
@@ -2236,7 +2257,7 @@ report_validation_error (const char *fil
 }
 
 
-/* Load the IDENTIFERS for a hunk from a STREAM.  */
+/* Load the IDENTIFIERS for a hunk from a STREAM.  */
 
 static void
 pph_in_identifiers (pph_stream *stream, cpp_idents_used *identifiers)
@@ -2309,65 +2330,6 @@ pph_in_identifiers (pph_stream *stream, 
 }
 
 
-/* Merge scope_chain bindings from STREAM into the scope_chain
-   bindings of the current translation unit.  This incorporates all
-   the symbols and types from the PPH image into the current TU so
-   name lookup can find identifiers brought from the image.  */
-
-static void
-pph_in_scope_chain (pph_stream *stream)
-{
-  unsigned i;
-  tree decl;
-  cp_class_binding *cb;
-  cp_label_binding *lb;
-  cp_binding_level *cur_bindings, *new_bindings;
-
-  /* When reading the symbols in STREAM's global binding level, make
-     sure that references to the global binding level point to
-     scope_chain->bindings.  Otherwise, identifiers read from STREAM
-     will have the wrong bindings and will fail name lookups.  */
-  cur_bindings = scope_chain->bindings;
-  pph_in_binding_level (&new_bindings, stream, scope_chain->bindings);
-
-  /* Merge the bindings from STREAM into saved_scope->bindings.  */
-  /* FMIXME crowl: The following should already have been done.
-  chainon (cur_bindings->names, new_bindings->names);
-  chainon (cur_bindings->namespaces, new_bindings->namespaces);
-  */
-
-  FOR_EACH_VEC_ELT (tree, new_bindings->static_decls, i, decl)
-    VEC_safe_push (tree, gc, cur_bindings->static_decls, decl);
-
-  chainon (cur_bindings->usings, new_bindings->usings);
-  chainon (cur_bindings->using_directives, new_bindings->using_directives);
-
-  FOR_EACH_VEC_ELT (cp_class_binding, new_bindings->class_shadowed, i, cb)
-    VEC_safe_push (cp_class_binding, gc, cur_bindings->class_shadowed, cb);
-
-  chainon (cur_bindings->type_shadowed, new_bindings->type_shadowed);
-
-  FOR_EACH_VEC_ELT (cp_label_binding, new_bindings->shadowed_labels, i, lb)
-    VEC_safe_push (cp_label_binding, gc, cur_bindings->shadowed_labels, lb);
-
-  chainon (cur_bindings->blocks, new_bindings->blocks);
-
-  gcc_assert (cur_bindings->this_entity == new_bindings->this_entity);
-  gcc_assert (cur_bindings->level_chain == new_bindings->level_chain);
-  gcc_assert (cur_bindings->dead_vars_from_for
-	      == new_bindings->dead_vars_from_for);
-
-  chainon (cur_bindings->statement_list, new_bindings->statement_list);
-
-  gcc_assert (cur_bindings->binding_depth == new_bindings->binding_depth);
-  gcc_assert (cur_bindings->kind == new_bindings->kind);
-  gcc_assert (cur_bindings->explicit_spec_p == new_bindings->explicit_spec_p);
-  gcc_assert (cur_bindings->keep == new_bindings->keep);
-  gcc_assert (cur_bindings->more_cleanups_ok == new_bindings->more_cleanups_ok);
-  gcc_assert (cur_bindings->have_cleanups == new_bindings->have_cleanups);
-}
-
-
 /* Helper for pph_read_file.  Read contents of PPH file in STREAM.  */
 
 static void
@@ -2413,7 +2375,7 @@ pph_read_file_1 (pph_stream *stream)
   cpp_lt_replay (parse_in, &idents_used, &cpp_token_replay_loc);
 
   /* Read the bindings from STREAM and merge them with the current bindings.  */
-  pph_in_scope_chain (stream);
+  pph_in_mergeable_binding_level (scope_chain->bindings, stream);
 
   if (flag_pph_dump_tree)
     pph_dump_namespace (pph_logfile, global_namespace);
Index: gcc/cp/pph-streamer.h
===================================================================
--- gcc/cp/pph-streamer.h	(revision 179995)
+++ gcc/cp/pph-streamer.h	(working copy)
@@ -220,6 +220,7 @@ struct pph_stream {
 /* In pph.c  */
 extern const char *pph_tree_code_text (enum tree_code code);
 extern void pph_dump_min_decl (FILE *file, tree decl);
+extern void pph_dump_binding (FILE *, cp_binding_level *level);
 extern void pph_dump_namespace (FILE *, tree ns);
 
 /* In pph-streamer.c.  */
Index: gcc/cp/pph-streamer-out.c
===================================================================
--- gcc/cp/pph-streamer-out.c	(revision 179995)
+++ gcc/cp/pph-streamer-out.c	(working copy)
@@ -1069,8 +1069,8 @@ pph_out_label_binding (pph_stream *strea
 }
 
 
-/* Helper for pph_out_binding_level.  Write all the fields of BL to
-   STREAM, without checking whether BL was in the streamer cache or not.
+/* Helper for pph_out_binding_level and pph_out_mergeable_binding_level.
+   Write the fields of BL to STREAM that do not differ depending on mering.
    Do not emit any nodes in BL that do not match FILTER.  */
 
 static void
@@ -1081,25 +1081,6 @@ pph_out_binding_level_1 (pph_stream *str
   cp_class_binding *cs;
   cp_label_binding *sl;
   struct bitpack_d bp;
-  unsigned aux_filter = PPHF_NO_BUILTINS | filter;
-  tree entity = bl->this_entity;
-  pph_out_tree (stream, entity);
-  if (NAMESPACE_SCOPE_P (entity))
-    {
-      pph_out_mergeable_chain_filtered (stream, bl->names, aux_filter);
-      pph_out_mergeable_chain_filtered (stream, bl->namespaces, aux_filter);
-      pph_out_mergeable_chain_filtered (stream, bl->usings, aux_filter);
-      pph_out_mergeable_chain_filtered (stream, bl->using_directives,
-                                        aux_filter);
-    }
-  else
-    {
-      pph_out_chain_filtered (stream, bl->names, aux_filter);
-      pph_out_chain_filtered (stream, bl->namespaces, aux_filter);
-      pph_out_chain_filtered (stream, bl->usings, aux_filter);
-      pph_out_chain_filtered (stream, bl->using_directives, aux_filter);
-    }
-  pph_out_tree_vec_filtered (stream, bl->static_decls, filter);
 
   pph_out_uint (stream, VEC_length (cp_class_binding, bl->class_shadowed));
   FOR_EACH_VEC_ELT (cp_class_binding, bl->class_shadowed, i, cs)
@@ -1126,16 +1107,57 @@ pph_out_binding_level_1 (pph_stream *str
 }
 
 
-/* Write all the fields of cp_binding_level instance BL to STREAM.  Do not
-   emit any nodes in BL that do not match FILTER.  */
+/* Write all the fields of cp_binding_level instance BL to STREAM for the
+   non-merging case.  Do not emit any nodes in BL that do not match FILTER.  */
 
 static void
 pph_out_binding_level (pph_stream *stream, cp_binding_level *bl,
 		       unsigned filter)
 {
+  unsigned aux_filter;
+  tree entity;
+
   if (pph_out_start_record (stream, bl, PPH_cp_binding_level))
     return;
 
+  aux_filter = PPHF_NO_BUILTINS | filter;
+  entity = bl->this_entity;
+  pph_out_tree (stream, entity);
+
+  pph_out_chain_filtered (stream, bl->names, aux_filter);
+  pph_out_chain_filtered (stream, bl->namespaces, aux_filter);
+  pph_out_chain_filtered (stream, bl->usings, aux_filter);
+  pph_out_chain_filtered (stream, bl->using_directives, aux_filter);
+  pph_out_tree_vec_filtered (stream, bl->static_decls, filter);
+  pph_out_binding_level_1 (stream, bl, filter);
+}
+
+
+/* Helper for pph_out_binding_level.  Write the fields of BL to STREAM
+   for the non-merging case.
+   Do not emit any nodes in BL that do not match FILTER.  */
+
+static void
+pph_out_mergeable_binding_level (pph_stream *stream, cp_binding_level *bl,
+		         unsigned filter)
+{
+  unsigned aux_filter, ix;
+  tree entity;
+
+  pph_cache_add (&stream->cache, scope_chain->bindings, &ix,
+                 PPH_cp_binding_level);
+  pph_out_record_marker (stream, PPH_RECORD_START, PPH_cp_binding_level);
+  pph_out_uint (stream, ix);
+
+  aux_filter = PPHF_NO_BUILTINS | filter;
+  entity = bl->this_entity;
+  pph_out_tree (stream, entity);
+
+  pph_out_mergeable_chain_filtered (stream, bl->names, aux_filter);
+  pph_out_mergeable_chain_filtered (stream, bl->namespaces, aux_filter);
+  pph_out_mergeable_chain_filtered (stream, bl->usings, aux_filter);
+  pph_out_mergeable_chain_filtered (stream, bl->using_directives, aux_filter);
+  pph_out_tree_vec_filtered (stream, bl->static_decls, filter);
   pph_out_binding_level_1 (stream, bl, filter);
 }
 
@@ -2168,7 +2190,7 @@ pph_out_identifiers (pph_stream *stream,
 /* Write the global bindings in scope_chain to STREAM.  */
 
 static void
-pph_out_scope_chain (pph_stream *stream)
+pph_out_global_binding (pph_stream *stream)
 {
   /* old_namespace should be global_namespace and all entries listed below
      should be NULL or 0; otherwise the header parsed was incomplete.  */
@@ -2199,13 +2221,8 @@ pph_out_scope_chain (pph_stream *stream)
      cache.  This would cause pph_out_binding_level to emit a cache
      reference to it, instead of writing its fields.  */
   {
-    unsigned ix;
-    pph_cache_add (&stream->cache, scope_chain->bindings, &ix,
-                   PPH_cp_binding_level);
-    pph_out_record_marker (stream, PPH_RECORD_START, PPH_cp_binding_level);
-    pph_out_uint (stream, ix);
-    pph_out_binding_level_1 (stream, scope_chain->bindings,
-			     PPHF_NO_XREFS | PPHF_NO_PREFS);
+    pph_out_mergeable_binding_level (stream, scope_chain->bindings,
+				     PPHF_NO_XREFS | PPHF_NO_PREFS);
   }
 }
 
@@ -2229,7 +2246,7 @@ pph_write_file (pph_stream *stream)
   pph_out_identifiers (stream, &idents_used);
 
   /* Emit the bindings for the global namespace.  */
-  pph_out_scope_chain (stream);
+  pph_out_global_binding (stream);
   if (flag_pph_dump_tree)
     pph_dump_namespace (pph_logfile, global_namespace);
 

--
This patch is available for review at http://codereview.appspot.com/5280048


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