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
|
/*
* Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "SourceModel.h"
#include "Gradient.h"
#include "Profile.h"
#include <LibCore/Stream.h>
#include <LibDebug/DebugInfo.h>
#include <LibGfx/Font/FontDatabase.h>
#include <LibSymbolication/Symbolication.h>
#include <stdio.h>
namespace Profiler {
class SourceFile final {
public:
struct Line {
DeprecatedString content;
size_t num_samples { 0 };
};
static constexpr StringView source_root_path = "/usr/src/serenity/"sv;
SourceFile(StringView filename)
{
DeprecatedString source_file_name = filename.replace("../../"sv, source_root_path, ReplaceMode::FirstOnly);
auto try_read_lines = [&]() -> ErrorOr<void> {
auto unbuffered_file = TRY(Core::Stream::File::open(source_file_name, Core::Stream::OpenMode::Read));
auto file = TRY(Core::Stream::BufferedFile::create(move(unbuffered_file)));
Array<u8, 1024> buffer;
while (!file->is_eof())
m_lines.append({ TRY(file->read_line(buffer)), 0 });
return {};
};
auto maybe_error = try_read_lines();
if (maybe_error.is_error()) {
dbgln("Could not map source file \"{}\". Tried {}. {} (errno={})", filename, source_file_name, maybe_error.error().string_literal(), maybe_error.error().code());
return;
}
}
void try_add_samples(size_t line, size_t samples)
{
if (line < 1 || line - 1 >= m_lines.size())
return;
m_lines[line - 1].num_samples += samples;
}
Vector<Line> const& lines() const { return m_lines; }
private:
Vector<Line> m_lines;
};
SourceModel::SourceModel(Profile& profile, ProfileNode& node)
: m_profile(profile)
, m_node(node)
{
FlatPtr base_address = 0;
Debug::DebugInfo const* debug_info;
if (auto maybe_kernel_base = Symbolication::kernel_base(); maybe_kernel_base.has_value() && m_node.address() >= *maybe_kernel_base) {
if (!g_kernel_debuginfo_object.has_value())
return;
base_address = maybe_kernel_base.release_value();
if (g_kernel_debug_info == nullptr)
g_kernel_debug_info = make<Debug::DebugInfo>(g_kernel_debuginfo_object->elf, DeprecatedString::empty(), base_address);
debug_info = g_kernel_debug_info.ptr();
} else {
auto const& process = node.process();
auto const* library_data = process.library_metadata.library_containing(node.address());
if (!library_data) {
dbgln("no library data for address {:p}", node.address());
return;
}
base_address = library_data->base;
debug_info = &library_data->load_debug_info(base_address);
}
VERIFY(debug_info != nullptr);
// Try to read all source files contributing to the selected function and aggregate the samples by line.
HashMap<DeprecatedString, SourceFile> source_files;
for (auto const& pair : node.events_per_address()) {
auto position = debug_info->get_source_position(pair.key - base_address);
if (position.has_value()) {
auto it = source_files.find(position.value().file_path);
if (it == source_files.end()) {
source_files.set(position.value().file_path, SourceFile(position.value().file_path));
it = source_files.find(position.value().file_path);
}
it->value.try_add_samples(position.value().line_number, pair.value);
}
}
// Process source file map and turn content into view model
for (auto const& file_iterator : source_files) {
u32 line_number = 0;
for (auto const& line_iterator : file_iterator.value.lines()) {
line_number++;
m_source_lines.append({
(u32)line_iterator.num_samples,
line_iterator.num_samples * 100.0f / node.event_count(),
file_iterator.key,
line_number,
line_iterator.content,
});
}
}
}
int SourceModel::row_count(GUI::ModelIndex const&) const
{
return m_source_lines.size();
}
DeprecatedString SourceModel::column_name(int column) const
{
switch (column) {
case Column::SampleCount:
return m_profile.show_percentages() ? "% Samples" : "# Samples";
case Column::SourceCode:
return "Source Code";
case Column::Location:
return "Location";
case Column::LineNumber:
return "Line";
default:
VERIFY_NOT_REACHED();
return {};
}
}
struct ColorPair {
Color background;
Color foreground;
};
static Optional<ColorPair> color_pair_for(SourceLineData const& line)
{
if (line.percent == 0)
return {};
Color background = color_for_percent(line.percent);
Color foreground;
if (line.percent > 50)
foreground = Color::White;
else
foreground = Color::Black;
return ColorPair { background, foreground };
}
GUI::Variant SourceModel::data(GUI::ModelIndex const& index, GUI::ModelRole role) const
{
auto const& line = m_source_lines[index.row()];
if (role == GUI::ModelRole::BackgroundColor) {
auto colors = color_pair_for(line);
if (!colors.has_value())
return {};
return colors.value().background;
}
if (role == GUI::ModelRole::ForegroundColor) {
auto colors = color_pair_for(line);
if (!colors.has_value())
return {};
return colors.value().foreground;
}
if (role == GUI::ModelRole::Font) {
if (index.column() == Column::SourceCode)
return Gfx::FontDatabase::default_fixed_width_font();
return {};
}
if (role == GUI::ModelRole::Display) {
if (index.column() == Column::SampleCount) {
if (m_profile.show_percentages())
return ((float)line.event_count / (float)m_node.event_count()) * 100.0f;
return line.event_count;
}
if (index.column() == Column::Location)
return line.location;
if (index.column() == Column::LineNumber)
return line.line_number;
if (index.column() == Column::SourceCode)
return line.source_code;
return {};
}
return {};
}
}
|