i386-ssetype-1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 36 行

C
36
字号
/* { dg-do compile { target i?86-*-* x86_64-*-* } } *//* { dg-options "-O2 -msse2 -march=athlon" } *//* { dg-final { scan-assembler "andpd.*magic" } } *//* { dg-final { scan-assembler "andnpd.*magic" } } *//* { dg-final { scan-assembler "xorpd.*magic" } } *//* { dg-final { scan-assembler "orpd.*magic" } } *//* { dg-final { scan-assembler-not "movdqa" } } *//* { dg-final { scan-assembler "movapd.*magic" } } *//* Verify that we generate proper instruction with memory operand.  */#include <xmmintrin.h>__m128d magic_a, magic_b;__m128dt1(void){return _mm_and_pd (magic_a,magic_b);}__m128dt2(void){return _mm_andnot_pd (magic_a,magic_b);}__m128dt3(void){return _mm_or_pd (magic_a,magic_b);}__m128dt4(void){return _mm_xor_pd (magic_a,magic_b);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?