Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86Subtarget.cpp201 bool IsIntel = memcmp(text.c, "GenuineIntel", 12) == 0; in AutoDetectSubtargetFeatures() local
202 bool IsAMD = !IsIntel && memcmp(text.c, "AuthenticAMD", 12) == 0; in AutoDetectSubtargetFeatures()
204 if (IsIntel && ((ECX >> 1) & 0x1)) { in AutoDetectSubtargetFeatures()
208 if (IsIntel && ((ECX >> 12) & 0x1)) { in AutoDetectSubtargetFeatures()
212 if (IsIntel && ((ECX >> 22) & 0x1)) { in AutoDetectSubtargetFeatures()
216 if (IsIntel && ((ECX >> 23) & 0x1)) { in AutoDetectSubtargetFeatures()
220 if (IsIntel && ((ECX >> 25) & 0x1)) { in AutoDetectSubtargetFeatures()
224 if (IsIntel && ((ECX >> 29) & 0x1)) { in AutoDetectSubtargetFeatures()
228 if (IsIntel && ((ECX >> 30) & 0x1)) { in AutoDetectSubtargetFeatures()
238 if (IsIntel || IsAMD) { in AutoDetectSubtargetFeatures()