Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp1577 m_scopeContextStack.append(context); in emitPushScope()
1586 ASSERT(m_scopeContextStack.size()); in emitPopScope()
1587 ASSERT(!m_scopeContextStack.last().isFinallyBlock); in emitPopScope()
1591 m_scopeContextStack.removeLast(); in emitPopScope()
1611 m_scopeContextStack.append(scope); in pushFinallyContext()
1617 ASSERT(m_scopeContextStack.size()); in popFinallyContext()
1618 ASSERT(m_scopeContextStack.last().isFinallyBlock); in popFinallyContext()
1620 m_scopeContextStack.removeLast(); in popFinallyContext()
1748 ASSERT(scopeDelta <= m_scopeContextStack.size()); in emitJumpScopes()
1753 …return emitComplexJumpScopes(target, &m_scopeContextStack.last(), &m_scopeContextStack.last() - sc… in emitJumpScopes()
[all …]
DBytecodeGenerator.h460 Vector<ControlFlowContext> m_scopeContextStack; variable