1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00

ProfileViewer: Add an instruction-level sample viewer

When you select a function in the profile tree, we will now display
a per-instruction breakdown of aggregated samples in that function.

This allows us to look much closer at what our code is doing! :^)
This commit is contained in:
Andreas Kling 2020-04-11 18:46:11 +02:00
parent 5b91d848a7
commit 69583f07e0
7 changed files with 267 additions and 6 deletions

View file

@ -28,6 +28,7 @@
#include <LibGUI/Model.h>
class Profile;
class ProfileModel final : public GUI::Model {