forked from google/autofdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_reader.cc
248 lines (226 loc) · 7.56 KB
/
sample_reader.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// Copyright 2014 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Read the samples from the profile datafile.
#include "sample_reader.h"
#include <string>
#include <utility>
#include "base/logging.h"
#include "third_party/perf_data_converter/src/quipper/perf_parser.h"
namespace {
// Returns true if name equals full_name, or full_name is empty and name
// matches re.
bool MatchBinary(const string &name, const string &full_name) {
return full_name == basename(name.c_str());
}
} // namespace
namespace autofdo {
set<uint64> SampleReader::GetSampledAddresses() const {
set<uint64> addrs;
if (range_count_map_.size() > 0) {
for (const auto &range_count : range_count_map_) {
addrs.insert(range_count.first.first);
}
} else {
for (const auto &addr_count : address_count_map_) {
addrs.insert(addr_count.first);
}
}
return addrs;
}
uint64 SampleReader::GetSampleCountOrZero(uint64 addr) const {
AddressCountMap::const_iterator iter = address_count_map_.find(addr);
if (iter == address_count_map_.end())
return 0;
else
return iter->second;
}
uint64 SampleReader::GetTotalSampleCount() const {
uint64 ret = 0;
if (range_count_map_.size() > 0) {
for (const auto &range_count : range_count_map_) {
ret += range_count.second;
}
} else {
for (const auto &addr_count : address_count_map_) {
ret += addr_count.second;
}
}
return ret;
}
bool SampleReader::ReadAndSetTotalCount() {
if (!Read()) {
return false;
}
if (range_count_map_.size() > 0) {
for (const auto &range_count : range_count_map_) {
total_count_ += range_count.second * (range_count.first.second -
range_count.first.first);
}
} else {
for (const auto &addr_count : address_count_map_) {
total_count_ += addr_count.second;
}
}
return true;
}
bool FileSampleReader::Read() {
return Append(profile_file_);
}
bool TextSampleReaderWriter::Append(const string &profile_file) {
FILE *fp = fopen(profile_file.c_str(), "r");
if (fp == NULL) {
LOG(ERROR) << "Cannot open " << profile_file << "to read";
return false;
}
uint64 num_records;
// Reads in the range_count_map
if (1 != fscanf(fp, "%llu\n", &num_records)) {
LOG(ERROR) << "Error reading from " << profile_file;
fclose(fp);
return false;
}
for (int i = 0; i < num_records; i++) {
uint64 from, to, count;
if (3 != fscanf(fp, "%llx-%llx:%llu\n", &from, &to, &count)) {
LOG(ERROR) << "Error reading from " << profile_file;
fclose(fp);
return false;
}
range_count_map_[Range(from, to)] += count;
}
// Reads in the addr_count_map
if (1 != fscanf(fp, "%llu\n", &num_records)) {
LOG(ERROR) << "Error reading from " << profile_file;
fclose(fp);
return false;
}
for (int i = 0; i < num_records; i++) {
uint64 addr, count;
if (2 != fscanf(fp, "%llx:%llu\n", &addr, &count)) {
LOG(ERROR) << "Error reading from " << profile_file;
fclose(fp);
return false;
}
address_count_map_[addr] += count;
}
// Reads in the branch_count_map
if (1 != fscanf(fp, "%llu\n", &num_records)) {
LOG(ERROR) << "Error reading from " << profile_file;
fclose(fp);
return false;
}
for (int i = 0; i < num_records; i++) {
uint64 from, to, count;
if (3 != fscanf(fp, "%llx->%llx:%llu\n", &from, &to, &count)) {
LOG(ERROR) << "Error reading from " << profile_file;
fclose(fp);
return false;
}
branch_count_map_[Branch(from, to)] += count;
}
fclose(fp);
return true;
}
void TextSampleReaderWriter::Merge(const SampleReader &reader) {
for (const auto &range_count : reader.range_count_map()) {
range_count_map_[range_count.first] += range_count.second;
}
for (const auto &addr_count : reader.address_count_map()) {
address_count_map_[addr_count.first] += addr_count.second;
}
for (const auto &branch_count : reader.branch_count_map()) {
branch_count_map_[branch_count.first] += branch_count.second;
}
}
bool TextSampleReaderWriter::Write(const char *aux_info) {
FILE *fp = fopen(profile_file_.c_str(), "w");
if (fp == NULL) {
LOG(ERROR) << "Cannot open " << profile_file_ << " to write";
return false;
}
fprintf(fp, "%" PRIuS "\n", range_count_map_.size());
for (const auto &range_count : range_count_map_) {
fprintf(fp, "%llx-%llx:%llu\n", range_count.first.first,
range_count.first.second, range_count.second);
}
fprintf(fp, "%" PRIuS "\n", address_count_map_.size());
for (const auto &addr_count : address_count_map_) {
fprintf(fp, "%llx:%llu\n", addr_count.first, addr_count.second);
}
fprintf(fp, "%" PRIuS "\n", branch_count_map_.size());
for (const auto &branch_count : branch_count_map_) {
fprintf(fp, "%llx->%llx:%llu\n", branch_count.first.first,
branch_count.first.second, branch_count.second);
}
if (aux_info) {
fprintf(fp, "%s", aux_info);
}
fclose(fp);
return true;
}
bool TextSampleReaderWriter::IsFileExist() const {
FILE *fp = fopen(profile_file_.c_str(), "r");
if (fp == NULL) {
return false;
} else {
fclose(fp);
return true;
}
}
bool PerfDataSampleReader::Append(const string &profile_file) {
quipper::PerfReader reader;
quipper::PerfParser parser(&reader);
if (!reader.ReadFile(profile_file) || !parser.ParseRawEvents()) {
return false;
}
string focus_binary = focus_binary_re_;
// If we can find build_id from binary, and the exact build_id was found
// in the profile, then we use focus_binary to match samples. Otherwise,
// focus_binary_re_ is used to match the binary name with the samples.
for (const auto &event : parser.parsed_events()) {
if (!event.event_ptr ||
event.event_ptr->header().type() != PERF_RECORD_SAMPLE) {
continue;
}
if (MatchBinary(event.dso_and_offset.dso_name(), focus_binary)) {
address_count_map_[event.dso_and_offset.offset()]++;
}
if (event.branch_stack.size() > 0 &&
MatchBinary(event.branch_stack[0].to.dso_name(), focus_binary) &&
MatchBinary(event.branch_stack[0].from.dso_name(), focus_binary)) {
branch_count_map_[Branch(event.branch_stack[0].from.offset(),
event.branch_stack[0].to.offset())]++;
}
for (int i = 1; i < event.branch_stack.size(); i++) {
if (!MatchBinary(event.branch_stack[i].to.dso_name(), focus_binary)) {
continue;
}
uint64 begin = event.branch_stack[i].to.offset();
uint64 end = event.branch_stack[i - 1].from.offset();
// The interval between two taken branches should not be too large.
if (end < begin || end - begin > (1 << 20)) {
LOG(WARNING) << "Bogus LBR data: " << begin << "->" << end;
continue;
}
range_count_map_[Range(begin, end)]++;
if (MatchBinary(event.branch_stack[i].from.dso_name(),
focus_binary)) {
branch_count_map_[Branch(event.branch_stack[i].from.offset(),
event.branch_stack[i].to.offset())]++;
}
}
}
return true;
}
} // namespace autofdo