Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.h1119 struct ByArg {
1142 std::map<std::vector<uint64_t>, ByArg> ResByArg;
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp637 WholeProgramDevirtResolution::ByArg *Res);
669 WholeProgramDevirtResolution::ByArg *Res,
1493 WholeProgramDevirtResolution::ByArg *Res) { in tryUniformRetValOpt()
1502 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in tryUniformRetValOpt()
1615 CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res, in tryUniqueRetValOpt()
1634 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in tryUniqueRetValOpt()
1722 WholeProgramDevirtResolution::ByArg *ResByArg = nullptr; in tryVirtualConstProp()
1772 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in tryVirtualConstProp()
2036 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in importResolution()
2039 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: { in importResolution()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/LTO/
H A DLTO.cpp282 for (auto &ByArg : WPD.second.ResByArg) { in computeLTOCacheKey() local
283 AddUint64(ByArg.first.size()); in computeLTOCacheKey()
284 for (uint64_t Arg : ByArg.first) in computeLTOCacheKey()
286 AddUnsigned(ByArg.second.TheKind); in computeLTOCacheKey()
287 AddUint64(ByArg.second.Info); in computeLTOCacheKey()
288 AddUnsigned(ByArg.second.Byte); in computeLTOCacheKey()
289 AddUnsigned(ByArg.second.Bit); in computeLTOCacheKey()
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp8469 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> in parseOptionalResByArg()
8486 WholeProgramDevirtResolution::ByArg ByArg; in parseOptionalResByArg() local
8489 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::Indir; in parseOptionalResByArg()
8492 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in parseOptionalResByArg()
8495 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in parseOptionalResByArg()
8498 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in parseOptionalResByArg()
8512 parseUInt64(ByArg.Info)) in parseOptionalResByArg()
8518 parseUInt32(ByArg.Byte)) in parseOptionalResByArg()
8524 parseUInt32(ByArg.Bit)) in parseOptionalResByArg()
8536 ResByArg[Args] = ByArg; in parseOptionalResByArg()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DAsmWriter.cpp2966 WholeProgramDevirtResolution::ByArg::Kind K) { in getWholeProgDevirtResByArgKindName()
2968 case WholeProgramDevirtResolution::ByArg::Indir: in getWholeProgDevirtResByArgKindName()
2970 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in getWholeProgDevirtResByArgKindName()
2972 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: in getWholeProgDevirtResByArgKindName()
2974 case WholeProgramDevirtResolution::ByArg::VirtualConstProp: in getWholeProgDevirtResByArgKindName()
3073 WholeProgramDevirtResolution::ByArg::UniformRetVal || in printWPDRes()
3075 WholeProgramDevirtResolution::ByArg::UniqueRetVal) in printWPDRes()
/openbsd-src/gnu/llvm/llvm/include/llvm/AsmParser/
H A DLLParser.h405 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3874 const WholeProgramDevirtResolution::ByArg &ByArg) { in writeWholeProgramDevirtResolutionByArg() argument
3878 NameVals.push_back(ByArg.TheKind); in writeWholeProgramDevirtResolutionByArg()
3879 NameVals.push_back(ByArg.Info); in writeWholeProgramDevirtResolutionByArg()
3880 NameVals.push_back(ByArg.Byte); in writeWholeProgramDevirtResolutionByArg()
3881 NameVals.push_back(ByArg.Bit); in writeWholeProgramDevirtResolutionByArg()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7041 WholeProgramDevirtResolution::ByArg &B = in parseWholeProgramDevirtResolutionByArg()
7046 static_cast<WholeProgramDevirtResolution::ByArg::Kind>(Record[Slot++]); in parseWholeProgramDevirtResolutionByArg()