Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
18f4224
Implement column sorting in the generic TreeView.
mstange Mar 31, 2026
e6ef18a
Implement column sorting in the marker table.
mstange Mar 31, 2026
f0c56fb
Create a non-connected FlameGraph component.
mstange Jun 21, 2026
bc0ab9f
Convert FlameGraphTiming into a class with a getRow() method.
mstange Jun 21, 2026
e1da1db
Compute FlameGraphTiming rows lazily.
mstange Jun 21, 2026
2b45d2c
Use callNodeInfo.fieldForNode(i) instead of callNodeTable.field[i] in…
mstange Jun 21, 2026
864ccb8
Add a startsAtBottom prop to FlameGraph.
mstange Jun 21, 2026
be73ed5
Merge.
mstange Jun 24, 2026
b874f28
Add "open bottom box for function X" support code.
mstange Jun 21, 2026
6bfe091
Add a function list panel.
mstange Jun 21, 2026
6616f46
Implement function list context menu.
mstange Jun 21, 2026
f8e3e10
Implement transform shortcut keys for function list
mstange Jun 21, 2026
fa98515
Select self function when clicking in the activity graph
mstange Jun 21, 2026
182daca
lower wing support code
mstange Jun 21, 2026
5a414d3
Upper wing support code
mstange Jun 21, 2026
30ecc74
LowerWingCallNodeInfo (data part)
mstange Jun 21, 2026
ed25302
Move flame graph tooltip percentage computation into a FlameGraphTimi…
mstange Jun 24, 2026
50f6009
Restructure FlameGraphTiming and CallTreeTimings to support subtree-s…
mstange Jun 21, 2026
919a8c7
Add lower wing flame graph computation code.
mstange Jun 21, 2026
609e499
Add a DisclosureBox component.
mstange Jun 21, 2026
5059e16
Add function list wings.
mstange Jun 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions locales/en-US/app.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,7 @@ StackSettings--panel-search =
## Tab Bar for the bottom half of the analysis UI.

TabBar--calltree-tab = Call Tree
TabBar--function-list-tab = Function List
TabBar--flame-graph-tab = Flame Graph
TabBar--stack-chart-tab = Stack Chart
TabBar--marker-chart-tab = Marker Chart
Expand Down
3 changes: 2 additions & 1 deletion res/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ body {
flex-shrink: 1;
}

.treeAndSidebarWrapper {
.treeAndSidebarWrapper,
.functionTableAndSidebarWrapper {
display: flex;
flex: 1;
flex-flow: column nowrap;
Expand Down
Loading
Loading