Searched defs:exceptionValue (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecode/
H A DEvalCodeCache.h48 EvalExecutable* get(ExecState* exec, ScriptExecutable* owner, bool inStrictContext, const UString& evalSource, ScopeChainNode* scopeChain, JSValue& exceptionValue) argument
57 exceptionValue = evalExecutable->compile(exec, scopeChain);
58 if (exceptionValue)
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGOperations.cpp217 JSValue exceptionValue = exec->exception(); local
218 ASSERT(exceptionValue);
221 HandlerInfo* handler = exec->globalData().interpreter->throwException(exec, exceptionValue, vPCIndex);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
109 exceptionValue = callFrame->globalData().exception;
110 if (exceptionValue)
116 exceptionValue = createUndefinedVariableError(callFrame, ident);
120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
148 exceptionValue = callFrame->globalData().exception;
149 if (exceptionValue)
156 exceptionValue = createUndefinedVariableError(callFrame, ident);
160 NEVER_INLINE bool Interpreter::resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
186 exceptionValue
197 resolveGlobalDynamic(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
288 resolveBaseAndProperty(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue) argument
405 JSValue exceptionValue; local
542 unwindCallFrame(CallFrame*& callFrame, JSValue exceptionValue, unsigned& bytecodeOffset, CodeBlock*& codeBlock) argument
647 throwException(CallFrame*& callFrame, JSValue& exceptionValue, unsigned bytecodeOffset) argument
[all...]
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp1038 static ExceptionHandler jitThrow(JSGlobalData* globalData, CallFrame* callFrame, JSValue exceptionValue, ReturnAddressPtr faultLocation) argument
1040 ASSERT(exceptionValue);
1044 HandlerInfo* handler = globalData->interpreter->throwException(callFrame, exceptionValue, vPCIndex); // This may update callFrame & exceptionValue!
1045 globalData->exception = exceptionValue;

Completed in 82 milliseconds