mirror of
https://github.com/jlfwong/speedscope.git
synced 2024-11-22 12:53:23 +03:00
add "c" shortcut to slice a profile
This commit is contained in:
parent
e37f6fa7c3
commit
b08cdf20f1
@ -119,6 +119,7 @@ Once a profile has loaded, the main view is split into two: the top area is the
|
||||
* `n`: Go to next profile/thread if one is available
|
||||
* `p`: Go to previous profile/thread if one is available
|
||||
* `t`: Open the profile/thread selector if available
|
||||
* `c`: Slice the profile by the current selecting in "Time Order" view
|
||||
* `Cmd+F`/`Ctrl+F`: to open search. While open, `Enter` and `Shift+Enter` cycle through results
|
||||
|
||||
## Contributing
|
||||
|
@ -328,6 +328,33 @@ export class Profile {
|
||||
return flattenedProfile
|
||||
}
|
||||
|
||||
getProfileSlice(start: number, end: number): Profile {
|
||||
const builder = new CallTreeProfileBuilder()
|
||||
|
||||
let lastValue = 0
|
||||
|
||||
function openFrame(node: CallTreeNode, value: number) {
|
||||
builder.enterFrame(
|
||||
node.frame,
|
||||
(lastValue = value >= end || value < start ? lastValue : value - start),
|
||||
)
|
||||
}
|
||||
function closeFrame(node: CallTreeNode, value: number) {
|
||||
builder.leaveFrame(
|
||||
node.frame,
|
||||
(lastValue = value >= end || value < start ? lastValue : value - start),
|
||||
)
|
||||
}
|
||||
|
||||
this.forEachCall(openFrame, closeFrame)
|
||||
|
||||
const slice = builder.build()
|
||||
slice.name = this.name
|
||||
slice.valueFormatter = this.valueFormatter
|
||||
|
||||
return slice
|
||||
}
|
||||
|
||||
getInvertedProfileForCallersOf(focalFrameInfo: FrameInfo): Profile {
|
||||
const focalFrame = Frame.getOrInsert(this.frames, focalFrameInfo)
|
||||
const builder = new StackListProfileBuilder()
|
||||
|
@ -349,6 +349,17 @@ export class Application extends StatelessComponent<ApplicationProps> {
|
||||
if (activeProfileState) {
|
||||
this.props.setProfileIndexToView(activeProfileState.index - 1)
|
||||
}
|
||||
} else if (ev.key === 'c') {
|
||||
const {activeProfileState, profileGroup, setProfileGroup} = this.props
|
||||
if (activeProfileState && profileGroup) {
|
||||
const start = activeProfileState.chronoViewState.configSpaceViewportRect.origin.x
|
||||
const end = start + activeProfileState.chronoViewState.configSpaceViewportRect.size.x
|
||||
setProfileGroup({
|
||||
name: profileGroup.name,
|
||||
indexToView: 0,
|
||||
profiles: [activeProfileState.profile.getProfileSlice(start, end)],
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user