HomeSort by relevance Sort by last modified time
    Searched refs:TLSModel (Results 1 - 17 of 17) sorted by null

  /external/llvm/lib/Target/
TargetMachine.cpp 92 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
98 return TLSModel::GeneralDynamic;
100 return TLSModel::LocalDynamic;
102 return TLSModel::InitialExec;
104 return TLSModel::LocalExec;
109 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
118 TLSModel::Model Model;
121 Model = TLSModel::LocalDynamic;
123 Model = TLSModel::GeneralDynamic;
126 Model = TLSModel::LocalExec
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 86 TLSModel::Model Model;
91 Model == TLSModel::LocalDynamic)
92 Model = TLSModel::GeneralDynamic;
100 Model = TLSModel::GeneralDynamic;
103 case TLSModel::InitialExec:
106 case TLSModel::LocalExec:
109 case TLSModel::LocalDynamic:
112 case TLSModel::GeneralDynamic:
AArch64ISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Support/
CodeGen.h 38 namespace TLSModel {
  /external/clang/include/clang/Frontend/
CodeGenOptions.h 92 enum TLSModel {
  /external/llvm/include/llvm/Target/
TargetMachine.h 185 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 218 TLSModel::Model Model = TM->getTLSModel(GV);
219 return Model == TLSModel::GeneralDynamic || Model == TLSModel::LocalDynamic;
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
SafeStack.cpp 361 auto TLSModel = UseTLS ?
369 UnsafeStackPtrVar, nullptr, TLSModel);
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 528 TLSModel::Model model) const;
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 585 CodeGenOptions::TLSModel M) {
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 647 Opts.setDefaultTLSModel(static_cast<CodeGenOptions::TLSModel>(Model));
    [all...]

Completed in 962 milliseconds