Home
last modified time | relevance | path

Searched refs:ByArg (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h41 struct ScalarEnumerationTraits<WholeProgramDevirtResolution::ByArg::Kind> {
43 WholeProgramDevirtResolution::ByArg::Kind &value) {
44 io.enumCase(value, "Indir", WholeProgramDevirtResolution::ByArg::Indir);
46 WholeProgramDevirtResolution::ByArg::UniformRetVal);
48 WholeProgramDevirtResolution::ByArg::UniqueRetVal);
50 WholeProgramDevirtResolution::ByArg::VirtualConstProp);
54 template <> struct MappingTraits<WholeProgramDevirtResolution::ByArg> {
55 static void mapping(IO &io, WholeProgramDevirtResolution::ByArg &res) {
65 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>> {
68 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> &V) {
[all …]
H A DModuleSummaryIndex.h1203 struct ByArg {
1226 std::map<std::vector<uint64_t>, ByArg> ResByArg;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp639 WholeProgramDevirtResolution::ByArg *Res);
671 WholeProgramDevirtResolution::ByArg *Res,
1598 WholeProgramDevirtResolution::ByArg *Res) { in tryUniformRetValOpt()
1607 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in tryUniformRetValOpt()
1719 CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res, in tryUniqueRetValOpt()
1738 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in tryUniqueRetValOpt()
1837 WholeProgramDevirtResolution::ByArg *ResByArg = nullptr; in tryVirtualConstProp()
1887 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in tryVirtualConstProp()
2162 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in importResolution()
2165 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: { in importResolution()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp306 for (auto &ByArg : WPD.second.ResByArg) { in computeLTOCacheKey() local
307 AddUint64(ByArg.first.size()); in computeLTOCacheKey()
308 for (uint64_t Arg : ByArg.first) in computeLTOCacheKey()
310 AddUnsigned(ByArg.second.TheKind); in computeLTOCacheKey()
311 AddUint64(ByArg.second.Info); in computeLTOCacheKey()
312 AddUnsigned(ByArg.second.Byte); in computeLTOCacheKey()
313 AddUnsigned(ByArg.second.Bit); in computeLTOCacheKey()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp8625 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> in parseOptionalResByArg()
8642 WholeProgramDevirtResolution::ByArg ByArg; in parseOptionalResByArg() local
8645 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::Indir; in parseOptionalResByArg()
8648 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in parseOptionalResByArg()
8651 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in parseOptionalResByArg()
8654 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in parseOptionalResByArg()
8668 parseUInt64(ByArg.Info)) in parseOptionalResByArg()
8674 parseUInt32(ByArg.Byte)) in parseOptionalResByArg()
8680 parseUInt32(ByArg.Bit)) in parseOptionalResByArg()
8692 ResByArg[Args] = ByArg; in parseOptionalResByArg()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp3025 WholeProgramDevirtResolution::ByArg::Kind K) { in getWholeProgDevirtResByArgKindName()
3027 case WholeProgramDevirtResolution::ByArg::Indir: in getWholeProgDevirtResByArgKindName()
3029 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in getWholeProgDevirtResByArgKindName()
3031 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: in getWholeProgDevirtResByArgKindName()
3033 case WholeProgramDevirtResolution::ByArg::VirtualConstProp: in getWholeProgDevirtResByArgKindName()
3132 WholeProgramDevirtResolution::ByArg::UniformRetVal || in printWPDRes()
3134 WholeProgramDevirtResolution::ByArg::UniqueRetVal) in printWPDRes()
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h419 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3935 const WholeProgramDevirtResolution::ByArg &ByArg) { in writeWholeProgramDevirtResolutionByArg() argument
3939 NameVals.push_back(ByArg.TheKind); in writeWholeProgramDevirtResolutionByArg()
3940 NameVals.push_back(ByArg.Info); in writeWholeProgramDevirtResolutionByArg()
3941 NameVals.push_back(ByArg.Byte); in writeWholeProgramDevirtResolutionByArg()
3942 NameVals.push_back(ByArg.Bit); in writeWholeProgramDevirtResolutionByArg()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7090 WholeProgramDevirtResolution::ByArg &B = in parseWholeProgramDevirtResolutionByArg()
7095 static_cast<WholeProgramDevirtResolution::ByArg::Kind>(Record[Slot++]); in parseWholeProgramDevirtResolutionByArg()