Searched refs:X86ProcFamily (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86Subtarget.h | 82 X86ProcFamilyEnum X86ProcFamily = Others; variable 681 X86ProcFamilyEnum getProcFamily() const { return X86ProcFamily; } in getProcFamily() 684 bool isAtom() const { return X86ProcFamily == IntelAtom; } in isAtom() 685 bool isSLM() const { return X86ProcFamily == IntelSLM; } in isSLM() 687 return X86ProcFamily == IntelGLM || in isGLM() 688 X86ProcFamily == IntelGLP || in isGLM() 689 X86ProcFamily == IntelTRM; in isGLM()
|
D | X86.td | 423 def ProcIntelAtom : SubtargetFeature<"atom", "X86ProcFamily", "IntelAtom", 425 def ProcIntelSLM : SubtargetFeature<"slm", "X86ProcFamily", "IntelSLM", 427 def ProcIntelGLM : SubtargetFeature<"glm", "X86ProcFamily", "IntelGLM", 429 def ProcIntelGLP : SubtargetFeature<"glp", "X86ProcFamily", "IntelGLP", 431 def ProcIntelTRM : SubtargetFeature<"tremont", "X86ProcFamily", "IntelTRM", 433 def ProcIntelHSW : SubtargetFeature<"haswell", "X86ProcFamily", 435 def ProcIntelBDW : SubtargetFeature<"broadwell", "X86ProcFamily", 437 def ProcIntelSKL : SubtargetFeature<"skylake", "X86ProcFamily", 439 def ProcIntelKNL : SubtargetFeature<"knl", "X86ProcFamily", 441 def ProcIntelSKX : SubtargetFeature<"skx", "X86ProcFamily", [all …]
|
/external/llvm/lib/Target/X86/ |
D | X86Subtarget.h | 61 X86ProcFamilyEnum X86ProcFamily; variable 453 bool isAtom() const { return X86ProcFamily == IntelAtom; } in isAtom() 454 bool isSLM() const { return X86ProcFamily == IntelSLM; } in isSLM()
|
D | X86Subtarget.cpp | 308 : X86GenSubtargetInfo(TT, CPU, FS), X86ProcFamily(Others), in X86Subtarget()
|
D | X86.td | 259 def ProcIntelAtom : SubtargetFeature<"atom", "X86ProcFamily", "IntelAtom", 261 def ProcIntelSLM : SubtargetFeature<"slm", "X86ProcFamily", "IntelSLM",
|
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/X86/ |
D | X86GenSubtargetInfo.inc | 16792 if (Bits[X86::ProcIntelAtom] && X86ProcFamily < IntelAtom) X86ProcFamily = IntelAtom; 16793 if (Bits[X86::ProcIntelBDW] && X86ProcFamily < IntelBroadwell) X86ProcFamily = IntelBroadwell; 16794 if (Bits[X86::ProcIntelCNL] && X86ProcFamily < IntelCannonlake) X86ProcFamily = IntelCannonlake; 16795 if (Bits[X86::ProcIntelGLM] && X86ProcFamily < IntelGLM) X86ProcFamily = IntelGLM; 16796 if (Bits[X86::ProcIntelGLP] && X86ProcFamily < IntelGLP) X86ProcFamily = IntelGLP; 16797 if (Bits[X86::ProcIntelHSW] && X86ProcFamily < IntelHaswell) X86ProcFamily = IntelHaswell; 16798 …if (Bits[X86::ProcIntelICL] && X86ProcFamily < IntelIcelakeClient) X86ProcFamily = IntelIcelakeCli… 16799 …if (Bits[X86::ProcIntelICX] && X86ProcFamily < IntelIcelakeServer) X86ProcFamily = IntelIcelakeSer… 16800 if (Bits[X86::ProcIntelKNL] && X86ProcFamily < IntelKNL) X86ProcFamily = IntelKNL; 16801 if (Bits[X86::ProcIntelSKL] && X86ProcFamily < IntelSkylake) X86ProcFamily = IntelSkylake; [all …]
|