2010-04-06 14:54:20 +00:00
|
|
|
// Copyright 2010 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2010-04-06 14:54:20 +00:00
|
|
|
|
|
|
|
#ifndef V8_V8_PROFILER_H_
|
|
|
|
#define V8_V8_PROFILER_H_
|
|
|
|
|
2017-01-19 14:38:21 +00:00
|
|
|
#include <unordered_set>
|
2015-04-08 16:13:24 +00:00
|
|
|
#include <vector>
|
2015-09-03 07:55:53 +00:00
|
|
|
#include "v8.h" // NOLINT(build/include)
|
2010-04-06 14:54:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Profiler support for the V8 JavaScript engine.
|
|
|
|
*/
|
|
|
|
namespace v8 {
|
|
|
|
|
2014-03-17 07:02:39 +00:00
|
|
|
class HeapGraphNode;
|
2014-03-17 07:09:49 +00:00
|
|
|
struct HeapStatsUpdate;
|
2014-03-17 07:02:39 +00:00
|
|
|
|
2012-03-26 13:47:37 +00:00
|
|
|
typedef uint32_t SnapshotObjectId;
|
2010-04-06 14:54:20 +00:00
|
|
|
|
2015-04-08 16:13:24 +00:00
|
|
|
|
|
|
|
struct CpuProfileDeoptFrame {
|
|
|
|
int script_id;
|
|
|
|
size_t position;
|
|
|
|
};
|
|
|
|
|
2015-04-09 21:22:46 +00:00
|
|
|
} // namespace v8
|
2015-04-08 16:13:24 +00:00
|
|
|
|
|
|
|
#ifdef V8_OS_WIN
|
2015-04-09 21:22:46 +00:00
|
|
|
template class V8_EXPORT std::vector<v8::CpuProfileDeoptFrame>;
|
2015-04-08 16:13:24 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-09 21:22:46 +00:00
|
|
|
namespace v8 {
|
2015-04-08 16:13:24 +00:00
|
|
|
|
|
|
|
struct V8_EXPORT CpuProfileDeoptInfo {
|
|
|
|
/** A pointer to a static string owned by v8. */
|
|
|
|
const char* deopt_reason;
|
|
|
|
std::vector<CpuProfileDeoptFrame> stack;
|
|
|
|
};
|
|
|
|
|
2015-04-09 21:22:46 +00:00
|
|
|
} // namespace v8
|
2015-04-08 16:13:24 +00:00
|
|
|
|
|
|
|
#ifdef V8_OS_WIN
|
2015-04-09 21:22:46 +00:00
|
|
|
template class V8_EXPORT std::vector<v8::CpuProfileDeoptInfo>;
|
2015-04-08 16:13:24 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-09 21:22:46 +00:00
|
|
|
namespace v8 {
|
2015-04-08 16:13:24 +00:00
|
|
|
|
2016-09-29 09:24:46 +00:00
|
|
|
/**
|
|
|
|
* TracingCpuProfiler monitors tracing being enabled/disabled
|
2016-10-06 18:14:03 +00:00
|
|
|
* and emits CpuProfile trace events once v8.cpu_profiler tracing category
|
2016-09-29 09:24:46 +00:00
|
|
|
* is enabled. It has no overhead unless the category is enabled.
|
|
|
|
*/
|
|
|
|
class V8_EXPORT TracingCpuProfiler {
|
|
|
|
public:
|
|
|
|
static std::unique_ptr<TracingCpuProfiler> Create(Isolate*);
|
|
|
|
virtual ~TracingCpuProfiler() = default;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TracingCpuProfiler() = default;
|
|
|
|
};
|
|
|
|
|
2016-07-06 18:37:10 +00:00
|
|
|
// TickSample captures the information collected for each sample.
|
|
|
|
struct TickSample {
|
|
|
|
// Internal profiling (with --prof + tools/$OS-tick-processor) wants to
|
|
|
|
// include the runtime function we're calling. Externally exposed tick
|
|
|
|
// samples don't care.
|
|
|
|
enum RecordCEntryFrame { kIncludeCEntryFrame, kSkipCEntryFrame };
|
|
|
|
|
|
|
|
TickSample()
|
|
|
|
: state(OTHER),
|
|
|
|
pc(nullptr),
|
|
|
|
external_callback_entry(nullptr),
|
|
|
|
frames_count(0),
|
|
|
|
has_external_callback(false),
|
|
|
|
update_stats(true) {}
|
2016-08-10 17:12:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize a tick sample from the isolate.
|
|
|
|
* \param isolate The isolate.
|
|
|
|
* \param state Execution state.
|
|
|
|
* \param record_c_entry_frame Include or skip the runtime function.
|
|
|
|
* \param update_stats Whether update the sample to the aggregated stats.
|
|
|
|
* \param use_simulator_reg_state When set to true and V8 is running under a
|
|
|
|
* simulator, the method will use the simulator
|
|
|
|
* register state rather than the one provided
|
|
|
|
* with |state| argument. Otherwise the method
|
|
|
|
* will use provided register |state| as is.
|
|
|
|
*/
|
2016-07-06 18:37:10 +00:00
|
|
|
void Init(Isolate* isolate, const v8::RegisterState& state,
|
2016-08-10 17:12:05 +00:00
|
|
|
RecordCEntryFrame record_c_entry_frame, bool update_stats,
|
|
|
|
bool use_simulator_reg_state = true);
|
|
|
|
/**
|
|
|
|
* Get a call stack sample from the isolate.
|
|
|
|
* \param isolate The isolate.
|
|
|
|
* \param state Register state.
|
|
|
|
* \param record_c_entry_frame Include or skip the runtime function.
|
|
|
|
* \param frames Caller allocated buffer to store stack frames.
|
|
|
|
* \param frames_limit Maximum number of frames to capture. The buffer must
|
|
|
|
* be large enough to hold the number of frames.
|
|
|
|
* \param sample_info The sample info is filled up by the function
|
|
|
|
* provides number of actual captured stack frames and
|
|
|
|
* the current VM state.
|
|
|
|
* \param use_simulator_reg_state When set to true and V8 is running under a
|
|
|
|
* simulator, the method will use the simulator
|
|
|
|
* register state rather than the one provided
|
|
|
|
* with |state| argument. Otherwise the method
|
|
|
|
* will use provided register |state| as is.
|
|
|
|
* \note GetStackSample is thread and signal safe and should only be called
|
|
|
|
* when the JS thread is paused or interrupted.
|
|
|
|
* Otherwise the behavior is undefined.
|
|
|
|
*/
|
|
|
|
static bool GetStackSample(Isolate* isolate, v8::RegisterState* state,
|
2016-07-06 18:37:10 +00:00
|
|
|
RecordCEntryFrame record_c_entry_frame,
|
|
|
|
void** frames, size_t frames_limit,
|
2016-08-10 17:12:05 +00:00
|
|
|
v8::SampleInfo* sample_info,
|
|
|
|
bool use_simulator_reg_state = true);
|
2016-07-06 18:37:10 +00:00
|
|
|
StateTag state; // The state of the VM.
|
|
|
|
void* pc; // Instruction pointer.
|
|
|
|
union {
|
|
|
|
void* tos; // Top stack value (*sp).
|
|
|
|
void* external_callback_entry;
|
|
|
|
};
|
|
|
|
static const unsigned kMaxFramesCountLog2 = 8;
|
|
|
|
static const unsigned kMaxFramesCount = (1 << kMaxFramesCountLog2) - 1;
|
|
|
|
void* stack[kMaxFramesCount]; // Call stack.
|
|
|
|
unsigned frames_count : kMaxFramesCountLog2; // Number of captured frames.
|
|
|
|
bool has_external_callback : 1;
|
|
|
|
bool update_stats : 1; // Whether the sample should update aggregated stats.
|
|
|
|
};
|
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/**
|
|
|
|
* CpuProfileNode represents a node in a call graph.
|
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT CpuProfileNode {
|
2010-04-06 14:54:20 +00:00
|
|
|
public:
|
2014-11-06 09:16:34 +00:00
|
|
|
struct LineTick {
|
|
|
|
/** The 1-based number of the source line where the function originates. */
|
|
|
|
int line;
|
|
|
|
|
|
|
|
/** The count of samples associated with the source line. */
|
|
|
|
unsigned int hit_count;
|
|
|
|
};
|
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/** Returns function name (empty string for anonymous functions.) */
|
2015-07-06 07:09:07 +00:00
|
|
|
Local<String> GetFunctionName() const;
|
2010-04-06 14:54:20 +00:00
|
|
|
|
2016-09-09 15:50:23 +00:00
|
|
|
/**
|
|
|
|
* Returns function name (empty string for anonymous functions.)
|
|
|
|
* The string ownership is *not* passed to the caller. It stays valid until
|
|
|
|
* profile is deleted. The function is thread safe.
|
|
|
|
*/
|
|
|
|
const char* GetFunctionNameStr() const;
|
|
|
|
|
2013-07-02 06:14:01 +00:00
|
|
|
/** Returns id of the script where function is located. */
|
|
|
|
int GetScriptId() const;
|
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/** Returns resource name for script from where the function originates. */
|
2015-07-06 07:09:07 +00:00
|
|
|
Local<String> GetScriptResourceName() const;
|
2010-04-06 14:54:20 +00:00
|
|
|
|
2016-09-09 15:50:23 +00:00
|
|
|
/**
|
|
|
|
* Returns resource name for script from where the function originates.
|
|
|
|
* The string ownership is *not* passed to the caller. It stays valid until
|
|
|
|
* profile is deleted. The function is thread safe.
|
|
|
|
*/
|
|
|
|
const char* GetScriptResourceNameStr() const;
|
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/**
|
|
|
|
* Returns the number, 1-based, of the line where the function originates.
|
|
|
|
* kNoLineNumberInfo if no line number information is available.
|
|
|
|
*/
|
|
|
|
int GetLineNumber() const;
|
|
|
|
|
2013-10-10 13:15:47 +00:00
|
|
|
/**
|
|
|
|
* Returns 1-based number of the column where the function originates.
|
|
|
|
* kNoColumnNumberInfo if no column number information is available.
|
|
|
|
*/
|
|
|
|
int GetColumnNumber() const;
|
|
|
|
|
2014-11-06 09:16:34 +00:00
|
|
|
/**
|
|
|
|
* Returns the number of the function's source lines that collect the samples.
|
|
|
|
*/
|
|
|
|
unsigned int GetHitLineCount() const;
|
|
|
|
|
|
|
|
/** Returns the set of source lines that collect the samples.
|
|
|
|
* The caller allocates buffer and responsible for releasing it.
|
|
|
|
* True if all available entries are copied, otherwise false.
|
|
|
|
* The function copies nothing if buffer is not large enough.
|
|
|
|
*/
|
|
|
|
bool GetLineTicks(LineTick* entries, unsigned int length) const;
|
|
|
|
|
2013-09-05 13:20:51 +00:00
|
|
|
/** Returns bailout reason for the function
|
|
|
|
* if the optimization was disabled for it.
|
|
|
|
*/
|
|
|
|
const char* GetBailoutReason() const;
|
|
|
|
|
2013-08-09 07:38:26 +00:00
|
|
|
/**
|
|
|
|
* Returns the count of samples where the function was currently executing.
|
|
|
|
*/
|
|
|
|
unsigned GetHitCount() const;
|
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/** Returns function entry UID. */
|
2016-08-02 09:41:31 +00:00
|
|
|
V8_DEPRECATE_SOON(
|
|
|
|
"Use GetScriptId, GetLineNumber, and GetColumnNumber instead.",
|
|
|
|
unsigned GetCallUid() const);
|
2010-04-06 14:54:20 +00:00
|
|
|
|
2013-04-02 07:48:25 +00:00
|
|
|
/** Returns id of the node. The id is unique within the tree */
|
|
|
|
unsigned GetNodeId() const;
|
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/** Returns child nodes count of the node. */
|
|
|
|
int GetChildrenCount() const;
|
|
|
|
|
|
|
|
/** Retrieves a child node by index. */
|
|
|
|
const CpuProfileNode* GetChild(int index) const;
|
|
|
|
|
2015-04-08 16:13:24 +00:00
|
|
|
/** Retrieves deopt infos for the node. */
|
|
|
|
const std::vector<CpuProfileDeoptInfo>& GetDeoptInfos() const;
|
|
|
|
|
2010-05-06 07:32:44 +00:00
|
|
|
static const int kNoLineNumberInfo = Message::kNoLineNumberInfo;
|
2013-10-10 13:15:47 +00:00
|
|
|
static const int kNoColumnNumberInfo = Message::kNoColumnInfo;
|
2010-04-06 14:54:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-03-15 12:46:45 +00:00
|
|
|
* CpuProfile contains a CPU profile in a form of top-down call tree
|
|
|
|
* (from main() down to functions that do all the work).
|
2010-04-06 14:54:20 +00:00
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT CpuProfile {
|
2010-04-06 14:54:20 +00:00
|
|
|
public:
|
|
|
|
/** Returns CPU profile title. */
|
2015-07-06 07:09:07 +00:00
|
|
|
Local<String> GetTitle() const;
|
2010-04-06 14:54:20 +00:00
|
|
|
|
|
|
|
/** Returns the root node of the top down call tree. */
|
|
|
|
const CpuProfileNode* GetTopDownRoot() const;
|
2011-03-22 16:10:01 +00:00
|
|
|
|
2013-04-02 07:48:25 +00:00
|
|
|
/**
|
2014-04-25 18:53:06 +00:00
|
|
|
* Returns number of samples recorded. The samples are not recorded unless
|
|
|
|
* |record_samples| parameter of CpuProfiler::StartCpuProfiling is true.
|
|
|
|
*/
|
2013-04-02 07:48:25 +00:00
|
|
|
int GetSamplesCount() const;
|
|
|
|
|
|
|
|
/**
|
2014-04-25 18:53:06 +00:00
|
|
|
* Returns profile node corresponding to the top frame the sample at
|
|
|
|
* the given index.
|
|
|
|
*/
|
2013-04-02 07:48:25 +00:00
|
|
|
const CpuProfileNode* GetSample(int index) const;
|
|
|
|
|
2013-08-05 07:17:08 +00:00
|
|
|
/**
|
2014-04-25 18:53:06 +00:00
|
|
|
* Returns the timestamp of the sample. The timestamp is the number of
|
|
|
|
* microseconds since some unspecified starting point.
|
|
|
|
* The point is equal to the starting point used by GetStartTime.
|
|
|
|
*/
|
|
|
|
int64_t GetSampleTimestamp(int index) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns time when the profile recording was started (in microseconds)
|
|
|
|
* since some unspecified starting point.
|
|
|
|
*/
|
2013-08-06 08:00:58 +00:00
|
|
|
int64_t GetStartTime() const;
|
2013-08-05 07:17:08 +00:00
|
|
|
|
|
|
|
/**
|
2014-04-25 18:53:06 +00:00
|
|
|
* Returns time when the profile recording was stopped (in microseconds)
|
|
|
|
* since some unspecified starting point.
|
|
|
|
* The point is equal to the starting point used by GetStartTime.
|
|
|
|
*/
|
2013-08-06 08:00:58 +00:00
|
|
|
int64_t GetEndTime() const;
|
2013-08-05 07:17:08 +00:00
|
|
|
|
2011-03-22 16:10:01 +00:00
|
|
|
/**
|
|
|
|
* Deletes the profile and removes it from CpuProfiler's list.
|
|
|
|
* All pointers to nodes previously returned become invalid.
|
|
|
|
*/
|
|
|
|
void Delete();
|
2010-04-06 14:54:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2013-04-02 08:16:53 +00:00
|
|
|
* Interface for controlling CPU profiling. Instance of the
|
2016-07-08 15:00:23 +00:00
|
|
|
* profiler can be created using v8::CpuProfiler::New method.
|
2010-04-06 14:54:20 +00:00
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT CpuProfiler {
|
2010-04-06 14:54:20 +00:00
|
|
|
public:
|
2016-07-08 15:00:23 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
static CpuProfiler* New(Isolate* isolate);
|
|
|
|
|
2017-11-07 01:39:59 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
static void CollectSample(Isolate* isolate);
|
|
|
|
|
2016-07-08 15:00:23 +00:00
|
|
|
/**
|
|
|
|
* Disposes the CPU profiler object.
|
|
|
|
*/
|
|
|
|
void Dispose();
|
|
|
|
|
2010-05-18 14:19:33 +00:00
|
|
|
/**
|
2013-09-04 11:55:28 +00:00
|
|
|
* 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.
|
2010-05-18 14:19:33 +00:00
|
|
|
*/
|
2013-09-04 11:55:28 +00:00
|
|
|
void SetSamplingInterval(int us);
|
2010-05-18 14:19:33 +00:00
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/**
|
|
|
|
* Starts collecting CPU profile. Title may be an empty string. It
|
|
|
|
* is allowed to have several profiles being collected at
|
|
|
|
* once. Attempts to start collecting several profiles with the same
|
2010-05-18 14:19:33 +00:00
|
|
|
* title are silently ignored. While collecting a profile, functions
|
|
|
|
* from all security contexts are included in it. The token-based
|
|
|
|
* filtering is only performed when querying for a profile.
|
2013-04-02 07:48:25 +00:00
|
|
|
*
|
|
|
|
* |record_samples| parameter controls whether individual samples should
|
|
|
|
* be recorded in addition to the aggregated tree.
|
2010-04-06 14:54:20 +00:00
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
void StartProfiling(Local<String> title, bool record_samples = false);
|
2014-03-14 09:26:31 +00:00
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
/**
|
|
|
|
* Stops collecting CPU profile with a given title and returns it.
|
|
|
|
* If the title given is empty, finishes the last profile started.
|
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
CpuProfile* StopProfiling(Local<String> title);
|
2014-03-14 09:26:31 +00:00
|
|
|
|
2016-01-26 20:47:23 +00:00
|
|
|
/**
|
|
|
|
* Force collection of a sample. Must be called on the VM thread.
|
|
|
|
* Recording the forced sample does not contribute to the aggregated
|
|
|
|
* profile statistics.
|
|
|
|
*/
|
2017-11-14 20:23:15 +00:00
|
|
|
V8_DEPRECATED("Use static CollectSample(Isolate*) instead.",
|
|
|
|
void CollectSample());
|
2016-01-26 20:47:23 +00:00
|
|
|
|
2013-08-07 17:04:27 +00:00
|
|
|
/**
|
|
|
|
* Tells the profiler whether the embedder is idle.
|
|
|
|
*/
|
2018-03-06 13:52:53 +00:00
|
|
|
V8_DEPRECATED("Use Isolate::SetIdle(bool) instead.",
|
|
|
|
void SetIdle(bool is_idle));
|
2013-08-07 17:04:27 +00:00
|
|
|
|
2013-04-02 08:16:53 +00:00
|
|
|
private:
|
|
|
|
CpuProfiler();
|
|
|
|
~CpuProfiler();
|
|
|
|
CpuProfiler(const CpuProfiler&);
|
|
|
|
CpuProfiler& operator=(const CpuProfiler&);
|
2010-04-06 14:54:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-15 11:44:07 +00:00
|
|
|
/**
|
|
|
|
* HeapSnapshotEdge represents a directed connection between heap
|
2011-05-16 06:36:43 +00:00
|
|
|
* graph nodes: from retainers to retained nodes.
|
2010-06-15 11:44:07 +00:00
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT HeapGraphEdge {
|
2010-06-15 11:44:07 +00:00
|
|
|
public:
|
|
|
|
enum Type {
|
2010-08-09 11:37:24 +00:00
|
|
|
kContextVariable = 0, // A variable from a function context.
|
|
|
|
kElement = 1, // An element of an array.
|
|
|
|
kProperty = 2, // A named object property.
|
2010-11-18 10:38:25 +00:00
|
|
|
kInternal = 3, // A link that can't be accessed from JS,
|
|
|
|
// thus, its name isn't a real property name
|
|
|
|
// (e.g. parts of a ConsString).
|
|
|
|
kHidden = 4, // A link that is needed for proper sizes
|
|
|
|
// calculation, but may be hidden from user.
|
2011-12-06 17:41:47 +00:00
|
|
|
kShortcut = 5, // A link that must not be followed during
|
2010-11-18 10:38:25 +00:00
|
|
|
// sizes calculation.
|
2011-12-06 17:41:47 +00:00
|
|
|
kWeak = 6 // A weak reference (ignored by the GC).
|
2010-06-15 11:44:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Returns edge type (see HeapGraphEdge::Type). */
|
|
|
|
Type GetType() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns edge name. This can be a variable name, an element index, or
|
|
|
|
* a property name.
|
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
Local<Value> GetName() const;
|
2010-06-15 11:44:07 +00:00
|
|
|
|
|
|
|
/** Returns origin node. */
|
|
|
|
const HeapGraphNode* GetFromNode() const;
|
|
|
|
|
|
|
|
/** Returns destination node. */
|
|
|
|
const HeapGraphNode* GetToNode() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HeapGraphNode represents a node in a heap graph.
|
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT HeapGraphNode {
|
2010-06-15 11:44:07 +00:00
|
|
|
public:
|
|
|
|
enum Type {
|
2014-05-22 11:26:48 +00:00
|
|
|
kHidden = 0, // Hidden node, may be filtered when shown to user.
|
|
|
|
kArray = 1, // An array of elements.
|
|
|
|
kString = 2, // A string.
|
|
|
|
kObject = 3, // A JS object (except for arrays and strings).
|
|
|
|
kCode = 4, // Compiled code.
|
|
|
|
kClosure = 5, // Function closure.
|
|
|
|
kRegExp = 6, // RegExp.
|
|
|
|
kHeapNumber = 7, // Number stored in the heap.
|
|
|
|
kNative = 8, // Native object (not from V8 heap).
|
2017-08-02 08:23:36 +00:00
|
|
|
kSynthetic = 9, // Synthetic object, usually used for grouping
|
2014-05-22 11:26:48 +00:00
|
|
|
// snapshot items together.
|
|
|
|
kConsString = 10, // Concatenated string. A pair of pointers to strings.
|
|
|
|
kSlicedString = 11, // Sliced string. A fragment of another string.
|
2017-02-14 06:57:25 +00:00
|
|
|
kSymbol = 12 // A Symbol (ES6).
|
2010-06-15 11:44:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Returns node type (see HeapGraphNode::Type). */
|
|
|
|
Type GetType() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns node name. Depending on node's type this can be the name
|
|
|
|
* of the constructor (for objects), the name of the function (for
|
|
|
|
* closures), string value, or an empty string (for compiled code).
|
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
Local<String> GetName() const;
|
2010-06-15 11:44:07 +00:00
|
|
|
|
2010-07-15 13:21:50 +00:00
|
|
|
/**
|
|
|
|
* Returns node id. For the same heap object, the id remains the same
|
2011-06-24 11:38:47 +00:00
|
|
|
* across all snapshots.
|
2010-07-15 13:21:50 +00:00
|
|
|
*/
|
2012-03-26 13:47:37 +00:00
|
|
|
SnapshotObjectId GetId() const;
|
2010-07-15 13:21:50 +00:00
|
|
|
|
2014-02-18 13:22:07 +00:00
|
|
|
/** Returns node's own size, in bytes. */
|
|
|
|
size_t GetShallowSize() const;
|
2010-06-15 11:44:07 +00:00
|
|
|
|
|
|
|
/** Returns child nodes count of the node. */
|
|
|
|
int GetChildrenCount() const;
|
|
|
|
|
|
|
|
/** Retrieves a child by index. */
|
|
|
|
const HeapGraphEdge* GetChild(int index) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-03-17 07:02:39 +00:00
|
|
|
/**
|
|
|
|
* An interface for exporting data from V8, using "push" model.
|
|
|
|
*/
|
|
|
|
class V8_EXPORT OutputStream { // NOLINT
|
|
|
|
public:
|
|
|
|
enum WriteResult {
|
|
|
|
kContinue = 0,
|
|
|
|
kAbort = 1
|
|
|
|
};
|
|
|
|
virtual ~OutputStream() {}
|
|
|
|
/** Notify about the end of stream. */
|
|
|
|
virtual void EndOfStream() = 0;
|
|
|
|
/** Get preferred output chunk size. Called only once. */
|
|
|
|
virtual int GetChunkSize() { return 1024; }
|
|
|
|
/**
|
|
|
|
* Writes the next chunk of snapshot data into the stream. Writing
|
|
|
|
* can be stopped by returning kAbort as function result. EndOfStream
|
|
|
|
* will not be called in case writing was aborted.
|
|
|
|
*/
|
|
|
|
virtual WriteResult WriteAsciiChunk(char* data, int size) = 0;
|
|
|
|
/**
|
|
|
|
* Writes the next chunk of heap stats data into the stream. Writing
|
|
|
|
* can be stopped by returning kAbort as function result. EndOfStream
|
|
|
|
* will not be called in case writing was aborted.
|
|
|
|
*/
|
|
|
|
virtual WriteResult WriteHeapStatsChunk(HeapStatsUpdate* data, int count) {
|
|
|
|
return kAbort;
|
2014-05-09 12:59:24 +00:00
|
|
|
}
|
2014-03-17 07:02:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-06-15 11:44:07 +00:00
|
|
|
/**
|
|
|
|
* HeapSnapshots record the state of the JS heap at some moment.
|
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT HeapSnapshot {
|
2010-06-15 11:44:07 +00:00
|
|
|
public:
|
2010-09-14 11:49:06 +00:00
|
|
|
enum SerializationFormat {
|
|
|
|
kJSON = 0 // See format description near 'Serialize' method.
|
2010-08-18 08:19:29 +00:00
|
|
|
};
|
|
|
|
|
2010-06-15 11:44:07 +00:00
|
|
|
/** Returns the root node of the heap graph. */
|
2010-07-15 13:21:50 +00:00
|
|
|
const HeapGraphNode* GetRoot() const;
|
|
|
|
|
2010-12-02 15:38:51 +00:00
|
|
|
/** Returns a node by its id. */
|
2012-03-26 13:47:37 +00:00
|
|
|
const HeapGraphNode* GetNodeById(SnapshotObjectId id) const;
|
2010-12-02 15:38:51 +00:00
|
|
|
|
2011-06-21 08:02:34 +00:00
|
|
|
/** Returns total nodes count in the snapshot. */
|
|
|
|
int GetNodesCount() const;
|
|
|
|
|
|
|
|
/** Returns a node by index. */
|
|
|
|
const HeapGraphNode* GetNode(int index) const;
|
|
|
|
|
2012-03-27 11:54:47 +00:00
|
|
|
/** Returns a max seen JS object Id. */
|
|
|
|
SnapshotObjectId GetMaxSnapshotJSObjectId() const;
|
|
|
|
|
2011-03-22 16:10:01 +00:00
|
|
|
/**
|
|
|
|
* Deletes the snapshot and removes it from HeapProfiler's list.
|
|
|
|
* All pointers to nodes, edges and paths previously returned become
|
|
|
|
* invalid.
|
|
|
|
*/
|
|
|
|
void Delete();
|
|
|
|
|
2010-09-14 11:49:06 +00:00
|
|
|
/**
|
|
|
|
* Prepare a serialized representation of the snapshot. The result
|
|
|
|
* is written into the stream provided in chunks of specified size.
|
|
|
|
* The total length of the serialized snapshot is unknown in
|
2011-05-16 06:36:43 +00:00
|
|
|
* advance, it can be roughly equal to JS heap size (that means,
|
2010-09-14 11:49:06 +00:00
|
|
|
* it can be really big - tens of megabytes).
|
|
|
|
*
|
|
|
|
* For the JSON format, heap contents are represented as an object
|
|
|
|
* with the following structure:
|
|
|
|
*
|
|
|
|
* {
|
2012-04-13 12:50:48 +00:00
|
|
|
* snapshot: {
|
|
|
|
* title: "...",
|
|
|
|
* uid: nnn,
|
|
|
|
* meta: { meta-info },
|
|
|
|
* node_count: nnn,
|
|
|
|
* edge_count: nnn
|
|
|
|
* },
|
|
|
|
* nodes: [nodes array],
|
|
|
|
* edges: [edges array],
|
|
|
|
* strings: [strings array]
|
2010-09-14 11:49:06 +00:00
|
|
|
* }
|
|
|
|
*
|
2012-04-13 12:50:48 +00:00
|
|
|
* Nodes reference strings, other nodes, and edges by their indexes
|
|
|
|
* in corresponding arrays.
|
2010-09-14 11:49:06 +00:00
|
|
|
*/
|
2015-03-10 15:14:01 +00:00
|
|
|
void Serialize(OutputStream* stream,
|
|
|
|
SerializationFormat format = kJSON) const;
|
2010-06-15 11:44:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-03-17 07:02:39 +00:00
|
|
|
/**
|
|
|
|
* An interface for reporting progress and controlling long-running
|
|
|
|
* activities.
|
|
|
|
*/
|
|
|
|
class V8_EXPORT ActivityControl { // NOLINT
|
|
|
|
public:
|
|
|
|
enum ControlOption {
|
|
|
|
kContinue = 0,
|
|
|
|
kAbort = 1
|
|
|
|
};
|
|
|
|
virtual ~ActivityControl() {}
|
|
|
|
/**
|
|
|
|
* Notify about current progress. The activity can be stopped by
|
|
|
|
* returning kAbort as the callback result.
|
|
|
|
*/
|
|
|
|
virtual ControlOption ReportProgressValue(int done, int total) = 0;
|
|
|
|
};
|
|
|
|
|
2011-03-10 12:05:31 +00:00
|
|
|
|
2016-01-22 16:36:40 +00:00
|
|
|
/**
|
|
|
|
* AllocationProfile is a sampled profile of allocations done by the program.
|
|
|
|
* This is structured as a call-graph.
|
|
|
|
*/
|
|
|
|
class V8_EXPORT AllocationProfile {
|
|
|
|
public:
|
|
|
|
struct Allocation {
|
|
|
|
/**
|
|
|
|
* Size of the sampled allocation object.
|
|
|
|
*/
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of objects of such size that were sampled.
|
|
|
|
*/
|
|
|
|
unsigned int count;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a node in the call-graph.
|
|
|
|
*/
|
|
|
|
struct Node {
|
|
|
|
/**
|
|
|
|
* Name of the function. May be empty for anonymous functions or if the
|
|
|
|
* script corresponding to this function has been unloaded.
|
|
|
|
*/
|
|
|
|
Local<String> name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of the script containing the function. May be empty if the script
|
|
|
|
* name is not available, or if the script has been unloaded.
|
|
|
|
*/
|
|
|
|
Local<String> script_name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* id of the script where the function is located. May be equal to
|
|
|
|
* v8::UnboundScript::kNoScriptId in cases where the script doesn't exist.
|
|
|
|
*/
|
|
|
|
int script_id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start position of the function in the script.
|
|
|
|
*/
|
|
|
|
int start_position;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 1-indexed line number where the function starts. May be
|
|
|
|
* kNoLineNumberInfo if no line number information is available.
|
|
|
|
*/
|
|
|
|
int line_number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 1-indexed column number where the function starts. May be
|
|
|
|
* kNoColumnNumberInfo if no line number information is available.
|
|
|
|
*/
|
|
|
|
int column_number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of callees called from this node for which we have sampled
|
|
|
|
* allocations. The lifetime of the children is scoped to the containing
|
|
|
|
* AllocationProfile.
|
|
|
|
*/
|
|
|
|
std::vector<Node*> children;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of self allocations done by this node in the call-graph.
|
|
|
|
*/
|
|
|
|
std::vector<Allocation> allocations;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the root node of the call-graph. The root node corresponds to an
|
|
|
|
* empty JS call-stack. The lifetime of the returned Node* is scoped to the
|
|
|
|
* containing AllocationProfile.
|
|
|
|
*/
|
|
|
|
virtual Node* GetRootNode() = 0;
|
|
|
|
|
|
|
|
virtual ~AllocationProfile() {}
|
|
|
|
|
|
|
|
static const int kNoLineNumberInfo = Message::kNoLineNumberInfo;
|
|
|
|
static const int kNoColumnNumberInfo = Message::kNoColumnInfo;
|
|
|
|
};
|
|
|
|
|
2018-01-31 19:55:31 +00:00
|
|
|
/**
|
|
|
|
* An object graph consisting of embedder objects and V8 objects.
|
|
|
|
* Edges of the graph are strong references between the objects.
|
|
|
|
* The embedder can build this graph during heap snapshot generation
|
|
|
|
* to include the embedder objects in the heap snapshot.
|
|
|
|
* Usage:
|
|
|
|
* 1) Define derived class of EmbedderGraph::Node for embedder objects.
|
|
|
|
* 2) Set the build embedder graph callback on the heap profiler using
|
|
|
|
* HeapProfiler::SetBuildEmbedderGraphCallback.
|
|
|
|
* 3) In the callback use graph->AddEdge(node1, node2) to add an edge from
|
|
|
|
* node1 to node2.
|
|
|
|
* 4) To represent references from/to V8 object, construct V8 nodes using
|
|
|
|
* graph->V8Node(value).
|
|
|
|
*/
|
|
|
|
class V8_EXPORT EmbedderGraph {
|
|
|
|
public:
|
|
|
|
class Node {
|
|
|
|
public:
|
|
|
|
Node() = default;
|
|
|
|
virtual ~Node() = default;
|
|
|
|
virtual const char* Name() = 0;
|
|
|
|
virtual size_t SizeInBytes() = 0;
|
2018-02-20 13:16:34 +00:00
|
|
|
/**
|
|
|
|
* The corresponding V8 wrapper node if not null.
|
|
|
|
* During heap snapshot generation the embedder node and the V8 wrapper
|
|
|
|
* node will be merged into one node to simplify retaining paths.
|
|
|
|
*/
|
|
|
|
virtual Node* WrapperNode() { return nullptr; }
|
2018-01-31 19:55:31 +00:00
|
|
|
virtual bool IsRootNode() { return false; }
|
|
|
|
/** Must return true for non-V8 nodes. */
|
|
|
|
virtual bool IsEmbedderNode() { return true; }
|
2018-02-20 13:52:38 +00:00
|
|
|
/**
|
|
|
|
* Optional name prefix. It is used in Chrome for tagging detached nodes.
|
|
|
|
*/
|
|
|
|
virtual const char* NamePrefix() { return nullptr; }
|
2018-01-31 19:55:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Node(const Node&) = delete;
|
|
|
|
Node& operator=(const Node&) = delete;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a node corresponding to the given V8 value. Ownership is not
|
|
|
|
* transferred. The result pointer is valid while the graph is alive.
|
|
|
|
*/
|
|
|
|
virtual Node* V8Node(const v8::Local<v8::Value>& value) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the given node to the graph and takes ownership of the node.
|
|
|
|
* Returns a raw pointer to the node that is valid while the graph is alive.
|
|
|
|
*/
|
|
|
|
virtual Node* AddNode(std::unique_ptr<Node> node) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an edge that represents a strong reference from the given node
|
|
|
|
* |from| to the given node |to|. The nodes must be added to the graph
|
|
|
|
* before calling this function.
|
|
|
|
*/
|
|
|
|
virtual void AddEdge(Node* from, Node* to) = 0;
|
|
|
|
|
|
|
|
virtual ~EmbedderGraph() = default;
|
|
|
|
};
|
2016-01-22 16:36:40 +00:00
|
|
|
|
2010-06-15 11:44:07 +00:00
|
|
|
/**
|
2013-04-02 08:03:01 +00:00
|
|
|
* Interface for controlling heap profiling. Instance of the
|
|
|
|
* profiler can be retrieved using v8::Isolate::GetHeapProfiler.
|
2010-06-15 11:44:07 +00:00
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT HeapProfiler {
|
2010-06-15 11:44:07 +00:00
|
|
|
public:
|
2016-05-04 19:16:05 +00:00
|
|
|
enum SamplingFlags {
|
|
|
|
kSamplingNoFlags = 0,
|
|
|
|
kSamplingForceGC = 1 << 0,
|
|
|
|
};
|
|
|
|
|
2017-01-19 14:38:21 +00:00
|
|
|
typedef std::unordered_set<const v8::PersistentBase<v8::Value>*>
|
|
|
|
RetainerChildren;
|
|
|
|
typedef std::vector<std::pair<v8::RetainedObjectInfo*, RetainerChildren>>
|
|
|
|
RetainerGroups;
|
|
|
|
typedef std::vector<std::pair<const v8::PersistentBase<v8::Value>*,
|
|
|
|
const v8::PersistentBase<v8::Value>*>>
|
|
|
|
RetainerEdges;
|
|
|
|
|
|
|
|
struct RetainerInfos {
|
|
|
|
RetainerGroups groups;
|
|
|
|
RetainerEdges edges;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback function invoked to retrieve all RetainerInfos from the embedder.
|
|
|
|
*/
|
|
|
|
typedef RetainerInfos (*GetRetainerInfosCallback)(v8::Isolate* isolate);
|
|
|
|
|
2011-03-10 12:05:31 +00:00
|
|
|
/**
|
|
|
|
* Callback function invoked for obtaining RetainedObjectInfo for
|
|
|
|
* the given JavaScript wrapper object. It is prohibited to enter V8
|
|
|
|
* while the callback is running: only getters on the handle and
|
|
|
|
* GetPointerFromInternalField on the objects are allowed.
|
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
typedef RetainedObjectInfo* (*WrapperInfoCallback)(uint16_t class_id,
|
|
|
|
Local<Value> wrapper);
|
2011-03-10 12:05:31 +00:00
|
|
|
|
2018-01-31 19:55:31 +00:00
|
|
|
/**
|
|
|
|
* Callback function invoked during heap snapshot generation to retrieve
|
|
|
|
* the embedder object graph. The callback should use graph->AddEdge(..) to
|
|
|
|
* add references between the objects.
|
|
|
|
* The callback must not trigger garbage collection in V8.
|
|
|
|
*/
|
|
|
|
typedef void (*BuildEmbedderGraphCallback)(v8::Isolate* isolate,
|
|
|
|
v8::EmbedderGraph* graph);
|
|
|
|
|
2013-04-02 08:03:01 +00:00
|
|
|
/** Returns the number of snapshots taken. */
|
|
|
|
int GetSnapshotCount();
|
2010-06-15 11:44:07 +00:00
|
|
|
|
2013-04-02 08:03:01 +00:00
|
|
|
/** Returns a snapshot by index. */
|
|
|
|
const HeapSnapshot* GetHeapSnapshot(int index);
|
2010-06-15 11:44:07 +00:00
|
|
|
|
2012-04-16 15:36:19 +00:00
|
|
|
/**
|
|
|
|
* Returns SnapshotObjectId for a heap object referenced by |value| if
|
|
|
|
* it has been seen by the heap profiler, kUnknownObjectId otherwise.
|
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
SnapshotObjectId GetObjectId(Local<Value> value);
|
2012-04-16 15:36:19 +00:00
|
|
|
|
2013-12-18 08:17:03 +00:00
|
|
|
/**
|
|
|
|
* Returns heap object with given SnapshotObjectId if the object is alive,
|
|
|
|
* otherwise empty handle is returned.
|
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
Local<Value> FindObjectById(SnapshotObjectId id);
|
2013-12-18 08:17:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears internal map from SnapshotObjectId to heap object. The new objects
|
|
|
|
* will not be added into it unless a heap snapshot is taken or heap object
|
|
|
|
* tracking is kicked off.
|
|
|
|
*/
|
|
|
|
void ClearObjectIds();
|
|
|
|
|
2012-04-16 15:36:19 +00:00
|
|
|
/**
|
|
|
|
* A constant for invalid SnapshotObjectId. GetSnapshotObjectId will return
|
|
|
|
* it in case heap profiler cannot find id for the object passed as
|
|
|
|
* parameter. HeapSnapshot::GetNodeById will always return NULL for such id.
|
|
|
|
*/
|
2015-01-30 07:19:40 +00:00
|
|
|
static const SnapshotObjectId kUnknownObjectId = 0;
|
2012-04-16 15:36:19 +00:00
|
|
|
|
2012-12-04 17:17:55 +00:00
|
|
|
/**
|
|
|
|
* Callback interface for retrieving user friendly names of global objects.
|
|
|
|
*/
|
|
|
|
class ObjectNameResolver {
|
2013-04-02 08:03:01 +00:00
|
|
|
public:
|
2012-12-04 17:17:55 +00:00
|
|
|
/**
|
|
|
|
* Returns name to be used in the heap snapshot for given node. Returned
|
|
|
|
* string must stay alive until snapshot collection is completed.
|
|
|
|
*/
|
2015-07-06 07:09:07 +00:00
|
|
|
virtual const char* GetName(Local<Object> object) = 0;
|
|
|
|
|
2013-04-02 08:03:01 +00:00
|
|
|
protected:
|
2012-12-04 17:17:55 +00:00
|
|
|
virtual ~ObjectNameResolver() {}
|
|
|
|
};
|
|
|
|
|
2010-08-18 08:19:29 +00:00
|
|
|
/**
|
2015-03-16 09:49:18 +00:00
|
|
|
* Takes a heap snapshot and returns it.
|
2010-08-18 08:19:29 +00:00
|
|
|
*/
|
2015-03-10 15:14:01 +00:00
|
|
|
const HeapSnapshot* TakeHeapSnapshot(
|
|
|
|
ActivityControl* control = NULL,
|
|
|
|
ObjectNameResolver* global_object_name_resolver = NULL);
|
|
|
|
|
2012-04-13 08:52:25 +00:00
|
|
|
/**
|
|
|
|
* Starts tracking of heap objects population statistics. After calling
|
|
|
|
* this method, all heap objects relocations done by the garbage collector
|
|
|
|
* are being registered.
|
2013-12-02 14:27:24 +00:00
|
|
|
*
|
|
|
|
* |track_allocations| parameter controls whether stack trace of each
|
|
|
|
* allocation in the heap will be recorded and reported as part of
|
|
|
|
* HeapSnapshot.
|
2012-04-13 08:52:25 +00:00
|
|
|
*/
|
2013-12-02 14:27:24 +00:00
|
|
|
void StartTrackingHeapObjects(bool track_allocations = false);
|
2012-04-13 08:52:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a new time interval entry to the aggregated statistics array. The
|
|
|
|
* time interval entry contains information on the current heap objects
|
|
|
|
* population size. The method also updates aggregated statistics and
|
|
|
|
* reports updates for all previous time intervals via the OutputStream
|
2012-04-17 13:10:17 +00:00
|
|
|
* object. Updates on each time interval are provided as a stream of the
|
|
|
|
* HeapStatsUpdate structure instances.
|
2015-03-26 08:49:52 +00:00
|
|
|
* If |timestamp_us| is supplied, timestamp of the new entry will be written
|
|
|
|
* into it. The return value of the function is the last seen heap object Id.
|
2012-04-13 08:52:25 +00:00
|
|
|
*
|
2013-04-02 08:03:01 +00:00
|
|
|
* StartTrackingHeapObjects must be called before the first call to this
|
2012-04-13 08:52:25 +00:00
|
|
|
* method.
|
|
|
|
*/
|
2015-03-26 08:49:52 +00:00
|
|
|
SnapshotObjectId GetHeapStats(OutputStream* stream,
|
|
|
|
int64_t* timestamp_us = NULL);
|
2012-04-13 08:52:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops tracking of heap objects population statistics, cleans up all
|
|
|
|
* collected data. StartHeapObjectsTracking must be called again prior to
|
2015-03-26 08:49:52 +00:00
|
|
|
* calling GetHeapStats next time.
|
2012-04-13 08:52:25 +00:00
|
|
|
*/
|
2013-04-02 08:03:01 +00:00
|
|
|
void StopTrackingHeapObjects();
|
2012-04-13 08:52:25 +00:00
|
|
|
|
2016-01-22 16:36:40 +00:00
|
|
|
/**
|
|
|
|
* Starts gathering a sampling heap profile. A sampling heap profile is
|
|
|
|
* similar to tcmalloc's heap profiler and Go's mprof. It samples object
|
|
|
|
* allocations and builds an online 'sampling' heap profile. At any point in
|
|
|
|
* time, this profile is expected to be a representative sample of objects
|
|
|
|
* currently live in the system. Each sampled allocation includes the stack
|
|
|
|
* trace at the time of allocation, which makes this really useful for memory
|
|
|
|
* leak detection.
|
|
|
|
*
|
|
|
|
* This mechanism is intended to be cheap enough that it can be used in
|
|
|
|
* production with minimal performance overhead.
|
|
|
|
*
|
|
|
|
* Allocations are sampled using a randomized Poisson process. On average, one
|
|
|
|
* allocation will be sampled every |sample_interval| bytes allocated. The
|
|
|
|
* |stack_depth| parameter controls the maximum number of stack frames to be
|
|
|
|
* captured on each allocation.
|
|
|
|
*
|
|
|
|
* NOTE: This is a proof-of-concept at this point. Right now we only sample
|
|
|
|
* newspace allocations. Support for paged space allocation (e.g. pre-tenured
|
|
|
|
* objects, large objects, code objects, etc.) and native allocations
|
|
|
|
* doesn't exist yet, but is anticipated in the future.
|
|
|
|
*
|
|
|
|
* Objects allocated before the sampling is started will not be included in
|
|
|
|
* the profile.
|
|
|
|
*
|
|
|
|
* Returns false if a sampling heap profiler is already running.
|
|
|
|
*/
|
|
|
|
bool StartSamplingHeapProfiler(uint64_t sample_interval = 512 * 1024,
|
2016-05-04 19:16:05 +00:00
|
|
|
int stack_depth = 16,
|
|
|
|
SamplingFlags flags = kSamplingNoFlags);
|
2016-01-22 16:36:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the sampling heap profile and discards the current profile.
|
|
|
|
*/
|
|
|
|
void StopSamplingHeapProfiler();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the sampled profile of allocations allocated (and still live) since
|
|
|
|
* StartSamplingHeapProfiler was called. The ownership of the pointer is
|
2017-08-02 08:23:36 +00:00
|
|
|
* transferred to the caller. Returns nullptr if sampling heap profiler is not
|
2016-01-22 16:36:40 +00:00
|
|
|
* active.
|
|
|
|
*/
|
|
|
|
AllocationProfile* GetAllocationProfile();
|
|
|
|
|
2011-03-22 16:10:01 +00:00
|
|
|
/**
|
|
|
|
* Deletes all snapshots taken. All previously returned pointers to
|
|
|
|
* snapshots and their contents become invalid after this call.
|
|
|
|
*/
|
2013-04-02 08:03:01 +00:00
|
|
|
void DeleteAllHeapSnapshots();
|
2011-03-22 16:10:01 +00:00
|
|
|
|
2013-04-02 08:03:01 +00:00
|
|
|
/** Binds a callback to embedder's class ID. */
|
|
|
|
void SetWrapperClassInfoProvider(
|
|
|
|
uint16_t class_id,
|
|
|
|
WrapperInfoCallback callback);
|
2011-03-10 12:05:31 +00:00
|
|
|
|
2017-01-19 14:38:21 +00:00
|
|
|
void SetGetRetainerInfosCallback(GetRetainerInfosCallback callback);
|
2018-01-31 19:55:31 +00:00
|
|
|
void SetBuildEmbedderGraphCallback(BuildEmbedderGraphCallback callback);
|
2017-01-19 14:38:21 +00:00
|
|
|
|
2011-03-10 12:05:31 +00:00
|
|
|
/**
|
|
|
|
* Default value of persistent handle class ID. Must not be used to
|
|
|
|
* define a class. Can be used to reset a class of a persistent
|
|
|
|
* handle.
|
|
|
|
*/
|
|
|
|
static const uint16_t kPersistentHandleNoClassId = 0;
|
2012-03-07 17:38:50 +00:00
|
|
|
|
2013-04-02 08:03:01 +00:00
|
|
|
private:
|
|
|
|
HeapProfiler();
|
|
|
|
~HeapProfiler();
|
|
|
|
HeapProfiler(const HeapProfiler&);
|
|
|
|
HeapProfiler& operator=(const HeapProfiler&);
|
2011-03-10 12:05:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for providing information about embedder's objects
|
|
|
|
* held by global handles. This information is reported in two ways:
|
|
|
|
*
|
|
|
|
* 1. When calling AddObjectGroup, an embedder may pass
|
|
|
|
* RetainedObjectInfo instance describing the group. To collect
|
|
|
|
* this information while taking a heap snapshot, V8 calls GC
|
|
|
|
* prologue and epilogue callbacks.
|
|
|
|
*
|
|
|
|
* 2. When a heap snapshot is collected, V8 additionally
|
|
|
|
* requests RetainedObjectInfos for persistent handles that
|
|
|
|
* were not previously reported via AddObjectGroup.
|
|
|
|
*
|
|
|
|
* Thus, if an embedder wants to provide information about native
|
2016-06-22 15:01:44 +00:00
|
|
|
* objects for heap snapshots, it can do it in a GC prologue
|
2011-03-10 12:05:31 +00:00
|
|
|
* handler, and / or by assigning wrapper class ids in the following way:
|
|
|
|
*
|
2013-06-21 07:56:22 +00:00
|
|
|
* 1. Bind a callback to class id by calling SetWrapperClassInfoProvider.
|
2011-03-10 12:05:31 +00:00
|
|
|
* 2. Call SetWrapperClassId on certain persistent handles.
|
|
|
|
*
|
|
|
|
* V8 takes ownership of RetainedObjectInfo instances passed to it and
|
|
|
|
* keeps them alive only during snapshot collection. Afterwards, they
|
|
|
|
* are freed by calling the Dispose class function.
|
|
|
|
*/
|
2013-08-06 14:37:35 +00:00
|
|
|
class V8_EXPORT RetainedObjectInfo { // NOLINT
|
2011-03-10 12:05:31 +00:00
|
|
|
public:
|
|
|
|
/** Called by V8 when it no longer needs an instance. */
|
|
|
|
virtual void Dispose() = 0;
|
|
|
|
|
|
|
|
/** Returns whether two instances are equivalent. */
|
|
|
|
virtual bool IsEquivalent(RetainedObjectInfo* other) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns hash value for the instance. Equivalent instances
|
|
|
|
* must have the same hash value.
|
|
|
|
*/
|
|
|
|
virtual intptr_t GetHash() = 0;
|
|
|
|
|
|
|
|
/**
|
2012-01-27 12:02:57 +00:00
|
|
|
* Returns human-readable label. It must be a null-terminated UTF-8
|
2011-03-10 12:05:31 +00:00
|
|
|
* encoded string. V8 copies its contents during a call to GetLabel.
|
|
|
|
*/
|
|
|
|
virtual const char* GetLabel() = 0;
|
|
|
|
|
2012-01-27 12:02:57 +00:00
|
|
|
/**
|
|
|
|
* Returns human-readable group label. It must be a null-terminated UTF-8
|
|
|
|
* encoded string. V8 copies its contents during a call to GetGroupLabel.
|
|
|
|
* Heap snapshot generator will collect all the group names, create
|
|
|
|
* top level entries with these names and attach the objects to the
|
|
|
|
* corresponding top level group objects. There is a default
|
|
|
|
* implementation which is required because embedders don't have their
|
|
|
|
* own implementation yet.
|
|
|
|
*/
|
|
|
|
virtual const char* GetGroupLabel() { return GetLabel(); }
|
|
|
|
|
2011-03-10 12:05:31 +00:00
|
|
|
/**
|
|
|
|
* Returns element count in case if a global handle retains
|
|
|
|
* a subgraph by holding one of its nodes.
|
|
|
|
*/
|
|
|
|
virtual intptr_t GetElementCount() { return -1; }
|
|
|
|
|
|
|
|
/** Returns embedder's object size in bytes. */
|
|
|
|
virtual intptr_t GetSizeInBytes() { return -1; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
RetainedObjectInfo() {}
|
|
|
|
virtual ~RetainedObjectInfo() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
RetainedObjectInfo(const RetainedObjectInfo&);
|
|
|
|
RetainedObjectInfo& operator=(const RetainedObjectInfo&);
|
2010-06-15 11:44:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-04-17 13:10:17 +00:00
|
|
|
/**
|
|
|
|
* A struct for exporting HeapStats data from V8, using "push" model.
|
2013-04-02 08:03:01 +00:00
|
|
|
* See HeapProfiler::GetHeapStats.
|
2012-04-17 13:10:17 +00:00
|
|
|
*/
|
|
|
|
struct HeapStatsUpdate {
|
|
|
|
HeapStatsUpdate(uint32_t index, uint32_t count, uint32_t size)
|
|
|
|
: index(index), count(count), size(size) { }
|
|
|
|
uint32_t index; // Index of the time interval that was changed.
|
|
|
|
uint32_t count; // New value of count field for the interval with this index.
|
|
|
|
uint32_t size; // New value of size field for the interval with this index.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-04-06 14:54:20 +00:00
|
|
|
} // namespace v8
|
|
|
|
|
|
|
|
|
|
|
|
#endif // V8_V8_PROFILER_H_
|