HomeSort by relevance Sort by last modified time
    Searched refs:usesArguments (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 312 ASSERT(usesArguments());
316 ASSERT(usesArguments());
328 bool usesArguments() const { return m_argumentsRegister != -1; }
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 482 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());
BytecodeGenerator.cpp 153 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)
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 161 usesArguments();
302 usesArguments();
496 usesArguments();
618 void usesArguments() { m_scope.m_features |= ArgumentsFeature; }
    [all...]
Nodes.h     [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp 364 return FunctionExecutable::create(&exec->globalData(), functionName, body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
Executable.h 186 bool usesArguments() const { return m_features & ArgumentsFeature; }
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 571 } else if (oldCodeBlock->usesArguments() && !oldCodeBlock->isStrictMode()) {
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]

Completed in 593 milliseconds