forked from google/autofdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
llvm_profile_writer.cc
166 lines (142 loc) · 5.94 KB
/
llvm_profile_writer.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
// 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.
// Convert a Perf profile to LLVM.
#include "config.h"
#if defined(HAVE_LLVM)
#include <stdio.h>
#include <algorithm>
#include <map>
#include <set>
#include <string>
#include <utility>
#include <vector>
#include "gflags/gflags.h"
#include "glog/logging.h"
#include "llvm_profile_writer.h"
#include "profile_writer.h"
DECLARE_bool(debug_dump);
namespace autofdo {
bool LLVMProfileBuilder::Write(const string &output_filename,
llvm::sampleprof::SampleProfileFormat format,
const SymbolMap &symbol_map,
const StringIndexMap &name_table) {
// Collect the profiles for every symbol in the name table.
LLVMProfileBuilder builder(name_table);
const auto &profiles = builder.ConvertProfiles(symbol_map);
// Write all the gathered profiles to the output file.
auto WriterOrErr = llvm::sampleprof::SampleProfileWriter::create(
llvm::StringRef(output_filename), format);
if (std::error_code EC = WriterOrErr.getError()) {
LOG(ERROR) << "Error creating profile output file '" << output_filename
<< "': " << EC.message();
return false;
}
auto Writer = std::move(WriterOrErr.get());
if (std::error_code EC = Writer->write(profiles)) {
LOG(ERROR) << "Error writing profile output to '" << output_filename
<< "': " << EC.message();
return false;
}
return true;
}
const llvm::StringMap<llvm::sampleprof::FunctionSamples>
&LLVMProfileBuilder::ConvertProfiles(const SymbolMap &symbol_map) {
Start(symbol_map);
return GetProfiles();
}
void LLVMProfileBuilder::VisitTopSymbol(const string &name,
const Symbol *node) {
llvm::StringRef name_ref = GetNameRef(name);
llvm::sampleprof::FunctionSamples &profile = profiles_[name_ref];
if (std::error_code EC =
llvm::MergeResult(result_, profile.addHeadSamples(node->head_count)))
LOG(FATAL) << "Error updating head samples for '" << name
<< "': " << EC.message();
if (std::error_code EC = llvm::MergeResult(
result_, profile.addTotalSamples(node->total_count)))
LOG(FATAL) << "Error updating total samples for '" << name
<< "': " << EC.message();
profile.setName(name_ref);
inline_stack_.clear();
inline_stack_.push_back(&profile);
}
void LLVMProfileBuilder::VisitCallsite(const Callsite &callsite) {
DCHECK_GE(inline_stack_.size(), 1);
uint32 offset = callsite.first;
uint32 line = offset >> 16;
uint32 discriminator = offset & 0xffff;
while (inline_stack_.size() > level_) {
inline_stack_.pop_back();
}
auto &caller_profile = *(inline_stack_.back());
auto CalleeName = GetNameRef(Symbol::Name(callsite.second));
auto &callee_profile =
caller_profile.functionSamplesAt(llvm::sampleprof::LineLocation(
line, discriminator))[CalleeName];
callee_profile.setName(CalleeName);
inline_stack_.push_back(&callee_profile);
}
void LLVMProfileBuilder::Visit(const Symbol *node) {
DCHECK_GE(inline_stack_.size(), 1);
auto &profile = *(inline_stack_.back());
if (level_ > 1) {
// If this is a nested inline call, update its total count.
if (std::error_code EC = llvm::MergeResult(
result_, profile.addTotalSamples(node->total_count)))
LOG(FATAL) << "Error updating total samples for '" << node->info.func_name
<< "': " << EC.message();
}
// Emit all the locations and their sample counts.
for (const auto &pos_count : node->pos_counts) {
uint32 offset = pos_count.first;
uint32 line = offset >> 16;
uint32 discriminator = offset & 0xffff;
const auto &num_samples = pos_count.second.count;
if (std::error_code EC = llvm::MergeResult(
result_, profile.addBodySamples(line, discriminator, num_samples)))
LOG(FATAL) << "Error updating body samples for '" << node->info.func_name
<< "': " << EC.message();
// If there is a call at this location, emit the possible
// targets. For direct calls, this will be the exact function
// being invoked. For indirect calls, this will be a list of one
// or more functions.
const auto &target_map = pos_count.second.target_map;
for (const auto &target_count : target_map) {
if (std::error_code EC = llvm::MergeResult(
result_, profile.addCalledTargetSamples(line, discriminator,
target_count.first,
target_count.second)))
LOG(FATAL) << "Error updating called target samples for '"
<< node->info.func_name << "': " << EC.message();
}
}
}
llvm::StringRef LLVMProfileBuilder::GetNameRef(const string &str) {
StringIndexMap::const_iterator ret =
name_table_.find(Symbol::Name(str.c_str()));
CHECK(ret != name_table_.end());
return llvm::StringRef(ret->first.c_str());
}
bool LLVMProfileWriter::WriteToFile(const string &output_filename) {
if (FLAGS_debug_dump) Dump();
// Populate the symbol table. This table contains all the symbols
// for functions found in the binary.
StringIndexMap name_table;
StringTableUpdater::Update(*symbol_map_, &name_table);
// Gather profiles for all the symbols.
return LLVMProfileBuilder::Write(output_filename, format_, *symbol_map_,
name_table);
}
} // namespace autofdo
#endif // HAVE_LLVM