v8 12.4.254 (node 22.4.1)
V8 is Google's open source JavaScript engine
|
#include <v8-profiler.h>
Static Public Member Functions | |
static CpuProfiler * | New (Isolate *isolate, CpuProfilingNamingMode=kDebugNaming, CpuProfilingLoggingMode=kLazyLogging) |
static void | CollectSample (Isolate *isolate) |
static void | UseDetailedSourcePositionsForProfiling (Isolate *isolate) |
Interface for controlling CPU profiling. Instance of the profiler can be created using v8::CpuProfiler::New method.
Definition at line 406 of file v8-profiler.h.
|
static |
Synchronously collect current stack sample in all profilers attached to the |isolate|. The call does not affect number of ticks recorded for the current top node.
void Dispose | ( | ) |
Disposes the CPU profiler object.
|
static |
Creates a new CPU profiler for the |isolate|. The isolate must be initialized. The profiler object must be disposed after use by calling |Dispose| method.
void SetSamplingInterval | ( | int | us | ) |
Changes default CPU profiler sampling interval to the specified number of microseconds. Default interval is 1000us. This method must be called when there are no profiles being recorded.
void SetUsePreciseSampling | ( | bool | ) |
Sets whether or not the profiler should prioritize consistency of sample periodicity on Windows. Disabling this can greatly reduce CPU usage, but may result in greater variance in sample timings from the platform's scheduler. Defaults to enabled. This method must be called when there are no profiles being recorded.
CpuProfilingResult Start | ( | CpuProfilingOptions | options, |
std::unique_ptr< DiscardedSamplesDelegate > | delegate = nullptr |
||
) |
Starts collecting a CPU profile. Several profiles may be collected at once. Generates an anonymous profiler, without a String identifier.
CpuProfilingResult Start | ( | Local< String > | title, |
bool | record_samples = false |
||
) |
The same as StartProfiling above, but the CpuProfilingMode defaults to kLeafNodeLineNumbers mode, which was the previous default behavior of the profiler.
CpuProfilingResult Start | ( | Local< String > | title, |
CpuProfilingMode | mode, | ||
bool | record_samples = false , |
||
unsigned | max_samples = CpuProfilingOptions::kNoSampleLimit |
||
) |
Starts profiling with the same semantics as above, except with expanded parameters.
|record_samples| parameter controls whether individual samples should be recorded in addition to the aggregated tree.
|max_samples| controls the maximum number of samples that should be recorded by the profiler. Samples obtained after this limit will be discarded.
CpuProfilingResult Start | ( | Local< String > | title, |
CpuProfilingOptions | options, | ||
std::unique_ptr< DiscardedSamplesDelegate > | delegate = nullptr |
||
) |
Starts collecting a CPU profile. Title may be an empty string. Several profiles may be collected at once. Attempts to start collecting several profiles with the same title are silently ignored.
CpuProfilingStatus StartProfiling | ( | Local< String > | title, |
bool | record_samples = false |
||
) |
The same as StartProfiling above, but the CpuProfilingMode defaults to kLeafNodeLineNumbers mode, which was the previous default behavior of the profiler.
CpuProfilingStatus StartProfiling | ( | Local< String > | title, |
CpuProfilingMode | mode, | ||
bool | record_samples = false , |
||
unsigned | max_samples = CpuProfilingOptions::kNoSampleLimit |
||
) |
Starts profiling with the same semantics as above, except with expanded parameters.
|record_samples| parameter controls whether individual samples should be recorded in addition to the aggregated tree.
|max_samples| controls the maximum number of samples that should be recorded by the profiler. Samples obtained after this limit will be discarded.
CpuProfilingStatus StartProfiling | ( | Local< String > | title, |
CpuProfilingOptions | options, | ||
std::unique_ptr< DiscardedSamplesDelegate > | delegate = nullptr |
||
) |
Starts collecting a CPU profile. Title may be an empty string. Several profiles may be collected at once. Attempts to start collecting several profiles with the same title are silently ignored.
CpuProfile * Stop | ( | ProfilerId | id | ) |
Stops collecting CPU profile with a given id and returns it.
CpuProfile * StopProfiling | ( | Local< String > | title | ) |
Stops collecting CPU profile with a given title and returns it. If the title given is empty, finishes the last profile started.
|
static |
Generate more detailed source positions to code objects. This results in better results when mapping profiling samples to script source.