Searched defs:functionExecutable (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/JavaScriptCore/interpreter/
H A DCallFrameClosure.h35 FunctionExecutable* functionExecutable; member in struct:JSC::CallFrameClosure
/external/webkit/Source/JavaScriptCore/runtime/
H A DCallData.h55 FunctionExecutable* functionExecutable; member in struct:JSC::CallData::__anon14378
H A DConstructData.h55 FunctionExecutable* functionExecutable; member in struct:JSC::ConstructData::__anon14380
H A DJSActivation.cpp42 JSActivation::JSActivation(CallFrame* callFrame, FunctionExecutable* functionExecutable) argument
43 : Base(callFrame->globalData(), callFrame->globalData().activationStructure.get(), functionExecutable->symbolTable(), callFrame->registers())
44 , m_numParametersMinusThis(static_cast<int>(functionExecutable->parameterCount()))
45 , m_numCapturedVars(functionExecutable->capturedVariableCount())
46 , m_requiresDynamicChecks(functionExecutable->usesEval())
47 , m_argumentsRegister(functionExecutable->generatedBytecode().argumentsRegister())
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp2099 FunctionExecutable* functionExecutable = static_cast<FunctionExecutable*>(executable); local
2100 JSObject* error = functionExecutable->compileForCall(callFrame, callee->scope());
2105 codeBlock = &functionExecutable->generatedBytecodeForCall();
2107 codePtr = functionExecutable->generatedJITCodeForCall().addressForCall();
2109 codePtr = functionExecutable->generatedJITCodeForCallWithArityCheck();
2133 FunctionExecutable* functionExecutable = static_cast<FunctionExecutable*>(executable); local
2134 JSObject* error = functionExecutable->compileForConstruct(callFrame, callee->scope());
2139 codeBlock = &functionExecutable->generatedBytecodeForConstruct();
2141 codePtr = functionExecutable->generatedJITCodeForConstruct().addressForCall();
2143 codePtr = functionExecutable
[all...]

Completed in 51 milliseconds