linux-assembly.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* inline asm mmx: how to movq from memory to %mmX
@ 2007-04-17 13:28 Jack Andrews
  2007-04-17 14:58 ` Robert Plantz
  0 siblings, 1 reply; 2+ messages in thread
From: Jack Andrews @ 2007-04-17 13:28 UTC (permalink / raw)
  To: linux-assembly

hi lin-asm,

i am trying to do some vector addition using MMX and inline assembly
in GCC.  my code follows.

i want the function 'simd' to do the same as 'sisd'

i get these errors when i try to compile:

[jack@fedora i]$ gcc -mmmx v.c
/tmp/ccWXntVc.s: Assembler messages:
/tmp/ccWXntVc.s:19: Error: suffix or operands invalid for `movq'
/tmp/ccWXntVc.s:20: Error: junk `%mm0' after register

[jack@fedora i]$ gcc -v
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/u
sr/share/info --enable-shared --enable-threads=posix --enable-checking=release -
-with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-
libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable
-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.
0/jre --with-cpu=generic --host=i386-redhat-linux
Thread model: posix
gcc version 4.1.0 20060304 (Red Hat 4.1.0-3)


[jack@fedora i]$ cat v.c
#include <string.h>
#include <stdio.h>
#include <stdlib.h>

typedef long I;
typedef char C;
#define IZ sizeof(I)
#define W 2

simd(n, is)
I *is;
{   I i;
    asm("pxor %mm0,%mm0");
    for (i=0; i < n; i += W) {
        asm("movq %0 %%mm1\n\t"
            "paddq %%mm1 %%mm0"
            :
            :"m"(is[i])           );
    }
    return 0;
}

sisd(n, is)
I *is;
{
    I i = 0, j = 0;
    for (i = 0; i < n; i++)
        j += is[i];
    return j;
}

main(c, v)
C **v;
{
    I n = atol(v[1]),
        z = atol(v[2]), m = atol(v[3]), *is = malloc(IZ * (z *= W));
    I result;
    printf("IZ=%d, %s\n",IZ,m?"SIMD":"SISD");
    while (n--)
        result=m?simd(z, is):sisd(z, is);
    printf("%d\n",result);

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

* Re: inline asm mmx: how to movq from memory to %mmX
  2007-04-17 13:28 inline asm mmx: how to movq from memory to %mmX Jack Andrews
@ 2007-04-17 14:58 ` Robert Plantz
  0 siblings, 0 replies; 2+ messages in thread
From: Robert Plantz @ 2007-04-17 14:58 UTC (permalink / raw)
  To: Jack Andrews; +Cc: linux-assembly

You are missing two commas:
        asm("movq %0 %%mm1\n\t"
>             "paddq %%mm1 %%mm0"
> 

should be:
        asm("movq %0, %%mm1\n\t"
            "paddq %%mm1, %%mm0"

I did not check for any other errors, but this now compiles without error on my system.

-- Bob


On Tue, 2007-04-17 at 23:28 +1000, Jack Andrews wrote:

> 
> i get these errors when i try to compile:
> 
> [jack@fedora i]$ gcc -mmmx v.c
> /tmp/ccWXntVc.s: Assembler messages:
> /tmp/ccWXntVc.s:19: Error: suffix or operands invalid for `movq'
> /tmp/ccWXntVc.s:20: Error: junk `%mm0' after register
> 
> [jack@fedora i]$ gcc -v
> Using built-in specs.
> Target: i386-redhat-linux
> Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/u
> sr/share/info --enable-shared --enable-threads=posix --enable-checking=release -
> -with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-
> libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable
> -java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.
> 0/jre --with-cpu=generic --host=i386-redhat-linux
> Thread model: posix
> gcc version 4.1.0 20060304 (Red Hat 4.1.0-3)
> 
> 
> [jack@fedora i]$ cat v.c
> #include <string.h>
> #include <stdio.h>
> #include <stdlib.h>
> 
> typedef long I;
> typedef char C;
> #define IZ sizeof(I)
> #define W 2
> 
> simd(n, is)
> I *is;
> {   I i;
>     asm("pxor %mm0,%mm0");
>     for (i=0; i < n; i += W) {
>         asm("movq %0 %%mm1\n\t"
>             "paddq %%mm1 %%mm0"
>             :
>             :"m"(is[i])           );
>     }
>     return 0;
> }
> 
> sisd(n, is)
> I *is;
> {
>     I i = 0, j = 0;
>     for (i = 0; i < n; i++)
>         j += is[i];
>     return j;
> }
> 



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

end of thread, other threads:[~2007-04-17 14:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-17 13:28 inline asm mmx: how to movq from memory to %mmX Jack Andrews
2007-04-17 14:58 ` Robert Plantz

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 NNTP newsgroup(s).