Home
last modified time | relevance | path

Searched refs:has_SSE4_1 (Results 1 – 3 of 3) sorted by relevance

/art/runtime/arch/x86/
Dinstruction_set_features_x86.cc63 bool has_SSE4_1 = FindVariantInArray(x86_variants_with_sse4_1, in FromVariant() local
88 return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromVariant()
91 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromVariant()
100 bool has_SSE4_1 = (bitmap & kSse4_1Bitfield) != 0; in FromBitmap() local
107 return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, in FromBitmap()
111 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, in FromBitmap()
127 const bool has_SSE4_1 = false; in FromCppDefines() local
129 const bool has_SSE4_1 = true; in FromCppDefines() local
160 return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromCppDefines()
163 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromCppDefines()
[all …]
Dinstruction_set_features_x86.h79 X86InstructionSetFeatures(bool smp, bool has_SSSE3, bool has_SSE4_1, bool has_SSE4_2, in X86InstructionSetFeatures() argument
85 has_SSE4_1_(has_SSE4_1), in X86InstructionSetFeatures()
/art/runtime/arch/x86_64/
Dinstruction_set_features_x86_64.h76 X86_64InstructionSetFeatures(bool smp, bool has_SSSE3, bool has_SSE4_1, bool has_SSE4_2, in X86_64InstructionSetFeatures() argument
79 : X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in X86_64InstructionSetFeatures()