diff --git a/ispc.cpp b/ispc.cpp index 8a0f16c6..6d4b063d 100644 --- a/ispc.cpp +++ b/ispc.cpp @@ -288,7 +288,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::SSE2; this->m_nativeVectorWidth = 4; this->m_vectorWidth = 4; - this->m_attributes = "+sse,+sse2,-sse3,-sse41,-sse42,-sse4a,-ssse3,-popcnt"; + this->m_attributes = "+sse,+sse2,-sse3,-sse4a,-ssse3,-popcnt" +#if defined(LLVM_3_4) + ",-sse4.1,-sse4.2" +#else + ",-sse41,-sse42" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 32; } @@ -297,7 +303,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::SSE2; this->m_nativeVectorWidth = 4; this->m_vectorWidth = 8; - this->m_attributes = "+sse,+sse2,-sse3,-sse41,-sse42,-sse4a,-ssse3,-popcnt"; + this->m_attributes = "+sse,+sse2,-sse3,-sse4a,-ssse3,-popcnt" +#if defined(LLVM_3_4) + ",-sse4.1,-sse4.2" +#else + ",-sse41,-sse42" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 32; } @@ -307,7 +319,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_nativeVectorWidth = 4; this->m_vectorWidth = 4; // TODO: why not sse42 and popcnt? - this->m_attributes = "+sse,+sse2,+sse3,+sse41,-sse42,-sse4a,+ssse3,-popcnt,+cmov"; + this->m_attributes = "+sse,+sse2,+sse3,-sse4a,+ssse3,-popcnt,+cmov" +#if defined(LLVM_3_4) + ",+sse4.1,-sse4.2" +#else + ",+sse41,-sse42" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 32; } @@ -317,7 +335,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::SSE4; this->m_nativeVectorWidth = 4; this->m_vectorWidth = 8; - this->m_attributes = "+sse,+sse2,+sse3,+sse41,-sse42,-sse4a,+ssse3,-popcnt,+cmov"; + this->m_attributes = "+sse,+sse2,+sse3,-sse4a,+ssse3,-popcnt,+cmov" +#if defined(LLVM_3_4) + ",+sse4.1,-sse4.2" +#else + ",+sse41,-sse42" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 32; } @@ -325,7 +349,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::SSE4; this->m_nativeVectorWidth = 16; this->m_vectorWidth = 16; - this->m_attributes = "+sse,+sse2,+sse3,+sse41,-sse42,-sse4a,+ssse3,-popcnt,+cmov"; + this->m_attributes = "+sse,+sse2,+sse3,-sse4a,+ssse3,-popcnt,+cmov" +#if defined(LLVM_3_4) + ",+sse4.1,-sse4.2" +#else + ",+sse41,-sse42" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 8; } @@ -333,7 +363,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::SSE4; this->m_nativeVectorWidth = 8; this->m_vectorWidth = 8; - this->m_attributes = "+sse,+sse2,+sse3,+sse41,-sse42,-sse4a,+ssse3,-popcnt,+cmov"; + this->m_attributes = "+sse,+sse2,+sse3,-sse4a,+ssse3,-popcnt,+cmov" +#if defined(LLVM_3_4) + ",+sse4.1,-sse4.2" +#else + ",+sse41,-sse42" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 16; } @@ -425,7 +461,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::AVX11; this->m_nativeVectorWidth = 8; this->m_vectorWidth = 8; - this->m_attributes = "+avx,+popcnt,+cmov,+f16c,+rdrand"; + this->m_attributes = "+avx,+popcnt,+cmov,+f16c" +#if defined(LLVM_3_4) + ",+rdrnd" +#else + ",+rdrand" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 32; this->m_hasHalf = true; @@ -439,7 +481,13 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::AVX11; this->m_nativeVectorWidth = 8; this->m_vectorWidth = 16; - this->m_attributes = "+avx,+popcnt,+cmov,+f16c,+rdrand"; + this->m_attributes = "+avx,+popcnt,+cmov,+f16c" +#if defined(LLVM_3_4) + ",+rdrnd" +#else + ",+rdrand" +#endif + ; this->m_maskingIsFree = false; this->m_maskBitCount = 32; this->m_hasHalf = true; @@ -453,7 +501,12 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::AVX2; this->m_nativeVectorWidth = 8; this->m_vectorWidth = 8; - this->m_attributes = "+avx2,+popcnt,+cmov,+f16c,+rdrand" + this->m_attributes = "+avx2,+popcnt,+cmov,+f16c" +#if defined(LLVM_3_4) + ",+rdrnd" +#else + ",+rdrand" +#endif #ifndef LLVM_3_1 ",+fma" #endif // !LLVM_3_1 @@ -472,7 +525,12 @@ Target::Target(const char *arch, const char *cpu, const char *isa, bool pic) : this->m_isa = Target::AVX2; this->m_nativeVectorWidth = 16; this->m_vectorWidth = 16; - this->m_attributes = "+avx2,+popcnt,+cmov,+f16c,+rdrand" + this->m_attributes = "+avx2,+popcnt,+cmov,+f16c" +#if defined(LLVM_3_4) + ",+rdrnd" +#else + ",+rdrand" +#endif #ifndef LLVM_3_1 ",+fma" #endif // !LLVM_3_1