Home
last modified time | relevance | path

Searched refs:Model (Results 1 – 25 of 124) sorted by relevance

12345

/external/clang/test/SemaTemplate/
Dinstantiate-function-params.cpp8 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 {
Dinstantiate-field.cpp39 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/
DTargetMachine.cpp66 Reloc::Model TargetMachine::getRelocationModel() const { in getRelocationModel()
74 CodeModel::Model TargetMachine::getCodeModel() const { in getCodeModel()
81 static TLSModel::Model getSelectedTLSModel(const GlobalVariable *Var) { in getSelectedTLSModel()
98 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const { in getTLSModel()
113 TLSModel::Model Model; in getTLSModel() local
116 Model = TLSModel::LocalDynamic; in getTLSModel()
118 Model = TLSModel::GeneralDynamic; in getTLSModel()
121 Model = TLSModel::LocalExec; in getTLSModel()
123 Model = TLSModel::InitialExec; in getTLSModel()
127 TLSModel::Model SelectedModel = getSelectedTLSModel(Var); in getTLSModel()
[all …]
/external/llvm/include/llvm/MC/
DMCCodeGenInfo.h25 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()
DMCObjectFileInfo.h170 void InitMCObjectFileInfo(StringRef TT, Reloc::Model RM, CodeModel::Model CM,
297 Reloc::Model RelocM;
298 CodeModel::Model CMModel;
/external/llvm/lib/Support/
DHost.cpp115 unsigned &Model) { in DetectX86FamilyModel() argument
117 Model = (EAX >> 4) & 0xf; // Bits 4 - 7 in DetectX86FamilyModel()
123 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19 in DetectX86FamilyModel()
132 unsigned Model = 0; in getHostCPUName() local
133 DetectX86FamilyModel(EAX, Family, Model); in getHostCPUName()
150 switch (Model) { in getHostCPUName()
163 switch (Model) { in getHostCPUName()
181 switch (Model) { in getHostCPUName()
259 switch (Model) { in getHostCPUName()
300 switch (Model) { in getHostCPUName()
[all …]
/external/llvm/lib/Target/Sparc/
DSparcTargetMachine.h38 Reloc::Model RM, CodeModel::Model CM,
69 Reloc::Model RM, CodeModel::Model CM,
81 Reloc::Model RM, CodeModel::Model CM,
DSparcTargetMachine.cpp31 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/
DNVPTXTargetMachine.h53 Reloc::Model RM, CodeModel::Model CM,
109 Reloc::Model RM, CodeModel::Model CM,
118 Reloc::Model RM, CodeModel::Model CM,
DNVPTXTargetMachine.cpp68 Reloc::Model RM, in NVPTXTargetMachine()
69 CodeModel::Model CM, in NVPTXTargetMachine()
86 Reloc::Model RM, CodeModel::Model CM, in NVPTXTargetMachine32()
96 Reloc::Model RM, CodeModel::Model CM, in NVPTXTargetMachine64()
/external/llvm/lib/Target/PowerPC/
DPPCTargetMachine.h43 Reloc::Model RM, CodeModel::Model CM,
80 Reloc::Model RM, CodeModel::Model CM,
91 Reloc::Model RM, CodeModel::Model CM,
DPPCTargetMachine.cpp38 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/
DMipsTargetMachine.h45 Reloc::Model RM, CodeModel::Model CM,
90 Reloc::Model RM, CodeModel::Model CM,
101 Reloc::Model RM, CodeModel::Model CM,
DMipsTargetMachine.cpp41 Reloc::Model RM, CodeModel::Model CM, in MipsTargetMachine()
64 Reloc::Model RM, CodeModel::Model CM, in MipsebTargetMachine()
73 Reloc::Model RM, CodeModel::Model CM, in MipselTargetMachine()
/external/llvm/lib/Target/X86/
DX86Subtarget.cpp241 unsigned Model = 0; in AutoDetectSubtargetFeatures() local
242 X86_MC::DetectFamilyModel(EAX, Family, Model); in AutoDetectSubtargetFeatures()
243 if (IsAMD || (Family == 6 && Model >= 13)) { in AutoDetectSubtargetFeatures()
251 if (IsIntel && ((Family == 6 && Model == 26) || in AutoDetectSubtargetFeatures()
252 (Family == 6 && Model == 44) || in AutoDetectSubtargetFeatures()
253 (Family == 6 && Model == 42))) { in AutoDetectSubtargetFeatures()
260 (Model == 28 || Model == 38 || Model == 39 in AutoDetectSubtargetFeatures()
261 || Model == 53 || Model == 54)) { in AutoDetectSubtargetFeatures()
DX86TargetMachine.h42 Reloc::Model RM, CodeModel::Model CM,
91 Reloc::Model RM, CodeModel::Model CM,
120 Reloc::Model RM, CodeModel::Model CM,
DX86TargetMachine.cpp36 Reloc::Model RM, CodeModel::Model CM, in X86_32TargetMachine()
59 Reloc::Model RM, CodeModel::Model CM, in X86_64TargetMachine()
75 Reloc::Model RM, CodeModel::Model CM, in X86TargetMachine()
/external/llvm/lib/Target/ARM/
DARMTargetMachine.h45 Reloc::Model RM, CodeModel::Model CM,
74 Reloc::Model RM, CodeModel::Model CM,
117 Reloc::Model RM, CodeModel::Model CM,
DARMTargetMachine.cpp43 Reloc::Model RM, CodeModel::Model CM, in ARMBaseTargetMachine()
59 Reloc::Model RM, CodeModel::Model CM, in ARMTargetMachine()
85 Reloc::Model RM, CodeModel::Model CM, in ThumbTargetMachine()
/external/llvm/include/llvm/Support/
DCodeGen.h22 enum Model { Default, Static, PIC_, DynamicNoPIC }; enum
27 enum Model { Default, JITDefault, Small, Kernel, Medium, Large }; enum
32 enum Model { enum
DTargetRegistry.h77 Reloc::Model RM,
78 CodeModel::Model CM,
91 Reloc::Model RM,
92 CodeModel::Model CM,
286 MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model RM, in createMCCodeGenInfo()
287 CodeModel::Model CM, in createMCCodeGenInfo()
343 Reloc::Model RM = Reloc::Default,
344 CodeModel::Model CM = CodeModel::Default,
874 static MCCodeGenInfo *Allocator(StringRef TT, Reloc::Model RM, in Allocator()
875 CodeModel::Model CM, CodeGenOpt::Level OL) { in Allocator()
[all …]
/external/llvm/include/llvm/Target/
DTargetMachine.h194 Reloc::Model getRelocationModel() const;
198 CodeModel::Model getCodeModel() const;
202 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
289 Reloc::Model RM, CodeModel::Model CM,
/external/llvm/lib/MC/
DMCCodeGenInfo.cpp18 void MCCodeGenInfo::InitMCCodeGenInfo(Reloc::Model RM, CodeModel::Model CM, in InitMCCodeGenInfo()
/external/llvm/lib/Target/CppBackend/
DCPPTargetMachine.h27 Reloc::Model RM, CodeModel::Model CM, in CPPTargetMachine()
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h203 Reloc::Model RM = Reloc::Default,
204 CodeModel::Model CMM =
487 Reloc::Model RelocModel;
488 CodeModel::Model CMModel;
553 EngineBuilder &setRelocationModel(Reloc::Model RM) { in setRelocationModel()
561 EngineBuilder &setCodeModel(CodeModel::Model M) { in setCodeModel()

12345