/external/clang/lib/Basic/ |
D | Targets.cpp | 740 virtual void getDefaultFeatures(llvm::StringMap<bool> &Features) const; 742 virtual bool setFeatureEnabled(llvm::StringMap<bool> &Features, 1013 void PPCTargetInfo::getDefaultFeatures(llvm::StringMap<bool> &Features) const { in getDefaultFeatures() 1014 Features["altivec"] = llvm::StringSwitch<bool>(CPU) in getDefaultFeatures() 1026 Features["qpx"] = (CPU == "a2q"); in getDefaultFeatures() 1029 bool PPCTargetInfo::setFeatureEnabled(llvm::StringMap<bool> &Features, in setFeatureEnabled() argument 1033 Features[Name] = Enabled; in setFeatureEnabled() 1306 virtual bool setFeatureEnabled(llvm::StringMap<bool> &Features, 1328 bool NVPTXTargetInfo::setFeatureEnabled(llvm::StringMap<bool> &Features, in setFeatureEnabled() argument 1333 Features[Name] = Enabled; in setFeatureEnabled() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | norex-subreg.ll | 55 %Features.6.or35 = select i1 %cmp33, i32 0, i32 undef 57 %or40 = or i32 %Features.6.or35, 4 58 %Features.8 = select i1 %cmp38, i32 %Features.6.or35, i32 %or40 60 %or45 = or i32 %Features.8, 2 62 %Features.8.or45 = select i1 %cmp43, i32 %Features.8, i32 %or45 65 %or50 = or i32 %Features.8.or45, 32 66 %Features.10 = select i1 %cmp48, i32 %Features.8.or45, i32 %or50 67 %or55 = or i32 %Features.10, 64 68 %Features.10.or55 = select i1 undef, i32 %Features.10, i32 %or55 72 %Features.12 = or i32 %Features.10.or55, %or60 [all …]
|
/external/clang/lib/Lex/ |
D | LiteralSupport.cpp | 45 static CharSourceRange MakeCharSourceRange(const LangOptions &Features, in MakeCharSourceRange() argument 52 TokLoc.getManager(), Features); in MakeCharSourceRange() 55 TokLoc.getManager(), Features); in MakeCharSourceRange() 65 const LangOptions &Features, FullSourceLoc TokLoc, in Diag() argument 70 TokLoc.getManager(), Features); in Diag() 72 MakeCharSourceRange(Features, TokLoc, TokBegin, TokRangeBegin, TokRangeEnd); in Diag() 82 const LangOptions &Features) { in ProcessCharEscape() argument 105 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, in ProcessCharEscape() 111 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, in ProcessCharEscape() 134 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf, in ProcessCharEscape() [all …]
|
/external/clang/lib/CodeGen/ |
D | CodeGenTBAA.cpp | 33 const LangOptions &Features, MangleContext &MContext) in CodeGenTBAA() argument 34 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext), in CodeGenTBAA() 126 MDHelper.createTBAANode(BTy->getName(Features), getChar()); in getTBAAInfo() 144 if (!Features.CPlusPlus && in getTBAAInfo() 152 if (Features.CPlusPlus && in getTBAAInfo()
|
D | CodeGenTBAA.h | 43 const LangOptions &Features; variable 77 const LangOptions &Features,
|
D | BackendUtil.cpp | 381 if (TargetOpts.Features.size()) { in CreateTargetMachine() 382 SubtargetFeatures Features; in CreateTargetMachine() local 384 it = TargetOpts.Features.begin(), in CreateTargetMachine() 385 ie = TargetOpts.Features.end(); it != ie; ++it) in CreateTargetMachine() 386 Features.AddFeature(*it); in CreateTargetMachine() 387 FeaturesStr = Features.getString(); in CreateTargetMachine()
|
/external/llvm/lib/MC/ |
D | MCSubtargetInfo.cpp | 26 SubtargetFeatures Features(FS); in InitMCProcessorInfo() local 27 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, NumProcs, in InitMCProcessorInfo() 75 SubtargetFeatures Features; in ToggleFeature() local 76 FeatureBits = Features.ToggleFeature(FeatureBits, FS, in ToggleFeature()
|
D | SubtargetFeature.cpp | 117 Features.push_back(PrependFlag(String.lower(), IsEnabled)); in AddFeature() 180 Split(Features, Initial); in SubtargetFeatures() 185 return Join(Features); in getString() 306 for (size_t i = 0, E = Features.size(); i < E; i++) { in getFeatureBits() 307 const StringRef Feature = Features[i]; in getFeatureBits() 343 for (size_t i = 0, e = Features.size(); i != e; ++i) in print() 344 OS << Features[i] << " "; in print()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430.td | 19 // Subtarget Features. 28 class Proc<string Name, list<SubtargetFeature> Features> 29 : Processor<Name, NoItineraries, Features>;
|
/external/llvm/lib/ExecutionEngine/ |
D | TargetSelect.cpp | 85 SubtargetFeatures Features; in selectTarget() local 87 Features.AddFeature(MAttrs[i]); in selectTarget() 88 FeaturesStr = Features.getString(); in selectTarget()
|
/external/markdown/docs/ |
D | README | 6 though there are a few known issues. See [Features][] for information 12 [Features]: http://www.freewisdom.org/projects/python-markdown/Features
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTX.td | 22 // Subtarget Features. 56 class Proc<string Name, list<SubtargetFeature> Features> 57 : Processor<Name, NoItineraries, Features>;
|
/external/llvm/lib/Target/XCore/ |
D | XCore.td | 34 class Proc<string Name, list<SubtargetFeature> Features> 35 : Processor<Name, NoItineraries, Features>;
|
/external/llvm/lib/Target/R600/ |
D | Processors.td | 14 class Proc<string Name, ProcessorItineraries itin, list<SubtargetFeature> Features> 15 : Processor<Name, itin, Features>;
|
/external/clang/tools/driver/ |
D | cc1as_main.cpp | 75 std::vector<std::string> Features; member 175 Opts.Features = Args->getAllArgValues(OPT_target_feature); in CreateFromArgs() 323 if (!Opts.Features.empty()) { in ExecuteAssembler() 324 FS = Opts.Features[0]; in ExecuteAssembler() 325 for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i) in ExecuteAssembler() 326 FS += "," + Opts.Features[i]; in ExecuteAssembler()
|
/external/llvm/lib/Target/Sparc/ |
D | Sparc.td | 47 class Proc<string Name, list<SubtargetFeature> Features> 48 : Processor<Name, NoItineraries, Features>;
|
/external/llvm/include/llvm/Support/ |
D | TargetRegistry.h | 84 StringRef Features); 88 StringRef Features, 319 StringRef Features) const { in createMCSubtargetInfo() argument 322 return MCSubtargetInfoCtorFn(Triple, CPU, Features); in createMCSubtargetInfo() 333 StringRef Features, const TargetOptions &Options, 339 return TargetMachineCtorFn(*this, Triple, CPU, Features, Options,
|
D | Host.h | 66 bool getHostCPUFeatures(StringMap<bool> &Features);
|
/external/webkit/Source/WebCore/css/ |
D | CSSStyleSelector.h | 188 struct Features { struct 189 Features(); 190 ~Features(); 231 Features m_features;
|
/external/llvm/lib/Support/ |
D | Host.cpp | 525 bool sys::getHostCPUFeatures(StringMap<bool> &Features) { in getHostCPUFeatures() argument 572 Features.GetOrCreateValue(LLVMFeatureStr).setValue(true); in getHostCPUFeatures() 581 bool sys::getHostCPUFeatures(StringMap<bool> &Features){ in getHostCPUFeatures() argument
|
/external/llvm/lib/Target/ |
D | TargetMachineC.cpp | 62 char* CPU, char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, in LLVMCreateTargetMachine() argument 119 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM, in LLVMCreateTargetMachine()
|
/external/clang/include/clang/Lex/ |
D | LiteralSupport.h | 168 const LangOptions &Features; variable 187 : SM(sm), Features(features), Target(target), Diags(diags), in SM()
|
/external/libyuv/files/unit_test/testdata/ |
D | arm_v7.txt | 3 Features : swp half thumb fastmult vfp edsp iwmmxt thumbee vfpv3 vfpv3d16
|
/external/clang/include/clang/Basic/ |
D | TargetOptions.h | 50 std::vector<std::string> Features; variable
|
/external/llvm/tools/llc/ |
D | llc.cpp | 241 SubtargetFeatures Features; in compileModule() local 243 Features.AddFeature(MAttrs[i]); in compileModule() 244 FeaturesStr = Features.getString(); in compileModule()
|