From 0c701fb68d17f7e0def4e36e06e7b9f8602a5dc4 Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Wed, 2 Nov 2011 23:57:15 -0700 Subject: [PATCH] tools.profiler.sampling: cross-section report Also add depth to top-down reporting so we can tell what parameter to give cross-section --- basis/tools/profiler/sampling/sampling.factor | 62 ++++++++++++++----- 1 file changed, 45 insertions(+), 17 deletions(-) diff --git a/basis/tools/profiler/sampling/sampling.factor b/basis/tools/profiler/sampling/sampling.factor index f9ccfd24d9..5f6164fcdd 100644 --- a/basis/tools/profiler/sampling/sampling.factor +++ b/basis/tools/profiler/sampling/sampling.factor @@ -4,7 +4,8 @@ combinators.short-circuit continuations fry generalizations hashtables.identity io kernel kernel.private locals math math.statistics math.vectors memory namespaces prettyprint sequences sequences.generalizations sets sorting -tools.profiler.sampling.private math.parser.private ; +tools.profiler.sampling.private math.parser.private +math.parser ; FROM: sequences => change-nth ; FROM: assocs => change-at ; IN: tools.profiler.sampling @@ -78,22 +79,23 @@ CONSTANT: zero-counts { 0 0 0 0 0 } zero-counts [ sample-counts-slice v+ ] reduce ; TUPLE: profile-node - total-time gc-time jit-time foreign-time foreign-thread-time children ; + total-time gc-time jit-time foreign-time foreign-thread-time children + depth ; -: ( times children -- node ) - [ 5 firstn [ samples>time ] 5 napply ] dip profile-node boa ; +: ( times children depth -- node ) + [ 5 firstn [ samples>time ] 5 napply ] 2dip profile-node boa ; : ( samples collector-quot -- node ) - [ sum-counts ] swap bi ; inline + [ sum-counts ] swap bi 0 ; inline :: (collect-subtrees) ( samples child-quot -- children ) samples [ sample-callstack leaf-callstack? not ] filter [ f ] [ child-quot call ] if-empty ; inline -: collect-tops ( samples -- node ) - [ unclip-callstack ] collect-pairs [ +:: collect-tops ( samples depth -- node ) + samples [ unclip-callstack ] collect-pairs [ [ sum-counts ] - [ [ collect-tops ] (collect-subtrees) ] bi + [ [ depth 1 + collect-tops ] (collect-subtrees) ] bi depth ] assoc-map ; : redundant-root-node? ( assoc -- ? ) @@ -106,21 +108,24 @@ TUPLE: profile-node : trim-root ( root -- root' ) dup redundant-root-node? [ children>> values first trim-root ] when ; -: (top-down) ( samples -- tree ) - collect-threads - [ [ collect-tops ] trim-root ] assoc-map ; +:: (top-down) ( samples depth -- tree ) + samples collect-threads + [ [ depth collect-tops ] trim-root ] assoc-map ; : top-down ( -- tree ) - get-raw-profile-data (top-down) ; + get-raw-profile-data 0 (top-down) ; + +:: counts+at ( key assoc sample -- ) + key assoc [ zero-counts or sample sample-counts-slice v+ ] change-at ; :: collect-flat ( samples -- flat ) IH{ } clone :> per-word-samples samples [| sample | sample sample-callstack unique keys [ ignore-word? not ] filter [ - per-word-samples [ zero-counts or sample sample-counts-slice v+ ] change-at + per-word-samples sample counts+at ] each ] each - per-word-samples [ f ] assoc-map ; + per-word-samples [ f 0 ] assoc-map ; : redundant-flat-node? ( child-node root-node -- ? ) [ total-time>> ] bi@ = ; @@ -135,6 +140,28 @@ TUPLE: profile-node : flat ( -- tree ) get-raw-profile-data (flat) ; +: nth-or-last ( n seq -- elt ) + [ drop f ] [ + 2dup bounds-check? [ nth ] [ nip last ] if + ] if-empty ; + +:: collect-cross-section ( samples depth -- cross-section ) + IH{ } clone :> per-word-samples + samples [| sample | + depth sample sample-callstack [ ignore-word? ] trim-tail nth-or-last :> word + word [ + word per-word-samples sample counts+at + ] when + ] each + per-word-samples [ f depth ] assoc-map ; + +:: (cross-section) ( depth samples -- flat ) + samples collect-threads + [ [ depth collect-cross-section ] ] assoc-map ; + +: cross-section ( depth -- tree ) + get-raw-profile-data (cross-section) ; + : depth. ( depth -- ) [ "| " write ] times ; @@ -149,8 +176,9 @@ TUPLE: profile-node DEFER: (profile.) -: times. ( node -- ) - { +:: times. ( node depth -- ) + node { + [ depth>> number>string 3 CHAR: \s pad-head write " " write depth depth. ] [ total-time>> duration. ] [ " (GC:" write [ gc-time>> ] [ total-time>> ] bi percentage. ] [ ", JIT:" write [ jit-time>> ] [ total-time>> ] bi percentage. ] @@ -159,7 +187,7 @@ DEFER: (profile.) } cleave ; :: (profile-node.) ( word node depth -- ) - depth depth. node times. ": " write word pprint-short nl + node depth times. ": " write word pprint-short nl node children>> depth 1 + (profile.) ; : (profile.) ( nodes depth -- )