
This commit has no behavior changes. In particular, this does not fix any of the wrong uses of the previous default parameter (which used to be 'false', meaning "only replace the first occurence in the string"). It simply replaces the default uses by String::replace(..., ReplaceMode::FirstOnly), leaving them incorrect.
202 lines
5.9 KiB
C++
202 lines
5.9 KiB
C++
/*
|
|
* 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/File.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 {
|
|
String content;
|
|
size_t num_samples { 0 };
|
|
};
|
|
|
|
static constexpr StringView source_root_path = "/usr/src/serenity/"sv;
|
|
|
|
public:
|
|
SourceFile(StringView filename)
|
|
{
|
|
String source_file_name = filename.replace("../../", source_root_path, ReplaceMode::FirstOnly);
|
|
|
|
auto maybe_file = Core::File::open(source_file_name, Core::OpenMode::ReadOnly);
|
|
if (maybe_file.is_error()) {
|
|
dbgln("Could not map source file \"{}\". Tried {}. {} (errno={})", filename, source_file_name, maybe_file.error().string_literal(), maybe_file.error().code());
|
|
return;
|
|
}
|
|
|
|
auto file = maybe_file.value();
|
|
|
|
while (!file->eof())
|
|
m_lines.append({ file->read_line(1024), 0 });
|
|
}
|
|
|
|
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, String::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<String, 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();
|
|
}
|
|
|
|
String 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 {};
|
|
}
|
|
|
|
}
|