Home
last modified time | relevance | path

Searched refs:TheKind (Results 1 – 14 of 14) sorted by relevance

/external/clang/include/clang/Basic/
DTargetCXXABI.h121 Kind TheKind;
125 TargetCXXABI() : TheKind(GenericItanium) {} in TargetCXXABI()
127 TargetCXXABI(Kind kind) : TheKind(kind) {} in TargetCXXABI()
130 TheKind = kind; in set()
133 Kind getKind() const { return TheKind; } in getKind()
DObjCRuntime.h60 Kind TheKind;
65 ObjCRuntime() : TheKind(MacOSX) {} in ObjCRuntime()
68 : TheKind(kind), Version(version) {} in ObjCRuntime()
71 TheKind = kind; in set()
75 Kind getKind() const { return TheKind; } in getKind()
/external/clang/include/clang/CodeGen/
DCGFunctionInfo.h90 Kind TheKind; variable
113 : TheKind(K), PaddingInReg(false), InReg(false) { in ABIArgInfo()
119 TheKind(Direct), PaddingInReg(false), InReg(false) {} in ABIArgInfo()
234 Kind getKind() const { return TheKind; } in getKind()
235 bool isDirect() const { return TheKind == Direct; } in isDirect()
236 bool isInAlloca() const { return TheKind == InAlloca; } in isInAlloca()
237 bool isExtend() const { return TheKind == Extend; } in isExtend()
238 bool isIgnore() const { return TheKind == Ignore; } in isIgnore()
239 bool isIndirect() const { return TheKind == Indirect; } in isIndirect()
240 bool isExpand() const { return TheKind == Expand; } in isExpand()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp360 TypeTestResolution::Kind TheKind = TypeTestResolution::Unsat; member
606 if (TIL.TheKind == TypeTestResolution::Inline) { in createBitSetTest()
673 if (TIL.TheKind == TypeTestResolution::Unsat) in lowerTypeTestCall()
689 if (TIL.TheKind == TypeTestResolution::Single) in lowerTypeTestCall()
715 if (TIL.TheKind == TypeTestResolution::AllOnes) in lowerTypeTestCall()
841 TTRes.TheKind = TIL.TheKind; in exportTypeId()
857 if (TIL.TheKind != TypeTestResolution::Unsat) in exportTypeId()
860 if (TIL.TheKind == TypeTestResolution::ByteArray || in exportTypeId()
861 TIL.TheKind == TypeTestResolution::Inline || in exportTypeId()
862 TIL.TheKind == TypeTestResolution::AllOnes) { in exportTypeId()
[all …]
DWholeProgramDevirt.cpp817 Res->TheKind = WholeProgramDevirtResolution::SingleImpl; in trySingleImplDevirt()
874 Res->TheKind = WholeProgramDevirtResolution::BranchFunnel; in tryICallBranchFunnel()
1000 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in tryUniformRetValOpt()
1129 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in tryUniqueRetValOpt()
1263 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in tryVirtualConstProp()
1470 if (Res.TheKind == WholeProgramDevirtResolution::SingleImpl) { in importResolution()
1491 switch (ResByArg.TheKind) { in importResolution()
1515 if (Res.TheKind == WholeProgramDevirtResolution::BranchFunnel) { in importResolution()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DModuleSummaryIndexYAML.h31 io.mapOptional("Kind", res.TheKind);
56 io.mapOptional("Kind", res.TheKind);
108 io.mapOptional("Kind", res.TheKind);
DModuleSummaryIndex.h661 } TheKind = Unsat;
686 } TheKind = Indir;
696 } TheKind = Indir;
/external/clang/lib/Basic/
DObjCRuntime.cpp81 TheKind = kind; in tryParse()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
DLTO.cpp229 AddUnsigned(S.TTRes.TheKind); in computeCacheKey()
240 AddUnsigned(WPD.second.TheKind); in computeCacheKey()
248 AddUnsigned(ByArg.second.TheKind); in computeCacheKey()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
DLLParser.cpp7099 TTRes.TheKind = TypeTestResolution::Unsat; in ParseTypeTestResolution()
7102 TTRes.TheKind = TypeTestResolution::ByteArray; in ParseTypeTestResolution()
7105 TTRes.TheKind = TypeTestResolution::Inline; in ParseTypeTestResolution()
7108 TTRes.TheKind = TypeTestResolution::Single; in ParseTypeTestResolution()
7111 TTRes.TheKind = TypeTestResolution::AllOnes; in ParseTypeTestResolution()
7210 WPDRes.TheKind = WholeProgramDevirtResolution::Indir; in ParseWpdRes()
7213 WPDRes.TheKind = WholeProgramDevirtResolution::SingleImpl; in ParseWpdRes()
7216 WPDRes.TheKind = WholeProgramDevirtResolution::BranchFunnel; in ParseWpdRes()
7276 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::Indir; in ParseOptionalResByArg()
7279 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in ParseOptionalResByArg()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DAsmWriter.cpp2700 Out << "typeTestRes: (kind: " << getTTResKindName(TTRes.TheKind) in printTypeTestResolution()
2747 Out << getWholeProgDevirtResKindName(WPDRes.TheKind); in printWPDRes()
2749 if (WPDRes.TheKind == WholeProgramDevirtResolution::SingleImpl) in printWPDRes()
2759 Out << getWholeProgDevirtResByArgKindName(ResByArg.second.TheKind); in printWPDRes()
2760 if (ResByArg.second.TheKind == in printWPDRes()
2762 ResByArg.second.TheKind == in printWPDRes()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp3409 NameVals.push_back(ByArg.TheKind); in writeWholeProgramDevirtResolutionByArg()
3420 NameVals.push_back(Wpd.TheKind); in writeWholeProgramDevirtResolution()
3436 NameVals.push_back(Summary.TTRes.TheKind); in writeTypeIdSummaryRecord()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp5121 B.TheKind = in parseWholeProgramDevirtResolutionByArg()
5134 Wpd.TheKind = static_cast<WholeProgramDevirtResolution::Kind>(Record[Slot++]); in parseWholeProgramDevirtResolution()
5152 TypeId.TTRes.TheKind = static_cast<TypeTestResolution::Kind>(Record[Slot++]); in parseTypeIdSummaryRecord()
/external/clang/lib/CodeGen/
DTargetInfo.cpp207 switch (TheKind) { in dump()