Home
last modified time | relevance | path

Searched refs:bytecodeIndex (Results 1 – 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/jit/
DJIT.h74 unsigned bytecodeIndex; member
81 CallRecord(MacroAssembler::Call from, unsigned bytecodeIndex, void* to = 0)
83 , bytecodeIndex(bytecodeIndex) in from()
127 unsigned bytecodeIndex; member
130 …SwitchRecord(SimpleJumpTable* jumpTable, unsigned bytecodeIndex, unsigned defaultOffset, Type type) in SwitchRecord()
132 , bytecodeIndex(bytecodeIndex) in SwitchRecord()
138 SwitchRecord(StringJumpTable* jumpTable, unsigned bytecodeIndex, unsigned defaultOffset) in SwitchRecord()
140 , bytecodeIndex(bytecodeIndex) in SwitchRecord()
409 bool isLabeled(unsigned bytecodeIndex);
410 …void map(unsigned bytecodeIndex, unsigned virtualRegisterIndex, RegisterID tag, RegisterID payload…
DJIT.cpp486 unsigned bytecodeIndex = record.bytecodeIndex; in privateCompile() local
492 …mpTable.simpleJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeIndex + 3 + record.d… in privateCompile()
496 …leJumpTable->ctiOffsets[j] = offset ? patchBuffer.locationOf(m_labels[bytecodeIndex + 3 + offset])… in privateCompile()
501 …mpTable.stringJumpTable->ctiDefault = patchBuffer.locationOf(m_labels[bytecodeIndex + 3 + record.d… in privateCompile()
506 …it->second.ctiOffset = offset ? patchBuffer.locationOf(m_labels[bytecodeIndex + 3 + offset]) : rec… in privateCompile()
524 …CallReturnOffsetToBytecodeIndex(patchBuffer.returnAddressOffset(iter->from), iter->bytecodeIndex)); in privateCompile()
DJITInlineMethods.h433 inline bool JIT::isLabeled(unsigned bytecodeIndex) in isLabeled() argument
437 if (jumpTarget == bytecodeIndex) in isLabeled()
439 if (jumpTarget > bytecodeIndex) in isLabeled()
445 inline void JIT::map(unsigned bytecodeIndex, unsigned virtualRegisterIndex, RegisterID tag, Registe… in map() argument
447 if (isLabeled(bytecodeIndex)) in map()
450 m_mappedBytecodeIndex = bytecodeIndex; in map()
/external/webkit/JavaScriptCore/bytecode/
DCodeBlock.h109 unsigned bytecodeIndex; member
182 CallReturnOffsetToBytecodeIndex(unsigned callReturnOffset, unsigned bytecodeIndex) in CallReturnOffsetToBytecodeIndex()
184 , bytecodeIndex(bytecodeIndex) in CallReturnOffsetToBytecodeIndex()
189 unsigned bytecodeIndex; member
332 …exVector().size(), ownerNode()->generatedJITCode().offsetOf(returnAddress.value()))->bytecodeIndex; in getBytecodeIndex()