linux-assembly.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* paddw vs paddb
@ 2004-12-23 10:59 Ankit Jain
  2004-12-24  9:01 ` Maciej Hrebien
  0 siblings, 1 reply; 6+ messages in thread
From: Ankit Jain @ 2004-12-23 10:59 UTC (permalink / raw)
  To: assembly

      1 #include<stdio.h>
      2 #include<inttypes.h>
      3 int main()
      4 {
      5         uint8_t
a[8]={1,2,3,4,5,6,7,8},b[8]={1,2,3,4,5,6,7,8},i;
      6         asm("movq (%1), %%mm0 \n"
      7             "paddb (%0), %%mm0 \n"
      8             "movq  %%mm0, (%0) \n"
      9                 :
     10                 :"r"(b),"r"(a)
     11                 :"%mm0"
     12         );
     13         for(i=0;i<8;i++)
     14         printf("%d ",b[i]);
     15         return 0;
     16 }
     17
Both the programs give the same output

WHY IS IT SO? i am using paddb and paddw. it dosent
make any diff?

  1 #include<stdio.h>
      2 #include<inttypes.h>
      3 int main()
      4 {
      5         uint8_t
a[8]={1,2,3,4,5,6,7,8},b[8]={1,2,3,4,5,6,7,8},i;
      6         asm("movq (%1), %%mm0 \n"
      7             "paddd (%0), %%mm0 \n"
      8             "movq  %%mm0, (%0) \n"
      9                 :
     10                 :"r"(b),"r"(a)
     11                 :"%mm0"
     12         );
     13         for(i=0;i<8;i++)
     14         printf("%d ",b[i]);
     15         return 0;
     16 }
     17
~

ankit jain



________________________________________________________________________
Yahoo! Messenger - Communicate instantly..."Ping" 
your friends today! Download Messenger Now 
http://uk.messenger.yahoo.com/download/index.html

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

end of thread, other threads:[~2004-12-29 22:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-23 10:59 paddw vs paddb Ankit Jain
2004-12-24  9:01 ` Maciej Hrebien
2004-12-25  7:21   ` Ankit Jain
2004-12-25 10:40     ` Maciej Hrebien
2004-12-29 12:12       ` Ankit Jain
2004-12-29 22:40         ` Maciej Hrebien

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).