Searched defs:Features (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/libbcc/lib/Support/
H A DTargetCompilerConfigs.cpp52 llvm::StringMap<bool> Features; local
53 llvm::sys::getHostCPUFeatures(Features);
70 if (pEnableNEON && Features.count("neon") && Features["neon"]) {
78 if (Features.count("hwdiv-arm") && Features["hwdiv-arm"])
81 if (Features.count("hwdiv") && Features["hwdiv"])
/frameworks/compile/slang/
H A Dslang.cpp179 const std::vector<std::string> &Features) {
188 if (!Features.empty())
189 mTargetOpts->FeaturesAsWritten = Features;
271 const std::vector<std::string> &Features,
283 createTarget(Triple, CPU, Features);
178 createTarget(const std::string &Triple, const std::string &CPU, const std::vector<std::string> &Features) argument
270 init(const std::string &Triple, const std::string &CPU, const std::vector<std::string> &Features, clang::DiagnosticsEngine *DiagEngine, DiagnosticBuffer *DiagClient) argument
H A Dslang_backend.cpp157 if (mTargetOpts.CPU.size() || mTargetOpts.Features.size()) {
158 llvm::SubtargetFeatures Features; local
161 I = mTargetOpts.Features.begin(), E = mTargetOpts.Features.end();
164 Features.AddFeature(*I);
166 FeaturesStr = Features.getString();
/frameworks/compile/mclinker/tools/llvm-mcld/
H A Dllvm-mcld.cpp1436 SubtargetFeatures Features; local
1438 Features.AddFeature(MAttrs[i]);
1439 FeaturesStr = Features.getString();

Completed in 166 milliseconds