public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jeff Law <jeffreyalaw@gmail.com>
To: Manolis Tsamis <manolis.tsamis@vrull.eu>
Cc: Vineet Gupta <vineetg@rivosinc.com>,
	gcc-patches@gcc.gnu.org,
	Philipp Tomsich <philipp.tomsich@vrull.eu>,
	Richard Biener <richard.guenther@gmail.com>,
	Jakub Jelinek <jakub@redhat.com>,
	gnu-toolchain <gnu-toolchain@rivosinc.com>
Subject: Re: [PATCH v3] Implement new RTL optimizations pass: fold-mem-offsets.
Date: Mon, 7 Aug 2023 11:13:09 -0600	[thread overview]
Message-ID: <5389a634-6935-97a1-45d2-f106f867e878@gmail.com> (raw)
In-Reply-To: <CAM3yNXqw=m8N32Zx7UrzXbULPTTWqCmmz3F33xmO1itpExQv6A@mail.gmail.com>



On 8/7/23 08:44, Manolis Tsamis wrote:
> I have sent out a new v4 of this
> (https://gcc.gnu.org/pipermail/gcc-patches/2023-August/626502.html).
> 
> In the new version I both restore the INSN_CODE as mentioned here and
> I also call recog when I commit the offset change (because there may
> be a change from no offset to some offsets).
> I have also removed the driver function as per Vineet's suggestion.
> 
> Last thing I have fixed a nasty bug with REG_EQUIV's that resulted in
> failing bootstrap on AArch64.
> 
> The offending sequence looked like this (in 'simplified RTX'):
> 
> (set (reg/f:DI 3 x3)
>          (plus:DI (reg/f:DI 2 x2)
>              (const_int 8 [0x8])))
> (set (reg/f:DI 19 x19)
>          (plus:DI (reg/f:DI 3 x3)
>              (reg:DI 19 x19)))
> ...
> (set (reg:TI 2 x2)
>          (mem:TI (reg/f:DI 0 x0)))
>       (expr_list:REG_DEAD (reg/f:DI 0 x0)
>          (expr_list:REG_EQUIV (mem:TI (reg/f:DI 19 x19))
>              (nil)))
> (set (mem:TI (reg/f:DI 19 x19))
>          (reg:TI 2 x2))
>       (expr_list:REG_DEAD (reg/f:DI 19 x19)
>          (expr_list:REG_DEAD (reg:TI 2 x2)
>              (nil)))
> 
> Were the first instruction (x3 = x2 + 8) was folded in the address
> calculation of the last one, resulting in (mem:TI (plus:DI (reg/f:DI
> 19 x19) (const_int 8 [0x8])), but then the previous REG_EQUIV was
> incorrect due to the modified runtime value of x19.
> For now I opted to treat REG_EQ/EQUIV notes as uses that we cannot
> handle, so if any of them are involved we don't fold offsets. Although
> it would may be possible to improve this in the future, I think it's
> fine for now and the reduction of folded insns is a small %.
> I have tested v4 with a number of benchmarks and large projects on
> x64, aarch64 and riscv64 without observing any issues. The x86
> testsuite issue still exists as I don't have a satisfactory solution
> to it yet.
> 
> Any feedback for the changes is appreciated!
Thanks for the explanation.  You could just remove the REG_EQUIV note. 
It's not used much after allocation & reloading.  Or just ignoring those 
insns as you've done seems reasonable as well.  I doubt one approach is 
clear better than the other.

jeff

      reply	other threads:[~2023-08-07 17:13 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-13 14:13 Manolis Tsamis
2023-07-13 15:05 ` Manolis Tsamis
2023-07-14  5:35   ` Jeff Law
2023-07-18 17:15     ` Manolis Tsamis
2023-07-18 18:01       ` Jeff Law
2023-07-18 23:42         ` Vineet Gupta
2023-07-19  4:31           ` Jeff Law
2023-07-19  8:08             ` Manolis Tsamis
2023-07-19 14:16               ` Jeff Law
2023-07-20  6:18             ` Vineet Gupta
2023-07-20 21:59               ` Jeff Law
2023-08-07 14:44                 ` Manolis Tsamis
2023-08-07 17:13                   ` Jeff Law [this message]

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=5389a634-6935-97a1-45d2-f106f867e878@gmail.com \
    --to=jeffreyalaw@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=gnu-toolchain@rivosinc.com \
    --cc=jakub@redhat.com \
    --cc=manolis.tsamis@vrull.eu \
    --cc=philipp.tomsich@vrull.eu \
    --cc=richard.guenther@gmail.com \
    --cc=vineetg@rivosinc.com \
    /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).