Home
last modified time | relevance | path

Searched refs:m_reentryDepth (Results 1 – 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp322 , m_reentryDepth(0) in Interpreter()
581 if (m_reentryDepth >= MaxSecondaryThreadReentryDepth) { in execute()
582 if (!isMainThread() || m_reentryDepth >= MaxMainThreadReentryDepth) { in execute()
618 m_reentryDepth++; in execute()
624 m_reentryDepth--; in execute()
630 if (m_reentryDepth && lastGlobalObject && globalObject != lastGlobalObject) in execute()
642 if (m_reentryDepth >= MaxSecondaryThreadReentryDepth) { in execute()
643 if (!isMainThread() || m_reentryDepth >= MaxMainThreadReentryDepth) { in execute()
684 m_reentryDepth++; in execute()
690 m_reentryDepth--; in execute()
[all …]
DInterpreter.h157 int m_reentryDepth; variable