Home
last modified time | relevance | path

Searched refs:HandlerInfo (Results 1 – 8 of 8) sorted by relevance

/external/webkit/JavaScriptCore/bytecode/
DCodeBlock.h68 struct HandlerInfo { struct
299 HandlerInfo* handlerForBytecodeOffset(unsigned bytecodeOffset);
414 …void addExceptionHandler(const HandlerInfo& hanler) { createRareDataIfNecessary(); return m_rareDa… in addExceptionHandler()
415HandlerInfo& exceptionHandler(int index) { ASSERT(m_rareData); return m_rareData->m_exceptionHandl… in exceptionHandler()
546 Vector<HandlerInfo> m_exceptionHandlers;
DCodeBlock.cpp1463 HandlerInfo* CodeBlock::handlerForBytecodeOffset(unsigned bytecodeOffset) in handlerForBytecodeOffset()
1470 Vector<HandlerInfo>& exceptionHandlers = m_rareData->m_exceptionHandlers; in handlerForBytecodeOffset()
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.h55 struct HandlerInfo;
111 … NEVER_INLINE HandlerInfo* throwException(CallFrame*&, JSValue&, unsigned bytecodeOffset, bool);
DInterpreter.cpp491 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/
DJIT.cpp517 HandlerInfo& handler = m_codeBlock->exceptionHandler(i); in privateCompile()
DJITStubs.cpp2779HandlerInfo* handler = stackFrame.globalData->interpreter->throwException(callFrame, exceptionValu… in DEFINE_STUB_FUNCTION()
3142HandlerInfo* handler = globalData->interpreter->throwException(callFrame, exceptionValue, vPCIndex… in DEFINE_STUB_FUNCTION()
/external/webkit/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp1838HandlerInfo info = { start->bind(0, 0), end->bind(0, 0), instructions().size(), m_dynamicScopeDept… in emitCatch()
1840HandlerInfo info = { start->bind(0, 0), end->bind(0, 0), instructions().size(), m_dynamicScopeDept… in emitCatch()
/external/webkit/JavaScriptCore/
DChangeLog-2009-06-1617732 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.