public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "rguenth at gcc dot gnu dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/39804] [4.5 Regression] internal compiler error: in propagate_necessity, at tree-ssa-dce.c:754
Date: Sat, 18 Apr 2009 10:22:00 -0000	[thread overview]
Message-ID: <20090418102214.23420.qmail@sourceware.org> (raw)
In-Reply-To: <bug-39804-1673@http.gcc.gnu.org/bugzilla/>



------- Comment #4 from rguenth at gcc dot gnu dot org  2009-04-18 10:22 -------
typedef unsigned char u8;
struct __large_struct { unsigned long buf[100]; };
static inline __attribute__((always_inline)) unsigned long
__copy_from_user_inatomic(void *to, const void *from, unsigned long n)
{
  unsigned long ret = 0;
  asm volatile("1:      mov""b"" %2,%""b""1\n" "2:\n"
               ".section .fixup,\"ax\"\n"
               "3:      mov %3,%0\n"
               "        xor""b"" %""b""1,%""b""1\n"
               "        jmp 2b\n"
               ".previous\n"
               " .section __ex_table,\"a\"\n"
               " " ".balign 4" " " "\n"
               " " ".long" " " "1b" "," "3b" "\n"
               " .previous\n"
               : "=r" (ret), "=q"(*(u8 *)to)
               : "m" ((*(struct __large_struct *)(from))), "i" (1), "0" (ret));
  return ret;
}
int romchecksum(const unsigned char *rom, unsigned char c) 
{   
  unsigned char sum;
  for (sum = 0;
       !__copy_from_user_inatomic(&(c), ( typeof(c) *)(rom++), sizeof(c));)
    sum += c;
}

Likely some missed corner-case in walking address-taken operations in asms.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39804


  parent reply	other threads:[~2009-04-18 10:22 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-18  9:51 [Bug tree-optimization/39804] New: " segher at kernel dot crashing dot org
2009-04-18  9:53 ` [Bug tree-optimization/39804] " segher at kernel dot crashing dot org
2009-04-18 10:03 ` rguenth at gcc dot gnu dot org
2009-04-18 10:05 ` rguenth at gcc dot gnu dot org
2009-04-18 10:06 ` [Bug tree-optimization/39804] [4.5 Regression] " rguenth at gcc dot gnu dot org
2009-04-18 10:22 ` rguenth at gcc dot gnu dot org [this message]
2009-04-18 13:02 ` rguenth at gcc dot gnu dot org
2009-04-18 13:02 ` rguenth at gcc dot gnu dot org
2009-04-18 14:55 ` hjl at gcc dot gnu dot org
2009-04-19 19:39 ` segher at kernel dot crashing dot org

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=20090418102214.23420.qmail@sourceware.org \
    --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).