Home | History | Annotate | Download | only in lib

Lines Matching refs:features

38   llvm::StringMap<bool> features;
39 if (llvm::sys::getHostCPUFeatures(features)) {
40 for (const auto& f : features)
109 llvm::StringMap<bool> features;
110 llvm::sys::getHostCPUFeatures(features);
132 if (features.count("hwdiv-arm") && features["hwdiv-arm"])
135 if (features.count("hwdiv") && features["hwdiv"])
141 // 'features' would correspond to features in an x86 host.
142 if (features.count("fp16") && features["fp16"])
149 // codegen if "neon" is present in features.
150 if (features.count("neon") && features["neon"])