HomeSort by relevance Sort by last modified time
    Searched refs:Features (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/clang/lib/Basic/
Targets.cpp     [all...]
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 41 SubtargetFeatures Features(FS);
42 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, NumProcs,
50 SubtargetFeatures Features(FS);
51 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, NumProcs,
66 SubtargetFeatures Features;
67 FeatureBits = Features.ToggleFeature(FeatureBits, FS,
SubtargetFeature.cpp 107 // Return the features string
111 /// Adding features.
114 // Don't add empty features
117 Features.push_back(PrependFlag(String.lower(), IsEnabled));
162 errs() << "Available features for this target:\n\n";
178 // Break up string into separate features
179 Split(Features, Initial);
184 return Join(Features);
274 "CPU features table is not sorted");
305 for (size_t i = 0, E = Features.size(); i < E; i++)
    [all...]
  /external/clang/include/clang/Basic/
TargetOptions.h 43 /// The list of target specific features to enable or disable -- this should
45 std::vector<std::string> Features;
  /external/llvm/include/llvm/Support/
Host.h 52 /// getHostCPUFeatures - Get the LLVM names for the host CPU features.
56 /// \param Features - A string mapping feature names to either
58 /// about exactly which features may appear in this map, except that they are
62 bool getHostCPUFeatures(StringMap<bool> &Features);
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 31 const LangOptions &Features, MangleContext &MContext)
32 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
124 MDHelper.createTBAANode(BTy->getName(Features), getChar());
142 if (!Features.CPlusPlus &&
150 if (Features.CPlusPlus &&
CodeGenTBAA.h 43 const LangOptions &Features;
66 const LangOptions &Features,
BackendUtil.cpp 300 if (TargetOpts.Features.size()) {
301 SubtargetFeatures Features;
303 it = TargetOpts.Features.begin(),
304 ie = TargetOpts.Features.end(); it != ie; ++it)
305 Features.AddFeature(*it);
306 FeaturesStr = Features.getString();
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 34 /// arch. Add any CPU features specified via -mcpu or -mattr.
76 // Package up features to be passed to target/subtarget
79 SubtargetFeatures Features;
81 Features.AddFeature(MAttrs[i]);
82 FeaturesStr = Features.getString();
  /external/clang/lib/Lex/
LiteralSupport.cpp 58 const LangOptions &Features, FullSourceLoc TokLoc,
63 TokLoc.getManager(), Features);
66 TokLoc.getManager(), Features);
78 const LangOptions &Features) {
101 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
107 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
130 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
155 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
178 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
189 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf
    [all...]
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 11 // The intent is to be able to package specific features that should or should
13 // as example, gather chip info from the command line, a long with features
64 /// specific features. Features are encoded as a string of the form
69 /// Each of the remaining features is prefixed with + or - indicating whether
75 std::vector<std::string> Features; // Subtarget features as a vector
79 /// Features string accessors.
82 /// Adding Features.
108 /// Retrieve a formatted string of the default features for the specifie
    [all...]
  /frameworks/compile/llvm-ndk-cc/
Backend.cpp 137 if (mTargetOpts.CPU.size() || mTargetOpts.Features.size()) {
138 llvm::SubtargetFeatures Features;
141 I = mTargetOpts.Features.begin(), E = mTargetOpts.Features.end();
144 Features.AddFeature(*I);
146 FeaturesStr = Features.getString();
Compiler.cpp 85 const std::vector<std::string> &Features) {
94 if (!Features.empty())
95 mTargetOpts.Features = Features;
186 const std::vector<std::string> &Features, bool isCXX) {
198 createTarget(Triple, CPU, Features);
Compiler.h 60 const std::vector<std::string> &Features,
112 const std::vector<std::string> &Features);
  /gdk/sources/llvm-ndk-cc/
Backend.cpp 136 if (mTargetOpts.CPU.size() || mTargetOpts.Features.size()) {
137 llvm::SubtargetFeatures Features;
140 I = mTargetOpts.Features.begin(), E = mTargetOpts.Features.end();
143 Features.AddFeature(*I);
145 FeaturesStr = Features.getString();
Compiler.cpp 84 const std::vector<std::string> &Features) {
93 if (!Features.empty())
94 mTargetOpts.Features = Features;
177 const std::vector<std::string> &Features, bool isCXX) {
190 createTarget(Triple, CPU, Features);
Compiler.h 60 const std::vector<std::string> &Features,
112 const std::vector<std::string> &Features);
  /frameworks/compile/slang/
slang.cpp 175 const std::vector<std::string> &Features) {
184 if (!Features.empty())
185 mTargetOpts.Features = Features;
261 const std::vector<std::string> &Features,
273 createTarget(Triple, CPU, Features);
slang_backend.cpp 157 if (mTargetOpts.CPU.size() || mTargetOpts.Features.size()) {
158 llvm::SubtargetFeatures Features;
161 I = mTargetOpts.Features.begin(), E = mTargetOpts.Features.end();
164 Features.AddFeature(*I);
166 FeaturesStr = Features.getString();
slang.h 95 std::vector<std::string> const &Features);
172 const std::vector<std::string> &Features,
  /external/clang/tools/driver/
cc1as_main.cpp 73 /// The list of target specific features to enable or disable -- this should
75 std::vector<std::string> Features;
172 Opts.Features = Args->getAllArgValues(OPT_target_feature);
311 if (!Opts.Features.empty()) {
312 FS = Opts.Features[0];
313 for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i)
314 FS += "," + Opts.Features[i];
  /external/clang/include/clang/Lex/
LiteralSupport.h 166 const LangOptions &Features;
183 const SourceManager &sm, const LangOptions &features,
185 : SM(sm), Features(features), Target(target), Diags(diags),
  /external/llvm/lib/Target/
TargetMachineC.cpp 62 char* CPU, char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc,
119 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM,
  /external/llvm/include/llvm-c/
TargetMachine.h 82 char *CPU, char *Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc,
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.h 188 struct Features {
189 Features();
190 ~Features();
231 Features m_features;

Completed in 927 milliseconds

1 2 3 4 5