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

1 2 3 4 5 6 7

  /external/jsoncpp/include/json/
features.h 19 class JSON_API Features
22 /** \brief A configuration that allows all features and assumes all strings are UTF-8.
27 static Features all();
34 static Features strictMode();
38 Features();
forwards.h 22 // features.h
23 class Features;
reader.h 10 # include "features.h"
28 /** \brief Constructs a Reader allowing all features
36 Reader( const Features &features );
44 * This parameter is ignored if Features::allowComments_
60 * This parameter is ignored if Features::allowComments_
181 Features features_;
  /external/clang/include/clang/Basic/
TargetOptions.h 42 /// \brief The list of target specific features to enable or disable, as written on the command line.
45 /// The list of target specific features to enable or disable -- this should
47 std::vector<std::string> Features;
TargetInfo.h 349 /// inlined given the supported features of the given target.
632 /// \brief Get the default set of target features for the CPU;
634 virtual void getDefaultFeatures(llvm::StringMap<bool> &Features) const {
685 virtual void setFeatureEnabled(llvm::StringMap<bool> &Features,
688 Features[Name] = Enabled;
692 /// set of features (e.g., +sse4).
696 /// The target may modify the features list, to change which options are
700 virtual bool handleTargetFeatures(std::vector<std::string> &Features,
  /external/clang/lib/Basic/
Targets.cpp 683 // Target cpu features.
785 void getDefaultFeatures(llvm::StringMap<bool> &Features) const override;
787 bool handleTargetFeatures(std::vector<std::string> &Features,
926 /// configured set of features.
927 bool PPCTargetInfo::handleTargetFeatures(std::vector<std::string> &Features,
930 for (unsigned i = 0, e = Features.size(); i !=e; ++i) {
931 // Ignore disabled features.
932 if (Features[i][0] == '-')
935 StringRef Feature = StringRef(Features[i]).substr(1);
    [all...]
  /external/llvm/include/llvm/Support/
Host.h 60 /// getHostCPUFeatures - Get the LLVM names for the host CPU features.
64 /// \param Features - A string mapping feature names to either
66 /// about exactly which features may appear in this map, except that they are
70 bool getHostCPUFeatures(StringMap<bool> &Features);
  /external/chromium_org/v8/src/compiler/
instruction-selector.h 26 class Features;
30 Features features = SupportedFeatures());
65 class Features FINAL {
67 Features() : bits_(0) {}
68 explicit Features(unsigned bits) : bits_(bits) {}
69 explicit Features(CpuFeature f) : bits_(1u << f) {}
70 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {}
82 // Returns the features supported on the target platform.
83 static Features SupportedFeatures()
    [all...]
instruction-selector-unittest.h 64 return Build(InstructionSelector::Features(feature));
67 return Build(InstructionSelector::Features(feature1, feature2));
70 return Build(InstructionSelector::Features(), mode);
72 Stream Build(InstructionSelector::Features features,
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 40 /// arch. Add any CPU features specified via -mcpu or -mattr.
82 // Package up features to be passed to target/subtarget
85 SubtargetFeatures Features;
87 Features.AddFeature(MAttrs[i]);
88 FeaturesStr = Features.getString();
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 26 SubtargetFeatures Features(FS);
27 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, ProcFeatures);
75 SubtargetFeatures Features;
76 FeatureBits = Features.ToggleFeature(FeatureBits, FS, ProcFeatures);
SubtargetFeature.cpp 79 // Return the features string
83 /// Adding features.
85 // Don't add empty features or features we already have.
88 Features.push_back(hasFlag(String) ? String.str() : "+" + String.lower());
126 errs() << "Available features for this target:\n\n";
140 // Break up string into separate features
141 Split(Features, Initial);
146 return Join(Features);
230 "CPU features table is not sorted")
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsTargetStreamer.cpp 251 uint64_t Features = STI.getFeatureBits();
261 if (Features & Mips::FeatureMips64r6)
263 else if (Features & Mips::FeatureMips64r2)
265 else if (Features & Mips::FeatureMips64)
267 else if (Features & Mips::FeatureMips5)
269 else if (Features & Mips::FeatureMips4)
271 else if (Features & Mips::FeatureMips3)
273 else if (Features & Mips::FeatureMips32r6)
275 else if (Features & Mips::FeatureMips32r2)
277 else if (Features & Mips::FeatureMips32
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
instruction-selector-tester.h 46 SelectInstructions(InstructionSelector::Features(feature));
50 SelectInstructions(InstructionSelector::Features(feature1, feature2));
54 SelectInstructions(InstructionSelector::Features(), mode);
57 void SelectInstructions(InstructionSelector::Features features,
66 InstructionSelector selector(&sequence, &source_positions, features);
  /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
67 /// Each of the remaining features is prefixed with + or - indicating whether
73 std::vector<std::string> Features; // Subtarget features as a vector
77 /// Features string accessors.
80 /// Adding Features.
99 /// Adds the default features for the specified target triple
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 45 static CharSourceRange MakeCharSourceRange(const LangOptions &Features,
52 TokLoc.getManager(), Features);
55 TokLoc.getManager(), Features);
65 const LangOptions &Features, FullSourceLoc TokLoc,
70 TokLoc.getManager(), Features);
72 MakeCharSourceRange(Features, TokLoc, TokBegin, TokRangeBegin, TokRangeEnd);
82 const LangOptions &Features) {
105 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
111 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
134 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 34 const LangOptions &Features, MangleContext &MContext)
35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
134 createTBAAScalarType(BTy->getName(Features), getChar());
152 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible())
270 if (Features.CPlusPlus) {
CodeGenTBAA.h 51 const LangOptions &Features;
97 const LangOptions &Features,
  /frameworks/compile/slang/
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();
  /external/jsoncpp/src/jsontestrunner/
main.cpp 123 const Json::Features &features,
126 Json::Reader reader( features );
207 Json::Features &features, std::string &path,
219 features = Json::Features::strictMode();
243 Json::Features features; local
245 int exitCode = parseCommandLine( argc, argv, features, path, parseOnly )
    [all...]
  /external/llvm/include/llvm-c/
TargetMachine.h 93 const char *Triple, const char *CPU, const char *Features,
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 26 // Implementation of class Features
29 Features::Features()
36 Features
37 Features::all()
39 return Features();
43 Features
44 Features::strictMode()
46 Features features; local
    [all...]
  /external/jsoncpp/src/lib_json/
json_reader.cpp 24 // Implementation of class Features
27 Features::Features()
34 Features
35 Features::all()
37 return Features();
41 Features
42 Features::strictMode()
44 Features features; local
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 77 /// The list of target specific features to enable or disable -- this should
79 std::vector<std::string> Features;
185 Opts.Features = Args->getAllArgValues(OPT_target_feature);
345 if (!Opts.Features.empty()) {
346 FS = Opts.Features[0];
347 for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i)
348 FS += "," + Opts.Features[i];
  /external/clang/include/clang/Lex/
LiteralSupport.h 185 const LangOptions &Features;
202 const SourceManager &sm, const LangOptions &features,
205 : SM(sm), Features(features), Target(target), Diags(diags),

Completed in 649 milliseconds

1 2 3 4 5 6 7