Searched refs:scopeDelta (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp2008 size_t scopeDelta = scopeDepth() - targetScopeDepth; local
2009 ASSERT(scopeDelta <= m_scopeContextStack.size());
2010 if (!scopeDelta)
2014 return emitComplexJumpScopes(target, &m_scopeContextStack.last(), &m_scopeContextStack.last() - scopeDelta);
2019 instructions().append(scopeDelta);
/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.cpp1180 int scopeDelta = (++it)->u.operand; local
1182 printf("[%4d] jmp_scopes\t^%d, %d(->%d)\n", location, scopeDelta, offset, location + offset);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp704 int scopeDelta = 0; local
707 scopeDelta = depth(codeBlock, scopeChain) - handler->scopeDepth;
708 ASSERT(scopeDelta >= 0);
709 while (scopeDelta--)

Completed in 6536 milliseconds