Searched refs:X86SSELevel (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86Subtarget.h | 64 X86SSEEnum X86SSELevel = NoSSE; variable 193 bool hasSSE1() const { return X86SSELevel >= SSE1; } in hasSSE1() 194 bool hasSSE2() const { return X86SSELevel >= SSE2; } in hasSSE2() 195 bool hasSSE3() const { return X86SSELevel >= SSE3; } in hasSSE3() 196 bool hasSSSE3() const { return X86SSELevel >= SSSE3; } in hasSSSE3() 197 bool hasSSE41() const { return X86SSELevel >= SSE41; } in hasSSE41() 198 bool hasSSE42() const { return X86SSELevel >= SSE42; } in hasSSE42() 199 bool hasAVX() const { return X86SSELevel >= AVX; } in hasAVX() 200 bool hasAVX2() const { return X86SSELevel >= AVX2; } in hasAVX2() 201 bool hasAVX512() const { return X86SSELevel >= AVX512; } in hasAVX512()
|
H A D | X86.td | 69 def FeatureSSE1 : SubtargetFeature<"sse", "X86SSELevel", "SSE1", 71 def FeatureSSE2 : SubtargetFeature<"sse2", "X86SSELevel", "SSE2", 74 def FeatureSSE3 : SubtargetFeature<"sse3", "X86SSELevel", "SSE3", 77 def FeatureSSSE3 : SubtargetFeature<"ssse3", "X86SSELevel", "SSSE3", 80 def FeatureSSE41 : SubtargetFeature<"sse4.1", "X86SSELevel", "SSE41", 83 def FeatureSSE42 : SubtargetFeature<"sse4.2", "X86SSELevel", "SSE42", 104 def FeatureAVX : SubtargetFeature<"avx", "X86SSELevel", "AVX", 107 def FeatureAVX2 : SubtargetFeature<"avx2", "X86SSELevel", "AVX2", 118 def FeatureAVX512 : SubtargetFeature<"avx512f", "X86SSELevel", "AVX512",
|
H A D | X86Subtarget.cpp | 292 LLVM_DEBUG(dbgs() << "Subtarget features: SSELevel " << X86SSELevel in initSubtargetFeatures()
|