public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/42165]  New: -masm=intel doesn't know how to print AVX instructions
@ 2009-11-24 17:37 matti dot niemenmaa+gccbugs at iki dot fi
  2009-11-24 18:04 ` [Bug target/42165] " jakub at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: matti dot niemenmaa+gccbugs at iki dot fi @ 2009-11-24 17:37 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1284 bytes --]

Using -masm=intel and -mavx together with something that uses a 256-bit vector
causes an internal error:

$ gcc arst.c -mavx -masm=intel
arst.c: In function ‘foo’:
arst.c:2: internal compiler error: in print_operand, at
config/i386/i386.c:11324

$ cat arst.c
typedef unsigned long vec __attribute__((vector_size(32)));
void foo(vec a) {}

$ gcc -v
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with: ../configure --prefix=/usr --enable-shared
--enable-languages=c,c++,fortran,objc,obj-c++,ada --enable-threads=posix
--mandir=/usr/share/man --infodir=/usr/share/info --enable-__cxa_atexit
--disable-multilib --libdir=/usr/lib --libexecdir=/usr/lib --enable-clocale=gnu
--disable-libstdcxx-pch --with-tune=generic
Thread model: posix
gcc version 4.4.2 (GCC)


-- 
           Summary: -masm=intel doesn't know how to print AVX instructions
           Product: gcc
           Version: 4.4.2
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: matti dot niemenmaa+gccbugs at iki dot fi
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu


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


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

* [Bug target/42165] -masm=intel doesn't know how to print AVX instructions
  2009-11-24 17:37 [Bug target/42165] New: -masm=intel doesn't know how to print AVX instructions matti dot niemenmaa+gccbugs at iki dot fi
@ 2009-11-24 18:04 ` jakub at gcc dot gnu dot org
  2009-11-25 20:21 ` jakub at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-11-24 18:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from jakub at gcc dot gnu dot org  2009-11-24 18:04 -------
--- gcc/config/i386/i386.c        2009-11-24 09:59:29.000000000 +0100
+++ gcc/config/i386/i386.c        2009-11-24 19:03:24.871058078 +0100
@@ -11849,6 +11849,7 @@ print_operand (FILE *file, rtx x, int co
               else
                 size = "XMMWORD";
               break;
+            case 32: size = "YMMWORD"; break;      
             default:
               gcc_unreachable ();
             }

should fix this.  Will test it soon.


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jakub at gcc dot gnu dot org
                   |dot org                     |
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2009-11-24 18:04:38
               date|                            |


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


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

* [Bug target/42165] -masm=intel doesn't know how to print AVX instructions
  2009-11-24 17:37 [Bug target/42165] New: -masm=intel doesn't know how to print AVX instructions matti dot niemenmaa+gccbugs at iki dot fi
  2009-11-24 18:04 ` [Bug target/42165] " jakub at gcc dot gnu dot org
@ 2009-11-25 20:21 ` jakub at gcc dot gnu dot org
  2009-11-25 20:54 ` jakub at gcc dot gnu dot org
  2009-11-25 22:55 ` jakub at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-11-25 20:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jakub at gcc dot gnu dot org  2009-11-25 20:20 -------
Subject: Bug 42165

Author: jakub
Date: Wed Nov 25 20:20:40 2009
New Revision: 154652

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154652
Log:
        PR target/42165
        * config/i386/i386.c (print_operand): For 32-byte memory use
        YMMWORD in -masm=intel mode.  Use TBYTE instead of XWORD.
        * config/i386/i386.md (crc32modesuffix): Expand to nothing
        in -masm=intel mode.
        (sse4_2_crc32di): Print just crc32 instead of crc32q in
        -masm=intel mode.
        * config/i386/mmx.md (*mmx_pinsrw): Print correct size of
        memory operand in -masm=intel mode.
        * config/i386/sse.md (*avx_pinsr<ssevecsize>, *sse4_1_pinsrb,
        *sse2_pinsrw): Likewise.
        (sse_cvtss2siq, sse_cvtss2siq_2, sse_cvttss2siq): Don't print
        q suffix in -masm=intel mode.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.c
    trunk/gcc/config/i386/i386.md
    trunk/gcc/config/i386/mmx.md
    trunk/gcc/config/i386/sse.md


-- 


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


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

* [Bug target/42165] -masm=intel doesn't know how to print AVX instructions
  2009-11-24 17:37 [Bug target/42165] New: -masm=intel doesn't know how to print AVX instructions matti dot niemenmaa+gccbugs at iki dot fi
  2009-11-24 18:04 ` [Bug target/42165] " jakub at gcc dot gnu dot org
  2009-11-25 20:21 ` jakub at gcc dot gnu dot org
@ 2009-11-25 20:54 ` jakub at gcc dot gnu dot org
  2009-11-25 22:55 ` jakub at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-11-25 20:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jakub at gcc dot gnu dot org  2009-11-25 20:54 -------
Subject: Bug 42165

Author: jakub
Date: Wed Nov 25 20:54:12 2009
New Revision: 154655

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154655
Log:
        PR target/42165
        * config/i386/i386.c (print_operand): For 32-byte memory use
        YMMWORD in -masm=intel mode.  Use TBYTE instead of XWORD.
        * config/i386/i386.md (crc32modesuffix): Expand to nothing
        in -masm=intel mode.
        (sse4_2_crc32di): Print just crc32 instead of crc32q in
        -masm=intel mode.
        * config/i386/mmx.md (*mmx_pinsrw): Print correct size of
        memory operand in -masm=intel mode.
        * config/i386/sse.md (*avx_pinsr<ssevecsize>, *sse4_1_pinsrb,
        *sse2_pinsrw): Likewise.
        (sse_cvtss2siq, sse_cvtss2siq_2, sse_cvttss2siq): Don't print
        q suffix in -masm=intel mode.

Modified:
    branches/gcc-4_4-branch/gcc/ChangeLog
    branches/gcc-4_4-branch/gcc/config/i386/i386.c
    branches/gcc-4_4-branch/gcc/config/i386/i386.md
    branches/gcc-4_4-branch/gcc/config/i386/mmx.md
    branches/gcc-4_4-branch/gcc/config/i386/sse.md


-- 


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


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

* [Bug target/42165] -masm=intel doesn't know how to print AVX instructions
  2009-11-24 17:37 [Bug target/42165] New: -masm=intel doesn't know how to print AVX instructions matti dot niemenmaa+gccbugs at iki dot fi
                   ` (2 preceding siblings ...)
  2009-11-25 20:54 ` jakub at gcc dot gnu dot org
@ 2009-11-25 22:55 ` jakub at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-11-25 22:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jakub at gcc dot gnu dot org  2009-11-25 22:54 -------
Fixed for 4.4/4.5.


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2009-11-25 22:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-24 17:37 [Bug target/42165] New: -masm=intel doesn't know how to print AVX instructions matti dot niemenmaa+gccbugs at iki dot fi
2009-11-24 18:04 ` [Bug target/42165] " jakub at gcc dot gnu dot org
2009-11-25 20:21 ` jakub at gcc dot gnu dot org
2009-11-25 20:54 ` jakub at gcc dot gnu dot org
2009-11-25 22:55 ` jakub at gcc dot gnu dot 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).