V8 Project
|
#include <frames.h>
Public Member Functions | |
virtual Type | type () const |
![]() | |
virtual void | Iterate (ObjectVisitor *v) const |
virtual Code * | unchecked_code () const |
![]() | |
virtual bool | is_standard () const |
Object * | context () const |
Object * | GetExpression (int index) const |
void | SetExpression (int index, Object *value) |
int | ComputeExpressionsCount () const |
virtual void | SetCallerFp (Address caller_fp) |
![]() | |
int | GetLineNumber () const |
Returns the number, 1-based, of the line for the associate function call. More... | |
int | GetColumn () const |
Returns the 1-based column offset on the line for the associated function call. More... | |
int | GetScriptId () const |
Returns the id of the script for the function for this StackFrame. More... | |
Local< String > | GetScriptName () const |
Returns the name of the resource that contains the script for the function for this StackFrame. More... | |
Local< String > | GetScriptNameOrSourceURL () const |
Returns the name of the resource that contains the script for the function for this StackFrame or sourceURL value if the script name is undefined and its source ends with //# sourceURL=... More... | |
Local< String > | GetFunctionName () const |
Returns the name of the function associated with this stack frame. More... | |
bool | IsEval () const |
Returns whether or not the associated function is compiled via a call to eval(). More... | |
bool | IsConstructor () const |
Returns whether or not the associated function is called as a constructor via "new". More... | |
Static Public Member Functions | |
static ConstructFrame * | cast (StackFrame *frame) |
![]() | |
static InternalFrame * | cast (StackFrame *frame) |
![]() | |
static Object * | GetExpression (Address fp, int index) |
static StandardFrame * | cast (StackFrame *frame) |
Protected Member Functions | |
ConstructFrame (StackFrameIteratorBase *iterator) | |
![]() | |
InternalFrame (StackFrameIteratorBase *iterator) | |
virtual Address | GetCallerStackPointer () const |
![]() | |
StandardFrame (StackFrameIteratorBase *iterator) | |
virtual void | ComputeCallerState (State *state) const |
Address | caller_fp () const |
Address | caller_pc () const |
void | IterateExpressions (ObjectVisitor *v) const |
Address | GetExpressionAddress (int n) const |
bool | IsExpressionInsideHandler (int n) const |
void | IterateCompiledFrame (ObjectVisitor *v) const |
Friends | |
class | StackFrameIteratorBase |
Additional Inherited Members | |
![]() | |
static Address | ComputePCAddress (Address fp) |
static Address | ComputeConstantPoolAddress (Address fp) |
static Address | GetExpressionAddress (Address fp, int n) |
static bool | IsArgumentsAdaptorFrame (Address fp) |
static bool | IsConstructFrame (Address fp) |
|
inlineexplicitprotected |
Definition at line 295 of file frames-inl.h.
|
inlinestatic |
Definition at line 788 of file frames.h.
References DCHECK.
|
inlinevirtual |
Reimplemented from v8::internal::InternalFrame.
|
friend |