Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86.td572 def ProcessorFeatures {
1256 def : ProcModel<P, AtomModel, ProcessorFeatures.AtomFeatures,
1257 ProcessorFeatures.AtomTuning>;
1261 def : ProcModel<P, SLMModel, ProcessorFeatures.SLMFeatures,
1262 ProcessorFeatures.SLMTuning>;
1265 def : ProcModel<"goldmont", SLMModel, ProcessorFeatures.GLMFeatures,
1266 ProcessorFeatures.GLMTuning>;
1267 def : ProcModel<"goldmont-plus", SLMModel, ProcessorFeatures.GLPFeatures,
1268 ProcessorFeatures.GLPTuning>;
1269 def : ProcModel<"tremont", SLMModel, ProcessorFeatures.TRMFeatures,
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DX86TargetParser.h56 enum ProcessorFeatures { enum
147 ProcessorFeatures getKeyFeature(CPUKind Kind);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPC.td287 def ProcessorFeatures {
577 def : ProcessorModel<"pwr7", P7Model, ProcessorFeatures.P7Features>;
578 def : ProcessorModel<"pwr8", P8Model, ProcessorFeatures.P8Features>;
579 def : ProcessorModel<"pwr9", P9Model, ProcessorFeatures.P9Features>;
581 def : ProcessorModel<"pwr10", P9Model, ProcessorFeatures.P10Features>;
584 ProcessorFeatures.FutureFeatures>;
595 def : ProcessorModel<"ppc64le", P8Model, ProcessorFeatures.P8Features>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
H A DX86.cpp1027 static llvm::X86::ProcessorFeatures getFeature(StringRef Name) { in getFeature()
1028 return llvm::StringSwitch<llvm::X86::ProcessorFeatures>(Name) in getFeature()
1036 static unsigned getFeaturePriority(llvm::X86::ProcessorFeatures Feat) { in getFeaturePriority()
1057 ProcessorFeatures KeyFeature = getKeyFeature(Kind); in multiVersionSortPriority()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DMinidump.h154 uint8_t ProcessorFeatures[16]; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DX86TargetParser.cpp448 ProcessorFeatures llvm::X86::getKeyFeature(X86::CPUKind Kind) { in getKeyFeature()
454 return static_cast<ProcessorFeatures>(P.KeyFeature); in getKeyFeature()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp201 FixedSizeHex<sizeof(Info.ProcessorFeatures)> Features(Info.ProcessorFeatures); in mapping()