Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DTargetCXXABI.h40 Kind TheKind;
74 TargetCXXABI() : TheKind(GenericItanium) {} in TargetCXXABI()
76 TargetCXXABI(Kind kind) : TheKind(kind) {} in TargetCXXABI()
79 TheKind = kind; in set()
82 Kind getKind() const { return TheKind; } in getKind()
DObjCRuntime.h62 Kind TheKind = MacOSX;
69 : TheKind(kind), Version(version) {} in ObjCRuntime()
72 TheKind = kind; in set()
76 Kind getKind() const { return TheKind; } in getKind()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOSLog.h72 Kind TheKind = ScalarKind;
82 : TheKind(kind), TheExpr(expr), Size(size), Flags(flags), in TheKind() function
90 : TheKind(CountKind), ConstValue(value), in OSLogBufferItem()
101 Kind getKind() const { return TheKind; } in getKind()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/CodeGen/
DCGFunctionInfo.h109 Kind TheKind; variable
136 : TypeData(nullptr), PaddingType(nullptr), DirectAttr{0, 0}, TheKind(K), in TypeData()
295 Kind getKind() const { return TheKind; } in getKind()
296 bool isDirect() const { return TheKind == Direct; } in isDirect()
297 bool isInAlloca() const { return TheKind == InAlloca; } in isInAlloca()
298 bool isExtend() const { return TheKind == Extend; } in isExtend()
299 bool isIgnore() const { return TheKind == Ignore; } in isIgnore()
300 bool isIndirect() const { return TheKind == Indirect; } in isIndirect()
301 bool isIndirectAliased() const { return TheKind == IndirectAliased; } in isIndirectAliased()
302 bool isExpand() const { return TheKind == Expand; } in isExpand()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp423 TypeTestResolution::Kind TheKind = TypeTestResolution::Unsat; member
676 if (TIL.TheKind == TypeTestResolution::Inline) { in createBitSetTest()
744 if (TIL.TheKind == TypeTestResolution::Unknown) in lowerTypeTestCall()
746 if (TIL.TheKind == TypeTestResolution::Unsat) in lowerTypeTestCall()
762 if (TIL.TheKind == TypeTestResolution::Single) in lowerTypeTestCall()
788 if (TIL.TheKind == TypeTestResolution::AllOnes) in lowerTypeTestCall()
920 TTRes.TheKind = TIL.TheKind; in exportTypeId()
936 if (TIL.TheKind != TypeTestResolution::Unsat) in exportTypeId()
939 if (TIL.TheKind == TypeTestResolution::ByteArray || in exportTypeId()
940 TIL.TheKind == TypeTestResolution::Inline || in exportTypeId()
[all …]
DWholeProgramDevirt.cpp1189 Res->TheKind = WholeProgramDevirtResolution::SingleImpl; in trySingleImplDevirt()
1234 Res->TheKind = WholeProgramDevirtResolution::SingleImpl; in trySingleImplDevirt()
1311 Res->TheKind = WholeProgramDevirtResolution::BranchFunnel; in tryICallBranchFunnel()
1439 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in tryUniformRetValOpt()
1570 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in tryUniqueRetValOpt()
1706 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in tryVirtualConstProp()
1853 assert(TidSummary->TTRes.TheKind != TypeTestResolution::Unsat); in scanTypeTestUsers()
1951 if (Res.TheKind == WholeProgramDevirtResolution::SingleImpl) { in importResolution()
1975 switch (ResByArg.TheKind) { in importResolution()
1999 if (Res.TheKind == WholeProgramDevirtResolution::BranchFunnel) { in importResolution()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
DBreakpadRecords.h31 Record(Kind K) : TheKind(K) {} in Record()
36 Kind getKind() { return TheKind; } in getKind()
39 Kind TheKind;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DModuleSummaryIndexYAML.h31 io.mapOptional("Kind", res.TheKind);
56 io.mapOptional("Kind", res.TheKind);
108 io.mapOptional("Kind", res.TheKind);
DModuleSummaryIndex.h919 } TheKind = Unknown;
944 } TheKind = Indir;
954 } TheKind = Indir;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
DObjCRuntime.cpp85 TheKind = kind; in tryParse()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
DLTO.cpp263 AddUnsigned(S.TTRes.TheKind); in computeLTOCacheKey()
274 AddUnsigned(WPD.second.TheKind); in computeLTOCacheKey()
282 AddUnsigned(ByArg.second.TheKind); in computeLTOCacheKey()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/
DLLParser.cpp7900 TTRes.TheKind = TypeTestResolution::Unknown; in parseTypeTestResolution()
7903 TTRes.TheKind = TypeTestResolution::Unsat; in parseTypeTestResolution()
7906 TTRes.TheKind = TypeTestResolution::ByteArray; in parseTypeTestResolution()
7909 TTRes.TheKind = TypeTestResolution::Inline; in parseTypeTestResolution()
7912 TTRes.TheKind = TypeTestResolution::Single; in parseTypeTestResolution()
7915 TTRes.TheKind = TypeTestResolution::AllOnes; in parseTypeTestResolution()
8014 WPDRes.TheKind = WholeProgramDevirtResolution::Indir; in parseWpdRes()
8017 WPDRes.TheKind = WholeProgramDevirtResolution::SingleImpl; in parseWpdRes()
8020 WPDRes.TheKind = WholeProgramDevirtResolution::BranchFunnel; in parseWpdRes()
8080 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::Indir; in parseOptionalResByArg()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DAsmWriter.cpp3012 Out << "typeTestRes: (kind: " << getTTResKindName(TTRes.TheKind) in printTypeTestResolution()
3072 Out << getWholeProgDevirtResKindName(WPDRes.TheKind); in printWPDRes()
3074 if (WPDRes.TheKind == WholeProgramDevirtResolution::SingleImpl) in printWPDRes()
3084 Out << getWholeProgDevirtResByArgKindName(ResByArg.second.TheKind); in printWPDRes()
3085 if (ResByArg.second.TheKind == in printWPDRes()
3087 ResByArg.second.TheKind == in printWPDRes()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp3755 NameVals.push_back(ByArg.TheKind); in writeWholeProgramDevirtResolutionByArg()
3766 NameVals.push_back(Wpd.TheKind); in writeWholeProgramDevirtResolution()
3782 NameVals.push_back(Summary.TTRes.TheKind); in writeTypeIdSummaryRecord()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp5969 B.TheKind = in parseWholeProgramDevirtResolutionByArg()
5982 Wpd.TheKind = static_cast<WholeProgramDevirtResolution::Kind>(Record[Slot++]); in parseWholeProgramDevirtResolution()
6000 TypeId.TTRes.TheKind = static_cast<TypeTestResolution::Kind>(Record[Slot++]); in parseTypeIdSummaryRecord()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DTargetInfo.cpp240 switch (TheKind) { in dump()