blob: 8f30de6d563a61fd349a5ec4b5c2be5bb0b9d904 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===-- 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
16namespace llvm {
17namespace yaml {
18
19template <> 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
29template <> struct MappingTraits<TypeTestResolution> {
30 static void mapping(IO &io, TypeTestResolution &res) {
31 io.mapOptional("Kind", res.TheKind);
32 io.mapOptional("SizeM1BitWidth", res.SizeM1BitWidth);
33 io.mapOptional("AlignLog2", res.AlignLog2);
34 io.mapOptional("SizeM1", res.SizeM1);
35 io.mapOptional("BitMask", res.BitMask);
36 io.mapOptional("InlineBits", res.InlineBits);
37 }
38};
39
40template <>
41struct ScalarEnumerationTraits<WholeProgramDevirtResolution::ByArg::Kind> {
42 static void enumeration(IO &io,
43 WholeProgramDevirtResolution::ByArg::Kind &value) {
44 io.enumCase(value, "Indir", WholeProgramDevirtResolution::ByArg::Indir);
45 io.enumCase(value, "UniformRetVal",
46 WholeProgramDevirtResolution::ByArg::UniformRetVal);
47 io.enumCase(value, "UniqueRetVal",
48 WholeProgramDevirtResolution::ByArg::UniqueRetVal);
49 io.enumCase(value, "VirtualConstProp",
50 WholeProgramDevirtResolution::ByArg::VirtualConstProp);
51 }
52};
53
54template <> struct MappingTraits<WholeProgramDevirtResolution::ByArg> {
55 static void mapping(IO &io, WholeProgramDevirtResolution::ByArg &res) {
56 io.mapOptional("Kind", res.TheKind);
57 io.mapOptional("Info", res.Info);
58 io.mapOptional("Byte", res.Byte);
59 io.mapOptional("Bit", res.Bit);
60 }
61};
62
63template <>
64struct CustomMappingTraits<
65 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>> {
66 static void inputOne(
67 IO &io, StringRef Key,
68 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> &V) {
69 std::vector<uint64_t> Args;
70 std::pair<StringRef, StringRef> P = {"", Key};
71 while (!P.second.empty()) {
72 P = P.second.split(',');
73 uint64_t Arg;
74 if (P.first.getAsInteger(0, Arg)) {
75 io.setError("key not an integer");
76 return;
77 }
78 Args.push_back(Arg);
79 }
80 io.mapRequired(Key.str().c_str(), V[Args]);
81 }
82 static void output(
83 IO &io,
84 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> &V) {
85 for (auto &P : V) {
86 std::string Key;
87 for (uint64_t Arg : P.first) {
88 if (!Key.empty())
89 Key += ',';
90 Key += llvm::utostr(Arg);
91 }
92 io.mapRequired(Key.c_str(), P.second);
93 }
94 }
95};
96
97template <> struct ScalarEnumerationTraits<WholeProgramDevirtResolution::Kind> {
98 static void enumeration(IO &io, WholeProgramDevirtResolution::Kind &value) {
99 io.enumCase(value, "Indir", WholeProgramDevirtResolution::Indir);
100 io.enumCase(value, "SingleImpl", WholeProgramDevirtResolution::SingleImpl);
101 io.enumCase(value, "BranchFunnel",
102 WholeProgramDevirtResolution::BranchFunnel);
103 }
104};
105
106template <> struct MappingTraits<WholeProgramDevirtResolution> {
107 static void mapping(IO &io, WholeProgramDevirtResolution &res) {
108 io.mapOptional("Kind", res.TheKind);
109 io.mapOptional("SingleImplName", res.SingleImplName);
110 io.mapOptional("ResByArg", res.ResByArg);
111 }
112};
113
114template <>
115struct CustomMappingTraits<std::map<uint64_t, WholeProgramDevirtResolution>> {
116 static void inputOne(IO &io, StringRef Key,
117 std::map<uint64_t, WholeProgramDevirtResolution> &V) {
118 uint64_t KeyInt;
119 if (Key.getAsInteger(0, KeyInt)) {
120 io.setError("key not an integer");
121 return;
122 }
123 io.mapRequired(Key.str().c_str(), V[KeyInt]);
124 }
125 static void output(IO &io, std::map<uint64_t, WholeProgramDevirtResolution> &V) {
126 for (auto &P : V)
127 io.mapRequired(llvm::utostr(P.first).c_str(), P.second);
128 }
129};
130
131template <> struct MappingTraits<TypeIdSummary> {
132 static void mapping(IO &io, TypeIdSummary& summary) {
133 io.mapOptional("TTRes", summary.TTRes);
134 io.mapOptional("WPDRes", summary.WPDRes);
135 }
136};
137
138struct FunctionSummaryYaml {
139 unsigned Linkage;
140 bool NotEligibleToImport, Live, IsLocal;
141 std::vector<uint64_t> TypeTests;
142 std::vector<FunctionSummary::VFuncId> TypeTestAssumeVCalls,
143 TypeCheckedLoadVCalls;
144 std::vector<FunctionSummary::ConstVCall> TypeTestAssumeConstVCalls,
145 TypeCheckedLoadConstVCalls;
146};
147
148} // End yaml namespace
149} // End llvm namespace
150
151namespace llvm {
152namespace yaml {
153
154template <> struct MappingTraits<FunctionSummary::VFuncId> {
155 static void mapping(IO &io, FunctionSummary::VFuncId& id) {
156 io.mapOptional("GUID", id.GUID);
157 io.mapOptional("Offset", id.Offset);
158 }
159};
160
161template <> struct MappingTraits<FunctionSummary::ConstVCall> {
162 static void mapping(IO &io, FunctionSummary::ConstVCall& id) {
163 io.mapOptional("VFunc", id.VFunc);
164 io.mapOptional("Args", id.Args);
165 }
166};
167
168} // End yaml namespace
169} // End llvm namespace
170
171LLVM_YAML_IS_SEQUENCE_VECTOR(FunctionSummary::VFuncId)
172LLVM_YAML_IS_SEQUENCE_VECTOR(FunctionSummary::ConstVCall)
173
174namespace llvm {
175namespace yaml {
176
177template <> struct MappingTraits<FunctionSummaryYaml> {
178 static void mapping(IO &io, FunctionSummaryYaml& summary) {
179 io.mapOptional("Linkage", summary.Linkage);
180 io.mapOptional("NotEligibleToImport", summary.NotEligibleToImport);
181 io.mapOptional("Live", summary.Live);
182 io.mapOptional("Local", summary.IsLocal);
183 io.mapOptional("TypeTests", summary.TypeTests);
184 io.mapOptional("TypeTestAssumeVCalls", summary.TypeTestAssumeVCalls);
185 io.mapOptional("TypeCheckedLoadVCalls", summary.TypeCheckedLoadVCalls);
186 io.mapOptional("TypeTestAssumeConstVCalls",
187 summary.TypeTestAssumeConstVCalls);
188 io.mapOptional("TypeCheckedLoadConstVCalls",
189 summary.TypeCheckedLoadConstVCalls);
190 }
191};
192
193} // End yaml namespace
194} // End llvm namespace
195
196LLVM_YAML_IS_STRING_MAP(TypeIdSummary)
197LLVM_YAML_IS_SEQUENCE_VECTOR(FunctionSummaryYaml)
198
199namespace llvm {
200namespace yaml {
201
202// FIXME: Add YAML mappings for the rest of the module summary.
203template <> struct CustomMappingTraits<GlobalValueSummaryMapTy> {
204 static void inputOne(IO &io, StringRef Key, GlobalValueSummaryMapTy &V) {
205 std::vector<FunctionSummaryYaml> FSums;
206 io.mapRequired(Key.str().c_str(), FSums);
207 uint64_t KeyInt;
208 if (Key.getAsInteger(0, KeyInt)) {
209 io.setError("key not an integer");
210 return;
211 }
212 auto P = V.emplace(KeyInt, /*IsAnalysis=*/false);
213 auto &Elem = (*P.first).second;
214 for (auto &FSum : FSums) {
215 Elem.SummaryList.push_back(llvm::make_unique<FunctionSummary>(
216 GlobalValueSummary::GVFlags(
217 static_cast<GlobalValue::LinkageTypes>(FSum.Linkage),
218 FSum.NotEligibleToImport, FSum.Live, FSum.IsLocal),
219 0, FunctionSummary::FFlags{}, ArrayRef<ValueInfo>{},
220 ArrayRef<FunctionSummary::EdgeTy>{}, std::move(FSum.TypeTests),
221 std::move(FSum.TypeTestAssumeVCalls),
222 std::move(FSum.TypeCheckedLoadVCalls),
223 std::move(FSum.TypeTestAssumeConstVCalls),
224 std::move(FSum.TypeCheckedLoadConstVCalls)));
225 }
226 }
227 static void output(IO &io, GlobalValueSummaryMapTy &V) {
228 for (auto &P : V) {
229 std::vector<FunctionSummaryYaml> FSums;
230 for (auto &Sum : P.second.SummaryList) {
231 if (auto *FSum = dyn_cast<FunctionSummary>(Sum.get()))
232 FSums.push_back(FunctionSummaryYaml{
233 FSum->flags().Linkage,
234 static_cast<bool>(FSum->flags().NotEligibleToImport),
235 static_cast<bool>(FSum->flags().Live),
236 static_cast<bool>(FSum->flags().DSOLocal), FSum->type_tests(),
237 FSum->type_test_assume_vcalls(), FSum->type_checked_load_vcalls(),
238 FSum->type_test_assume_const_vcalls(),
239 FSum->type_checked_load_const_vcalls()});
240 }
241 if (!FSums.empty())
242 io.mapRequired(llvm::utostr(P.first).c_str(), FSums);
243 }
244 }
245};
246
247template <> struct MappingTraits<ModuleSummaryIndex> {
248 static void mapping(IO &io, ModuleSummaryIndex& index) {
249 io.mapOptional("GlobalValueMap", index.GlobalValueMap);
250 io.mapOptional("TypeIdMap", index.TypeIdMap);
251 io.mapOptional("WithGlobalValueDeadStripping",
252 index.WithGlobalValueDeadStripping);
253
254 if (io.outputting()) {
255 std::vector<std::string> CfiFunctionDefs(index.CfiFunctionDefs.begin(),
256 index.CfiFunctionDefs.end());
257 io.mapOptional("CfiFunctionDefs", CfiFunctionDefs);
258 std::vector<std::string> CfiFunctionDecls(index.CfiFunctionDecls.begin(),
259 index.CfiFunctionDecls.end());
260 io.mapOptional("CfiFunctionDecls", CfiFunctionDecls);
261 } else {
262 std::vector<std::string> CfiFunctionDefs;
263 io.mapOptional("CfiFunctionDefs", CfiFunctionDefs);
264 index.CfiFunctionDefs = {CfiFunctionDefs.begin(), CfiFunctionDefs.end()};
265 std::vector<std::string> CfiFunctionDecls;
266 io.mapOptional("CfiFunctionDecls", CfiFunctionDecls);
267 index.CfiFunctionDecls = {CfiFunctionDecls.begin(),
268 CfiFunctionDecls.end()};
269 }
270 }
271};
272
273} // End yaml namespace
274} // End llvm namespace
275
276#endif