Home
last modified time | relevance | path

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

/external/llvm/lib/Target/X86/
DX86Subtarget.h68 X86SSEEnum X86SSELevel; variable
327 bool hasMMX() const { return X86SSELevel >= MMX; } in hasMMX()
328 bool hasSSE1() const { return X86SSELevel >= SSE1; } in hasSSE1()
329 bool hasSSE2() const { return X86SSELevel >= SSE2; } in hasSSE2()
330 bool hasSSE3() const { return X86SSELevel >= SSE3; } in hasSSE3()
331 bool hasSSSE3() const { return X86SSELevel >= SSSE3; } in hasSSSE3()
332 bool hasSSE41() const { return X86SSELevel >= SSE41; } in hasSSE41()
333 bool hasSSE42() const { return X86SSELevel >= SSE42; } in hasSSE42()
334 bool hasAVX() const { return X86SSELevel >= AVX; } in hasAVX()
335 bool hasAVX2() const { return X86SSELevel >= AVX2; } in hasAVX2()
[all …]
DX86.td41 def FeatureMMX : SubtargetFeature<"mmx","X86SSELevel", "MMX",
43 def FeatureSSE1 : SubtargetFeature<"sse", "X86SSELevel", "SSE1",
48 def FeatureSSE2 : SubtargetFeature<"sse2", "X86SSELevel", "SSE2",
51 def FeatureSSE3 : SubtargetFeature<"sse3", "X86SSELevel", "SSE3",
54 def FeatureSSSE3 : SubtargetFeature<"ssse3", "X86SSELevel", "SSSE3",
57 def FeatureSSE41 : SubtargetFeature<"sse4.1", "X86SSELevel", "SSE41",
60 def FeatureSSE42 : SubtargetFeature<"sse4.2", "X86SSELevel", "SSE42",
96 def FeatureAVX : SubtargetFeature<"avx", "X86SSELevel", "AVX",
99 def FeatureAVX2 : SubtargetFeature<"avx2", "X86SSELevel", "AVX2",
102 def FeatureAVX512 : SubtargetFeature<"avx512f", "X86SSELevel", "AVX512F",
DX86Subtarget.cpp215 DEBUG(dbgs() << "Subtarget features: SSELevel " << X86SSELevel in initSubtargetFeatures()
231 X86SSELevel = NoMMXSSE; in initializeEnvironment()