mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 13:15:06 +00:00
ProfileViewer: Symbolicate unknown addresses as "??" for now
This makes unknown addresses accumulate their children together in the treeview, which turns out to be a bit more useful than having hundreds of unique garbage addresses each with their own subtree.
This commit is contained in:
parent
ece2971112
commit
e81bde4a3d
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ OwnPtr<Profile> Profile::load_from_perfcore_file(const StringView& path)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (symbol == "??")
|
if (symbol == "??")
|
||||||
symbol = String::format("%#08x", ptr);
|
symbol = String::format("??", ptr);
|
||||||
|
|
||||||
JsonObject frame_object;
|
JsonObject frame_object;
|
||||||
frame_object.set("address", ptr);
|
frame_object.set("address", ptr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue