All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jeremy Fitzhardinge <jeremy@goop.org>
To: Al Viro <viro@ftp.linux.org.uk>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
	David Miller <davem@davemloft.net>,
	hpa@zytor.com, kaos@ocs.com.au, xyzzy@speakeasy.org,
	linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org
Subject: Re: [PATCH][RFC] getting rid of stupid loop in BUG()
Date: Wed, 25 Jul 2007 10:41:27 -0700	[thread overview]
Message-ID: <46A78B47.1070500@goop.org> (raw)
In-Reply-To: <20070725171956.GF27237@ftp.linux.org.uk>

Al Viro wrote:
> On Wed, Jul 25, 2007 at 09:56:12AM -0700, Linus Torvalds wrote:
>   
>> On Tue, 24 Jul 2007, David Miller wrote:
>>     
>>> From: Jeremy Fitzhardinge <jeremy@goop.org>
>>> Date: Tue, 24 Jul 2007 23:24:55 -0700
>>>
>>>       
>>>> H. Peter Anvin wrote:
>>>>         
>>>>> How far back was __builtin_trap() supported?
>>>>>           
>>>> I think its relatively recent, but it might be within our supported
>>>> compiler window.
>>>>         
>>> I'm pretty sure it is.
>>>       
>> .. and I'm pretty sure it's immaterial.
>>
>> We don't just do the "ud2" instruction - we also do the file and line 
>> number information after it. Which means that __builtin_trap() is useless.
>>
>> So we might as well keep the loop, since both are two-byte instructions 
>> that tell gcc that it will never continue.
>>     
>
> Umm...  Actually, we might be able to do something like
> {
> 	l: __builtin_trap();
> 	static struct ... v __attribute__((section(...))) = { &&l, n, file };
> }
>
> except that it would need block-local labels and those are ugly (so's
> &&<label>, while we are at it)...
>   

I couldn't get it to work.  It would be nice, because it would more or
less eliminate the need for asm in setting up BUGs - particularly the
nasty asm setting up the structure.

But it just doesn't work.  The label &&l ends up pointing to is not
anywhere near the __builtin_trap instruction; I found it tended to point
to the start of the function prologue.

I reported it as a gcc bug, but they refused to hear of it.  Details at
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29305

    J
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>   


  parent reply	other threads:[~2007-07-25 17:42 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-24 15:39 [PATCH][RFC] getting rid of stupid loop in BUG() Al Viro
2007-07-24 16:56 ` Jeremy Fitzhardinge
2007-07-24 17:03   ` H. Peter Anvin
2007-07-24 17:14   ` Al Viro
2007-07-24 17:28     ` H. Peter Anvin
2007-07-24 18:58       ` Jeremy Fitzhardinge
2007-07-24 19:01         ` H. Peter Anvin
2007-07-24 19:13     ` Jeremy Fitzhardinge
2007-07-24 20:04       ` Al Viro
2007-07-24 21:14         ` Jeremy Fitzhardinge
2007-07-25  2:31 ` Trent Piepho
2007-07-25  2:50   ` Keith Owens
2007-07-25  5:09     ` H. Peter Anvin
2007-07-25  6:24       ` Jeremy Fitzhardinge
2007-07-25  6:29         ` David Miller
2007-07-25  6:50           ` Heiko Carstens
2007-07-25 16:56           ` Linus Torvalds
2007-07-25 17:00             ` Jeremy Fitzhardinge
2007-07-25 17:03               ` H. Peter Anvin
2007-07-25 17:19               ` Linus Torvalds
2007-07-25 17:25                 ` Al Viro
2007-07-25 17:36                   ` Jeremy Fitzhardinge
2007-07-25 19:35                     ` David Miller
2007-07-25 20:26                       ` H. Peter Anvin
2007-07-25 19:28               ` David Miller
2007-07-25 17:19             ` Al Viro
2007-07-25 17:22               ` H. Peter Anvin
2007-07-25 17:26                 ` Al Viro
2007-07-25 17:35                   ` David Howells
2007-07-25 17:41               ` Jeremy Fitzhardinge [this message]
2007-07-25 20:29                 ` Chuck Ebbert
2007-07-25 20:37                   ` H. Peter Anvin
2007-07-25 22:01                     ` David Miller
2007-07-25 18:24               ` Linus Torvalds
2007-07-25 17:36             ` Al Viro
2007-07-25 17:44               ` Jeremy Fitzhardinge

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=46A78B47.1070500@goop.org \
    --to=jeremy@goop.org \
    --cc=davem@davemloft.net \
    --cc=hpa@zytor.com \
    --cc=kaos@ocs.com.au \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=viro@ftp.linux.org.uk \
    --cc=xyzzy@speakeasy.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.