From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1075) id 439073847837; Sun, 16 May 2021 18:16:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 439073847837 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jan Hubicka To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/hubicka/heads/honza-gcc-benchmark-branch-v2)] Very cheap vectorization once again. X-Act-Checkin: gcc X-Git-Author: Jan Hubicka X-Git-Refname: refs/users/hubicka/heads/honza-gcc-benchmark-branch-v2 X-Git-Oldrev: 4f5431c5768bbba81a422f6fed6a6e2454c700ee X-Git-Newrev: ea21f32198432a490dd490696322838d94b3d3b2 Message-Id: <20210516181610.439073847837@sourceware.org> Date: Sun, 16 May 2021 18:16:10 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 May 2021 18:16:10 -0000 https://gcc.gnu.org/g:ea21f32198432a490dd490696322838d94b3d3b2 commit ea21f32198432a490dd490696322838d94b3d3b2 Author: Jan Hubicka Date: Sun May 16 20:15:53 2021 +0200 Very cheap vectorization once again. Diff: --- gcc/ChangeLog.honza | 2 +- gcc/opts.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog.honza b/gcc/ChangeLog.honza index 798ee64a93c..ef80ceb87cf 100644 --- a/gcc/ChangeLog.honza +++ b/gcc/ChangeLog.honza @@ -1,2 +1,2 @@ - mainline - - mainline + cheap vectorization O2 and O3 + - mainline + very cheap vectorization O2 and O3 diff --git a/gcc/opts.c b/gcc/opts.c index d7b69d7bd91..5afa4e965a6 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -508,7 +508,7 @@ static const struct default_options default_options_table[] = { OPT_LEVELS_2_PLUS, OPT_ftree_switch_conversion, NULL, 1 }, { OPT_LEVELS_2_PLUS, OPT_ftree_tail_merge, NULL, 1 }, { OPT_LEVELS_2_PLUS, OPT_ftree_vrp, NULL, 1 }, - { OPT_LEVELS_2_PLUS, OPT_fvect_cost_model_, NULL, VECT_COST_MODEL_CHEAP }, + { OPT_LEVELS_2_PLUS, OPT_fvect_cost_model_, NULL, VECT_COST_MODEL_VERY_CHEAP }, { OPT_LEVELS_2_PLUS, OPT_finline_functions, NULL, 1 }, { OPT_LEVELS_2_PLUS, OPT_ftree_loop_distribute_patterns, NULL, 1 }, { OPT_LEVELS_2_PLUS, OPT_ftree_loop_vectorize, NULL, 1 }, @@ -541,6 +541,7 @@ static const struct default_options default_options_table[] = { OPT_LEVELS_3_PLUS, OPT_ftree_loop_distribution, NULL, 1 }, { OPT_LEVELS_3_PLUS, OPT_ftree_partial_pre, NULL, 1 }, { OPT_LEVELS_3_PLUS, OPT_funswitch_loops, NULL, 1 }, + { OPT_LEVELS_3_PLUS, OPT_fvect_cost_model_, NULL, VECT_COST_MODEL_VERY_CHEAP }, { OPT_LEVELS_3_PLUS, OPT_fversion_loops_for_strides, NULL, 1 }, /* -O3 parameters. */