public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH][ARM] Enable code hoisting with -Os (PR80155)
@ 2019-09-11 15:50 Wilco Dijkstra
  2019-09-12  9:54 ` Richard Biener
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Wilco Dijkstra @ 2019-09-11 15:50 UTC (permalink / raw)
  To: GCC Patches, Kyrylo Tkachov, Richard Earnshaw; +Cc: nd

While code hoisting generally improves codesize, it can affect performance
negatively.  Benchmarking shows it doesn't help SPEC and negatively affects
embedded benchmarks, so only enable code hoisting with -Os on Arm.

Bootstrap OK, OK for commit?

ChangeLog:
2019-09-11  Wilco Dijkstra  <wdijkstr@arm.com>


	PR tree-optimization/80155
	* common/config/arm/arm-common.c (arm_option_optimization_table):
	Enable -fcode-hoisting with -Os.

--
diff --git a/gcc/common/config/arm/arm-common.c b/gcc/common/config/arm/arm-common.c
index 41a920f6dc96833e778faa8dbcc19beac483734c..b0d5fb300bf01acc1fb6f4631635f8a1bfe6441c 100644
--- a/gcc/common/config/arm/arm-common.c
+++ b/gcc/common/config/arm/arm-common.c
@@ -39,6 +39,8 @@ static const struct default_options arm_option_optimization_table[] =
     /* Enable section anchors by default at -O1 or higher.  */
     { OPT_LEVELS_1_PLUS, OPT_fsection_anchors, NULL, 1 },
     { OPT_LEVELS_1_PLUS, OPT_fsched_pressure, NULL, 1 },
+    /* Enable code hoisting only with -Os.  */
+    { OPT_LEVELS_SIZE, OPT_fcode_hoisting, NULL, 1 },
     { OPT_LEVELS_NONE, 0, NULL, 0 }
   };
 

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2019-10-10 10:31 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-11 15:50 [PATCH][ARM] Enable code hoisting with -Os (PR80155) Wilco Dijkstra
2019-09-12  9:54 ` Richard Biener
2019-09-12 11:29   ` Wilco Dijkstra
2019-09-12 11:55     ` Richard Biener
2019-09-14 21:49 ` Prathamesh Kulkarni
2019-09-16 12:58   ` Wilco Dijkstra
2019-09-16 13:31     ` Richard Biener
2019-09-17 17:18       ` Wilco Dijkstra
2019-09-18  8:47         ` Richard Biener
2019-09-18 16:47           ` Prathamesh Kulkarni
2019-09-19  1:28             ` Prathamesh Kulkarni
2019-09-19 10:47               ` Richard Biener
2019-09-19 10:37             ` Richard Biener
2019-10-10 10:40 ` Joey Ye

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).