Share via


IJsDebugFrame::GetStackRange Method

Returns the absolute address range of the logical JavaScript stack frame.

Syntax

HRESULT GetStackRange(  
   UINT64 *pStart,  
   UINT64 *pEnd  
);  

Parameters

pStart
[out] Bottom most stack pointer of the frame.

pEnd
[out] Top most stacker pointer of the frame.

Return Value

Remarks

This method is useful for piecing together interleaved stack traces gathered from multiple runtimes. The start, end stack pointers can encompass multiple physical machine stack frames (for interpreted JavaScript runtime frames). start > end as the stack grows from high to low address.

Requirements

Header: jscript9diag.h

See also

IJsDebugFrame Interface