Searched refs:HandlerInfo (Results 1 – 8 of 8) sorted by relevance
/external/webkit/JavaScriptCore/bytecode/ |
D | CodeBlock.h | 68 struct HandlerInfo { struct 299 HandlerInfo* handlerForBytecodeOffset(unsigned bytecodeOffset); 414 …void addExceptionHandler(const HandlerInfo& hanler) { createRareDataIfNecessary(); return m_rareDa… in addExceptionHandler() 415 …HandlerInfo& exceptionHandler(int index) { ASSERT(m_rareData); return m_rareData->m_exceptionHandl… in exceptionHandler() 546 Vector<HandlerInfo> m_exceptionHandlers;
|
D | CodeBlock.cpp | 1463 HandlerInfo* CodeBlock::handlerForBytecodeOffset(unsigned bytecodeOffset) in handlerForBytecodeOffset() 1470 Vector<HandlerInfo>& exceptionHandlers = m_rareData->m_exceptionHandlers; in handlerForBytecodeOffset()
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.h | 55 struct HandlerInfo; 111 … NEVER_INLINE HandlerInfo* throwException(CallFrame*&, JSValue&, unsigned bytecodeOffset, bool);
|
D | Interpreter.cpp | 491 NEVER_INLINE HandlerInfo* Interpreter::throwException(CallFrame*& callFrame, JSValue& exceptionValu… in throwException() 558 HandlerInfo* handler = 0; in throwException() 1119 HandlerInfo* handler = 0; in privateExecute()
|
/external/webkit/JavaScriptCore/jit/ |
D | JIT.cpp | 517 HandlerInfo& handler = m_codeBlock->exceptionHandler(i); in privateCompile()
|
D | JITStubs.cpp | 2779 …HandlerInfo* handler = stackFrame.globalData->interpreter->throwException(callFrame, exceptionValu… in DEFINE_STUB_FUNCTION() 3142 …HandlerInfo* handler = globalData->interpreter->throwException(callFrame, exceptionValue, vPCIndex… in DEFINE_STUB_FUNCTION()
|
/external/webkit/JavaScriptCore/bytecompiler/ |
D | BytecodeGenerator.cpp | 1838 …HandlerInfo info = { start->bind(0, 0), end->bind(0, 0), instructions().size(), m_dynamicScopeDept… in emitCatch() 1840 …HandlerInfo info = { start->bind(0, 0), end->bind(0, 0), instructions().size(), m_dynamicScopeDept… in emitCatch()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2009-06-16 | 17732 the HandlerInfo. 17735 (JSC::CodeBlock::handlerForVPC): Return the HandlerInfo. 17739 (JSC::Interpreter::throwException): Return a HandlerInfo instead of 17741 (JSC::Interpreter::privateExecute): Get the offset from HandlerInfo.
|