Home
last modified time | relevance | path

Searched refs:Feature (Results 1 – 25 of 27) sorted by relevance

12

/minix3/external/bsd/llvm/dist/llvm/lib/MC/
H A DSubtargetFeature.cpp30 static inline bool hasFlag(StringRef Feature) { in hasFlag() argument
31 assert(!Feature.empty() && "Empty string"); in hasFlag()
33 char Ch = Feature[0]; in hasFlag()
40 static inline std::string StripFlag(StringRef Feature) { in StripFlag() argument
41 return hasFlag(Feature) ? Feature.substr(1) : Feature; in StripFlag()
46 static inline bool isEnabled(StringRef Feature) { in isEnabled() argument
47 assert(!Feature.empty() && "Empty string"); in isEnabled()
49 char Ch = Feature[0]; in isEnabled()
127 for (auto &Feature : FeatTable) in Help() local
128 errs() << format(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc); in Help()
[all …]
/minix3/external/bsd/tcpdump/dist/tests/
H A Daoe_1-v.out10 AFlags: [none], Err/Feature: 0, Sector Count: 1, Cmd/Status: 236
15 AFlags: [none], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64
20 AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36
25 AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36
30 AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36
35 AFlags: [Ext48], Err/Feature: 0, Sector Count: 2, Cmd/Status: 36
40 AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64
45 AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64
50 AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64
55 AFlags: [Ext48], Err/Feature: 0, Sector Count: 0, Cmd/Status: 64
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Basic/
H A DTargets.cpp805 bool hasFeature(StringRef Feature) const override;
954 StringRef Feature = StringRef(Features[i]).substr(1); in handleTargetFeatures() local
956 if (Feature == "vsx") { in handleTargetFeatures()
961 if (Feature == "power8-vector") { in handleTargetFeatures()
1161 bool PPCTargetInfo::hasFeature(StringRef Feature) const { in hasFeature()
1162 return llvm::StringSwitch<bool>(Feature) in hasFeature()
1454 bool hasFeature(StringRef Feature) const override { in hasFeature()
1455 return Feature == "ptx" || Feature == "nvptx"; in hasFeature()
2028 bool hasFeature(StringRef Feature) const override;
2577 StringRef Feature = StringRef(Features[i]).substr(1); in handleTargetFeatures() local
[all …]
H A DModule.cpp59 static bool hasFeature(StringRef Feature, const LangOptions &LangOpts, in hasFeature() argument
61 return llvm::StringSwitch<bool>(Feature) in hasFeature()
70 .Default(Target.hasFeature(Feature)); in hasFeature()
156 void Module::addRequirement(StringRef Feature, bool RequiredState, in addRequirement() argument
159 Requirements.push_back(Requirement(Feature, RequiredState)); in addRequirement()
162 if (hasFeature(Feature, LangOpts, Target) == RequiredState) in addRequirement()
/minix3/external/bsd/llvm/dist/clang/test/Preprocessor/
H A Dfeature_tests.c27 #error Feature name in double underscores does not work
/minix3/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZProcessors.td16 AssemblerPredicate<"Feature"##intname, extname>,
/minix3/external/bsd/llvm/dist/clang/lib/Lex/
H A DPPMacroExpansion.cpp860 StringRef Feature = II->getName(); in HasFeature() local
863 if (Feature.startswith("__") && Feature.endswith("__") && Feature.size() >= 4) in HasFeature()
864 Feature = Feature.substr(2, Feature.size() - 4); in HasFeature()
866 return llvm::StringSwitch<bool>(Feature) in HasFeature()
H A DModuleMap.cpp1610 std::string Feature = Tok.getString(); in parseRequiresDecl() local
1614 ActiveModule->addRequirement(Feature, RequiredState, in parseRequiresDecl()
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DModule.h416 void addRequirement(StringRef Feature, bool RequiredState,
H A DTargetInfo.h772 virtual bool hasFeature(StringRef Feature) const { in hasFeature() argument
/minix3/external/bsd/llvm/dist/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp193 Record *Feature = FeatureList[i]; in FeatureKeyValues() local
195 const std::string &Name = Feature->getName(); in FeatureKeyValues()
196 const std::string &CommandLineName = Feature->getValueAsString("Name"); in FeatureKeyValues()
197 const std::string &Desc = Feature->getValueAsString("Desc"); in FeatureKeyValues()
208 Feature->getValueAsListOfDefs("Implies"); in FeatureKeyValues()
H A DAsmMatcherEmitter.cpp781 if (const SubtargetFeatureInfo *Feature = in initialize() local
783 RequiredFeatures.push_back(Feature); in initialize()
/minix3/external/bsd/llvm/dist/clang/docs/
H A DReleaseNotes.rst138 C11 Feature Support
161 C++17 Feature Support
H A DLanguageExtensions.rst28 Feature Checking Macros
958 Feature detection is supported only for some of the primitives at present. User
/minix3/external/bsd/llvm/dist/llvm/
H A DMakefile237 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
/minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp192 bool parseSetFeature(uint64_t Feature);
289 void setFeatureBits(uint64_t Feature, StringRef FeatureString) { in setFeatureBits() argument
290 if (!(STI.getFeatureBits() & Feature)) { in setFeatureBits()
297 void clearFeatureBits(uint64_t Feature, StringRef FeatureString) { in clearFeatureBits() argument
298 if (STI.getFeatureBits() & Feature) { in clearFeatureBits()
3286 bool MipsAsmParser::parseSetFeature(uint64_t Feature) { in parseSetFeature() argument
3292 switch (Feature) { in parseSetFeature()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/
H A DMipsInstrFPU.td57 // Feature predicates.
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Target/
H A DTarget.td1052 // Name - Feature name. Used by command line (-mattr=) to determine the
1065 // Desc - Feature description. Used by command line (-mattr=) to display help
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DReleaseNotes.rst73 Special New Feature
H A DCodeGenerator.rst1771 Target Feature Matrix
1806 :raw-html:`<th>Feature</th>`
/minix3/external/bsd/bind/dist/
H A DREADME542 Feature requests can be sent to:
/minix3/crypto/external/bsd/heimdal/dist/
H A DNEWS162 * New Feature
/minix3/crypto/external/bsd/heimdal/dist/include/
H A Dconfig.h.w3298 /* Feature macros */
/minix3/external/bsd/llvm/dist/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.td21 // Feature predicates.
/minix3/external/bsd/llvm/dist/llvm/test/Bindings/Ocaml/
H A Dcore.ml1173 (* see test/Feature/exception.ll *)

12