/external/clang/test/SemaTemplate/ |
D | instantiate-function-params.cpp | 8 template <class Model, void (Model::*)()> struct wrap_constraints { }; 9 template <class Model> 10 inline char has_constraints_(Model* , // expected-note 2{{while substituting deduced template argu… 12 … wrap_constraints<Model,&Model::constraints>* = 0); // expected-note 2{{in instantiation}} 14 template <class Model> struct not_satisfied { 15 …static const bool value = sizeof( has_constraints_((Model*)0) == 1); // expected-error 3{{no matc… 20 template <class Model> struct requirement_<void(*)(Model)> : if_< n… 22 template <class Model> struct usage_requirements {
|
D | instantiate-field.cpp | 39 template <class Model> struct requirement<failed *Model::*> 43 ((Model*)0)->~Model(); // expected-note{{in instantiation of}} in failed() 47 template <class Model> struct requirement_<void(*)(Model)> : requirement<failed *Model::*> 53 template <class Model> struct usage_requirements 56 {((Model*)0)->~Model(); } // expected-note{{in instantiation of}} in ~usage_requirements()
|
/external/llvm/lib/Target/ |
D | TargetMachine.cpp | 92 Reloc::Model TargetMachine::getRelocationModel() const { in getRelocationModel() 100 CodeModel::Model TargetMachine::getCodeModel() const { in getCodeModel() 107 static TLSModel::Model getSelectedTLSModel(const GlobalVariable *Var) { in getSelectedTLSModel() 124 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const { in getTLSModel() 139 TLSModel::Model Model; in getTLSModel() local 142 Model = TLSModel::LocalDynamic; in getTLSModel() 144 Model = TLSModel::GeneralDynamic; in getTLSModel() 147 Model = TLSModel::LocalExec; in getTLSModel() 149 Model = TLSModel::InitialExec; in getTLSModel() 153 TLSModel::Model SelectedModel = getSelectedTLSModel(Var); in getTLSModel() [all …]
|
/external/llvm/include/llvm/MC/ |
D | MCCodeGenInfo.h | 25 Reloc::Model RelocationModel; 29 CodeModel::Model CMModel; 36 void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default, 37 CodeModel::Model CM = CodeModel::Default, 40 Reloc::Model getRelocationModel() const { return RelocationModel; } in getRelocationModel() 42 CodeModel::Model getCodeModel() const { return CMModel; } in getCodeModel()
|
/external/llvm/lib/Target/X86/ |
D | X86Subtarget.cpp | 238 unsigned Model = 0; in AutoDetectSubtargetFeatures() local 239 X86_MC::DetectFamilyModel(EAX, Family, Model); in AutoDetectSubtargetFeatures() 240 if (IsAMD || (Family == 6 && Model >= 13)) { in AutoDetectSubtargetFeatures() 249 ((Family == 6 && Model == 0x1E) || // Nehalem: Clarksfield, Lynnfield, in AutoDetectSubtargetFeatures() 251 (Family == 6 && Model == 0x1A) || // Nehalem: Bloomfield, Nehalem-EP in AutoDetectSubtargetFeatures() 252 (Family == 6 && Model == 0x2E) || // Nehalem: Nehalem-EX in AutoDetectSubtargetFeatures() 253 (Family == 6 && Model == 0x25) || // Westmere: Arrandale, Clarksdale in AutoDetectSubtargetFeatures() 254 (Family == 6 && Model == 0x2C) || // Westmere: Gulftown, Westmere-EP in AutoDetectSubtargetFeatures() 255 (Family == 6 && Model == 0x2F) || // Westmere: Westmere-EX in AutoDetectSubtargetFeatures() 256 (Family == 6 && Model == 0x2A) || // SandyBridge in AutoDetectSubtargetFeatures() [all …]
|
D | X86TargetMachine.h | 40 Reloc::Model RM, CodeModel::Model CM, 89 Reloc::Model RM, CodeModel::Model CM, 118 Reloc::Model RM, CodeModel::Model CM,
|
D | X86TargetMachine.cpp | 36 Reloc::Model RM, CodeModel::Model CM, in X86_32TargetMachine() 59 Reloc::Model RM, CodeModel::Model CM, in X86_64TargetMachine() 79 Reloc::Model RM, CodeModel::Model CM, in X86TargetMachine()
|
/external/llvm/lib/Support/ |
D | Host.cpp | 116 unsigned &Model) { in DetectX86FamilyModel() argument 118 Model = (EAX >> 4) & 0xf; // Bits 4 - 7 in DetectX86FamilyModel() 124 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19 in DetectX86FamilyModel() 133 unsigned Model = 0; in getHostCPUName() local 134 DetectX86FamilyModel(EAX, Family, Model); in getHostCPUName() 151 switch (Model) { in getHostCPUName() 164 switch (Model) { in getHostCPUName() 182 switch (Model) { in getHostCPUName() 262 switch (Model) { in getHostCPUName() 303 switch (Model) { in getHostCPUName() [all …]
|
/external/llvm/lib/Target/Sparc/ |
D | SparcTargetMachine.h | 38 Reloc::Model RM, CodeModel::Model CM, 69 Reloc::Model RM, CodeModel::Model CM, 81 Reloc::Model RM, CodeModel::Model CM,
|
D | SparcTargetMachine.cpp | 31 Reloc::Model RM, CodeModel::Model CM, in SparcTargetMachine() 82 Reloc::Model RM, in SparcV8TargetMachine() 83 CodeModel::Model CM, in SparcV8TargetMachine() 94 Reloc::Model RM, in SparcV9TargetMachine() 95 CodeModel::Model CM, in SparcV9TargetMachine()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXTargetMachine.h | 53 Reloc::Model RM, CodeModel::Model CM, 109 Reloc::Model RM, CodeModel::Model CM, 118 Reloc::Model RM, CodeModel::Model CM,
|
D | NVPTXTargetMachine.cpp | 67 Reloc::Model RM, in NVPTXTargetMachine() 68 CodeModel::Model CM, in NVPTXTargetMachine() 85 Reloc::Model RM, CodeModel::Model CM, in NVPTXTargetMachine32() 95 Reloc::Model RM, CodeModel::Model CM, in NVPTXTargetMachine64()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCTargetMachine.h | 43 Reloc::Model RM, CodeModel::Model CM, 83 Reloc::Model RM, CodeModel::Model CM, 94 Reloc::Model RM, CodeModel::Model CM,
|
D | PPCTargetMachine.cpp | 38 Reloc::Model RM, CodeModel::Model CM, in PPCTargetMachine() 58 Reloc::Model RM, CodeModel::Model CM, in PPC32TargetMachine() 68 Reloc::Model RM, CodeModel::Model CM, in PPC64TargetMachine()
|
/external/llvm/lib/Target/Mips/ |
D | MipsTargetMachine.h | 44 Reloc::Model RM, CodeModel::Model CM, 85 Reloc::Model RM, CodeModel::Model CM, 96 Reloc::Model RM, CodeModel::Model CM,
|
D | MipsTargetMachine.cpp | 41 Reloc::Model RM, CodeModel::Model CM, in MipsTargetMachine() 65 Reloc::Model RM, CodeModel::Model CM, in MipsebTargetMachine() 74 Reloc::Model RM, CodeModel::Model CM, in MipselTargetMachine()
|
D | MipsSubtarget.h | 104 Reloc::Model RM; 121 const std::string &FS, bool little, Reloc::Model RM); 160 Reloc::Model getRelocationModel() const {return RM;} in getRelocationModel()
|
/external/llvm/lib/Target/ARM/ |
D | ARMTargetMachine.h | 44 Reloc::Model RM, CodeModel::Model CM, 79 Reloc::Model RM, CodeModel::Model CM, 117 Reloc::Model RM, CodeModel::Model CM,
|
D | ARMTargetMachine.cpp | 48 Reloc::Model RM, CodeModel::Model CM, in ARMBaseTargetMachine() 73 Reloc::Model RM, CodeModel::Model CM, in ARMTargetMachine() 98 Reloc::Model RM, CodeModel::Model CM, in ThumbTargetMachine()
|
/external/llvm/include/llvm/Support/ |
D | CodeGen.h | 22 enum Model { Default, Static, PIC_, DynamicNoPIC }; enum 27 enum Model { Default, JITDefault, Small, Kernel, Medium, Large }; enum 32 enum Model { enum
|
D | TargetRegistry.h | 76 Reloc::Model RM, 77 CodeModel::Model CM, 90 Reloc::Model RM, 91 CodeModel::Model CM, 277 MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model RM, in createMCCodeGenInfo() 278 CodeModel::Model CM, in createMCCodeGenInfo() 334 Reloc::Model RM = Reloc::Default, 335 CodeModel::Model CM = CodeModel::Default, 841 static MCCodeGenInfo *Allocator(StringRef TT, Reloc::Model RM, in Allocator() 842 CodeModel::Model CM, CodeGenOpt::Level OL) { in Allocator() [all …]
|
/external/chromium-trace/trace-viewer/src/ |
D | model.js | 45 function Model(opt_eventData, opt_shiftWorldToZero) { class 66 Model.registerImporter = function(importerConstructor) { 70 Model.prototype = { class 326 Model.registerImporter(ModelEmptyImporter); 329 Model: Model
|
/external/llvm/include/llvm/Target/ |
D | TargetMachine.h | 193 Reloc::Model getRelocationModel() const; 197 CodeModel::Model getCodeModel() const; 201 TLSModel::Model getTLSModel(const GlobalValue *GV) const; 291 Reloc::Model RM, CodeModel::Model CM,
|
/external/llvm/test/Analysis/CostModel/X86/ |
D | intrinsic-cost.ll | 24 ; CORE2: Printing analysis 'Cost Model Analysis' for function 'test1': 25 ; CORE2: Cost Model: Found an estimated cost of 400 for instruction: %2 = call <4 x float> @llvm.… 27 ; COREI7: Printing analysis 'Cost Model Analysis' for function 'test1': 28 ; COREI7: Cost Model: Found an estimated cost of 1 for instruction: %2 = call <4 x float> @llvm.c…
|
/external/llvm/lib/MC/ |
D | MCCodeGenInfo.cpp | 18 void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM, in InitMCCodeGenInfo()
|