Commit 8cebe1cc authored by Camillo Bruni's avatar Camillo Bruni Committed by Commit Bot

[tools] Show more entries in the ticks-processor

- lower the cutoff-threshold for bottom up graphs to 1%
- show all builtins/stubs/ics by default

R=jkummerow@chromium.org

Change-Id: I85f8c4f00c5f36407bc5d9f81bead8f39a5ef632

NOTRY=true

Change-Id: I85f8c4f00c5f36407bc5d9f81bead8f39a5ef632
Reviewed-on: https://chromium-review.googlesource.com/452300Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#43704}
parent 1f2a31c8
......@@ -86,7 +86,7 @@ function start_process() {
stateFilter: null,
callGraphSize: 5,
ignoreUnknown: false,
separateIc: false,
separateIc: true,
targetRootFS: '',
nm: 'nm'
};
......
......@@ -202,7 +202,7 @@ TickProcessor.CodeTypes = {
// codeTypes_ map because there can be zillions of them.
TickProcessor.CALL_PROFILE_CUTOFF_PCT = 2.0;
TickProcessor.CALL_PROFILE_CUTOFF_PCT = 1.0;
TickProcessor.CALL_GRAPH_SIZE = 5;
......@@ -855,7 +855,7 @@ ArgumentsProcessor.DEFAULTS = {
stateFilter: null,
callGraphSize: 5,
ignoreUnknown: false,
separateIc: false,
separateIc: true,
preprocessJson: null,
targetRootFS: '',
nm: 'nm',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment