Searched refs:scopeDepth (Results 1 - 10 of 10) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DHandlerInfo.h38 uint32_t scopeDepth; member in struct:JSC::HandlerInfo
H A DCodeBlock.h748 m_rareData->m_exceptionHandlers[i].scopeDepth = unlinkedHandlers[i].scopeDepth;
H A DUnlinkedCodeBlock.h222 uint32_t scopeDepth; member in struct:JSC::UnlinkedHandlerInfo
H A DCodeBlock.cpp597 out.printf("\t %d: { start: [%4d] end: [%4d] target: [%4d] depth: [%4d] }\n", i + 1, m_rareData->m_exceptionHandlers[i].start, m_rareData->m_exceptionHandlers[i].end, m_rareData->m_exceptionHandlers[i].target, m_rareData->m_exceptionHandlers[i].scopeDepth);
1715 m_rareData->m_exceptionHandlers[i].scopeDepth = handler.scopeDepth + baseScopeDepth;
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DLabelScope.h43 LabelScope(Type type, const Identifier* name, int scopeDepth, PassRefPtr<Label> breakTarget, PassRefPtr<Label> continueTarget) argument
47 , m_scopeDepth(scopeDepth)
59 int scopeDepth() const { return m_scopeDepth; } function in class:JSC::LabelScope
H A DNodesCodegen.cpp1790 if (generator.scopeDepth() != scope->scopeDepth())
1803 generator.emitPopScopes(scope->scopeDepth());
1817 if (generator.scopeDepth() != scope->scopeDepth())
1830 generator.emitPopScopes(scope->scopeDepth());
1845 if (generator.scopeDepth()) {
H A DBytecodeGenerator.h519 int scopeDepth() { return m_dynamicScopeDepth + m_finallyDepth; } function in class:JSC::BytecodeGenerator
H A DBytecodeGenerator.cpp575 LabelScope scope(type, name, scopeDepth(), newLabel(), type == LabelScope::Loop ? newLabel() : PassRefPtr<Label>()); // Only loops have continue targets.
2266 ASSERT(scopeDepth() - targetScopeDepth >= 0);
2268 size_t scopeDelta = scopeDepth() - targetScopeDepth;
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSScope.cpp78 int scopeDepth = 0; local
85 ++scopeDepth;
87 return scopeDepth;
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DInterpreter.cpp804 int targetDepth = handler->scopeDepth;

Completed in 241 milliseconds