PR target/42774
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Jan 2010 17:46:17 +0000 (17:46 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Jan 2010 17:46:17 +0000 (17:46 +0000)
* config/alpha/predicates.md (aligned_memory_operand): Return 0 for
memory references with unaligned offsets.  Remove CQImode handling.
(unaligned_memory_operand): Return 1 for memory references with
unaligned offsets.  Remove CQImode handling.

testsuite/ChangeLog:

PR target/42774
* gcc.target/alpha/pr42774.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156017 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/alpha/predicates.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/alpha/pr42774.c [new file with mode: 0644]

index 795b89c..14e8f8f 100644 (file)
@@ -1,3 +1,11 @@
+2010-01-18  Uros Bizjak  <ubizjak@gmail.com>
+
+       PR target/42774
+       * config/alpha/predicates.md (aligned_memory_operand): Return 0 for
+       memory references with unaligned offsets.  Remove CQImode handling.
+       (unaligned_memory_operand): Return 1 for memory references with
+       unaligned offsets.  Remove CQImode handling.
+
 2010-01-18  Richard Guenther  <rguenther@suse.de>
 
        PR middle-end/39954
index b52d9dc..0852f69 100644 (file)
        (match_code "mem"))
 {
   rtx base;
+  int offset;
 
   if (MEM_ALIGN (op) >= 32)
     return 1;
 
-  if (mode == CQImode)
-    return 0;
-
   op = XEXP (op, 0);
 
   /* LEGITIMIZE_RELOAD_ADDRESS creates (plus (plus reg const_hi) const_lo)
   if (reload_in_progress
       && GET_CODE (op) == PLUS
       && GET_CODE (XEXP (op, 0)) == PLUS)
-    base = XEXP (XEXP (op, 0), 0);
+    {
+      base = XEXP (XEXP (op, 0), 0);
+      offset = INTVAL (XEXP (op, 1));
+    }
   else
     {
       if (! memory_address_p (mode, op))
        return 0;
-      base = (GET_CODE (op) == PLUS ? XEXP (op, 0) : op);
+      if (GET_CODE (op) == PLUS)
+       {
+         base = XEXP (op, 0);
+         offset = INTVAL (XEXP (op, 1));
+       }
+      else
+       {
+         base = op;
+         offset = 0;
+       }
     }
 
+  if (offset % GET_MODE_SIZE (mode))
+    return 0;
+
   return (REG_P (base) && REGNO_POINTER_ALIGN (REGNO (base)) >= 32);
 })
 
        (match_code "mem"))
 {
   rtx base;
+  int offset;
 
   if (MEM_ALIGN (op) >= 32)
     return 0;
 
-  if (mode == CQImode)
-    return 1;
-
   op = XEXP (op, 0);
 
   /* LEGITIMIZE_RELOAD_ADDRESS creates (plus (plus reg const_hi) const_lo)
   if (reload_in_progress
       && GET_CODE (op) == PLUS
       && GET_CODE (XEXP (op, 0)) == PLUS)
-    base = XEXP (XEXP (op, 0), 0);
+    {
+      base = XEXP (XEXP (op, 0), 0);
+      offset = INTVAL (XEXP (op, 1));
+    }
   else
     {
       if (! memory_address_p (mode, op))
        return 0;
-      base = (GET_CODE (op) == PLUS ? XEXP (op, 0) : op);
+      if (GET_CODE (op) == PLUS)
+       {
+         base = XEXP (op, 0);
+         offset = INTVAL (XEXP (op, 1));
+       }
+      else
+       {
+         base = op;
+         offset = 0;
+       }
     }
 
+  if (offset % GET_MODE_SIZE (mode))
+    return 1;
+
   return (REG_P (base) && REGNO_POINTER_ALIGN (REGNO (base)) < 32);
 })
 
index dabbca1..2b0d96d 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-18  Uros Bizjak  <ubizjak@gmail.com>
+
+       PR target/42774
+       * gcc.target/alpha/pr42774.c: New test.
+
 2010-01-18  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/42781
diff --git a/gcc/testsuite/gcc.target/alpha/pr42774.c b/gcc/testsuite/gcc.target/alpha/pr42774.c
new file mode 100644 (file)
index 0000000..6568800
--- /dev/null
@@ -0,0 +1,10 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -mcpu=ev4" } */
+
+unsigned int ntfs_getinfo(void *p)
+{
+    char bootsect[8];
+
+    __builtin_memcpy(bootsect, p, sizeof bootsect);
+    return *(unsigned short *)(bootsect + 3);
+}