reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/lib/Target/X86/X86GenSubtargetInfo.inc
21476   if (Bits[X86::ProcIntelAtom] && X86ProcFamily < IntelAtom) X86ProcFamily = IntelAtom;
21476   if (Bits[X86::ProcIntelAtom] && X86ProcFamily < IntelAtom) X86ProcFamily = IntelAtom;
21477   if (Bits[X86::ProcIntelGLM] && X86ProcFamily < IntelGLM) X86ProcFamily = IntelGLM;
21477   if (Bits[X86::ProcIntelGLM] && X86ProcFamily < IntelGLM) X86ProcFamily = IntelGLM;
21478   if (Bits[X86::ProcIntelGLP] && X86ProcFamily < IntelGLP) X86ProcFamily = IntelGLP;
21478   if (Bits[X86::ProcIntelGLP] && X86ProcFamily < IntelGLP) X86ProcFamily = IntelGLP;
21479   if (Bits[X86::ProcIntelSLM] && X86ProcFamily < IntelSLM) X86ProcFamily = IntelSLM;
21479   if (Bits[X86::ProcIntelSLM] && X86ProcFamily < IntelSLM) X86ProcFamily = IntelSLM;
21480   if (Bits[X86::ProcIntelTRM] && X86ProcFamily < IntelTRM) X86ProcFamily = IntelTRM;
21480   if (Bits[X86::ProcIntelTRM] && X86ProcFamily < IntelTRM) X86ProcFamily = IntelTRM;
lib/Target/X86/X86Subtarget.h
  740   X86ProcFamilyEnum getProcFamily() const { return X86ProcFamily; }
  743   bool isAtom() const { return X86ProcFamily == IntelAtom; }
  744   bool isSLM() const { return X86ProcFamily == IntelSLM; }
  746     return X86ProcFamily == IntelGLM ||
  747            X86ProcFamily == IntelGLP ||
  748            X86ProcFamily == IntelTRM;