Searched refs:bytecodeBegin (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGBasicBlock.cpp36 unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals, float executionCount)
37 : bytecodeBegin(bytecodeBegin)
35 BasicBlock( unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals, float executionCount) argument
H A DDFGBasicBlock.h51 unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals,
110 unsigned bytecodeBegin; member in struct:JSC::DFG::BasicBlock
175 return (*basicBlock)->bytecodeBegin;
178 static inline BasicBlock* blockForBytecodeOffset(Vector<BasicBlock*>& linkingTargets, unsigned bytecodeBegin) argument
180 return *binarySearch<BasicBlock*, unsigned>(linkingTargets, linkingTargets.size(), bytecodeBegin, getBytecodeBeginForBlock);
H A DDFGPredictionInjectionPhase.cpp70 if (block->bytecodeBegin != m_graph.m_plan.osrEntryBytecodeIndex)
H A DDFGJITCompiler.h277 OSREntryData* entry = m_jitCode->appendOSREntryData(basicBlock.bytecodeBegin, linkBuffer.offsetOf(blockHead));
H A DDFGInPlaceAbstractState.cpp162 if (block->bytecodeBegin != m_graph.m_plan.osrEntryBytecodeIndex)
H A DDFGTypeCheckHoistingPhase.cpp450 if (block->bytecodeBegin != m_graph.m_plan.osrEntryBytecodeIndex)
H A DDFGByteCodeParser.cpp1073 // are created, but their bytecodeBegin values need not be in order as they
1077 // Potential block linking targets. Must be sorted by bytecodeBegin, and
1078 // cannot have two blocks that have the same bytecodeBegin. For this very
1481 // For debugging purposes, set the bytecodeBegin. Note that this doesn't matter
1484 lastBlock->bytecodeBegin = m_currentIndex;
1516 ASSERT(m_inlineStackTop->m_caller->m_blockLinkingTargets.isEmpty() || m_inlineStackTop->m_caller->m_blockLinkingTargets.last()->bytecodeBegin < nextOffset);
3612 if (m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_inlineStackTop->m_blockLinkingTargets.last()->bytecodeBegin != m_currentIndex) {
3614 ASSERT(m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_inlineStackTop->m_blockLinkingTargets.last()->bytecodeBegin < m_currentIndex);
3619 m_currentBlock->bytecodeBegin = m_currentIndex;
3624 // 1) If the bytecodeBegin i
[all...]

Completed in 144 milliseconds