From patchwork Thu Aug 6 14:34:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Hubicka X-Patchwork-Id: 1341748 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=8.43.85.97; helo=sourceware.org; envelope-from=gcc-patches-bounces@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ucw.cz Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4BMrcG07THz9sR4 for ; Fri, 7 Aug 2020 00:34:54 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 8D492386F45A; Thu, 6 Aug 2020 14:34:51 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from nikam.ms.mff.cuni.cz (nikam.ms.mff.cuni.cz [195.113.20.16]) by sourceware.org (Postfix) with ESMTPS id 6D28B384C005 for ; Thu, 6 Aug 2020 14:34:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 6D28B384C005 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ucw.cz Authentication-Results: sourceware.org; spf=none smtp.mailfrom=hubicka@kam.mff.cuni.cz Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id D675628087C; Thu, 6 Aug 2020 16:34:39 +0200 (CEST) Date: Thu, 6 Aug 2020 16:34:39 +0200 From: Jan Hubicka To: gcc-patches@gcc.gnu.org, jakub@rehdat.com, rguenther@suse.de Subject: Backporting streaming and enum changes Message-ID: <20200806143439.GB82935@kam.mff.cuni.cz> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Status: No, score=-19.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, KAM_LOTSOFHASH, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces@gcc.gnu.org Sender: "Gcc-patches" Hello, as discussed some time ago, I would like to discuss possibility to backport the straming and enum improvements. The motivation is that this brings quite noticeable improvements to builds of very large projects where we currently have nonlinearity problem with anonymous namespaces (which is solved by first set of patches) and also there is quite noticeable overhead of streaming of enums that I noticed too late for gcc 10.1. This is the second combine dpatch. There is also noticeable reduction of .o files (especially before compression as hit to WPA->ltrans streaming) and some memory use benefits. This is an optional thing to do, but I believe it may be helpful for distro builds and those using LTO for large projects. For firefox the reduction in global stream (that is slowest part of WPA) is from 25678391 tree bodies to 20821629, 11160520 SCC hash collisions to 6002. 392382523 overal section size to 287891470 (both is compressed). For Firefox streaming is under control, but other projects like Chromium hits bigger issues. The reason is that Firefox has "unified build" that #includes multiple cpp sources to one, so it consists of only about 8k source files, while chromium is over 25k and it was tested on project with over 250k sources. More smaller sources one gets, the more noticeable bottleneck streaming become. The patches are not completely trivial, but they affect code that is heavily executed during streaming and was in mainline for several months, so I hope they are safe. Honza From 7edbd8fada3055d55cd238754cd70770d62b10de Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Wed, 20 May 2020 15:58:22 +0200 Subject: [PATCH 1/5] Avoid SCC hashing on unmergeable trees This is new incarantion of patch to identify unmergeable tree at streaming out time rather than streaming in and to avoid pickling them to sccs with with hash codes. Building cc1 plus this patch reduces: [WPA] read 4452927 SCCs of average size 1.986030 [WPA] 8843646 tree bodies read in total [WPA] tree SCC table: size 524287, 205158 elements, collision ratio: 0.505204 [WPA] tree SCC max chain length 43 (size 1) [WPA] Compared 947551 SCCs, 780270 collisions (0.823460) [WPA] Merged 944038 SCCs [WPA] Merged 5253521 tree bodies [WPA] Merged 590027 types ... [WPA] Size of mmap'd section decls: 99229066 bytes [WPA] Size of mmap'd section function_body: 18398837 bytes [WPA] Size of mmap'd section refs: 733678 bytes [WPA] Size of mmap'd section jmpfuncs: 2965981 bytes [WPA] Size of mmap'd section pureconst: 170248 bytes [WPA] Size of mmap'd section profile: 17985 bytes [WPA] Size of mmap'd section symbol_nodes: 3392736 bytes [WPA] Size of mmap'd section inline: 2693920 bytes [WPA] Size of mmap'd section icf: 435557 bytes [WPA] Size of mmap'd section offload_table: 0 bytes [WPA] Size of mmap'd section lto: 4320 bytes [WPA] Size of mmap'd section ipa_sra: 651660 bytes ... to ... [WPA] read 3312246 unshared trees [WPA] read 1144381 mergeable SCCs of average size 4.833785 [WPA] 8843938 tree bodies read in total [WPA] tree SCC table: size 524287, 197767 elements, collision ratio: 0.506446 [WPA] tree SCC max chain length 43 (size 1) [WPA] Compared 946614 SCCs, 775077 collisions (0.818789) [WPA] Merged 943798 SCCs [WPA] Merged 5253336 tree bodies [WPA] Merged 590105 types .... [WPA] Size of mmap'd section decls: 81262144 bytes [WPA] Size of mmap'd section function_body: 14702611 bytes [WPA] Size of mmap'd section ext_symtab: 0 bytes [WPA] Size of mmap'd section refs: 733695 bytes [WPA] Size of mmap'd section jmpfuncs: 2332150 bytes [WPA] Size of mmap'd section pureconst: 170292 bytes [WPA] Size of mmap'd section profile: 17986 bytes [WPA] Size of mmap'd section symbol_nodes: 3393358 bytes [WPA] Size of mmap'd section inline: 2567939 bytes [WPA] Size of mmap'd section icf: 435633 bytes [WPA] Size of mmap'd section lto: 4320 bytes [WPA] Size of mmap'd section ipa_sra: 651824 bytes so results in about 22% reduction in global decl stream and 24% reduction on function bodies stream (which is read mostly by ICF) Martin, the zstd compression breaks the compression statistics (it works when GCC is configured for zlib) At first ltrans I get: [LTRANS] Size of mmap'd section decls: 3734248 bytes [LTRANS] Size of mmap'd section function_body: 4895962 bytes ... to ... [LTRANS] Size of mmap'd section decls: 3479850 bytes [LTRANS] Size of mmap'd section function_body: 3722935 bytes So 7% reduction of global stream and 31% reduction of function bodies. Stream in seems to get about 3% faster and stream out about 5% but it is close to noise factor of my experiment. I expect bigger speedups on Firefox but I did not test it today since my Firefox setup broke again. GCC is not very good example on the problem with anonymous namespace types since we do not have so many of them. Sice of object files in gcc directory is reduced by 11% (because hash numbers do not compress well I guess). The patch makes DFS walk to recognize trees that are not merged (anonymous namespace, local function/variable decls, anonymous types etc). As discussed on IRC this is now done during the SCC walk rather than during the hash computation. When local tree is discovered we know that SCC components of everything that is on the stack reffers to it and thus is also local. Moreover we mark trees into hash set in output block so if we get a cross edge referring to local tree it gets marked too. Patch also takes care of avoiding SCC wrappers around some trees. In particular 1) singleton unmergeable SCCs are now streamed inline in global decl stream This includes INTEGER_CSTs and IDENTIFIER_NODEs that are shared by different code than rest of tree merging. 2) We use LTO_trees instead of LTO_tree_scc to wrap unmergeable SCC components. It is still necessary to mark them because of forward references. LTO_trees has simple header with number of trees and then things are streamed same way as for LTO_tree_scc. That is tree headers first followed by pickled references so things may point to future. Of course it is not necessary for LTO_tree_scc to be single component and streamer out may group more components together, but I decided to not snowball the patch even more 3) In local streams when lto_output_tree is called and the topmost SCC components turns out to be singleton we stream the tree directly instead of LTO_tree_scc, hash code, pickled tree, reference to just stremaed tree. LTO_trees is used to wrap all trees needed to represent tree being streamed. It would make sense again to use only one LTO_trees rather than one per SCC but I think this can be done incrementally. In general local trees are now recognized by new predicate local_tree_p Bit subtle is handing of TRANLSATION_UNIT_DECL, INTEGER_CST and IDENTIFIER_NODE. TRANSLATION_UNIT_DECL a local tree but references to it does not make other trees local (because we also understand local decls now). So I check for it later after localness propagation is done. INTEGER_CST and IDENTIFIER_NODEs are merged but not via the tree merging machinery. So it makes sense to stream them as unmergeable trees but we still need to compute their hashes so SCCs referring them do not get too large collision chains. For this reason they are checked just prior stream out. lto-bootstrapped/regteted x86_64-linux, OK? gcc/ChangeLog: 2020-05-19 Jan Hubicka * lto-streamer-in.c (lto_input_scc): Add SHARED_SCC parameter. (lto_input_tree_1): Strenghten sanity check. (lto_input_tree): Update call of lto_input_scc. * lto-streamer-out.c: Include ipa-utils.h (create_output_block): Initialize local_trees if merigng is going to happen. (destroy_output_block): Destroy local_trees. (DFS): Add max_local_entry. (local_tree_p): New function. (DFS::DFS): Initialize and maintain it. (DFS::DFS_write_tree): Decide on streaming format. (lto_output_tree): Stream inline singleton SCCs * lto-streamer.h (enum LTO_tags): Add LTO_trees. (struct output_block): Add local_trees. (lto_input_scc): Update prototype. gcc/lto/ChangeLog: 2020-05-19 Jan Hubicka * lto-common.c (compare_tree_sccs_1): Sanity check that we never read TRANSLATION_UNIT_DECL. (process_dref): Break out from ... (unify_scc): ... here. (process_new_tree): Break out from ... (lto_read_decls): ... here; handle streaming of singleton trees. (print_lto_report_1): Update statistics. (cherry picked from commit 03d90a20a1afcbb9c30da8d4adf4922b0685061f) (cherry picked from commit c6328b32770132efa004a3cad127cf74be84e911) --- gcc/lto-streamer-in.c | 28 +++-- gcc/lto-streamer-out.c | 146 +++++++++++++++++++++---- gcc/lto-streamer.h | 8 +- gcc/lto/lto-common.c | 240 ++++++++++++++++++++++++----------------- 4 files changed, 297 insertions(+), 125 deletions(-) diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c index 244f5b8aa5c..85d0edf49a7 100644 --- a/gcc/lto-streamer-in.c +++ b/gcc/lto-streamer-in.c @@ -1424,16 +1424,17 @@ lto_read_tree (class lto_input_block *ib, class data_in *data_in, /* Populate the reader cache with trees materialized from the SCC - following in the IB, DATA_IN stream. */ + following in the IB, DATA_IN stream. + If SHARED_SCC is true we input LTO_tree_scc. */ hashval_t lto_input_scc (class lto_input_block *ib, class data_in *data_in, - unsigned *len, unsigned *entry_len) + unsigned *len, unsigned *entry_len, bool shared_scc) { /* A blob of unnamed tree nodes, fill the cache from it and recurse. */ unsigned size = streamer_read_uhwi (ib); - hashval_t scc_hash = streamer_read_uhwi (ib); + hashval_t scc_hash = shared_scc ? streamer_read_uhwi (ib) : 0; unsigned scc_entry_len = 1; if (size == 1) @@ -1456,7 +1457,8 @@ lto_input_scc (class lto_input_block *ib, class data_in *data_in, || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref) || tag == LTO_tree_pickle_reference || tag == LTO_integer_cst - || tag == LTO_tree_scc) + || tag == LTO_tree_scc + || tag == LTO_trees) gcc_unreachable (); result = streamer_alloc_tree (ib, data_in, tag); @@ -1522,7 +1524,7 @@ lto_input_tree_1 (class lto_input_block *ib, class data_in *data_in, (a, len, TYPE_PRECISION (type))); streamer_tree_cache_append (data_in->reader_cache, result, hash); } - else if (tag == LTO_tree_scc) + else if (tag == LTO_tree_scc || tag == LTO_trees) gcc_unreachable (); else { @@ -1538,11 +1540,11 @@ lto_input_tree (class lto_input_block *ib, class data_in *data_in) { enum LTO_tags tag; - /* Input and skip SCCs. */ - while ((tag = streamer_read_record_start (ib)) == LTO_tree_scc) + /* Input pickled trees needed to stream in the reference. */ + while ((tag = streamer_read_record_start (ib)) == LTO_trees) { unsigned len, entry_len; - lto_input_scc (ib, data_in, &len, &entry_len); + lto_input_scc (ib, data_in, &len, &entry_len, false); /* Register DECLs with the debuginfo machinery. */ while (!dref_queue.is_empty ()) @@ -1551,7 +1553,15 @@ lto_input_tree (class lto_input_block *ib, class data_in *data_in) debug_hooks->register_external_die (e.decl, e.sym, e.off); } } - return lto_input_tree_1 (ib, data_in, tag, 0); + tree t = lto_input_tree_1 (ib, data_in, tag, 0); + + if (!dref_queue.is_empty ()) + { + dref_entry e = dref_queue.pop (); + debug_hooks->register_external_die (e.decl, e.sym, e.off); + gcc_checking_assert (dref_queue.is_empty ()); + } + return t; } diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index d5e2daa3a9e..2d9d8689459 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -46,6 +46,7 @@ along with GCC; see the file COPYING3. If not see #include "tree-dfa.h" #include "file-prefix-map.h" /* remap_debug_filename() */ #include "output.h" +#include "ipa-utils.h" static void lto_write_tree (struct output_block*, tree, bool); @@ -75,6 +76,10 @@ create_output_block (enum lto_section_type section_type) ob->section_type = section_type; ob->decl_state = lto_get_out_decl_state (); + /* Only global decl stream in non-wpa will ever be considered by tree + merging. */ + if (!flag_wpa && section_type == LTO_section_decls) + ob->local_trees = new (hash_set ); ob->main_stream = XCNEW (struct lto_output_stream); ob->string_stream = XCNEW (struct lto_output_stream); ob->writer_cache = streamer_tree_cache_create (!flag_wpa, true, false); @@ -100,6 +105,7 @@ destroy_output_block (struct output_block *ob) delete ob->string_hash_table; ob->string_hash_table = NULL; + delete ob->local_trees; free (ob->main_stream); free (ob->string_stream); @@ -532,6 +538,8 @@ private: bool ref_p; bool this_ref_p; }; + /* Maximum index of scc stack containing a local tree. */ + int max_local_entry; static int scc_entry_compare (const void *, const void *); @@ -550,6 +558,41 @@ private: struct obstack sccstate_obstack; }; +/* Return true if type can not be merged with structurally same tree in + other translation unit. During stream out this information is propagated + to all trees referring to T and they are not streamed with additional + information needed by the tree merging in lto-common.c (in particular, + scc hash codes are not streamed). + + TRANSLATION_UNIT_DECL is handled specially since references to it does + not make other trees local as well. */ + +static bool +local_tree_p (tree t) +{ + switch (TREE_CODE (t)) + { + case LABEL_DECL: + return true; + case NAMESPACE_DECL: + return !DECL_NAME (t); + case VAR_DECL: + case FUNCTION_DECL: + return !TREE_PUBLIC (t) && !DECL_EXTERNAL (t); + case RECORD_TYPE: + case UNION_TYPE: + case ENUMERAL_TYPE: + /* Anonymous namespace types are local. + Only work hard for main variants; + variant types will inherit locality. */ + return TYPE_MAIN_VARIANT (t) == t + && odr_type_p (t) && type_with_linkage_p (t) + && type_in_anonymous_namespace_p (t); + default: + return false; + } +} + /* Emit the physical representation of tree node EXPR to output block OB, using depth-first search on the subgraph. If THIS_REF_P is true, the leaves of EXPR are emitted as references via lto_output_tree_ref. @@ -560,6 +603,8 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, bool single_p) { unsigned int next_dfs_num = 1; + + max_local_entry = -1; gcc_obstack_init (&sccstate_obstack); DFS_write_tree (ob, NULL, expr, ref_p, this_ref_p); while (!worklist_vec.is_empty ()) @@ -586,6 +631,8 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, scc_entry e = { expr, 0 }; /* Not yet visited. DFS recurse and push it onto the stack. */ *slot = cstate = XOBNEW (&sccstate_obstack, struct sccs); + if (ob->local_trees && local_tree_p (expr)) + max_local_entry = sccstack.length (); sccstack.safe_push (e); cstate->dfsnum = next_dfs_num++; cstate->low = cstate->dfsnum; @@ -640,7 +687,26 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, any merging there. */ hashval_t scc_hash = 0; unsigned scc_entry_len = 0; - if (!flag_wpa) + bool local_to_unit = !ob->local_trees + || max_local_entry >= (int)first; + + /* Remember that trees are local so info gets propagated to other + SCCs. */ + if (local_to_unit && ob->local_trees) + { + for (unsigned i = 0; i < size; ++i) + ob->local_trees->add (sccstack[first + i].t); + } + + /* As a special case do not stream TRANSLATION_UNIT_DECL as shared + tree. We can not mark it local because references to it does not + make other trees local (all global decls reffer to it via + CONTEXT). */ + if (size == 1 + && TREE_CODE (sccstack[first].t) == TRANSLATION_UNIT_DECL) + local_to_unit = true; + + if (!local_to_unit) { scc_hash = hash_scc (ob, first, size, ref_p, this_ref_p); @@ -672,18 +738,47 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, gcc_checking_assert (scc_entry_len == 1); } - /* Write LTO_tree_scc. */ - streamer_write_record_start (ob, LTO_tree_scc); - streamer_write_uhwi (ob, size); - streamer_write_uhwi (ob, scc_hash); + worklist_vec.pop (); + + /* Only global decl sections are considered by tree merging. */ + if (ob->section_type != LTO_section_decls) + { + /* If this is the original tree we stream and it forms SCC + by itself then we do not need to stream SCC at all. */ + if (worklist_vec.is_empty () && first == 0 && size == 1) + return; + streamer_write_record_start (ob, LTO_trees); + streamer_write_uhwi (ob, size); + } + /* Write LTO_tree_scc if tree merging is going to be performed. */ + else if (!local_to_unit + /* These are special since sharing is not done by tree + merging machinery. We can not special case them earlier + because we still need to compute hash for further sharing + of trees referring to them. */ + && (size != 1 + || (TREE_CODE (sccstack[first].t) != IDENTIFIER_NODE + && (TREE_CODE (sccstack[first].t) != INTEGER_CST + || TREE_OVERFLOW (sccstack[first].t))))) + + { + gcc_checking_assert (ob->section_type == LTO_section_decls); + streamer_write_record_start (ob, LTO_tree_scc); + streamer_write_uhwi (ob, size); + streamer_write_uhwi (ob, scc_hash); + } + /* Non-trivial SCCs must be packed to trees blocks so forward + references work correctly. */ + else if (size != 1) + { + streamer_write_record_start (ob, LTO_trees); + streamer_write_uhwi (ob, size); + } /* Write size-1 SCCs without wrapping them inside SCC bundles. All INTEGER_CSTs need to be handled this way as we need their type to materialize them. Also builtins are handled - this way. - ??? We still wrap these in LTO_tree_scc so at the - input side we can properly identify the tree we want - to ultimatively return. */ + this way. */ if (size == 1) lto_output_tree_1 (ob, expr, scc_hash, ref_p, this_ref_p); else @@ -722,10 +817,11 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, /* Finally truncate the vector. */ sccstack.truncate (first); + if ((int)first <= max_local_entry) + max_local_entry = first - 1; if (from_state) from_state->low = MIN (from_state->low, cstate->low); - worklist_vec.pop (); continue; } @@ -1569,7 +1665,14 @@ DFS::DFS_write_tree (struct output_block *ob, sccs *from_state, /* Check if we already streamed EXPR. */ if (streamer_tree_cache_lookup (ob->writer_cache, expr, NULL)) - return; + { + /* Refernece to a local tree makes entry also local. We always process + top of stack entry, so set max to number of entries in stack - 1. */ + if (ob->local_trees + && ob->local_trees->contains (expr)) + max_local_entry = sccstack.length () - 1; + return; + } worklist w; w.expr = expr; @@ -1641,15 +1744,20 @@ lto_output_tree (struct output_block *ob, tree expr, DFS (ob, expr, ref_p, this_ref_p, false); in_dfs_walk = false; - /* Finally append a reference to the tree we were writing. - ??? If expr ended up as a singleton we could have - inlined it here and avoid outputting a reference. */ + /* Finally append a reference to the tree we were writing. */ existed_p = streamer_tree_cache_lookup (ob->writer_cache, expr, &ix); - gcc_assert (existed_p); - streamer_write_record_start (ob, LTO_tree_pickle_reference); - streamer_write_uhwi (ob, ix); - streamer_write_enum (ob->main_stream, LTO_tags, LTO_NUM_TAGS, - lto_tree_code_to_tag (TREE_CODE (expr))); + + /* DFS walk above possibly skipped streaming EXPR itself to let us inline + it. */ + if (!existed_p) + lto_output_tree_1 (ob, expr, 0, ref_p, this_ref_p); + else + { + streamer_write_record_start (ob, LTO_tree_pickle_reference); + streamer_write_uhwi (ob, ix); + streamer_write_enum (ob->main_stream, LTO_tags, LTO_NUM_TAGS, + lto_tree_code_to_tag (TREE_CODE (expr))); + } if (streamer_dump_file) { print_node_brief (streamer_dump_file, " Finished SCC of ", diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h index 76aa6fe34b8..a466fb8b329 100644 --- a/gcc/lto-streamer.h +++ b/gcc/lto-streamer.h @@ -178,6 +178,9 @@ enum LTO_tags /* Special for global streamer. A blob of unnamed tree nodes. */ LTO_tree_scc, + /* Sequence of trees. */ + LTO_trees, + /* References to indexable tree nodes. These objects are stored in tables that are written separately from the function bodies that reference them. This way they can be instantiated even when the @@ -751,6 +754,9 @@ struct output_block /* Cache of nodes written in this section. */ struct streamer_tree_cache_d *writer_cache; + /* All trees identified as local to the unit streamed. */ + hash_set *local_trees; + /* All data persistent across whole duration of output block can go here. */ struct obstack obstack; @@ -901,7 +907,7 @@ tree lto_input_tree_ref (class lto_input_block *, class data_in *, void lto_tag_check_set (enum LTO_tags, int, ...); void lto_init_eh (void); hashval_t lto_input_scc (class lto_input_block *, class data_in *, - unsigned *, unsigned *); + unsigned *, unsigned *, bool); tree lto_input_tree_1 (class lto_input_block *, class data_in *, enum LTO_tags, hashval_t hash); tree lto_input_tree (class lto_input_block *, class data_in *); diff --git a/gcc/lto/lto-common.c b/gcc/lto/lto-common.c index c8fd6f5c595..66858a88157 100644 --- a/gcc/lto/lto-common.c +++ b/gcc/lto/lto-common.c @@ -56,6 +56,7 @@ along with GCC; see the file COPYING3. If not see #include "builtins.h" #include "lto-common.h" #include "tree-pretty-print.h" +#include "print-tree.h" /* True when no new types are going to be streamd from the global stream. */ @@ -1054,6 +1055,7 @@ static unsigned long num_prevailing_types; static unsigned long num_type_scc_trees; static unsigned long total_scc_size; static unsigned long num_sccs_read; +static unsigned long num_unshared_trees_read; static unsigned long total_scc_size_merged; static unsigned long num_sccs_merged; static unsigned long num_scc_compares; @@ -1088,6 +1090,10 @@ compare_tree_sccs_1 (tree t1, tree t2, tree **map) compare_values (TREE_CODE); code = TREE_CODE (t1); + /* If we end up comparing translation unit decls we either forgot to mark + some SCC as local or we compare too much. */ + gcc_checking_assert (code != TRANSLATION_UNIT_DECL); + if (!TYPE_P (t1)) { compare_values (TREE_SIDE_EFFECTS); @@ -1626,6 +1632,28 @@ cmp_tree (const void *p1_, const void *p2_) return ((uintptr_t)p1[1] < (uintptr_t)p2[1]) ? -1 : 1; } +/* New scc of size 1 containing T was streamed in from DATA_IN and not merged. + Register it to reader cache at index FROM. */ + +static void +process_dref (class data_in *data_in, tree t, unsigned from) +{ + struct streamer_tree_cache_d *cache = data_in->reader_cache; + /* If we got a debug reference queued, see if the prevailing + tree has a debug reference and if not, register the one + for the tree we are about to throw away. */ + if (dref_queue.length () == 1) + { + dref_entry e = dref_queue.pop (); + gcc_assert (e.decl + == streamer_tree_cache_get_tree (cache, from)); + const char *sym; + unsigned HOST_WIDE_INT off; + if (!debug_hooks->die_ref_for_decl (t, &sym, &off)) + debug_hooks->register_external_die (t, e.sym, e.off); + } +} + /* Try to unify the SCC with nodes FROM to FROM + LEN in CACHE and hash value SCC_HASH with an already recorded SCC. Return true if that was successful, otherwise return false. */ @@ -1646,22 +1674,16 @@ unify_scc (class data_in *data_in, unsigned from, { tree t = streamer_tree_cache_get_tree (cache, from + i); scc->entries[i] = t; - /* Do not merge SCCs with local entities inside them. Also do - not merge TRANSLATION_UNIT_DECLs and anonymous namespaces - and types therein types. */ - if (TREE_CODE (t) == TRANSLATION_UNIT_DECL - || (VAR_OR_FUNCTION_DECL_P (t) - && !(TREE_PUBLIC (t) || DECL_EXTERNAL (t))) - || TREE_CODE (t) == LABEL_DECL - || (TREE_CODE (t) == NAMESPACE_DECL && !DECL_NAME (t)) - || (TYPE_P (t) - && type_with_linkage_p (TYPE_MAIN_VARIANT (t)) - && type_in_anonymous_namespace_p (TYPE_MAIN_VARIANT (t)))) - { - /* Avoid doing any work for these cases and do not worry to - record the SCCs for further merging. */ - return false; - } + /* These types should be streamed as unshared. */ + gcc_checking_assert + (!(TREE_CODE (t) == TRANSLATION_UNIT_DECL + || (VAR_OR_FUNCTION_DECL_P (t) + && !(TREE_PUBLIC (t) || DECL_EXTERNAL (t))) + || TREE_CODE (t) == LABEL_DECL + || (TREE_CODE (t) == NAMESPACE_DECL && !DECL_NAME (t)) + || (TYPE_P (t) + && type_with_linkage_p (TYPE_MAIN_VARIANT (t)) + && type_in_anonymous_namespace_p (TYPE_MAIN_VARIANT (t))))); } /* Look for the list of candidate SCCs to compare against. */ @@ -1712,21 +1734,7 @@ unify_scc (class data_in *data_in, unsigned from, to the tree node mapping computed by compare_tree_sccs. */ if (len == 1) { - /* If we got a debug reference queued, see if the prevailing - tree has a debug reference and if not, register the one - for the tree we are about to throw away. */ - if (dref_queue.length () == 1) - { - dref_entry e = dref_queue.pop (); - gcc_assert (e.decl - == streamer_tree_cache_get_tree (cache, from)); - const char *sym; - unsigned HOST_WIDE_INT off; - if (!debug_hooks->die_ref_for_decl (pscc->entries[0], &sym, - &off)) - debug_hooks->register_external_die (pscc->entries[0], - e.sym, e.off); - } + process_dref (data_in, pscc->entries[0], from); lto_maybe_register_decl (data_in, pscc->entries[0], from); streamer_tree_cache_replace_tree (cache, pscc->entries[0], from); } @@ -1785,7 +1793,65 @@ unify_scc (class data_in *data_in, unsigned from, return unified_p; } +typedef int_hash code_id_hash; + +/* Do registering necessary once new tree fully streamed in (including all + trees it reffers to). */ + +static void +process_new_tree (tree t, hash_map *hm, + unsigned index, unsigned *total, class data_in *data_in) +{ + /* Reconstruct the type variant and pointer-to/reference-to + chains. */ + if (TYPE_P (t)) + { + /* Map the tree types to their frequencies. */ + if (flag_lto_dump_type_stats) + { + unsigned key = (unsigned) TREE_CODE (t); + unsigned *countp = hm->get (key); + hm->put (key, countp ? (*countp) + 1 : 1); + (*total)++; + } + + num_prevailing_types++; + lto_fixup_prevailing_type (t); + /* Compute the canonical type of all non-ODR types. + Delay ODR types for the end of merging process - the canonical + type for those can be computed using the (unique) name however + we want to do this only if units in other languages do not + contain structurally equivalent type. + + Because SCC components are streamed in random (hash) order + we may have encountered the type before while registering + type canonical of a derived type in the same SCC. */ + if (!TYPE_CANONICAL (t)) + { + if (!RECORD_OR_UNION_TYPE_P (t) + || !TYPE_CXX_ODR_P (t)) + gimple_register_canonical_type (t); + else if (COMPLETE_TYPE_P (t)) + vec_safe_push (types_to_register, t); + } + if (TYPE_MAIN_VARIANT (t) == t && odr_type_p (t)) + register_odr_type (t); + } + /* Link shared INTEGER_CSTs into TYPE_CACHED_VALUEs of its + type which is also member of this SCC. */ + if (TREE_CODE (t) == INTEGER_CST + && !TREE_OVERFLOW (t)) + cache_integer_cst (t); + if (!flag_ltrans) + { + lto_maybe_register_decl (data_in, t, index); + /* Scan the tree for references to global functions or + variables and record those for later fixup. */ + if (mentions_vars_p (t)) + vec_safe_push (tree_with_vars, t); + } +} /* Read all the symbols from buffer DATA, using descriptors in DECL_DATA. RESOLUTIONS is the set of symbols picked by the linker (read from the @@ -1813,7 +1879,6 @@ lto_read_decls (struct lto_file_decl_data *decl_data, const void *data, /* We do not uniquify the pre-loaded cache entries, those are middle-end internal types that should not be merged. */ - typedef int_hash code_id_hash; hash_map hm; unsigned total = 0; @@ -1824,31 +1889,41 @@ lto_read_decls (struct lto_file_decl_data *decl_data, const void *data, unsigned from = data_in->reader_cache->nodes.length (); /* Read and uniquify SCCs as in the input stream. */ enum LTO_tags tag = streamer_read_record_start (&ib_main); - if (tag == LTO_tree_scc) + if (tag == LTO_tree_scc || tag == LTO_trees) { unsigned len_; unsigned scc_entry_len; + + /* Because we stream in SCC order we know that all unshared trees + are now fully streamed. Process them. */ hashval_t scc_hash = lto_input_scc (&ib_main, data_in, &len_, - &scc_entry_len); + &scc_entry_len, + tag == LTO_tree_scc); unsigned len = data_in->reader_cache->nodes.length () - from; gcc_assert (len == len_); - total_scc_size += len; - num_sccs_read++; + if (tag == LTO_tree_scc) + { + total_scc_size += len; + num_sccs_read++; + } + else + num_unshared_trees_read += len; /* We have the special case of size-1 SCCs that are pre-merged by means of identifier and string sharing for example. ??? Maybe we should avoid streaming those as SCCs. */ tree first = streamer_tree_cache_get_tree (data_in->reader_cache, from); - if (len == 1 - && (TREE_CODE (first) == IDENTIFIER_NODE - || (TREE_CODE (first) == INTEGER_CST - && !TREE_OVERFLOW (first)))) - continue; + /* Identifier and integers are shared specially, they should never + go by the tree merging path. */ + gcc_checking_assert ((TREE_CODE (first) != IDENTIFIER_NODE + && (TREE_CODE (first) != INTEGER_CST + || TREE_OVERFLOW (first))) + || len != 1); /* Try to unify the SCC with already existing ones. */ - if (!flag_ltrans + if (!flag_ltrans && tag != LTO_trees && unify_scc (data_in, from, len, scc_entry_len, scc_hash)) continue; @@ -1862,56 +1937,9 @@ lto_read_decls (struct lto_file_decl_data *decl_data, const void *data, { tree t = streamer_tree_cache_get_tree (data_in->reader_cache, from + i); - /* Reconstruct the type variant and pointer-to/reference-to - chains. */ + process_new_tree (t, &hm, from + i, &total, data_in); if (TYPE_P (t)) - { - /* Map the tree types to their frequencies. */ - if (flag_lto_dump_type_stats) - { - unsigned key = (unsigned) TREE_CODE (t); - unsigned *countp = hm.get (key); - hm.put (key, countp ? (*countp) + 1 : 1); - total++; - } - - seen_type = true; - num_prevailing_types++; - lto_fixup_prevailing_type (t); - - /* Compute the canonical type of all non-ODR types. - Delay ODR types for the end of merging process - the canonical - type for those can be computed using the (unique) name however - we want to do this only if units in other languages do not - contain structurally equivalent type. - - Because SCC components are streamed in random (hash) order - we may have encountered the type before while registering - type canonical of a derived type in the same SCC. */ - if (!TYPE_CANONICAL (t)) - { - if (!RECORD_OR_UNION_TYPE_P (t) - || !TYPE_CXX_ODR_P (t)) - gimple_register_canonical_type (t); - else if (COMPLETE_TYPE_P (t)) - vec_safe_push (types_to_register, t); - } - if (TYPE_MAIN_VARIANT (t) == t && odr_type_p (t)) - register_odr_type (t); - } - /* Link shared INTEGER_CSTs into TYPE_CACHED_VALUEs of its - type which is also member of this SCC. */ - if (TREE_CODE (t) == INTEGER_CST - && !TREE_OVERFLOW (t)) - cache_integer_cst (t); - if (!flag_ltrans) - { - lto_maybe_register_decl (data_in, t, from + i); - /* Scan the tree for references to global functions or - variables and record those for later fixup. */ - if (mentions_vars_p (t)) - vec_safe_push (tree_with_vars, t); - } + seen_type = true; } /* Register DECLs with the debuginfo machinery. */ @@ -1926,9 +1954,26 @@ lto_read_decls (struct lto_file_decl_data *decl_data, const void *data, } else { - /* Pickle stray references. */ t = lto_input_tree_1 (&ib_main, data_in, tag, 0); - gcc_assert (t && data_in->reader_cache->nodes.length () == from); + /* We streamed in new tree. Add it to cache and process dref. */ + if (data_in->reader_cache->nodes.length () == from + 1) + { + num_unshared_trees_read++; + data_in->location_cache.accept_location_cache (); + process_dref (data_in, t, from); + if (TREE_CODE (t) == IDENTIFIER_NODE + || (TREE_CODE (t) == INTEGER_CST + && !TREE_OVERFLOW (t))) + ; + else + { + lto_maybe_register_decl (data_in, t, from); + process_new_tree (t, &hm, from, &total, data_in); + } + } + else + /* FIXME: It seems useless to pickle stray references. */ + gcc_assert (data_in->reader_cache->nodes.length () == from); } } @@ -2953,10 +2998,13 @@ print_lto_report_1 (void) const char *pfx = (flag_lto) ? "LTO" : (flag_wpa) ? "WPA" : "LTRANS"; fprintf (stderr, "%s statistics\n", pfx); - fprintf (stderr, "[%s] read %lu SCCs of average size %f\n", + fprintf (stderr, "[%s] read %lu unshared trees\n", + pfx, num_unshared_trees_read); + fprintf (stderr, "[%s] read %lu mergeable SCCs of average size %f\n", pfx, num_sccs_read, total_scc_size / (double)num_sccs_read); - fprintf (stderr, "[%s] %lu tree bodies read in total\n", pfx, total_scc_size); - if (flag_wpa && tree_scc_hash) + fprintf (stderr, "[%s] %lu tree bodies read in total\n", pfx, + total_scc_size + num_unshared_trees_read); + if (flag_wpa && tree_scc_hash && num_sccs_read) { fprintf (stderr, "[%s] tree SCC table: size %ld, %ld elements, " "collision ratio: %f\n", pfx, -- 2.20.1 From b5193950495fe9a5e86d2204ee349a946fb0a979 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 22 May 2020 12:29:19 +0200 Subject: [PATCH 2/5] Simplify streaming of SCC components this patch saves few bytes from SCC streaming. First we stream end markers that are fully ignored at stream in. Second I missed streaming of emtry_len in the previous change so it is pointlessly streamed for LTO_trees. Moreover entry_len is almost always 1 (always during gcc bootstrap) and thus it makes sense to avoid stremaing it in majority of cases. gcc/ChangeLog: 2020-05-21 Jan Hubicka * lto-streamer-in.c (lto_read_tree): Do not stream end markers. (lto_input_scc): Optimize streaming of entry lengths. * lto-streamer-out.c (lto_write_tree): Do not stream end markers (DFS::DFS): Optimize stremaing of entry lengths (cherry picked from commit 47273df0bcdd552385f25049dce71943aac8321e) (cherry picked from commit f55838d8ec18a499ff2f521bea66bbb54f70c56b) --- gcc/lto-streamer-in.c | 17 +++++++++-------- gcc/lto-streamer-out.c | 19 +++++++------------ 2 files changed, 16 insertions(+), 20 deletions(-) diff --git a/gcc/lto-streamer-in.c b/gcc/lto-streamer-in.c index 85d0edf49a7..d0532c5ac51 100644 --- a/gcc/lto-streamer-in.c +++ b/gcc/lto-streamer-in.c @@ -1417,8 +1417,6 @@ lto_read_tree (class lto_input_block *ib, class data_in *data_in, lto_read_tree_1 (ib, data_in, result); - /* end_marker = */ streamer_read_uchar (ib); - return result; } @@ -1431,12 +1429,18 @@ hashval_t lto_input_scc (class lto_input_block *ib, class data_in *data_in, unsigned *len, unsigned *entry_len, bool shared_scc) { - /* A blob of unnamed tree nodes, fill the cache from it and - recurse. */ unsigned size = streamer_read_uhwi (ib); - hashval_t scc_hash = shared_scc ? streamer_read_uhwi (ib) : 0; + hashval_t scc_hash = 0; unsigned scc_entry_len = 1; + if (shared_scc) + { + if (size & 1) + scc_entry_len = streamer_read_uhwi (ib); + size /= 2; + scc_hash = streamer_read_uhwi (ib); + } + if (size == 1) { enum LTO_tags tag = streamer_read_record_start (ib); @@ -1447,8 +1451,6 @@ lto_input_scc (class lto_input_block *ib, class data_in *data_in, unsigned int first = data_in->reader_cache->nodes.length (); tree result; - scc_entry_len = streamer_read_uhwi (ib); - /* Materialize size trees by reading their headers. */ for (unsigned i = 0; i < size; ++i) { @@ -1471,7 +1473,6 @@ lto_input_scc (class lto_input_block *ib, class data_in *data_in, result = streamer_tree_cache_get_tree (data_in->reader_cache, first + i); lto_read_tree_1 (ib, data_in, result); - /* end_marker = */ streamer_read_uchar (ib); } } diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index 2d9d8689459..2c3d16799b4 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -473,9 +473,6 @@ lto_write_tree (struct output_block *ob, tree expr, bool ref_p) streamer_write_tree_header (ob, expr); lto_write_tree_1 (ob, expr, ref_p); - - /* Mark the end of EXPR. */ - streamer_write_zero (ob); } /* Emit the physical representation of tree node EXPR to output block OB, @@ -764,7 +761,12 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, { gcc_checking_assert (ob->section_type == LTO_section_decls); streamer_write_record_start (ob, LTO_tree_scc); - streamer_write_uhwi (ob, size); + /* In wast majority of cases scc_entry_len is 1 and size is small + integer. Use extra bit of size to stream info about + exceptions. */ + streamer_write_uhwi (ob, size * 2 + (scc_entry_len != 1)); + if (scc_entry_len != 1) + streamer_write_uhwi (ob, scc_entry_len); streamer_write_uhwi (ob, scc_hash); } /* Non-trivial SCCs must be packed to trees blocks so forward @@ -783,8 +785,6 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, lto_output_tree_1 (ob, expr, scc_hash, ref_p, this_ref_p); else { - /* Write the size of the SCC entry candidates. */ - streamer_write_uhwi (ob, scc_entry_len); /* Write all headers and populate the streamer cache. */ for (unsigned i = 0; i < size; ++i) @@ -807,12 +807,7 @@ DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p, /* Write the bitpacks and tree references. */ for (unsigned i = 0; i < size; ++i) - { - lto_write_tree_1 (ob, sccstack[first+i].t, ref_p); - - /* Mark the end of the tree. */ - streamer_write_zero (ob); - } + lto_write_tree_1 (ob, sccstack[first+i].t, ref_p); } /* Finally truncate the vector. */ -- 2.20.1 From a783662c8a0e90d7b3b9534df981927c9537b1ea Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 22 May 2020 12:31:34 +0200 Subject: [PATCH 3/5] Fix hashing of prestreamed nodes this patch seems to solve basically all collisions while building cc1. From: [WPA] read 3312246 unshared trees [WPA] read 1144381 mergeable SCCs of average size 4.833785 [WPA] 8843938 tree bodies read in total [WPA] tree SCC table: size 524287, 197767 elements, collision ratio: 0.506446 [WPA] tree SCC max chain length 43 (size 1) [WPA] Compared 946614 SCCs, 775077 collisions (0.818789) to [WPA] read 3314520 unshared trees [WPA] read 1144763 mergeable SCCs of average size 4.835021 [WPA] 8849473 tree bodies read in total [WPA] tree SCC table: size 524287, 200574 elements, collision ratio: 0.486418 [WPA] tree SCC max chain length 2 (size 1) [WPA] Compared 944189 SCCs, 179 collisions (0.000190) The problem is that preloaded nodes all have hash code 0 because cache->nodes.length is not updated while streaming out. I also added an arbitrary constant to avoid clash with constant of 0 used to hash NULL pointers and 1 used to hash pointers inside SCC. * tree-streamer.c (record_common_node): Fix hash value of pre-streamed nodes. (cherry picked from commit 1089a367c4b05b5e3f072adca8913904ed65928c) (cherry picked from commit 5c7ed52a039cfafb63c27fa8c1535e02dfc1ae09) --- gcc/tree-streamer.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gcc/tree-streamer.c b/gcc/tree-streamer.c index f6181fafc4c..b0afa1dc6c0 100644 --- a/gcc/tree-streamer.c +++ b/gcc/tree-streamer.c @@ -299,10 +299,11 @@ record_common_node (struct streamer_tree_cache_d *cache, tree node) if (!node) node = error_mark_node; - /* ??? FIXME, devise a better hash value. But the hash needs to be equal - for all frontend and lto1 invocations. So just use the position - in the cache as hash value. */ - streamer_tree_cache_append (cache, node, cache->nodes.length ()); + /* This hash needs to be equal for all frontend and lto1 invocations. So + just use the position in the cache as hash value. + Small integers are used by hash_tree to record positions within scc + hash. Values are not in same range. */ + streamer_tree_cache_append (cache, node, cache->next_idx + 0xc001); switch (TREE_CODE (node)) { -- 2.20.1 From 5a66de7d2f197b89dd595f6b9412ac2a0c184bd6 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 22 May 2020 16:37:06 +0200 Subject: [PATCH 4/5] Avoid streaming stray references. this patch avoids stremaing completely useless stray references to gobal decl stream. I am re-testing the patch (rebased to current tree) on x86_64-linux and intend to commit once testing finishes. gcc/ChangeLog: 2020-05-22 Jan Hubicka * lto-streamer-out.c (lto_output_tree): Do not stream final ref if it is not needed. gcc/lto/ChangeLog: 2020-05-22 Jan Hubicka * lto-common.c (lto_read_decls): Do not skip stray refs. (cherry picked from commit bcb63eb2cbd3caf212b9cf42d8c218c09dc6ff8b) (cherry picked from commit 57400cf273f8052c601d90d86a47705faa17aaa9) --- gcc/lto-streamer-out.c | 2 +- gcc/lto/lto-common.c | 28 +++++++++++----------------- 2 files changed, 12 insertions(+), 18 deletions(-) diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index 2c3d16799b4..74ea872e511 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -1746,7 +1746,7 @@ lto_output_tree (struct output_block *ob, tree expr, it. */ if (!existed_p) lto_output_tree_1 (ob, expr, 0, ref_p, this_ref_p); - else + else if (this_ref_p) { streamer_write_record_start (ob, LTO_tree_pickle_reference); streamer_write_uhwi (ob, ix); diff --git a/gcc/lto/lto-common.c b/gcc/lto/lto-common.c index 66858a88157..bcc0919dfc6 100644 --- a/gcc/lto/lto-common.c +++ b/gcc/lto/lto-common.c @@ -1955,25 +1955,19 @@ lto_read_decls (struct lto_file_decl_data *decl_data, const void *data, else { t = lto_input_tree_1 (&ib_main, data_in, tag, 0); - /* We streamed in new tree. Add it to cache and process dref. */ - if (data_in->reader_cache->nodes.length () == from + 1) + gcc_assert (data_in->reader_cache->nodes.length () == from + 1); + num_unshared_trees_read++; + data_in->location_cache.accept_location_cache (); + process_dref (data_in, t, from); + if (TREE_CODE (t) == IDENTIFIER_NODE + || (TREE_CODE (t) == INTEGER_CST + && !TREE_OVERFLOW (t))) + ; + else { - num_unshared_trees_read++; - data_in->location_cache.accept_location_cache (); - process_dref (data_in, t, from); - if (TREE_CODE (t) == IDENTIFIER_NODE - || (TREE_CODE (t) == INTEGER_CST - && !TREE_OVERFLOW (t))) - ; - else - { - lto_maybe_register_decl (data_in, t, from); - process_new_tree (t, &hm, from, &total, data_in); - } + lto_maybe_register_decl (data_in, t, from); + process_new_tree (t, &hm, from, &total, data_in); } - else - /* FIXME: It seems useless to pickle stray references. */ - gcc_assert (data_in->reader_cache->nodes.length () == from); } } -- 2.20.1 From 59877e70b25c164761e641b703fafe7cb872acb9 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Mon, 25 May 2020 14:41:33 +0200 Subject: [PATCH 5/5] Do not stream redundant stuff as discussed on IRC this adds knob to disable stuff we stream "just for fun" (or to make it easier to debug streamer desychnonization). Te size of .o files in gcc subdirectory is reduced form 506MB to 492MB gcc/ * lto-streamer-out.c (lto_output_tree): Add streamer_debugging check. * lto-streamer.h (streamer_debugging): New constant * tree-streamer-in.c (streamer_read_tree_bitfields): Add streamer_debugging check. (streamer_get_pickled_tree): Likewise. * tree-streamer-out.c (pack_ts_base_value_fields): Likewise. (cherry picked from commit a746f952abb78af9db28a7f3bce442e113877c9c) (cherry picked from commit 9d679bd7b621c93c000b7d548f34f3438e0d57a8) --- gcc/lto-streamer-out.c | 5 +++-- gcc/lto-streamer.h | 3 +++ gcc/tree-streamer-in.c | 21 ++++++++++++++------- gcc/tree-streamer-out.c | 3 ++- 4 files changed, 22 insertions(+), 10 deletions(-) diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c index 74ea872e511..61c21d181fa 100644 --- a/gcc/lto-streamer-out.c +++ b/gcc/lto-streamer-out.c @@ -1710,8 +1710,9 @@ lto_output_tree (struct output_block *ob, tree expr, will instantiate two different nodes for the same object. */ streamer_write_record_start (ob, LTO_tree_pickle_reference); streamer_write_uhwi (ob, ix); - streamer_write_enum (ob->main_stream, LTO_tags, LTO_NUM_TAGS, - lto_tree_code_to_tag (TREE_CODE (expr))); + if (streamer_debugging) + streamer_write_enum (ob->main_stream, LTO_tags, LTO_NUM_TAGS, + lto_tree_code_to_tag (TREE_CODE (expr))); lto_stats.num_pickle_refs_output++; } else diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h index a466fb8b329..93da3c66fd8 100644 --- a/gcc/lto-streamer.h +++ b/gcc/lto-streamer.h @@ -125,6 +125,9 @@ along with GCC; see the file COPYING3. If not see typedef unsigned char lto_decl_flags_t; +/* Stream additional data to LTO object files to make it easier to debug + streaming code. This changes object files. */ +static const bool streamer_debugging = false; /* Tags representing the various IL objects written to the bytecode file (GIMPLE statements, basic blocks, EH regions, tree nodes, etc). diff --git a/gcc/tree-streamer-in.c b/gcc/tree-streamer-in.c index 5b653cdf5ad..a3aea3d811f 100644 --- a/gcc/tree-streamer-in.c +++ b/gcc/tree-streamer-in.c @@ -487,9 +487,13 @@ streamer_read_tree_bitfields (class lto_input_block *ib, /* The first word in BP contains the code of the tree that we are about to read. */ - code = (enum tree_code) bp_unpack_value (&bp, 16); - lto_tag_check (lto_tree_code_to_tag (code), - lto_tree_code_to_tag (TREE_CODE (expr))); + if (streamer_debugging) + { + code = (enum tree_code) bp_unpack_value (&bp, 16); + lto_tag_check (lto_tree_code_to_tag (code), + lto_tree_code_to_tag (TREE_CODE (expr))); + } + code = TREE_CODE (expr); /* Note that all these functions are highly sensitive to changes in the types and sizes of each of the fields being packed. */ @@ -1107,11 +1111,14 @@ streamer_get_pickled_tree (class lto_input_block *ib, class data_in *data_in) enum LTO_tags expected_tag; ix = streamer_read_uhwi (ib); - expected_tag = streamer_read_enum (ib, LTO_tags, LTO_NUM_TAGS); - result = streamer_tree_cache_get_tree (data_in->reader_cache, ix); - gcc_assert (result - && TREE_CODE (result) == lto_tag_to_tree_code (expected_tag)); + + if (streamer_debugging) + { + expected_tag = streamer_read_enum (ib, LTO_tags, LTO_NUM_TAGS); + gcc_assert (result + && TREE_CODE (result) == lto_tag_to_tree_code (expected_tag)); + } return result; } diff --git a/gcc/tree-streamer-out.c b/gcc/tree-streamer-out.c index 0b54ffb63f3..7bc97196cf1 100644 --- a/gcc/tree-streamer-out.c +++ b/gcc/tree-streamer-out.c @@ -70,7 +70,8 @@ write_identifier (struct output_block *ob, static inline void pack_ts_base_value_fields (struct bitpack_d *bp, tree expr) { - bp_pack_value (bp, TREE_CODE (expr), 16); + if (streamer_debugging) + bp_pack_value (bp, TREE_CODE (expr), 16); if (!TYPE_P (expr)) { bp_pack_value (bp, TREE_SIDE_EFFECTS (expr), 1);