v8  7.8.279(node12.16.3)
V8 is Google's open source JavaScript engine
CpuProfileNode Class Reference

#include <v8-profiler.h>

Data Structures

struct  LineTick
 

Public Types

enum  SourceType {
  kScript = 0, kBuiltin = 1, kCallback = 2, kInternal = 3,
  kUnresolved = 4
}
 

Public Member Functions

Local< StringGetFunctionName () const
 
const char * GetFunctionNameStr () const
 
int GetScriptId () const
 
Local< StringGetScriptResourceName () const
 
const char * GetScriptResourceNameStr () const
 
bool IsScriptSharedCrossOrigin () const
 
int GetLineNumber () const
 
int GetColumnNumber () const
 
unsigned int GetHitLineCount () const
 
bool GetLineTicks (LineTick *entries, unsigned int length) const
 
const char * GetBailoutReason () const
 
unsigned GetHitCount () const
 
 V8_DEPRECATE_SOON ("Use GetScriptId, GetLineNumber, and GetColumnNumber instead.", unsigned GetCallUid() const)
 
unsigned GetNodeId () const
 
SourceType GetSourceType () const
 
int GetChildrenCount () const
 
const CpuProfileNodeGetChild (int index) const
 
const CpuProfileNodeGetParent () const
 
const std::vector< CpuProfileDeoptInfo > & GetDeoptInfos () const
 

Static Public Attributes

static const int kNoLineNumberInfo = Message::kNoLineNumberInfo
 
static const int kNoColumnNumberInfo = Message::kNoColumnInfo
 

Detailed Description

CpuProfileNode represents a node in a call graph.

Definition at line 58 of file v8-profiler.h.

Member Enumeration Documentation

◆ SourceType

enum SourceType
Enumerator
kScript 
kBuiltin 
kCallback 
kInternal 
kUnresolved 

Definition at line 69 of file v8-profiler.h.

Member Function Documentation

◆ GetBailoutReason()

const char* GetBailoutReason ( ) const

Returns bailout reason for the function if the optimization was disabled for it.

◆ GetChild()

const CpuProfileNode* GetChild ( int  index) const

Retrieves a child node by index.

◆ GetChildrenCount()

int GetChildrenCount ( ) const

Returns child nodes count of the node.

◆ GetColumnNumber()

int GetColumnNumber ( ) const

Returns 1-based number of the column where the function originates. kNoColumnNumberInfo if no column number information is available.

◆ GetDeoptInfos()

const std::vector<CpuProfileDeoptInfo>& GetDeoptInfos ( ) const

Retrieves deopt infos for the node.

◆ GetFunctionName()

Local<String> GetFunctionName ( ) const

Returns function name (empty string for anonymous functions.)

◆ GetFunctionNameStr()

const char* GetFunctionNameStr ( ) const

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.

◆ GetHitCount()

unsigned GetHitCount ( ) const

Returns the count of samples where the function was currently executing.

◆ GetHitLineCount()

unsigned int GetHitLineCount ( ) const

Returns the number of the function's source lines that collect the samples.

◆ GetLineNumber()

int GetLineNumber ( ) const

Returns the number, 1-based, of the line where the function originates. kNoLineNumberInfo if no line number information is available.

◆ GetLineTicks()

bool GetLineTicks ( LineTick entries,
unsigned int  length 
) 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.

◆ GetNodeId()

unsigned GetNodeId ( ) const

Returns id of the node. The id is unique within the tree

◆ GetParent()

const CpuProfileNode* GetParent ( ) const

Retrieves the ancestor node, or null if the root.

◆ GetScriptId()

int GetScriptId ( ) const

Returns id of the script where function is located.

◆ GetScriptResourceName()

Local<String> GetScriptResourceName ( ) const

Returns resource name for script from where the function originates.

◆ GetScriptResourceNameStr()

const char* GetScriptResourceNameStr ( ) const

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.

◆ GetSourceType()

SourceType GetSourceType ( ) const

Gets the type of the source which the node was captured from.

◆ IsScriptSharedCrossOrigin()

bool IsScriptSharedCrossOrigin ( ) const

Return true if the script from where the function originates is flagged as being shared cross-origin.

◆ V8_DEPRECATE_SOON()

V8_DEPRECATE_SOON ( "Use  GetScriptId,
GetLineNumber  ,
and GetColumnNumber instead."  ,
unsigned GetCallUid()  const 
)

Returns function entry UID.

Field Documentation

◆ kNoColumnNumberInfo

const int kNoColumnNumberInfo = Message::kNoColumnInfo
static

Definition at line 171 of file v8-profiler.h.

◆ kNoLineNumberInfo

const int kNoLineNumberInfo = Message::kNoLineNumberInfo
static

Definition at line 170 of file v8-profiler.h.


The documentation for this class was generated from the following file: