Home
last modified time | relevance | path

Searched refs:FunctionCode (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/JavaScriptCore/jit/
DJIT.cpp474 if (m_codeBlock->codeType() == FunctionCode) { in privateCompile()
494 if (m_codeBlock->codeType() == FunctionCode) { in privateCompile()
589 if (m_codeBlock->codeType() == FunctionCode && functionEntryArityCheck) in privateCompile()
DJITOpcodes.cpp473 …bool checkTopLevel = m_codeBlock->codeType() == FunctionCode && m_codeBlock->needsFullScopeChain(); in emit_op_get_scoped_var()
497 …bool checkTopLevel = m_codeBlock->codeType() == FunctionCode && m_codeBlock->needsFullScopeChain(); in emit_op_put_scoped_var()
1624 …bool checkTopLevel = m_codeBlock->codeType() == FunctionCode && m_codeBlock->needsFullScopeChain(); in emit_op_resolve_global_dynamic()
DJITStubs.cpp1922 …ASSERT(stackFrame.callFrame->codeBlock()->codeType() != FunctionCode || !stackFrame.callFrame->cod… in DEFINE_STUB_FUNCTION()
2715 bool checkTopLevel = codeBlock->codeType() == FunctionCode && codeBlock->needsFullScopeChain(); in DEFINE_STUB_FUNCTION()
3077 …ASSERT(callFrame->codeBlock()->codeType() != FunctionCode || !callFrame->codeBlock()->needsFullSco… in DEFINE_STUB_FUNCTION()
3192 …ASSERT(stackFrame.callFrame->codeBlock()->codeType() != FunctionCode || !stackFrame.callFrame->cod… in DEFINE_STUB_FUNCTION()
DJITOpcodes32_64.cpp680 …bool checkTopLevel = m_codeBlock->codeType() == FunctionCode && m_codeBlock->needsFullScopeChain(); in emit_op_get_scoped_var()
709 …bool checkTopLevel = m_codeBlock->codeType() == FunctionCode && m_codeBlock->needsFullScopeChain(); in emit_op_put_scoped_var()
/external/webkit/Source/JavaScriptCore/runtime/
DExecutable.cpp248 …m_codeBlockForCall = adoptPtr(new FunctionCodeBlock(this, FunctionCode, globalObject, source().pro… in compileForCallInternal()
296 …m_codeBlockForConstruct = adoptPtr(new FunctionCodeBlock(this, FunctionCode, globalObject, source(… in compileForConstructInternal()
/external/webkit/Source/JavaScriptCore/bytecode/
DCodeBlock.h64 enum CodeType { GlobalCode, EvalCode, FunctionCode }; enumerator
459 …SharedSymbolTable* sharedSymbolTable() { ASSERT(m_codeType == FunctionCode); return static_cast<Sh… in sharedSymbolTable()
DCodeBlock.cpp1314 case FunctionCode: in dumpStatistics()
1653 ASSERT(codeType() == FunctionCode); in createActivation()
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.h263 …return (m_codeType != FunctionCode || m_codeBlock->needsFullScopeChain() || rightHasAssignments) &… in leftHandSideNeedsCopy()
504 …bool canOptimizeNonLocals() { return (m_codeType == FunctionCode) && !m_dynamicScopeDepth && !m_co… in canOptimizeNonLocals()
DBytecodeGenerator.cpp153 …if ((m_codeType == FunctionCode && !m_codeBlock->needsFullScopeChain() && !m_codeBlock->usesArgume… in generate()
335 , m_codeType(FunctionCode) in BytecodeGenerator()
588 if (m_codeBlock->usesArguments() && m_codeType == FunctionCode) in willResolveToArguments()
1616 if (m_codeType != FunctionCode) in createArgumentsIfNecessary()
DNodesCodegen.cpp1660 ASSERT(generator.codeType() == FunctionCode); in emitBytecode()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp132 bool checkTopLevel = codeBlock->codeType() == FunctionCode && codeBlock->needsFullScopeChain(); in resolveSkip()
212 bool checkTopLevel = codeBlock->codeType() == FunctionCode && codeBlock->needsFullScopeChain(); in resolveGlobalDynamic()
556 if (oldCodeBlock->codeType() == FunctionCode && oldCodeBlock->needsFullScopeChain()) { in unwindCallFrame()
705 if (!codeBlock->needsFullScopeChain() || codeBlock->codeType() != FunctionCode in throwException()
2384 … bool checkTopLevel = codeBlock->codeType() == FunctionCode && codeBlock->needsFullScopeChain(); in privateExecute()
2414 … bool checkTopLevel = codeBlock->codeType() == FunctionCode && codeBlock->needsFullScopeChain(); in privateExecute()
3776 …ASSERT(codeBlock->codeType() != FunctionCode || !codeBlock->needsFullScopeChain() || callFrame->r(… in privateExecute()
3794 …ASSERT(codeBlock->codeType() != FunctionCode || !codeBlock->needsFullScopeChain() || callFrame->r(… in privateExecute()
3831 …ASSERT(codeBlock->codeType() != FunctionCode || !codeBlock->needsFullScopeChain() || callFrame->r(… in privateExecute()
4799 ASSERT(codeBlock->codeType() == FunctionCode); in retrieveArguments()
/external/v8/src/
Dliveedit.cc818 void FunctionCode(Handle<Code> function_code) { in FunctionCode() function in v8::internal::FunctionInfoListener
1735 isolate_->active_function_info_listener()->FunctionCode(code); in RecordRootFunctionInfo()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2010-05-2427440 Specifically, since there is nested invocation (e.g., GlobalCode --> FunctionCode),
DChangeLog-2008-08-1031038 subclasses all returned FunctionCode, so it was unused, practically