public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/104236] New: asm statements containing %= assembler templates getting merged
@ 2022-01-26  0:54 ndesaulniers at google dot com
  2022-01-26  1:18 ` [Bug rtl-optimization/104236] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ndesaulniers at google dot com @ 2022-01-26  0:54 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104236
           Summary: asm statements containing %= assembler templates
                    getting merged
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ndesaulniers at google dot com
                CC: bp at alien8 dot de, jpoimboe at redhat dot com,
                    pinskia at gcc dot gnu.org, segher at kernel dot crashing.org
  Target Milestone: ---

https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#Volatile and
https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html#AssemblerTemplate mention

    > Under certain circumstances, GCC may duplicate (or remove duplicates
    > of) your assembly code when optimizing. This can lead to unexpected
    > duplicate symbol errors during compilation if your asm code defines
    > symbols or labels. Using ‘%=’ (see AssemblerTemplate) may help resolve
    > this problem.
    >
    > ‘%=’ Outputs a number that is unique to each instance of the asm
    > statement in the entire compilation. This option is useful when
    > creating local labels and referring to them multiple times in a single
    > template that generates multiple assembler instructions.

I think I might have found a case where GCC is folding two asm strings that
look identical, but technically contain a %= assembler template.  Perhaps
there's somewhere that checks for parameter equality, and misses checking
whether an asm string contains %= ? (or perhaps %= needs to be expanded
sooner?)

Test files are in:
https://gist.github.com/nickdesaulniers/c2c37edcdbaf3a2deb914d2ea8011a96

I would have expected the inline asm string containing `.Lreachable%=:` (in
media_request_object_complete()) to appear twice in the emitted asm output.  If
I modify one of the two `.Lreachable` asm strings by one character, then I see
both emitted.

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

* [Bug rtl-optimization/104236] asm statements containing %= assembler templates getting merged
  2022-01-26  0:54 [Bug bootstrap/104236] New: asm statements containing %= assembler templates getting merged ndesaulniers at google dot com
@ 2022-01-26  1:18 ` pinskia at gcc dot gnu.org
  2022-01-26  1:25 ` pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-01-26  1:18 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
On the gimple level we have:
  if (_2 == 0)
    goto <bb 4>; [10.00%]
  else
    goto <bb 3>; [90.00%]

  <bb 3> [local count: 966367639]:
  _6 = MEM[(struct media_request
*)media_request_object_complete_obj.0_1].state;
  if (_6 != 0)
    goto <bb 5>; [10.00%]
  else
    goto <bb 6>; [90.00%]

  <bb 4> [local count: 107374184]:
  __asm__ __volatile__(".byte 0x0f, 0x0b");
  __asm__ __volatile__(".Lreachable%=:
        .pushsection .discard.reachable
        .long .Lreachable%= - .
        .popsection
        " :  :  : "memory");
  _raw_spin_unlock_irqrestore (pretmp_46, 0); [tail call]
  goto <bb 10>; [100.00%]

  <bb 5> [local count: 96636765]:
  __asm__ __volatile__(".byte 0x0f, 0x0b" :  : "i" 0);
  __asm__ __volatile__(".Lreachable%=:
        .pushsection .discard.reachable
        .long .Lreachable%= - .
        .popsection
        " :  :  : "memory");
  _raw_spin_unlock_irqrestore (pretmp_46, 0); [tail call]
  goto <bb 10>; [100.00%]

So what the RTL level is doing looks fine, BB 4 and BB 5 are exactly the same
so its combining the two.

I don't see why this is a bug.
The documentation does have:
> (or remove duplicates of)


%= is only matters at the end.

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

* [Bug rtl-optimization/104236] asm statements containing %= assembler templates getting merged
  2022-01-26  0:54 [Bug bootstrap/104236] New: asm statements containing %= assembler templates getting merged ndesaulniers at google dot com
  2022-01-26  1:18 ` [Bug rtl-optimization/104236] " pinskia at gcc dot gnu.org
@ 2022-01-26  1:25 ` pinskia at gcc dot gnu.org
  2022-01-26  1:39 ` ndesaulniers at google dot com
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-01-26  1:25 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |INVALID
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
>or perhaps %= needs to be expanded sooner?

The basic blocks are exactly the same. The %= is only there to resolve the
issue where GCC duplicates the inline-asm and needs to be resolved at the end
of compiling when outputting the asm itself.

I don't see why even in this case would cause a problem as you have an
inline-asm which is the same as the other and they are combined together.

I think the original code should have had the two inline-asm combined together
instead of having them seperated.
That is:

  __asm__ __volatile__(".byte 0x0f, 0x0b\n"
  ".Lreachable%=:
        .pushsection .discard.reachable
        .long .Lreachable%= - .
        .popsection
        " :  :  : "memory");

....

  __asm__ __volatile__(".byte 0x0f, 0x0b\n"
  ".Lreachable%=:
        .pushsection .discard.reachable
        .long .Lreachable%= - .
        .popsection
        " :  "i"(0)  : "memory");

That will fix the issue at hand in the code itself really.
Even if you used 1: and 1b inside the inline-asm you would run into the same
issue.

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

* [Bug rtl-optimization/104236] asm statements containing %= assembler templates getting merged
  2022-01-26  0:54 [Bug bootstrap/104236] New: asm statements containing %= assembler templates getting merged ndesaulniers at google dot com
  2022-01-26  1:18 ` [Bug rtl-optimization/104236] " pinskia at gcc dot gnu.org
  2022-01-26  1:25 ` pinskia at gcc dot gnu.org
@ 2022-01-26  1:39 ` ndesaulniers at google dot com
  2022-01-26  1:44 ` pinskia at gcc dot gnu.org
  2022-01-26  1:52 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: ndesaulniers at google dot com @ 2022-01-26  1:39 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Nick Desaulniers <ndesaulniers at google dot com> ---
Thanks for the feedback. I guess I was expecting these two to be somewhat
equivalent:

void x (int a) {
    if (a)
        asm("# %0"::"i"(__COUNTER__));
    else
        asm("# %0"::"i"(__COUNTER__));
}

void y (int a) {
    if (a)
        asm("# %=");
    else
        asm("# %=");
}

as was attempted in kernel commit

commit 3d1e236022cc ("objtool: Prevent GCC from merging
annotate_unreachable()")

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

* [Bug rtl-optimization/104236] asm statements containing %= assembler templates getting merged
  2022-01-26  0:54 [Bug bootstrap/104236] New: asm statements containing %= assembler templates getting merged ndesaulniers at google dot com
                   ` (2 preceding siblings ...)
  2022-01-26  1:39 ` ndesaulniers at google dot com
@ 2022-01-26  1:44 ` pinskia at gcc dot gnu.org
  2022-01-26  1:52 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-01-26  1:44 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Nick Desaulniers from comment #3)
> Thanks for the feedback. I guess I was expecting these two to be somewhat
> equivalent:
> 
> void x (int a) {
>     if (a)
>         asm("# %0"::"i"(__COUNTER__));
>     else
>         asm("# %0"::"i"(__COUNTER__));
> }
> 
> void y (int a) {
>     if (a)
>         asm("# %=");
>     else
>         asm("# %=");
> }

They are not. I was just about going to suggest the use of __COUNTER__ as the
correct way of implementing the inline-asm also.

For GCC, %= gets resolved at the very end of compiling when outputting the asm
to the output file.

GCC does touch the string or look into the inline-asm string during compiling
except to duplicate it or to see if it is an exact match (remove duplicates).

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

* [Bug rtl-optimization/104236] asm statements containing %= assembler templates getting merged
  2022-01-26  0:54 [Bug bootstrap/104236] New: asm statements containing %= assembler templates getting merged ndesaulniers at google dot com
                   ` (3 preceding siblings ...)
  2022-01-26  1:44 ` pinskia at gcc dot gnu.org
@ 2022-01-26  1:52 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-01-26  1:52 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
You can still use %= if you want and combine it with the input constraint with
counter.
That is:
void y (int a) {
    if (a)
        asm("# %="::"i"(__COUNTER__));
    else
        asm("# %="::"i"(__COUNTER__));
}

That way if you still get the same version to use between the two compilers if
clang does not have __COUNTER__.

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

end of thread, other threads:[~2022-01-26  1:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-26  0:54 [Bug bootstrap/104236] New: asm statements containing %= assembler templates getting merged ndesaulniers at google dot com
2022-01-26  1:18 ` [Bug rtl-optimization/104236] " pinskia at gcc dot gnu.org
2022-01-26  1:25 ` pinskia at gcc dot gnu.org
2022-01-26  1:39 ` ndesaulniers at google dot com
2022-01-26  1:44 ` pinskia at gcc dot gnu.org
2022-01-26  1:52 ` pinskia at gcc dot gnu.org

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).