| /minix3/external/bsd/llvm/dist/llvm/lib/MC/ |
| H A D | SubtargetFeature.cpp | 30 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 D | aoe_1-v.out | 10 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 D | Targets.cpp | 805 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 D | Module.cpp | 59 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 D | feature_tests.c | 27 #error Feature name in double underscores does not work
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZProcessors.td | 16 AssemblerPredicate<"Feature"##intname, extname>,
|
| /minix3/external/bsd/llvm/dist/clang/lib/Lex/ |
| H A D | PPMacroExpansion.cpp | 860 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 D | ModuleMap.cpp | 1610 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 D | Module.h | 416 void addRequirement(StringRef Feature, bool RequiredState,
|
| H A D | TargetInfo.h | 772 virtual bool hasFeature(StringRef Feature) const { in hasFeature() argument
|
| /minix3/external/bsd/llvm/dist/llvm/utils/TableGen/ |
| H A D | SubtargetEmitter.cpp | 193 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 D | AsmMatcherEmitter.cpp | 781 if (const SubtargetFeatureInfo *Feature = in initialize() local 783 RequiredFeatures.push_back(Feature); in initialize()
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | ReleaseNotes.rst | 138 C11 Feature Support 161 C++17 Feature Support
|
| H A D | LanguageExtensions.rst | 28 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 D | Makefile | 237 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 192 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 D | MipsInstrFPU.td | 57 // Feature predicates.
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Target/ |
| H A D | Target.td | 1052 // 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 D | ReleaseNotes.rst | 73 Special New Feature
|
| H A D | CodeGenerator.rst | 1771 Target Feature Matrix 1806 :raw-html:`<th>Feature</th>`
|
| /minix3/external/bsd/bind/dist/ |
| H A D | README | 542 Feature requests can be sent to:
|
| /minix3/crypto/external/bsd/heimdal/dist/ |
| H A D | NEWS | 162 * New Feature
|
| /minix3/crypto/external/bsd/heimdal/dist/include/ |
| H A D | config.h.w32 | 98 /* Feature macros */
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcInstrInfo.td | 21 // Feature predicates.
|
| /minix3/external/bsd/llvm/dist/llvm/test/Bindings/Ocaml/ |
| H A D | core.ml | 1173 (* see test/Feature/exception.ll *)
|