jit-sample-count ( sample -- count )


Vocabulary
tools.profiler.sampling

Inputs and outputs
samplea raw profile sample
countan integer


Word description
Returns the number of sample intervals spent in the non-optimizing compiler during sample.

See also
total-sample-count, gc-sample-count, foreign-sample-count, foreign-thread-sample-count, sample-thread, sample-callstack

Definition
USING: kernel sequences ;

IN: tools.profiler.sampling

: jit-sample-count ( sample -- count ) 2 swap nth ;