Searched refs:Features (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/slang/
H A Dslang.cpp185 const std::vector<std::string> &Features) {
194 if (!Features.empty())
195 mTargetOpts.Features = Features;
268 const std::vector<std::string> &Features) {
275 createTarget(Triple, CPU, Features);
184 createTarget(const std::string &Triple, const std::string &CPU, const std::vector<std::string> &Features) argument
267 init(const std::string &Triple, const std::string &CPU, const std::vector<std::string> &Features) argument
H A Dslang_backend.cpp153 if (mTargetOpts.CPU.size() || mTargetOpts.Features.size()) {
154 llvm::SubtargetFeatures Features; local
157 I = mTargetOpts.Features.begin(), E = mTargetOpts.Features.end();
160 Features.AddFeature(*I);
162 FeaturesStr = Features.getString();
H A Dslang.h99 std::vector<std::string> const &Features);
176 const std::vector<std::string> &Features);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DCompiler.cpp101 std::vector<std::string> Compiler::Features; member in class:bcc::Compiler
129 // Set Triple, CPU and Features here
135 Features.push_back("+vfp3");
137 Features.push_back("+d16");
148 Features.push_back("+neon");
149 Features.push_back("+neonfp");
151 Features.push_back("-neon");
152 Features.push_back("-neonfp");
304 if (!CPU.empty() || !Features.empty()) {
308 I = Features
[all...]
H A DCompiler.h75 static std::vector<std::string> Features; member in class:bcc::Compiler

Completed in 131 milliseconds