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

/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGBasicBlock.h46 BasicBlock(unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals) argument
47 : bytecodeBegin(bytecodeBegin)
111 unsigned bytecodeBegin; member in struct:JSC::DFG::BasicBlock
H A DDFGPredictionInjectionPhase.cpp71 if (block->bytecodeBegin != m_graph.m_osrEntryBytecodeIndex)
H A DDFGCFAPhase.cpp86 dataLogF(" Block #%u (bc#%u):\n", blockIndex, block->bytecodeBegin);
H A DDFGGraph.h198 BlockIndex blockIndexForBytecodeOffset(Vector<BlockIndex>& blocks, unsigned bytecodeBegin);
787 return m_graph.m_blocks[*blockIndex]->bytecodeBegin;
794 inline BlockIndex Graph::blockIndexForBytecodeOffset(Vector<BlockIndex>& linkingTargets, unsigned bytecodeBegin) argument
796 return *binarySearch<BlockIndex, unsigned>(linkingTargets, linkingTargets.size(), bytecodeBegin, GetBytecodeBeginForBlock(*this));
H A DDFGTypeCheckHoistingPhase.cpp198 if (block->bytecodeBegin != m_graph.m_osrEntryBytecodeIndex)
H A DDFGJITCompiler.h400 OSREntryData* entry = codeBlock()->appendDFGOSREntryData(basicBlock.bytecodeBegin, linkBuffer.offsetOf(blockHead));
H A DDFGByteCodeParser.cpp1043 // are created, but their bytecodeBegin values need not be in order as they
1047 // Potential block linking targets. Must be sorted by bytecodeBegin, and
1048 // cannot have two blocks that have the same bytecodeBegin. For this very
1383 dataLogF("Reascribing bytecode index of block %p from bc#%u to bc#%u (inline return case).\n", lastBlock, lastBlock->bytecodeBegin, m_currentIndex);
1385 // For debugging purposes, set the bytecodeBegin. Note that this doesn't matter
1388 lastBlock->bytecodeBegin = m_currentIndex;
1425 ASSERT(m_inlineStackTop->m_caller->m_blockLinkingTargets.isEmpty() || m_graph.m_blocks[m_inlineStackTop->m_caller->m_blockLinkingTargets.last()]->bytecodeBegin < nextOffset);
3672 if (m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_graph.m_blocks[m_inlineStackTop->m_blockLinkingTargets.last()]->bytecodeBegin != m_currentIndex) {
3674 ASSERT(m_inlineStackTop->m_blockLinkingTargets.isEmpty() || m_graph.m_blocks[m_inlineStackTop->m_blockLinkingTargets.last()]->bytecodeBegin < m_currentIndex);
3680 dataLogF("Reascribing bytecode index of block %p from bc#%u to bc#%u (peephole case).\n", m_currentBlock, m_currentBlock->bytecodeBegin, m_currentInde
[all...]
H A DDFGAbstractState.cpp137 if (block->bytecodeBegin != graph.m_osrEntryBytecodeIndex)

Completed in 165 milliseconds