blob: 69286efb3c5de64a63038eb92b85dc617062029f [file] [log] [blame]
Manman Rend2620042012-08-28 22:21:25 +00001//===- ProfileDataLoader.cpp - Load profile information from disk ---------===//
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// The ProfileDataLoader class is used to load raw profiling data from the dump
11// file.
12//
13//===----------------------------------------------------------------------===//
14
Bill Wendlingf91e4002012-08-31 05:18:31 +000015#include "llvm/ADT/ArrayRef.h"
16#include "llvm/ADT/OwningPtr.h"
Manman Rend2620042012-08-28 22:21:25 +000017#include "llvm/Module.h"
18#include "llvm/InstrTypes.h"
19#include "llvm/Analysis/ProfileDataLoader.h"
20#include "llvm/Analysis/ProfileDataTypes.h"
21#include "llvm/Support/raw_ostream.h"
Bill Wendlingf91e4002012-08-31 05:18:31 +000022#include "llvm/Support/system_error.h"
Manman Rend2620042012-08-28 22:21:25 +000023#include <cstdio>
24#include <cstdlib>
25using namespace llvm;
26
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000027raw_ostream &llvm::operator<<(raw_ostream &O, std::pair<const BasicBlock *,
28 const BasicBlock *> E) {
Manman Rend2620042012-08-28 22:21:25 +000029 O << "(";
30
31 if (E.first)
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000032 O << E.first->getName();
Manman Rend2620042012-08-28 22:21:25 +000033 else
34 O << "0";
35
36 O << ",";
37
38 if (E.second)
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000039 O << E.second->getName();
Manman Rend2620042012-08-28 22:21:25 +000040 else
41 O << "0";
42
43 return O << ")";
44}
45
Manman Rend2620042012-08-28 22:21:25 +000046/// AddCounts - Add 'A' and 'B', accounting for the fact that the value of one
47/// (or both) may not be defined.
48static unsigned AddCounts(unsigned A, unsigned B) {
49 // If either value is undefined, use the other.
50 // Undefined + undefined = undefined.
51 if (A == ProfileDataLoader::Uncounted) return B;
52 if (B == ProfileDataLoader::Uncounted) return A;
53
54 // Saturate to the maximum storable value. This could change taken/nottaken
55 // ratios, but is presumably better than wrapping and thus potentially
56 // inverting ratios.
Bill Wendlingf91e4002012-08-31 05:18:31 +000057 uint64_t tmp = (uint64_t)A + (uint64_t)B;
58 if (tmp > (uint64_t)ProfileDataLoader::MaxCount)
Manman Rend2620042012-08-28 22:21:25 +000059 tmp = ProfileDataLoader::MaxCount;
60 return (unsigned)tmp;
61}
62
63/// ReadProfilingData - Load 'NumEntries' items of type 'T' from file 'F'
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000064template <typename T>
Manman Rend2620042012-08-28 22:21:25 +000065static void ReadProfilingData(const char *ToolName, FILE *F,
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000066 T *Data, size_t NumEntries) {
Manman Rend2620042012-08-28 22:21:25 +000067 // Read in the block of data...
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000068 if (fread(Data, sizeof(T), NumEntries, F) != NumEntries)
69 report_fatal_error(Twine(ToolName) + ": Profiling data truncated");
Manman Rend2620042012-08-28 22:21:25 +000070}
71
72/// ReadProfilingNumEntries - Read how many entries are in this profiling data
73/// packet.
74static unsigned ReadProfilingNumEntries(const char *ToolName, FILE *F,
75 bool ShouldByteSwap) {
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000076 unsigned Entry;
77 ReadProfilingData<unsigned>(ToolName, F, &Entry, 1);
78 return ShouldByteSwap ? ByteSwap_32(Entry) : Entry;
Manman Rend2620042012-08-28 22:21:25 +000079}
80
81/// ReadProfilingBlock - Read the number of entries in the next profiling data
82/// packet and then accumulate the entries into 'Data'.
83static void ReadProfilingBlock(const char *ToolName, FILE *F,
84 bool ShouldByteSwap,
Bill Wendlingf91e4002012-08-31 05:18:31 +000085 SmallVector<unsigned, 32> &Data) {
Manman Rend2620042012-08-28 22:21:25 +000086 // Read the number of entries...
87 unsigned NumEntries = ReadProfilingNumEntries(ToolName, F, ShouldByteSwap);
88
89 // Read in the data.
Bill Wendlingf91e4002012-08-31 05:18:31 +000090 SmallVector<unsigned, 8> TempSpace(NumEntries);
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000091 ReadProfilingData<unsigned>(ToolName, F, TempSpace.data(), NumEntries);
Manman Rend2620042012-08-28 22:21:25 +000092
93 // Make sure we have enough space ...
94 if (Data.size() < NumEntries)
95 Data.resize(NumEntries, ProfileDataLoader::Uncounted);
96
97 // Accumulate the data we just read into the existing data.
Benjamin Kramercb5f63d2012-08-31 12:43:07 +000098 for (unsigned i = 0; i < NumEntries; ++i) {
99 unsigned Entry = ShouldByteSwap ? ByteSwap_32(TempSpace[i]) : TempSpace[i];
100 Data[i] = AddCounts(Entry, Data[i]);
101 }
Manman Rend2620042012-08-28 22:21:25 +0000102}
103
104/// ReadProfilingArgBlock - Read the command line arguments that the progam was
105/// run with when the current profiling data packet(s) were generated.
106static void ReadProfilingArgBlock(const char *ToolName, FILE *F,
107 bool ShouldByteSwap,
Bill Wendlingf91e4002012-08-31 05:18:31 +0000108 SmallVector<std::string, 1> &CommandLines) {
Manman Rend2620042012-08-28 22:21:25 +0000109 // Read the number of bytes ...
110 unsigned ArgLength = ReadProfilingNumEntries(ToolName, F, ShouldByteSwap);
111
112 // Read in the arguments (if there are any to read). Round up the length to
113 // the nearest 4-byte multiple.
Bill Wendlingf91e4002012-08-31 05:18:31 +0000114 SmallVector<char, 8> Args(ArgLength+4);
Manman Rend2620042012-08-28 22:21:25 +0000115 if (ArgLength)
Benjamin Kramercb5f63d2012-08-31 12:43:07 +0000116 ReadProfilingData<char>(ToolName, F, Args.data(), (ArgLength+3) & ~3);
Manman Rend2620042012-08-28 22:21:25 +0000117
118 // Store the arguments.
119 CommandLines.push_back(std::string(&Args[0], &Args[ArgLength]));
120}
121
122const unsigned ProfileDataLoader::Uncounted = ~0U;
123const unsigned ProfileDataLoader::MaxCount = ~0U - 1U;
124
Bill Wendlingf91e4002012-08-31 05:18:31 +0000125/// ProfileDataLoader ctor - Read the specified profiling data file, reporting
126/// a fatal error if the file is invalid or broken.
Manman Rend2620042012-08-28 22:21:25 +0000127ProfileDataLoader::ProfileDataLoader(const char *ToolName,
128 const std::string &Filename)
129 : Filename(Filename) {
130 FILE *F = fopen(Filename.c_str(), "rb");
Bill Wendlingf91e4002012-08-31 05:18:31 +0000131 if (F == 0)
Benjamin Kramercb5f63d2012-08-31 12:43:07 +0000132 report_fatal_error(Twine(ToolName) + ": Error opening '" +
Bill Wendlingf91e4002012-08-31 05:18:31 +0000133 Filename + "': ");
Manman Rend2620042012-08-28 22:21:25 +0000134
135 // Keep reading packets until we run out of them.
136 unsigned PacketType;
137 while (fread(&PacketType, sizeof(unsigned), 1, F) == 1) {
138 // If the low eight bits of the packet are zero, we must be dealing with an
139 // endianness mismatch. Byteswap all words read from the profiling
140 // information. This can happen when the compiler host and target have
141 // different endianness.
142 bool ShouldByteSwap = (char)PacketType == 0;
Benjamin Kramercb5f63d2012-08-31 12:43:07 +0000143 PacketType = ShouldByteSwap ? ByteSwap_32(PacketType) : PacketType;
Manman Rend2620042012-08-28 22:21:25 +0000144
145 switch (PacketType) {
146 case ArgumentInfo:
147 ReadProfilingArgBlock(ToolName, F, ShouldByteSwap, CommandLines);
148 break;
149
150 case EdgeInfo:
151 ReadProfilingBlock(ToolName, F, ShouldByteSwap, EdgeCounts);
152 break;
153
154 default:
Bill Wendlingf91e4002012-08-31 05:18:31 +0000155 report_fatal_error(std::string(ToolName)
156 + ": Unknown profiling packet type");
157 break;
Manman Rend2620042012-08-28 22:21:25 +0000158 }
159 }
160
161 fclose(F);
162}