Home
last modified time | relevance | path

Searched refs:SK (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMTargetObjectFile.cpp75 static bool isExecuteOnlyFunction(const GlobalObject *GO, SectionKind SK, in isExecuteOnlyFunction() argument
78 if (TM.getSubtarget<ARMSubtarget>(*F).genExecuteOnly() && SK.isText()) in isExecuteOnlyFunction()
84 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
86 if (isExecuteOnlyFunction(GO, SK, TM)) in getExplicitSectionGlobal()
87 SK = SectionKind::getExecuteOnly(); in getExplicitSectionGlobal()
89 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
93 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
95 if (isExecuteOnlyFunction(GO, SK, TM)) in SelectSectionForGlobal()
96 SK = SectionKind::getExecuteOnly(); in SelectSectionForGlobal()
98 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, SK, TM); in SelectSectionForGlobal()
/external/llvm-project/llvm/lib/Target/ARM/
DARMTargetObjectFile.cpp75 static bool isExecuteOnlyFunction(const GlobalObject *GO, SectionKind SK, in isExecuteOnlyFunction() argument
78 if (TM.getSubtarget<ARMSubtarget>(*F).genExecuteOnly() && SK.isText()) in isExecuteOnlyFunction()
84 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
86 if (isExecuteOnlyFunction(GO, SK, TM)) in getExplicitSectionGlobal()
87 SK = SectionKind::getExecuteOnly(); in getExplicitSectionGlobal()
89 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
93 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in SelectSectionForGlobal() argument
95 if (isExecuteOnlyFunction(GO, SK, TM)) in SelectSectionForGlobal()
96 SK = SectionKind::getExecuteOnly(); in SelectSectionForGlobal()
98 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, SK, TM); in SelectSectionForGlobal()
/external/llvm-project/llvm/test/CodeGen/AMDGPU/
Duse-sgpr-multiple-times.ll139 ; GCN-DAG: s_mov_b32 [[SK:s[0-9]+]], 0x44800000
140 ; GCN: v_fma_f32 [[RESULT0:v[0-9]+]], [[SK]], [[SK]], [[VGPR]]
152 ; GCN-DAG: s_mov_b32 [[SK:s[0-9]+]], 0x44800000
153 ; GCN-DAG: v_fma_f32 [[RESULT0:v[0-9]+]], [[SK]], [[SK]], [[VGPR0]]
154 ; GCN-DAG: v_fma_f32 [[RESULT1:v[0-9]+]], [[SK]], [[SK]], [[VGPR1]]
169 ; GCN-DAG: s_mov_b32 [[SK:s[0-9]+]], 0x44800000
170 ; GCN: v_fma_f32 [[RESULT:v[0-9]+]], [[VGPR]], [[SK]], [[SK]]
182 ; GCN-DAG: s_mov_b32 [[SK:s[0-9]+]], 0x44800000
183 ; GCN-DAG: v_fma_f32 [[RESULT0:v[0-9]+]], [[VGPR0]], [[SK]], [[SK]]
184 ; GCN-DAG: v_fma_f32 [[RESULT1:v[0-9]+]], [[VGPR1]], [[SK]], [[SK]]
[all …]
Dmadmk.ll34 ; GCN-DAG: s_mov_b32 [[SK:s[0-9]+]], 0x41200000
35 ; GCN-DAG: v_mac_f32_e32 [[VB]], [[SK]], [[VA]]
36 ; GCN-DAG: v_mac_f32_e32 [[VC]], [[SK]], [[VA]]
133 ; GCN-DAG: s_mov_b32 [[SK:s[0-9]+]], 0x41200000
134 ; GCN: v_mad_f32 {{v[0-9]+}}, |[[VA]]|, [[SK]], [[VB]]
175 ; GCN: s_mov_b32 [[SK:s[0-9]+]], 0x41200000
176 ; GCN: v_mad_f32 {{v[0-9]+}}, [[A]], [[SK]], 2.0
/external/llvm/lib/IR/
DComdat.cpp18 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {} in Comdat()
20 Comdat::Comdat() : Name(nullptr), SK(Comdat::Any) {} in Comdat()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUTargetObjectFile.cpp33 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
37 SK = SectionKind::getMetadata(); in getExplicitSectionGlobal()
39 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetObjectFile.cpp33 const GlobalObject *GO, SectionKind SK, const TargetMachine &TM) const { in getExplicitSectionGlobal() argument
37 SK = SectionKind::getMetadata(); in getExplicitSectionGlobal()
39 return TargetLoweringObjectFileELF::getExplicitSectionGlobal(GO, SK, TM); in getExplicitSectionGlobal()
/external/llvm/include/llvm/IR/
DComdat.h40 SelectionKind getSelectionKind() const { return SK; } in getSelectionKind()
41 void setSelectionKind(SelectionKind Val) { SK = Val; } in setSelectionKind()
53 SelectionKind SK; variable
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DComdat.h44 SelectionKind getSelectionKind() const { return SK; } in getSelectionKind()
45 void setSelectionKind(SelectionKind Val) { SK = Val; } in setSelectionKind()
57 SelectionKind SK = Any; variable
/external/llvm-project/llvm/include/llvm/IR/
DComdat.h44 SelectionKind getSelectionKind() const { return SK; } in getSelectionKind()
45 void setSelectionKind(SelectionKind Val) { SK = Val; } in setSelectionKind()
57 SelectionKind SK = Any; variable
/external/llvm-project/clang-tools-extra/clangd/
DCodeComplete.cpp82 using SK = index::SymbolKind; in toCompletionItemKind() typedef
84 case SK::Unknown: in toCompletionItemKind()
86 case SK::Module: in toCompletionItemKind()
87 case SK::Namespace: in toCompletionItemKind()
88 case SK::NamespaceAlias: in toCompletionItemKind()
90 case SK::Macro: in toCompletionItemKind()
92 case SK::Enum: in toCompletionItemKind()
94 case SK::Struct: in toCompletionItemKind()
96 case SK::Class: in toCompletionItemKind()
97 case SK::Protocol: in toCompletionItemKind()
[all …]
/external/llvm-project/clang-tools-extra/clangd/index/
DSymbolCollector.cpp107 using SK = index::SymbolKind; in shouldCollectIncludePath() typedef
109 case SK::Macro: in shouldCollectIncludePath()
110 case SK::Enum: in shouldCollectIncludePath()
111 case SK::Struct: in shouldCollectIncludePath()
112 case SK::Class: in shouldCollectIncludePath()
113 case SK::Union: in shouldCollectIncludePath()
114 case SK::TypeAlias: in shouldCollectIncludePath()
115 case SK::Using: in shouldCollectIncludePath()
116 case SK::Function: in shouldCollectIncludePath()
117 case SK::Variable: in shouldCollectIncludePath()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DComdat.cpp22 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {} in Comdat()
/external/llvm-project/llvm/lib/IR/
DComdat.cpp22 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {} in Comdat()
/external/llvm/lib/Linker/
DLinkModules.cpp76 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
406 Comdat::SelectionKind SK; in linkIfNeeded() local
407 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; in linkIfNeeded()
494 Comdat::SelectionKind SK; in run() local
496 if (getComdatResult(&C, SK, LinkFromSrc)) in run()
498 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc); in run()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/
DLinkModules.cpp73 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
382 Comdat::SelectionKind SK; in linkIfNeeded() local
383 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; in linkIfNeeded()
465 Comdat::SelectionKind SK; in run() local
467 if (getComdatResult(&C, SK, LinkFromSrc)) in run()
469 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc); in run()
/external/llvm-project/llvm/lib/Linker/
DLinkModules.cpp73 bool getComdatResult(const Comdat *SrcC, Comdat::SelectionKind &SK,
382 Comdat::SelectionKind SK; in linkIfNeeded() local
383 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC]; in linkIfNeeded()
465 Comdat::SelectionKind SK; in run() local
467 if (getComdatResult(&C, SK, LinkFromSrc)) in run()
469 ComdatsChosen[&C] = std::make_pair(SK, LinkFromSrc); in run()
/external/llvm-project/llvm/lib/Transforms/Utils/
DSanitizerStats.cpp42 void SanitizerStatReport::create(IRBuilder<> &B, SanitizerStatKind SK) { in create() argument
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
/external/llvm/lib/Transforms/Utils/
DSanitizerStats.cpp43 void SanitizerStatReport::create(IRBuilder<> &B, SanitizerStatKind SK) { in create() argument
54 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSanitizerStats.cpp42 void SanitizerStatReport::create(IRBuilder<> &B, SanitizerStatKind SK) { in create() argument
53 ConstantInt::get(IntPtrTy, uint64_t(SK) << (IntPtrTy->getBitWidth() - in create()
/external/llvm-project/llvm/lib/Support/
DYAMLParser.cpp794 SimpleKey SK; in peekNext() local
795 SK.Tok = TokenQueue.begin(); in peekNext()
796 if (!is_contained(SimpleKeys, SK)) in peekNext()
974 SimpleKey SK; in saveSimpleKeyCandidate() local
975 SK.Tok = Tok; in saveSimpleKeyCandidate()
976 SK.Line = Line; in saveSimpleKeyCandidate()
977 SK.Column = AtColumn; in saveSimpleKeyCandidate()
978 SK.IsRequired = IsRequired; in saveSimpleKeyCandidate()
979 SK.FlowLevel = FlowLevel; in saveSimpleKeyCandidate()
980 SimpleKeys.push_back(SK); in saveSimpleKeyCandidate()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DYAMLParser.cpp801 SimpleKey SK; in peekNext() local
802 SK.Tok = TokenQueue.begin(); in peekNext()
803 if (!is_contained(SimpleKeys, SK)) in peekNext()
981 SimpleKey SK; in saveSimpleKeyCandidate() local
982 SK.Tok = Tok; in saveSimpleKeyCandidate()
983 SK.Line = Line; in saveSimpleKeyCandidate()
984 SK.Column = AtColumn; in saveSimpleKeyCandidate()
985 SK.IsRequired = IsRequired; in saveSimpleKeyCandidate()
986 SK.FlowLevel = FlowLevel; in saveSimpleKeyCandidate()
987 SimpleKeys.push_back(SK); in saveSimpleKeyCandidate()
[all …]
/external/llvm/lib/Support/
DYAMLParser.cpp803 SimpleKey SK; in peekNext() local
804 SK.Tok = TokenQueue.begin(); in peekNext()
805 if (std::find(SimpleKeys.begin(), SimpleKeys.end(), SK) in peekNext()
983 SimpleKey SK; in saveSimpleKeyCandidate() local
984 SK.Tok = Tok; in saveSimpleKeyCandidate()
985 SK.Line = Line; in saveSimpleKeyCandidate()
986 SK.Column = AtColumn; in saveSimpleKeyCandidate()
987 SK.IsRequired = IsRequired; in saveSimpleKeyCandidate()
988 SK.FlowLevel = FlowLevel; in saveSimpleKeyCandidate()
989 SimpleKeys.push_back(SK); in saveSimpleKeyCandidate()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSanitizerStats.h37 void create(IRBuilder<> &B, SanitizerStatKind SK);
/external/llvm/include/llvm/Transforms/Utils/
DSanitizerStats.h38 void create(IRBuilder<> &B, SanitizerStatKind SK);

12345678910>>...15