top-down ( -- tree )
Factor documentation > Factor handbook > Developer tools > Sampling profiler
Prev:foreign-thread-time ( -- n )
Next:top-down-max-depth ( max-depth -- tree )


Vocabulary
tools.profiler.sampling

Inputs and outputs
treea profile report


Word description
Generates a top-down tree profile from the results of the most recent profile. The output tree can be printed with the profile. word.

See also
cross-section, flat, top-down-max-depth, profile, profile.

Definition
USING: layouts ;

IN: tools.profiler.sampling

: top-down ( -- tree )
most-positive-fixnum top-down-max-depth ;