HomeSort by relevance Sort by last modified time
    Searched defs:bytecodeOffset (Results 1 - 5 of 5) sorted by null

  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 448 NEVER_INLINE bool Interpreter::unwindCallFrame(CallFrame*& callFrame, JSValue exceptionValue, unsigned& bytecodeOffset, CodeBlock*& codeBlock)
487 bytecodeOffset = bytecodeOffsetForPC(callFrame, codeBlock, returnPC);
491 NEVER_INLINE HandlerInfo* Interpreter::throwException(CallFrame*& callFrame, JSValue& exceptionValue, unsigned bytecodeOffset, bool explicitThrow)
499 exception = createNotAnObjectError(callFrame, static_cast<JSNotAnObjectErrorStub*>(exception), bytecodeOffset, codeBlock);
512 int line = codeBlock->expressionRangeForBytecodeOffset(callFrame, bytecodeOffset, divotPoint, startOffset, endOffset);
520 exception->putWithAttributes(callFrame, Identifier(callFrame, "line"), jsNumber(callFrame, codeBlock->lineNumberForBytecodeOffset(callFrame, bytecodeOffset)), ReadOnly | DontDelete);
526 while (unwindCallFrame(callFrame, exceptionValue, bytecodeOffset, codeBlock)) {
536 bool hasHandler = codeBlock->handlerForBytecodeOffset(bytecodeOffset);
537 debugger->exception(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->lineNumberForBytecodeOffset(callFrame, bytecodeOffset), hasHandler);
545 if (isCallBytecode(codeBlock->instructions()[bytecodeOffset].u.opcode)
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /dalvik/vm/compiler/codegen/arm/
Assemble.c     [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 98 unsigned bytecodeOffset : 31;
154 FunctionRegisterInfo(unsigned bytecodeOffset, int functionRegisterIndex)
155 : bytecodeOffset(bytecodeOffset)
160 unsigned bytecodeOffset;
165 GlobalResolveInfo(unsigned bytecodeOffset)
168 , bytecodeOffset(bytecodeOffset)
174 unsigned bytecodeOffset;
299 HandlerInfo* handlerForBytecodeOffset(unsigned bytecodeOffset);
    [all...]
  /external/webkit/JavaScriptCore/parser/
Nodes.h 92 uint32_t bytecodeOffset;
    [all...]

Completed in 101 milliseconds