public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/109057] Does GCC interpret assembly when deciding to optimize away a variable?
Date: Tue, 07 Mar 2023 17:44:06 +0000	[thread overview]
Message-ID: <bug-109057-4-2cxXwubvEQ@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-109057-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109057

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
(In reply to Henry from comment #9)
> Just to make it clear, I'm not saying this is a bug on GCC. 
> 
> Im just trying to understand what is happening since this is affecting some
> of our benchmarks. Then we can counter with some wit. 
> 
> Perhaps there is an alternate venue for this type of clarification? I tried
> Reddit but no dice. The GCC IRC channel perhaps?

If you use
inline void DoNotOptimize( unsigned int value) {
  asm volatile("" : : "r,m"(value) : "memory");
}
static const unsigned char LUT[8] = {1,5,3,0,2,7,1,2};
void func1(unsigned int val) {
    DoNotOptimize(LUT[val]); 
}
then obviously it can't choose the "m" variant for value, because value is
32-bit,
while LUT(%rdi) is 8-bit.  So it can choose only "r" variant and therefore it
needs
to emit an instruction that computes that (zero extends the value).
If you change LUT array to be const unsigned int LUT[8], then "m" variant can
be selected (and is in my testing).

      parent reply	other threads:[~2023-03-07 17:44 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-07 17:07 [Bug c++/109057] New: " hbucher at gmail dot com
2023-03-07 17:17 ` [Bug middle-end/109057] " hbucher at gmail dot com
2023-03-07 17:22 ` pinskia at gcc dot gnu.org
2023-03-07 17:27 ` jakub at gcc dot gnu.org
2023-03-07 17:28 ` hbucher at gmail dot com
2023-03-07 17:29 ` jakub at gcc dot gnu.org
2023-03-07 17:31 ` hbucher at gmail dot com
2023-03-07 17:32 ` jakub at gcc dot gnu.org
2023-03-07 17:32 ` pinskia at gcc dot gnu.org
2023-03-07 17:38 ` hbucher at gmail dot com
2023-03-07 17:44 ` jakub at gcc dot gnu.org [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=bug-109057-4-2cxXwubvEQ@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@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).