]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
MFV r326785: 8880 improve DTrace error checking
[FreeBSD/FreeBSD.git] / contrib / llvm / include / llvm / IR / ModuleSummaryIndexYAML.h
1 //===-- llvm/ModuleSummaryIndexYAML.h - YAML I/O for summary ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_IR_MODULESUMMARYINDEXYAML_H
11 #define LLVM_IR_MODULESUMMARYINDEXYAML_H
12
13 #include "llvm/IR/ModuleSummaryIndex.h"
14 #include "llvm/Support/YAMLTraits.h"
15
16 namespace llvm {
17 namespace yaml {
18
19 template <> struct ScalarEnumerationTraits<TypeTestResolution::Kind> {
20   static void enumeration(IO &io, TypeTestResolution::Kind &value) {
21     io.enumCase(value, "Unsat", TypeTestResolution::Unsat);
22     io.enumCase(value, "ByteArray", TypeTestResolution::ByteArray);
23     io.enumCase(value, "Inline", TypeTestResolution::Inline);
24     io.enumCase(value, "Single", TypeTestResolution::Single);
25     io.enumCase(value, "AllOnes", TypeTestResolution::AllOnes);
26   }
27 };
28
29 template <> struct MappingTraits<TypeTestResolution> {
30   static void mapping(IO &io, TypeTestResolution &res) {
31     io.mapOptional("Kind", res.TheKind);
32     io.mapOptional("SizeM1BitWidth", res.SizeM1BitWidth);
33   }
34 };
35
36 template <>
37 struct ScalarEnumerationTraits<WholeProgramDevirtResolution::ByArg::Kind> {
38   static void enumeration(IO &io,
39                           WholeProgramDevirtResolution::ByArg::Kind &value) {
40     io.enumCase(value, "Indir", WholeProgramDevirtResolution::ByArg::Indir);
41     io.enumCase(value, "UniformRetVal",
42                 WholeProgramDevirtResolution::ByArg::UniformRetVal);
43     io.enumCase(value, "UniqueRetVal",
44                 WholeProgramDevirtResolution::ByArg::UniqueRetVal);
45     io.enumCase(value, "VirtualConstProp",
46                 WholeProgramDevirtResolution::ByArg::VirtualConstProp);
47   }
48 };
49
50 template <> struct MappingTraits<WholeProgramDevirtResolution::ByArg> {
51   static void mapping(IO &io, WholeProgramDevirtResolution::ByArg &res) {
52     io.mapOptional("Kind", res.TheKind);
53     io.mapOptional("Info", res.Info);
54   }
55 };
56
57 template <>
58 struct CustomMappingTraits<
59     std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>> {
60   static void inputOne(
61       IO &io, StringRef Key,
62       std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> &V) {
63     std::vector<uint64_t> Args;
64     std::pair<StringRef, StringRef> P = {"", Key};
65     while (!P.second.empty()) {
66       P = P.second.split(',');
67       uint64_t Arg;
68       if (P.first.getAsInteger(0, Arg)) {
69         io.setError("key not an integer");
70         return;
71       }
72       Args.push_back(Arg);
73     }
74     io.mapRequired(Key.str().c_str(), V[Args]);
75   }
76   static void output(
77       IO &io,
78       std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> &V) {
79     for (auto &P : V) {
80       std::string Key;
81       for (uint64_t Arg : P.first) {
82         if (!Key.empty())
83           Key += ',';
84         Key += llvm::utostr(Arg);
85       }
86       io.mapRequired(Key.c_str(), P.second);
87     }
88   }
89 };
90
91 template <> struct ScalarEnumerationTraits<WholeProgramDevirtResolution::Kind> {
92   static void enumeration(IO &io, WholeProgramDevirtResolution::Kind &value) {
93     io.enumCase(value, "Indir", WholeProgramDevirtResolution::Indir);
94     io.enumCase(value, "SingleImpl", WholeProgramDevirtResolution::SingleImpl);
95   }
96 };
97
98 template <> struct MappingTraits<WholeProgramDevirtResolution> {
99   static void mapping(IO &io, WholeProgramDevirtResolution &res) {
100     io.mapOptional("Kind", res.TheKind);
101     io.mapOptional("SingleImplName", res.SingleImplName);
102     io.mapOptional("ResByArg", res.ResByArg);
103   }
104 };
105
106 template <>
107 struct CustomMappingTraits<std::map<uint64_t, WholeProgramDevirtResolution>> {
108   static void inputOne(IO &io, StringRef Key,
109                        std::map<uint64_t, WholeProgramDevirtResolution> &V) {
110     uint64_t KeyInt;
111     if (Key.getAsInteger(0, KeyInt)) {
112       io.setError("key not an integer");
113       return;
114     }
115     io.mapRequired(Key.str().c_str(), V[KeyInt]);
116   }
117   static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) {
118     for (auto &P : V)
119       io.mapRequired(llvm::utostr(P.first).c_str(), P.second);
120   }
121 };
122
123 template <> struct MappingTraits<TypeIdSummary> {
124   static void mapping(IO &io, TypeIdSummary& summary) {
125     io.mapOptional("TTRes", summary.TTRes);
126     io.mapOptional("WPDRes", summary.WPDRes);
127   }
128 };
129
130 struct FunctionSummaryYaml {
131   unsigned Linkage;
132   bool NotEligibleToImport, Live;
133   std::vector<uint64_t> TypeTests;
134   std::vector<FunctionSummary::VFuncId> TypeTestAssumeVCalls,
135       TypeCheckedLoadVCalls;
136   std::vector<FunctionSummary::ConstVCall> TypeTestAssumeConstVCalls,
137       TypeCheckedLoadConstVCalls;
138 };
139
140 } // End yaml namespace
141 } // End llvm namespace
142
143 namespace llvm {
144 namespace yaml {
145
146 template <> struct MappingTraits<FunctionSummary::VFuncId> {
147   static void mapping(IO &io, FunctionSummary::VFuncId& id) {
148     io.mapOptional("GUID", id.GUID);
149     io.mapOptional("Offset", id.Offset);
150   }
151 };
152
153 template <> struct MappingTraits<FunctionSummary::ConstVCall> {
154   static void mapping(IO &io, FunctionSummary::ConstVCall& id) {
155     io.mapOptional("VFunc", id.VFunc);
156     io.mapOptional("Args", id.Args);
157   }
158 };
159
160 } // End yaml namespace
161 } // End llvm namespace
162
163 LLVM_YAML_IS_SEQUENCE_VECTOR(FunctionSummary::VFuncId)
164 LLVM_YAML_IS_SEQUENCE_VECTOR(FunctionSummary::ConstVCall)
165
166 namespace llvm {
167 namespace yaml {
168
169 template <> struct MappingTraits<FunctionSummaryYaml> {
170   static void mapping(IO &io, FunctionSummaryYaml& summary) {
171     io.mapOptional("Linkage", summary.Linkage);
172     io.mapOptional("NotEligibleToImport", summary.NotEligibleToImport);
173     io.mapOptional("Live", summary.Live);
174     io.mapOptional("TypeTests", summary.TypeTests);
175     io.mapOptional("TypeTestAssumeVCalls", summary.TypeTestAssumeVCalls);
176     io.mapOptional("TypeCheckedLoadVCalls", summary.TypeCheckedLoadVCalls);
177     io.mapOptional("TypeTestAssumeConstVCalls",
178                    summary.TypeTestAssumeConstVCalls);
179     io.mapOptional("TypeCheckedLoadConstVCalls",
180                    summary.TypeCheckedLoadConstVCalls);
181   }
182 };
183
184 } // End yaml namespace
185 } // End llvm namespace
186
187 LLVM_YAML_IS_STRING_MAP(TypeIdSummary)
188 LLVM_YAML_IS_SEQUENCE_VECTOR(FunctionSummaryYaml)
189
190 namespace llvm {
191 namespace yaml {
192
193 // FIXME: Add YAML mappings for the rest of the module summary.
194 template <> struct CustomMappingTraits<GlobalValueSummaryMapTy> {
195   static void inputOne(IO &io, StringRef Key, GlobalValueSummaryMapTy &V) {
196     std::vector<FunctionSummaryYaml> FSums;
197     io.mapRequired(Key.str().c_str(), FSums);
198     uint64_t KeyInt;
199     if (Key.getAsInteger(0, KeyInt)) {
200       io.setError("key not an integer");
201       return;
202     }
203     auto &Elem = V[KeyInt];
204     for (auto &FSum : FSums) {
205       Elem.SummaryList.push_back(llvm::make_unique<FunctionSummary>(
206           GlobalValueSummary::GVFlags(
207               static_cast<GlobalValue::LinkageTypes>(FSum.Linkage),
208               FSum.NotEligibleToImport, FSum.Live),
209           0, ArrayRef<ValueInfo>{}, ArrayRef<FunctionSummary::EdgeTy>{},
210           std::move(FSum.TypeTests), std::move(FSum.TypeTestAssumeVCalls),
211           std::move(FSum.TypeCheckedLoadVCalls),
212           std::move(FSum.TypeTestAssumeConstVCalls),
213           std::move(FSum.TypeCheckedLoadConstVCalls)));
214     }
215   }
216   static void output(IO &io, GlobalValueSummaryMapTy &V) {
217     for (auto &P : V) {
218       std::vector<FunctionSummaryYaml> FSums;
219       for (auto &Sum : P.second.SummaryList) {
220         if (auto *FSum = dyn_cast<FunctionSummary>(Sum.get()))
221           FSums.push_back(FunctionSummaryYaml{
222               FSum->flags().Linkage,
223               static_cast<bool>(FSum->flags().NotEligibleToImport),
224               static_cast<bool>(FSum->flags().Live), FSum->type_tests(),
225               FSum->type_test_assume_vcalls(), FSum->type_checked_load_vcalls(),
226               FSum->type_test_assume_const_vcalls(),
227               FSum->type_checked_load_const_vcalls()});
228       }
229       if (!FSums.empty())
230         io.mapRequired(llvm::utostr(P.first).c_str(), FSums);
231     }
232   }
233 };
234
235 template <> struct MappingTraits<ModuleSummaryIndex> {
236   static void mapping(IO &io, ModuleSummaryIndex& index) {
237     io.mapOptional("GlobalValueMap", index.GlobalValueMap);
238     io.mapOptional("TypeIdMap", index.TypeIdMap);
239     io.mapOptional("WithGlobalValueDeadStripping",
240                    index.WithGlobalValueDeadStripping);
241
242     if (io.outputting()) {
243       std::vector<std::string> CfiFunctionDefs(index.CfiFunctionDefs.begin(),
244                                                index.CfiFunctionDefs.end());
245       io.mapOptional("CfiFunctionDefs", CfiFunctionDefs);
246       std::vector<std::string> CfiFunctionDecls(index.CfiFunctionDecls.begin(),
247                                                 index.CfiFunctionDecls.end());
248       io.mapOptional("CfiFunctionDecls", CfiFunctionDecls);
249     } else {
250       std::vector<std::string> CfiFunctionDefs;
251       io.mapOptional("CfiFunctionDefs", CfiFunctionDefs);
252       index.CfiFunctionDefs = {CfiFunctionDefs.begin(), CfiFunctionDefs.end()};
253       std::vector<std::string> CfiFunctionDecls;
254       io.mapOptional("CfiFunctionDecls", CfiFunctionDecls);
255       index.CfiFunctionDecls = {CfiFunctionDecls.begin(),
256                                 CfiFunctionDecls.end()};
257     }
258   }
259 };
260
261 } // End yaml namespace
262 } // End llvm namespace
263
264 #endif