blob: a965a1208b51a059f4fa20638a15bb0a661c9d75 [file] [log] [blame]
Justin Bognerf8d79192014-03-21 17:24:48 +00001//=-- InstrProf.cpp - Instrumented profiling format support -----------------=//
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// This file contains support for clang's instrumentation based PGO and
11// coverage.
12//
13//===----------------------------------------------------------------------===//
14
Xinliang David Li441959d2015-11-09 00:01:22 +000015#include "llvm/IR/Constants.h"
16#include "llvm/IR/Function.h"
17#include "llvm/IR/Module.h"
18#include "llvm/IR/GlobalVariable.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000019#include "llvm/ProfileData/InstrProf.h"
20#include "llvm/Support/ErrorHandling.h"
Chris Bieneman1efe8012014-09-19 23:19:24 +000021#include "llvm/Support/ManagedStatic.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000022
23using namespace llvm;
24
25namespace {
Rafael Espindola25188c92014-06-12 01:45:43 +000026class InstrProfErrorCategoryType : public std::error_category {
Rafael Espindolaf5d07fa2014-06-10 21:26:47 +000027 const char *name() const LLVM_NOEXCEPT override { return "llvm.instrprof"; }
Justin Bognerf8d79192014-03-21 17:24:48 +000028 std::string message(int IE) const override {
Rafael Espindola92512e82014-06-03 05:12:33 +000029 instrprof_error E = static_cast<instrprof_error>(IE);
Justin Bognerf8d79192014-03-21 17:24:48 +000030 switch (E) {
31 case instrprof_error::success:
32 return "Success";
33 case instrprof_error::eof:
34 return "End of File";
Nathan Slingerland4f823662015-11-13 03:47:58 +000035 case instrprof_error::unrecognized_format:
36 return "Unrecognized instrumentation profile encoding format";
Justin Bognerf8d79192014-03-21 17:24:48 +000037 case instrprof_error::bad_magic:
Nathan Slingerland4f823662015-11-13 03:47:58 +000038 return "Invalid instrumentation profile data (bad magic)";
Duncan P. N. Exon Smith531bb482014-03-21 20:42:28 +000039 case instrprof_error::bad_header:
Nathan Slingerland4f823662015-11-13 03:47:58 +000040 return "Invalid instrumentation profile data (file header is corrupt)";
Justin Bognerf8d79192014-03-21 17:24:48 +000041 case instrprof_error::unsupported_version:
Nathan Slingerland4f823662015-11-13 03:47:58 +000042 return "Unsupported instrumentation profile format version";
Justin Bognerb7aa2632014-04-18 21:48:40 +000043 case instrprof_error::unsupported_hash_type:
Nathan Slingerland4f823662015-11-13 03:47:58 +000044 return "Unsupported instrumentation profile hash type";
Justin Bognerf8d79192014-03-21 17:24:48 +000045 case instrprof_error::too_large:
46 return "Too much profile data";
47 case instrprof_error::truncated:
48 return "Truncated profile data";
49 case instrprof_error::malformed:
Nathan Slingerland4f823662015-11-13 03:47:58 +000050 return "Malformed instrumentation profile data";
Justin Bognerf8d79192014-03-21 17:24:48 +000051 case instrprof_error::unknown_function:
52 return "No profile data available for function";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000053 case instrprof_error::hash_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000054 return "Function control flow change detected (hash mismatch)";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000055 case instrprof_error::count_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000056 return "Function basic block count change detected (counter mismatch)";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000057 case instrprof_error::counter_overflow:
58 return "Counter overflow";
Justin Bogner9e9a0572015-09-29 22:13:58 +000059 case instrprof_error::value_site_count_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000060 return "Function value site count change detected (counter mismatch)";
Justin Bognerf8d79192014-03-21 17:24:48 +000061 }
62 llvm_unreachable("A value of instrprof_error has no message.");
63 }
Justin Bognerf8d79192014-03-21 17:24:48 +000064};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000065}
Justin Bognerf8d79192014-03-21 17:24:48 +000066
Chris Bieneman1efe8012014-09-19 23:19:24 +000067static ManagedStatic<InstrProfErrorCategoryType> ErrorCategory;
68
Rafael Espindola25188c92014-06-12 01:45:43 +000069const std::error_category &llvm::instrprof_category() {
Chris Bieneman1efe8012014-09-19 23:19:24 +000070 return *ErrorCategory;
Justin Bognerf8d79192014-03-21 17:24:48 +000071}
Xinliang David Li441959d2015-11-09 00:01:22 +000072
73namespace llvm {
74
75std::string getPGOFuncName(StringRef RawFuncName,
76 GlobalValue::LinkageTypes Linkage,
Xinliang David Li307902e2015-12-05 05:16:36 +000077 StringRef FileName,
78 uint64_t Version LLVM_ATTRIBUTE_UNUSED) {
Xinliang David Li441959d2015-11-09 00:01:22 +000079
80 // Function names may be prefixed with a binary '1' to indicate
81 // that the backend should not modify the symbols due to any platform
82 // naming convention. Do not include that '1' in the PGO profile name.
83 if (RawFuncName[0] == '\1')
84 RawFuncName = RawFuncName.substr(1);
85
86 std::string FuncName = RawFuncName;
87 if (llvm::GlobalValue::isLocalLinkage(Linkage)) {
88 // For local symbols, prepend the main file name to distinguish them.
89 // Do not include the full path in the file name since there's no guarantee
90 // that it will stay the same, e.g., if the files are checked out from
91 // version control in different locations.
92 if (FileName.empty())
93 FuncName = FuncName.insert(0, "<unknown>:");
94 else
95 FuncName = FuncName.insert(0, FileName.str() + ":");
96 }
97 return FuncName;
98}
99
Xinliang David Li307902e2015-12-05 05:16:36 +0000100std::string getPGOFuncName(const Function &F, uint64_t Version) {
101 return getPGOFuncName(F.getName(), F.getLinkage(), F.getParent()->getName(),
102 Version);
Xinliang David Li441959d2015-11-09 00:01:22 +0000103}
104
105GlobalVariable *createPGOFuncNameVar(Module &M,
106 GlobalValue::LinkageTypes Linkage,
107 StringRef FuncName) {
108
109 // We generally want to match the function's linkage, but available_externally
110 // and extern_weak both have the wrong semantics, and anything that doesn't
111 // need to link across compilation units doesn't need to be visible at all.
112 if (Linkage == GlobalValue::ExternalWeakLinkage)
113 Linkage = GlobalValue::LinkOnceAnyLinkage;
114 else if (Linkage == GlobalValue::AvailableExternallyLinkage)
115 Linkage = GlobalValue::LinkOnceODRLinkage;
116 else if (Linkage == GlobalValue::InternalLinkage ||
117 Linkage == GlobalValue::ExternalLinkage)
118 Linkage = GlobalValue::PrivateLinkage;
119
120 auto *Value = ConstantDataArray::getString(M.getContext(), FuncName, false);
121 auto FuncNameVar =
122 new GlobalVariable(M, Value->getType(), true, Linkage, Value,
123 Twine(getInstrProfNameVarPrefix()) + FuncName);
124
125 // Hide the symbol so that we correctly get a copy for each executable.
126 if (!GlobalValue::isLocalLinkage(FuncNameVar->getLinkage()))
127 FuncNameVar->setVisibility(GlobalValue::HiddenVisibility);
128
129 return FuncNameVar;
130}
131
132GlobalVariable *createPGOFuncNameVar(Function &F, StringRef FuncName) {
133 return createPGOFuncNameVar(*F.getParent(), F.getLinkage(), FuncName);
134}
Xinliang David Liee415892015-11-10 00:24:45 +0000135
Xinliang David Lib75544a2015-11-28 19:07:09 +0000136#define INSTR_PROF_COMMON_API_IMPL
137#include "llvm/ProfileData/InstrProfData.inc"
Xinliang David Liee415892015-11-10 00:24:45 +0000138
Xinliang David Liee415892015-11-10 00:24:45 +0000139
Xinliang David Lib75544a2015-11-28 19:07:09 +0000140/*!
141 * \brief ValueProfRecordClosure Interface implementation for InstrProfRecord
Xinliang David Lied966772015-11-25 23:31:18 +0000142 * class. These C wrappers are used as adaptors so that C++ code can be
143 * invoked as callbacks.
144 */
Xinliang David Lif47cf552015-11-25 06:23:38 +0000145uint32_t getNumValueKindsInstrProf(const void *Record) {
146 return reinterpret_cast<const InstrProfRecord *>(Record)->getNumValueKinds();
147}
148
149uint32_t getNumValueSitesInstrProf(const void *Record, uint32_t VKind) {
150 return reinterpret_cast<const InstrProfRecord *>(Record)
151 ->getNumValueSites(VKind);
152}
153
154uint32_t getNumValueDataInstrProf(const void *Record, uint32_t VKind) {
155 return reinterpret_cast<const InstrProfRecord *>(Record)
156 ->getNumValueData(VKind);
157}
158
159uint32_t getNumValueDataForSiteInstrProf(const void *R, uint32_t VK,
160 uint32_t S) {
161 return reinterpret_cast<const InstrProfRecord *>(R)
162 ->getNumValueDataForSite(VK, S);
163}
164
165void getValueForSiteInstrProf(const void *R, InstrProfValueData *Dst,
166 uint32_t K, uint32_t S,
167 uint64_t (*Mapper)(uint32_t, uint64_t)) {
168 return reinterpret_cast<const InstrProfRecord *>(R)
169 ->getValueForSite(Dst, K, S, Mapper);
170}
171
Xinliang David Lie8092312015-11-25 19:13:00 +0000172uint64_t stringToHash(uint32_t ValueKind, uint64_t Value) {
173 switch (ValueKind) {
174 case IPVK_IndirectCallTarget:
175 return IndexedInstrProf::ComputeHash(IndexedInstrProf::HashType,
176 (const char *)Value);
177 break;
178 default:
179 llvm_unreachable("value kind not handled !");
180 }
181 return Value;
182}
183
Xinliang David Lif47cf552015-11-25 06:23:38 +0000184ValueProfData *allocValueProfDataInstrProf(size_t TotalSizeInBytes) {
185 return (ValueProfData *)(new (::operator new(TotalSizeInBytes))
186 ValueProfData());
187}
188
189static ValueProfRecordClosure InstrProfRecordClosure = {
190 0,
191 getNumValueKindsInstrProf,
192 getNumValueSitesInstrProf,
193 getNumValueDataInstrProf,
194 getNumValueDataForSiteInstrProf,
195 stringToHash,
196 getValueForSiteInstrProf,
Xinliang David Lie8092312015-11-25 19:13:00 +0000197 allocValueProfDataInstrProf
198};
Xinliang David Lif47cf552015-11-25 06:23:38 +0000199
Xinliang David Lie8092312015-11-25 19:13:00 +0000200// Wrapper implementation using the closure mechanism.
Xinliang David Lif47cf552015-11-25 06:23:38 +0000201uint32_t ValueProfData::getSize(const InstrProfRecord &Record) {
202 InstrProfRecordClosure.Record = &Record;
203 return getValueProfDataSize(&InstrProfRecordClosure);
204}
205
Xinliang David Lie8092312015-11-25 19:13:00 +0000206// Wrapper implementation using the closure mechanism.
Xinliang David Lif47cf552015-11-25 06:23:38 +0000207std::unique_ptr<ValueProfData>
208ValueProfData::serializeFrom(const InstrProfRecord &Record) {
209 InstrProfRecordClosure.Record = &Record;
210
211 std::unique_ptr<ValueProfData> VPD(
Xinliang David Li0e6a36e2015-12-01 19:47:32 +0000212 serializeValueProfDataFrom(&InstrProfRecordClosure, nullptr));
Xinliang David Lif47cf552015-11-25 06:23:38 +0000213 return VPD;
214}
215
Xinliang David Lie8092312015-11-25 19:13:00 +0000216void ValueProfRecord::deserializeTo(InstrProfRecord &Record,
217 InstrProfRecord::ValueMapType *VMap) {
218 Record.reserveSites(Kind, NumValueSites);
219
220 InstrProfValueData *ValueData = getValueProfRecordValueData(this);
221 for (uint64_t VSite = 0; VSite < NumValueSites; ++VSite) {
222 uint8_t ValueDataCount = this->SiteCountArray[VSite];
223 Record.addValueData(Kind, VSite, ValueData, ValueDataCount, VMap);
224 ValueData += ValueDataCount;
225 }
226}
Xinliang David Lied966772015-11-25 23:31:18 +0000227
Xinliang David Lie8092312015-11-25 19:13:00 +0000228// For writing/serializing, Old is the host endianness, and New is
229// byte order intended on disk. For Reading/deserialization, Old
230// is the on-disk source endianness, and New is the host endianness.
231void ValueProfRecord::swapBytes(support::endianness Old,
232 support::endianness New) {
233 using namespace support;
234 if (Old == New)
235 return;
236
237 if (getHostEndianness() != Old) {
238 sys::swapByteOrder<uint32_t>(NumValueSites);
239 sys::swapByteOrder<uint32_t>(Kind);
240 }
241 uint32_t ND = getValueProfRecordNumValueData(this);
242 InstrProfValueData *VD = getValueProfRecordValueData(this);
243
244 // No need to swap byte array: SiteCountArrray.
245 for (uint32_t I = 0; I < ND; I++) {
246 sys::swapByteOrder<uint64_t>(VD[I].Value);
247 sys::swapByteOrder<uint64_t>(VD[I].Count);
248 }
249 if (getHostEndianness() == Old) {
250 sys::swapByteOrder<uint32_t>(NumValueSites);
251 sys::swapByteOrder<uint32_t>(Kind);
252 }
253}
254
255void ValueProfData::deserializeTo(InstrProfRecord &Record,
256 InstrProfRecord::ValueMapType *VMap) {
257 if (NumValueKinds == 0)
258 return;
259
260 ValueProfRecord *VR = getFirstValueProfRecord(this);
261 for (uint32_t K = 0; K < NumValueKinds; K++) {
262 VR->deserializeTo(Record, VMap);
263 VR = getValueProfRecordNext(VR);
264 }
265}
266
267template <class T>
268static T swapToHostOrder(const unsigned char *&D, support::endianness Orig) {
269 using namespace support;
270 if (Orig == little)
271 return endian::readNext<T, little, unaligned>(D);
272 else
273 return endian::readNext<T, big, unaligned>(D);
274}
275
276static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) {
277 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize))
278 ValueProfData());
279}
280
Xinliang David Li8e32f4d2015-11-28 04:56:07 +0000281instrprof_error ValueProfData::checkIntegrity() {
282 if (NumValueKinds > IPVK_Last + 1)
283 return instrprof_error::malformed;
284 // Total size needs to be mulltiple of quadword size.
285 if (TotalSize % sizeof(uint64_t))
286 return instrprof_error::malformed;
287
288 ValueProfRecord *VR = getFirstValueProfRecord(this);
289 for (uint32_t K = 0; K < this->NumValueKinds; K++) {
290 if (VR->Kind > IPVK_Last)
291 return instrprof_error::malformed;
292 VR = getValueProfRecordNext(VR);
293 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize)
294 return instrprof_error::malformed;
295 }
296 return instrprof_error::success;
297}
298
Xinliang David Liee415892015-11-10 00:24:45 +0000299ErrorOr<std::unique_ptr<ValueProfData>>
300ValueProfData::getValueProfData(const unsigned char *D,
301 const unsigned char *const BufferEnd,
302 support::endianness Endianness) {
303 using namespace support;
304 if (D + sizeof(ValueProfData) > BufferEnd)
305 return instrprof_error::truncated;
306
Xinliang David Lib8c3ad12015-11-17 03:47:21 +0000307 const unsigned char *Header = D;
308 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness);
Xinliang David Liee415892015-11-10 00:24:45 +0000309 if (D + TotalSize > BufferEnd)
310 return instrprof_error::too_large;
Xinliang David Liee415892015-11-10 00:24:45 +0000311
Xinliang David Lif47cf552015-11-25 06:23:38 +0000312 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize);
Xinliang David Liee415892015-11-10 00:24:45 +0000313 memcpy(VPD.get(), D, TotalSize);
314 // Byte swap.
315 VPD->swapBytesToHost(Endianness);
316
Xinliang David Li8e32f4d2015-11-28 04:56:07 +0000317 instrprof_error EC = VPD->checkIntegrity();
318 if (EC != instrprof_error::success)
319 return EC;
Xinliang David Liee415892015-11-10 00:24:45 +0000320
Xinliang David Liee415892015-11-10 00:24:45 +0000321 return std::move(VPD);
322}
323
324void ValueProfData::swapBytesToHost(support::endianness Endianness) {
325 using namespace support;
326 if (Endianness == getHostEndianness())
327 return;
328
329 sys::swapByteOrder<uint32_t>(TotalSize);
330 sys::swapByteOrder<uint32_t>(NumValueKinds);
331
Xinliang David Lif47cf552015-11-25 06:23:38 +0000332 ValueProfRecord *VR = getFirstValueProfRecord(this);
Xinliang David Liee415892015-11-10 00:24:45 +0000333 for (uint32_t K = 0; K < NumValueKinds; K++) {
334 VR->swapBytes(Endianness, getHostEndianness());
Xinliang David Liac5b8602015-11-25 04:29:24 +0000335 VR = getValueProfRecordNext(VR);
Xinliang David Liee415892015-11-10 00:24:45 +0000336 }
337}
338
339void ValueProfData::swapBytesFromHost(support::endianness Endianness) {
340 using namespace support;
341 if (Endianness == getHostEndianness())
342 return;
343
Xinliang David Lif47cf552015-11-25 06:23:38 +0000344 ValueProfRecord *VR = getFirstValueProfRecord(this);
Xinliang David Liee415892015-11-10 00:24:45 +0000345 for (uint32_t K = 0; K < NumValueKinds; K++) {
Xinliang David Liac5b8602015-11-25 04:29:24 +0000346 ValueProfRecord *NVR = getValueProfRecordNext(VR);
Xinliang David Liee415892015-11-10 00:24:45 +0000347 VR->swapBytes(getHostEndianness(), Endianness);
348 VR = NVR;
349 }
350 sys::swapByteOrder<uint32_t>(TotalSize);
351 sys::swapByteOrder<uint32_t>(NumValueKinds);
352}
Xinliang David Lie8092312015-11-25 19:13:00 +0000353
Xinliang David Liee415892015-11-10 00:24:45 +0000354}