V8 Project
v8::internal::DebugInfoListNode Class Reference

#include <debug.h>

+ Collaboration diagram for v8::internal::DebugInfoListNode:

Public Member Functions

 DebugInfoListNode (DebugInfo *debug_info)
 
virtual ~DebugInfoListNode ()
 
DebugInfoListNodenext ()
 
void set_next (DebugInfoListNode *next)
 
Handle< DebugInfodebug_info ()
 

Private Attributes

Handle< DebugInfodebug_info_
 
DebugInfoListNodenext_
 

Detailed Description

Definition at line 181 of file debug.h.

Constructor & Destructor Documentation

◆ DebugInfoListNode()

v8::internal::DebugInfoListNode::DebugInfoListNode ( DebugInfo debug_info)
explicit

Definition at line 713 of file debug.cc.

713  : next_(NULL) {
714  // Globalize the request debug info object and make it weak.
715  GlobalHandles* global_handles = debug_info->GetIsolate()->global_handles();
716  debug_info_ = Handle<DebugInfo>::cast(global_handles->Create(debug_info));
717  GlobalHandles::MakeWeak(reinterpret_cast<Object**>(debug_info_.location()),
718  this,
720 }
Handle< DebugInfo > debug_info_
Definition: debug.h:192
DebugInfoListNode * next_
Definition: debug.h:195
Handle< DebugInfo > debug_info()
Definition: debug.h:188
static void HandleWeakDebugInfo(const v8::WeakCallbackData< v8::Value, void > &data)
Definition: debug.cc:691
static void MakeWeak(Object **location, void *parameter, WeakCallback weak_callback)
static Handle< T > cast(Handle< S > that)
Definition: handles.h:116
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be NULL
kSerializedDataOffset Object
Definition: objects-inl.h:5322

References v8::internal::Handle< T >::cast(), v8::internal::GlobalHandles::Create(), debug_info(), debug_info_, v8::internal::Debug::HandleWeakDebugInfo(), and v8::internal::GlobalHandles::MakeWeak().

+ Here is the call graph for this function:

◆ ~DebugInfoListNode()

v8::internal::DebugInfoListNode::~DebugInfoListNode ( )
virtual

Definition at line 723 of file debug.cc.

723  {
724  GlobalHandles::Destroy(reinterpret_cast<Object**>(debug_info_.location()));
725 }
static void Destroy(Object **location)

References debug_info_, and v8::internal::GlobalHandles::Destroy().

+ Here is the call graph for this function:

Member Function Documentation

◆ debug_info()

Handle<DebugInfo> v8::internal::DebugInfoListNode::debug_info ( )
inline

Definition at line 188 of file debug.h.

188 { return debug_info_; }

References debug_info_.

Referenced by v8::internal::Debug::ClearAllBreakPoints(), v8::internal::Debug::ClearBreakPoint(), v8::internal::Debug::ClearOneShot(), DebugInfoListNode(), v8::internal::Debug::HandleWeakDebugInfo(), and v8::internal::Debug::RemoveDebugInfo().

+ Here is the caller graph for this function:

◆ next()

DebugInfoListNode* v8::internal::DebugInfoListNode::next ( )
inline

Definition at line 186 of file debug.h.

186 { return next_; }

References next_.

Referenced by v8::internal::Debug::ClearAllBreakPoints(), v8::internal::Debug::ClearBreakPoint(), v8::internal::Debug::ClearOneShot(), v8::internal::Debug::RemoveDebugInfo(), and set_next().

+ Here is the caller graph for this function:

◆ set_next()

void v8::internal::DebugInfoListNode::set_next ( DebugInfoListNode next)
inline

Definition at line 187 of file debug.h.

187 { next_ = next; }
DebugInfoListNode * next()
Definition: debug.h:186

References next(), and next_.

Referenced by v8::internal::Debug::EnsureDebugInfo(), and v8::internal::Debug::RemoveDebugInfo().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Data Documentation

◆ debug_info_

Handle<DebugInfo> v8::internal::DebugInfoListNode::debug_info_
private

Definition at line 192 of file debug.h.

Referenced by debug_info(), DebugInfoListNode(), and ~DebugInfoListNode().

◆ next_

DebugInfoListNode* v8::internal::DebugInfoListNode::next_
private

Definition at line 195 of file debug.h.

Referenced by next(), and set_next().


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