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

12345

/external/jsoncpp/include/json/
H A Dfeatures.h19 class JSON_API Features { class in namespace:Json
27 static Features all();
35 static Features strictMode();
39 Features();
H A Dforwards.h23 class Features;
/external/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRELFStreamer.cpp10 static unsigned getEFlagsForFeatureSet(const FeatureBitset &Features) { argument
14 if (Features[AVR::ELFArchAVR1])
16 else if (Features[AVR::ELFArchAVR2])
18 else if (Features[AVR::ELFArchAVR25])
20 else if (Features[AVR::ELFArchAVR3])
22 else if (Features[AVR::ELFArchAVR31])
24 else if (Features[AVR::ELFArchAVR35])
26 else if (Features[AVR::ELFArchAVR4])
28 else if (Features[AVR::ELFArchAVR5])
30 else if (Features[AV
[all...]
/external/llvm/lib/Object/
H A DELFObjectFile.cpp61 SubtargetFeatures Features; local
69 Features.AddFeature("mips2");
72 Features.AddFeature("mips3");
75 Features.AddFeature("mips4");
78 Features.AddFeature("mips5");
81 Features.AddFeature("mips32");
84 Features.AddFeature("mips64");
87 Features.AddFeature("mips32r2");
90 Features.AddFeature("mips64r2");
93 Features
[all...]
/external/llvm/lib/Support/
H A DHost.cpp300 unsigned int Brand_id, unsigned int Features,
478 if (Features & (1 << FEATURE_AVX512)) {
483 if (Features & (1 << FEATURE_ADX)) {
488 if (Features & (1 << FEATURE_AVX2)) {
493 if (Features & (1 << FEATURE_AVX)) {
498 if (Features & (1 << FEATURE_SSE4_2)) {
499 if (Features & (1 << FEATURE_MOVBE)) {
508 if (Features & (1 << FEATURE_SSE4_1)) {
513 if (Features & (1 << FEATURE_SSSE3)) {
514 if (Features
299 getIntelProcessorTypeAndSubtype(unsigned int Family, unsigned int Model, unsigned int Brand_id, unsigned int Features, unsigned *Type, unsigned *Subtype) argument
585 getAMDProcessorTypeAndSubtype(unsigned int Family, unsigned int Model, unsigned int Features, unsigned *Type, unsigned *Subtype) argument
708 unsigned Features = 0; local
753 unsigned Features = 0; local
1154 getHostCPUFeatures(StringMap<bool> &Features) argument
1259 getHostCPUFeatures(StringMap<bool> &Features) argument
1330 getHostCPUFeatures(StringMap<bool> &Features) argument
[all...]
H A DTargetParser.cpp196 std::vector<const char *> &Features) {
202 Features.push_back("+hwdiv-arm");
204 Features.push_back("-hwdiv-arm");
207 Features.push_back("+hwdiv");
209 Features.push_back("-hwdiv");
215 std::vector<const char *> &Features) {
221 Features.push_back("+crc");
223 Features.push_back("-crc");
226 Features.push_back("+dsp");
228 Features
195 getHWDivFeatures(unsigned HWDivKind, std::vector<const char *> &Features) argument
214 getExtensionFeatures(unsigned Extensions, std::vector<const char *> &Features) argument
233 getFPUFeatures(unsigned FPUKind, std::vector<const char *> &Features) argument
424 getExtensionFeatures(unsigned Extensions, std::vector<const char *> &Features) argument
448 getFPUFeatures(unsigned FPUKind, std::vector<const char *> &Features) argument
453 getArchFeatures(unsigned ArchKind, std::vector<const char *> &Features) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSubtargetInfo.cpp39 SubtargetFeatures Features(FS);
40 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, NumProcs,
48 SubtargetFeatures Features(FS);
49 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, NumProcs,
64 SubtargetFeatures Features; local
65 FeatureBits = Features.ToggleFeature(FeatureBits, FS,
H A DSubtargetFeature.cpp117 Features.push_back(PrependFlag(LowercaseString(String), IsEnabled));
181 Split(Features, Initial);
186 return Join(Features);
307 for (size_t i = 0, E = Features.size(); i < E; i++) {
308 const StringRef Feature = Features[i];
368 for (size_t i = 0, e = Features.size(); i != e; ++i)
369 OS << Features[i] << " "; local
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DHost.h56 /// \param Features - A string mapping feature names to either
62 bool getHostCPUFeatures(StringMap<bool> &Features);
/external/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp30 IsaVersion getIsaVersion(const FeatureBitset &Features) { argument
32 if (Features.test(FeatureISAVersion7_0_0))
35 if (Features.test(FeatureISAVersion7_0_1))
38 if (Features.test(FeatureISAVersion8_0_0))
41 if (Features.test(FeatureISAVersion8_0_1))
44 if (Features.test(FeatureISAVersion8_0_3))
51 const FeatureBitset &Features) {
53 IsaVersion ISA = getIsaVersion(Features);
50 initDefaultAMDKernelCodeT(amd_kernel_code_t &Header, const FeatureBitset &Features) argument
H A DAMDGPUBaseInfo.h33 IsaVersion getIsaVersion(const FeatureBitset &Features);
35 const FeatureBitset &Features);
/external/llvm/include/llvm/Support/
H A DHost.h64 /// \param Features - A string mapping feature names to either
70 bool getHostCPUFeatures(StringMap<bool> &Features);
H A DTargetParser.h114 bool getFPUFeatures(unsigned FPUKind, std::vector<const char *> &Features);
115 bool getHWDivFeatures(unsigned HWDivKind, std::vector<const char *> &Features);
117 std::vector<const char*> &Features);
170 bool getFPUFeatures(unsigned FPUKind, std::vector<const char *> &Features);
172 std::vector<const char*> &Features);
173 bool getArchFeatures(unsigned ArchKind, std::vector<const char *> &Features);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DTargetSelect.cpp81 SubtargetFeatures Features; local
83 Features.AddFeature(MAttrs[i]);
84 FeaturesStr = Features.getString();
/external/clang/lib/Basic/
H A DTargets.cpp973 initFeatureMap(llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags,
977 bool handleTargetFeatures(std::vector<std::string> &Features,
980 void setFeatureEnabled(llvm::StringMap<bool> &Features, StringRef Name,
1128 bool PPCTargetInfo::handleTargetFeatures(std::vector<std::string> &Features,
1130 for (const auto &Feature : Features) {
1381 llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags, StringRef CPU,
1383 Features["altivec"] = llvm::StringSwitch<bool>(CPU)
1398 Features["qpx"] = (CPU == "a2q");
1399 Features["crypto"] = llvm::StringSwitch<bool>(CPU)
1404 Features["power
[all...]
/external/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp82 SubtargetFeatures Features; local
84 Features.AddFeature(MAttrs[i]);
85 FeaturesStr = Features.getString();
/external/clang/include/clang/Basic/
H A DTargetOptions.h55 std::vector<std::string> Features; member in class:clang::TargetOptions
/external/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp36 SmallVector<StringRef, 3> Features; local
37 FS.split(Features, ',', -1, false /* KeepEmpty */);
38 for (auto &Feature : Features) {
/external/llvm/tools/llvm-mc-fuzzer/
H A Dllvm-mc-fuzzer.cpp153 SubtargetFeatures Features; local
155 Features.AddFeature(MAttrs[i]);
156 FeaturesStr = Features.getString();
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp69 Features.push_back(hasFlag(String) ? String.lower()
123 Split(Features, Initial);
128 return join(Features.begin(), Features.end(), ",");
266 for (auto &Feature : Features) {
280 for (auto &F : Features)
H A DMCSubtargetInfo.cpp23 SubtargetFeatures Features(FS);
24 return Features.getFeatureBits(CPU, ProcDesc, ProcFeatures);
/external/v8/src/compiler/
H A Dinstruction-selector.h49 class Features;
60 Features features = SupportedFeatures(),
128 class Features final {
130 Features() : bits_(0) {} function in class:v8::internal::compiler::final::final
131 explicit Features(unsigned bits) : bits_(bits) {} function in class:v8::internal::compiler::final::final
132 explicit Features(CpuFeature f) : bits_(1u << f) {} function in class:v8::internal::compiler::final::final
133 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {} function in class:v8::internal::compiler::final::final
146 static Features SupportedFeatures() {
147 return Features(CpuFeatures::SupportedFeatures());
362 Features features
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp34 const LangOptions &Features, MangleContext &MContext)
35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
48 if (Features.CPlusPlus)
138 createTBAAScalarType(BTy->getName(Features), getChar());
156 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible())
273 if (Features.CPlusPlus) {
32 CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext& VMContext, const CodeGenOptions &CGO, const LangOptions &Features, MangleContext &MContext) argument
/external/clang/lib/Lex/
H A DLiteralSupport.cpp46 static CharSourceRange MakeCharSourceRange(const LangOptions &Features, argument
53 TokLoc.getManager(), Features);
56 TokLoc.getManager(), Features);
66 const LangOptions &Features, FullSourceLoc TokLoc,
71 TokLoc.getManager(), Features);
73 MakeCharSourceRange(Features, TokLoc, TokBegin, TokRangeBegin, TokRangeEnd);
83 const LangOptions &Features) {
106 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
112 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
135 Diag(Diags, Features, Lo
65 Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID) argument
78 ProcessCharEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, bool &HadError, FullSourceLoc Loc, unsigned CharWidth, DiagnosticsEngine *Diags, const LangOptions &Features) argument
261 ProcessUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, uint32_t &UcnVal, unsigned short &UcnLen, FullSourceLoc Loc, DiagnosticsEngine *Diags, const LangOptions &Features, bool in_char_string_literal = false) argument
333 MeasureUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, unsigned CharByteWidth, const LangOptions &Features, bool &HadError) argument
368 EncodeUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, char *&ResultBuf, bool &HadError, FullSourceLoc Loc, unsigned CharByteWidth, DiagnosticsEngine *Diags, const LangOptions &Features) argument
[all...]
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp673 const FeatureBitset &Features = STI.getFeatureBits(); local
689 if (Features[Mips::FeatureMips64r6])
691 else if (Features[Mips::FeatureMips64r2] ||
692 Features[Mips::FeatureMips64r3] ||
693 Features[Mips::FeatureMips64r5])
695 else if (Features[Mips::FeatureMips64])
697 else if (Features[Mips::FeatureMips5])
699 else if (Features[Mips::FeatureMips4])
701 else if (Features[Mips::FeatureMips3])
703 else if (Features[Mip
779 const FeatureBitset &Features = STI.getFeatureBits(); local
[all...]

Completed in 1306 milliseconds

12345