From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2010) id BC36F385842A; Wed, 1 Dec 2021 17:24:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BC36F385842A To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. f4b4d0f783246dd6f58944cdb542446d5e7589d3 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 185b965c66dfa899dc550b16ef1af33939d82e71 X-Git-Newrev: f4b4d0f783246dd6f58944cdb542446d5e7589d3 Message-Id: <20211201172423.BC36F385842A@sourceware.org> Date: Wed, 1 Dec 2021 17:24:23 +0000 (GMT) From: Eric Gallager X-BeenThere: gcc-cvs-wwwdocs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs-wwwdocs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2021 17:24:23 -0000 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via f4b4d0f783246dd6f58944cdb542446d5e7589d3 (commit) from 185b965c66dfa899dc550b16ef1af33939d82e71 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f4b4d0f783246dd6f58944cdb542446d5e7589d3 Author: Eric Gallager Date: Wed Dec 1 12:24:20 2021 -0500 htdocs/projects/beginner.html: update list of large source files This also rewords the sentences after it to move away from the first person, and adds a shell command that can be used to regenerate the list of large files. diff --git a/htdocs/projects/beginner.html b/htdocs/projects/beginner.html index 589b47c8..5ad00ad8 100644 --- a/htdocs/projects/beginner.html +++ b/htdocs/projects/beginner.html @@ -135,25 +135,33 @@ to take those patches too.

targets:

-	413K combine.c
-	408K dwarf2out.c
-	375K cp/pt.c
-	367K fold-const.c
-	356K loop.c
-	342K cp/decl.c
-	278K expr.c
-	238K cp/class.c
-	234K c-typeck.c
-	233K cse.c
-	231K c-decl.c
-	200K cp/typeck.c
-	168K function.c
+	1.4M	cp/parser.c
+	1000K	dwarf2out.c
+	932K	cp/pt.c
+	684K	c/c-parser.c
+	576K	cp/decl.c
+	516K	cp/module.cc
+	512K	fold-const.c
+	500K	gimplify.c
+	492K	c/c-typeck.c
+	484K	combine.c
+	460K	omp-low.c
+	432K	tree.c
+	408K	expr.c
+	404K	cp/call.c
 
-

There are several other files in this size range, which I have left +

There are several other files in this size range, which are left out because touching them at all is unwise (reload, the Fortran front -end). You can try, but I am not responsible for any damage to your -sanity which may result.

+end). You can try, but breaking them up likely may prove rather +difficult, so beware of the level of challenge before attempting.

+ +

Note that the list of large files in this section is generated with the +following shell command, run from the gcc subdirectory:

+ +
+	du -sh *.{c,h,cc} */*.{c,h,cc} | grep -v fortran | sort -hr | head -n 14
+
  • Remove as much code from parser actions as possible. ----------------------------------------------------------------------- Summary of changes: htdocs/projects/beginner.html | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) hooks/post-receive -- gcc-wwwdocs