public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jeff Law <jeffreyalaw@gmail.com>
To: "gcc-patches@gcc.gnu.org" <gcc-patches@gcc.gnu.org>
Subject: [committed] Enable REE for H8
Date: Mon, 17 Oct 2022 17:38:11 -0600	[thread overview]
Message-ID: <0ac60d36-8412-b8fe-44e3-0be5836717df@gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]


I was looking at H8 assembly code recently and noticed we had 
unnecessary extensions.  As it turns out we never enabled redundant 
extension elimination on the H8.  This patch fixes that oversight (and 
was the trigger for the failure fixed my the prior patch).


Regression tested along with a bit of other in-progress work. Committing 
to the trunk.


Jeff

[-- Attachment #2: P --]
[-- Type: text/plain, Size: 1256 bytes --]

commit 566c5f1aaae120d2283103e68ecf1c1a83dd4459
Author: Jeff Law <jeffreyalaw@gmail.com>
Date:   Mon Oct 17 19:28:00 2022 -0400

    Enable REE for H8
    
    I was looking at H8 assembly code recently and noticed we had unnecessary
    extensions.  As it turns out we never enabled redundant extension elimination
    on the H8.  This patch fixes that oversight (and was the trigger for the
    failure fixed my the prior patch).
    
    gcc/common
    
            * common/config/h8300/h8300-common.cc (h8300_option_optimization_table):
            Enable redundant extension elimination at -O2 and above.

diff --git a/gcc/common/config/h8300/h8300-common.cc b/gcc/common/config/h8300/h8300-common.cc
index bfbda22006b..22e2cfcb7b2 100644
--- a/gcc/common/config/h8300/h8300-common.cc
+++ b/gcc/common/config/h8300/h8300-common.cc
@@ -32,6 +32,8 @@ static const struct default_options h8300_option_optimization_table[] =
        and/or variable-cycle branches where (cycle count taken !=
        cycle count not taken).  */
     { OPT_LEVELS_ALL, OPT_freorder_blocks, NULL, 0 },
+    /* Enable redundant extension instructions removal at -O2 and higher.  */
+    { OPT_LEVELS_2_PLUS, OPT_free, NULL, 1 },
     { OPT_LEVELS_NONE, 0, NULL, 0 }
   };
 

                 reply	other threads:[~2022-10-17 23:38 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0ac60d36-8412-b8fe-44e3-0be5836717df@gmail.com \
    --to=jeffreyalaw@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).