HomeSort by relevance Sort by last modified time
    Searched refs:X86SSELevel (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Target/X86/
X86Subtarget.h 69 /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
71 X86SSEEnum X86SSELevel;
304 bool hasMMX() const { return X86SSELevel >= MMX; }
305 bool hasSSE1() const { return X86SSELevel >= SSE1; }
306 bool hasSSE2() const { return X86SSELevel >= SSE2; }
307 bool hasSSE3() const { return X86SSELevel >= SSE3; }
308 bool hasSSSE3() const { return X86SSELevel >= SSSE3; }
309 bool hasSSE41() const { return X86SSELevel >= SSE41; }
310 bool hasSSE42() const { return X86SSELevel >= SSE42; }
311 bool hasAVX() const { return X86SSELevel >= AVX;
    [all...]
X86Subtarget.cpp 238 DEBUG(dbgs() << "Subtarget features: SSELevel " << X86SSELevel
254 X86SSELevel = NoMMXSSE;

Completed in 66 milliseconds