Bill Wendling
eebc8a1bc5
Add support for the v1i64 type. This makes better code for this:
#include <mmintrin.h>
extern __m64 C;
void baz(__v2si *A, __v2si *B)
{
*A = C;
_mm_empty();
}
We get this:
_baz:
call "L1$pb"
"L1$pb":
popl %eax
movl L_C$non_lazy_ptr-"L1$pb"(%eax), %eax
movq (%eax), %mm0
movl 4(%esp), %eax
movq %mm0, (%eax)
emms
ret
GCC gives us this:
_baz:
pushl %ebx
call L3
"L00000000001$pb":
L3:
popl %ebx
subl $8, %esp
movl L_C$non_lazy_ptr-"L00000000001$pb"(%ebx), %eax
movl (%eax), %edx
movl 4(%eax), %ecx
movl 16(%esp), %eax
movl %edx, (%eax)
movl %ecx, 4(%eax)
emms
addl $8, %esp
popl %ebx
ret
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35351 91177308-0d34-0410-b5e6-96231b3b80d8
2007-03-26 07:53:08 +00:00
..
2007-03-25 21:58:42 +00:00
2007-03-20 20:19:48 +00:00
2006-12-07 01:30:32 +00:00
2007-02-15 02:26:10 +00:00
2007-03-25 15:07:15 +00:00
2007-02-16 19:11:07 +00:00
2006-08-22 16:06:27 +00:00
2007-03-06 05:02:28 +00:00
2007-03-22 19:11:57 +00:00
2007-03-06 05:32:48 +00:00
2007-03-25 02:14:49 +00:00
2007-03-07 06:39:01 +00:00
2006-03-23 23:49:59 +00:00
2006-06-05 16:29:06 +00:00
2007-03-23 18:44:11 +00:00
2007-03-23 18:44:11 +00:00
2007-01-26 01:08:18 +00:00
2007-01-28 13:31:35 +00:00
2007-03-08 00:59:12 +00:00
2007-03-23 18:44:11 +00:00
2007-03-23 18:44:11 +00:00
2007-02-05 20:47:22 +00:00
2007-02-25 21:06:13 +00:00
2007-01-30 20:08:39 +00:00
2006-12-17 05:15:13 +00:00
2007-02-24 00:55:48 +00:00
2007-02-02 02:16:23 +00:00
2007-02-24 00:55:48 +00:00
2007-02-28 22:00:54 +00:00
2006-10-20 07:07:24 +00:00
2007-02-07 20:38:26 +00:00
2007-03-26 07:53:08 +00:00
2006-12-31 22:24:55 +00:00
2007-03-23 22:42:04 +00:00
2007-02-20 05:31:04 +00:00
2006-07-26 16:55:39 +00:00
2006-11-11 19:59:25 +00:00
2007-02-01 01:46:06 +00:00
2007-03-23 18:44:11 +00:00
2006-07-07 00:01:01 +00:00
2007-03-06 01:55:46 +00:00
2007-03-23 18:44:11 +00:00
2007-03-23 18:44:11 +00:00
2007-03-23 18:44:11 +00:00
2007-03-23 18:44:11 +00:00
2005-04-21 20:19:05 +00:00
2007-03-23 18:44:11 +00:00
2007-02-07 06:22:45 +00:00
2006-05-08 05:59:36 +00:00
2007-02-12 05:18:08 +00:00
2007-03-05 23:06:32 +00:00
2007-03-26 01:45:35 +00:00