Searched refs:usesArguments (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.h312 ASSERT(usesArguments());
316 ASSERT(usesArguments());
328 bool usesArguments() const { return m_argumentsRegister != -1; } function in class:JSC::CodeBlock
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.h482 return FunctionExecutable::create(exec, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
487 return FunctionExecutable::create(globalData, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
H A DBytecodeGenerator.cpp153 if ((m_codeType == FunctionCode && !m_codeBlock->needsFullScopeChain() && !m_codeBlock->usesArguments()) || m_codeType == EvalCode)
364 if (m_codeBlock->needsFullScopeChain() || functionBody->usesArguments()) {
588 if (m_codeBlock->usesArguments() && m_codeType == FunctionCode)
1619 if (!m_codeBlock->usesArguments())
1738 } else if (m_codeBlock->usesArguments() && m_codeBlock->m_numParameters > 1
/external/webkit/Source/JavaScriptCore/parser/
H A DASTBuilder.h161 usesArguments();
302 usesArguments();
496 usesArguments();
618 void usesArguments() { m_scope.m_features |= ArgumentsFeature; } function in class:JSC::ASTBuilder
H A DNodes.h1416 bool usesArguments() const { return (m_features & ArgumentsFeature) && !(m_features & ShadowsArgumentsFeature); } function in class:JSC::ScopeNode
/external/webkit/Source/JavaScriptCore/runtime/
H A DExecutable.cpp364 return FunctionExecutable::create(&exec->globalData(), functionName, body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
H A DExecutable.h186 bool usesArguments() const { return m_features & ArgumentsFeature; } function in class:JSC::ScriptExecutable
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp571 } else if (oldCodeBlock->usesArguments() && !oldCodeBlock->isStrictMode()) {
4132 ASSERT(!codeBlock->needsFullScopeChain() && codeBlock->ownerExecutable()->usesArguments());
4798 if (codeBlock->usesArguments()) {
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp2245 ASSERT(stackFrame.callFrame->codeBlock()->usesArguments() && !stackFrame.callFrame->codeBlock()->needsFullScopeChain());

Completed in 724 milliseconds