1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 12:57:36 +00:00

Profiler: Add a new "Samples" view to the main UI

You can now view the individual samples in a profile one by one with
the new "Samples" view. The "old" main view moves into a "Call Tree"
tab (but it remains the default view.)

When you select a sample in the samples view, we show you the full
symbolicated backtrace in a separate view on the right hand side. :^)
This commit is contained in:
Andreas Kling 2021-02-27 18:33:30 +01:00
parent 2c1f71055f
commit 1fb1279cfd
8 changed files with 369 additions and 11 deletions

View file

@ -1,9 +1,11 @@
set(SOURCES
DisassemblyModel.cpp
main.cpp
Profile.cpp
IndividualSampleModel.cpp
Profile.cpp
ProfileModel.cpp
ProfileTimelineWidget.cpp
ProfileTimelineWidget.cpp
SamplesModel.cpp
)
serenity_app(Profiler ICON app-profiler)