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

  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 153 GlobalResolveInfo(unsigned bytecodeOffset)
155 , bytecodeOffset(bytecodeOffset)
161 unsigned bytecodeOffset;
169 CallReturnOffsetToBytecodeOffset(unsigned callReturnOffset, unsigned bytecodeOffset)
171 , bytecodeOffset(bytecodeOffset)
176 unsigned bytecodeOffset;
242 HandlerInfo* handlerForBytecodeOffset(unsigned bytecodeOffset);
243 int lineNumberForBytecodeOffset(unsigned bytecodeOffset);
    [all...]
CodeBlock.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 111 NEVER_INLINE HandlerInfo* throwException(CallFrame*&, JSValue&, unsigned bytecodeOffset);
141 NEVER_INLINE bool unwindCallFrame(CallFrame*&, JSValue, unsigned& bytecodeOffset, CodeBlock*&);
Interpreter.cpp 542 NEVER_INLINE bool Interpreter::unwindCallFrame(CallFrame*& callFrame, JSValue exceptionValue, unsigned& bytecodeOffset, CodeBlock*& codeBlock)
583 bytecodeOffset = codeBlock->bytecodeOffset(callFrame->returnPC());
585 bytecodeOffset = codeBlock->bytecodeOffset(callFrame->returnVPC());
587 bytecodeOffset = codeBlock->bytecodeOffset(callFrame->returnPC());
589 bytecodeOffset = codeBlock->bytecodeOffset(callFrame->returnVPC());
596 static void appendSourceToError(CallFrame* callFrame, ErrorInstance* exception, unsigned bytecodeOffset)
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JIT.cpp 521 unsigned bytecodeOffset = record.bytecodeOffset;
527 record.jumpTable.simpleJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeOffset + record.defaultOffset]);
531 record.jumpTable.simpleJumpTable->ctiOffsets[j] = offset ? patchBuffer.locationOf(m_labels[bytecodeOffset + offset]) : record.jumpTable.simpleJumpTable->ctiDefault;
536 record.jumpTable.stringJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeOffset + record.defaultOffset]);
541 it->second.ctiOffset = offset ? patchBuffer.locationOf(m_labels[bytecodeOffset + offset]) : record.jumpTable.stringJumpTable->ctiDefault;
559 m_codeBlock->callReturnIndexVector().append(CallReturnOffsetToBytecodeOffset(patchBuffer.returnAddressOffset(iter->from), iter->bytecodeOffset));
JIT.h 69 unsigned bytecodeOffset;
76 CallRecord(MacroAssembler::Call from, unsigned bytecodeOffset, void* to = 0)
78 , bytecodeOffset(bytecodeOffset)
122 unsigned bytecodeOffset;
125 SwitchRecord(SimpleJumpTable* jumpTable, unsigned bytecodeOffset, unsigned defaultOffset, Type type)
127 , bytecodeOffset(bytecodeOffset)
133 SwitchRecord(StringJumpTable* jumpTable, unsigned bytecodeOffset, unsigned defaultOffset)
135 , bytecodeOffset(bytecodeOffset
    [all...]
JITInlineMethods.h 514 inline bool JIT::isLabeled(unsigned bytecodeOffset)
518 if (jumpTarget == bytecodeOffset)
520 if (jumpTarget > bytecodeOffset)
526 inline void JIT::map(unsigned bytecodeOffset, unsigned virtualRegisterIndex, RegisterID tag, RegisterID payload)
528 if (isLabeled(bytecodeOffset))
531 m_mappedBytecodeOffset = bytecodeOffset;
JITStubs.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.cpp 220 unsigned vPCIndex = exec->codeBlock()->bytecodeOffset(faultLocation);
  /dalvik/vm/compiler/codegen/arm/
Assemble.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h 98 uint32_t bytecodeOffset;
    [all...]

Completed in 1944 milliseconds