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

  /external/webkit/JavaScriptCore/jit/
JIT.cpp 491 unsigned bytecodeIndex = record.bytecodeIndex;
497 record.jumpTable.simpleJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeIndex + record.defaultOffset]);
501 record.jumpTable.simpleJumpTable->ctiOffsets[j] = offset ? patchBuffer.locationOf(m_labels[bytecodeIndex + offset]) : record.jumpTable.simpleJumpTable->ctiDefault;
506 record.jumpTable.stringJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeIndex + record.defaultOffset]);
511 it->second.ctiOffset = offset ? patchBuffer.locationOf(m_labels[bytecodeIndex + offset]) : record.jumpTable.stringJumpTable->ctiDefault;
529 m_codeBlock->callReturnIndexVector().append(CallReturnOffsetToBytecodeIndex(patchBuffer.returnAddressOffset(iter->from), iter->bytecodeIndex));
JIT.h 76 unsigned bytecodeIndex;
83 CallRecord(MacroAssembler::Call from, unsigned bytecodeIndex, void* to = 0)
85 , bytecodeIndex(bytecodeIndex)
129 unsigned bytecodeIndex;
132 SwitchRecord(SimpleJumpTable* jumpTable, unsigned bytecodeIndex, unsigned defaultOffset, Type type)
134 , bytecodeIndex(bytecodeIndex)
140 SwitchRecord(StringJumpTable* jumpTable, unsigned bytecodeIndex, unsigned defaultOffset)
142 , bytecodeIndex(bytecodeIndex
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 109 unsigned bytecodeIndex;
182 CallReturnOffsetToBytecodeIndex(unsigned callReturnOffset, unsigned bytecodeIndex)
184 , bytecodeIndex(bytecodeIndex)
189 unsigned bytecodeIndex;
342 return binaryChop<CallReturnOffsetToBytecodeIndex, unsigned, getCallReturnOffset>(callReturnIndexVector().begin(), callReturnIndexVector().size(), ownerExecutable()->generatedJITCode().offsetOf(returnAddress.value()))->bytecodeIndex;

Completed in 38 milliseconds