Searched refs:indexInBlock (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGConstantFoldingPhase.cpp77 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
81 Node* node = block->at(indexInBlock);
106 m_state.execute(indexInBlock); // Catch the fact that we may filter on cell.
115 m_state.execute(indexInBlock); // Catch the fact that we may filter on cell.
173 m_state.execute(indexInBlock);
179 indexInBlock, SpecNone, StructureTransitionWatchpoint, codeOrigin,
183 indexInBlock, SpecNone, Phantom, codeOrigin, childEdge);
194 indexInBlock, SpecNon
380 isCapturedAtOrAfter(BasicBlock* block, unsigned indexInBlock, int operand) argument
395 addStructureTransitionCheck(CodeOrigin codeOrigin, unsigned indexInBlock, JSCell* cell) argument
[all...]
H A DDFGAbstractState.h169 bool execute(unsigned indexInBlock);
178 bool startExecuting(unsigned indexInBlock);
184 void executeEdges(unsigned indexInBlock);
206 bool executeEffects(unsigned indexInBlock);
207 bool executeEffects(unsigned indexInBlock, Node*);
232 void clobberWorld(const CodeOrigin&, unsigned indexInBlock);
234 void clobberStructures(unsigned indexInBlock);
H A DDFGDCEPhase.cpp53 for (unsigned indexInBlock = block->size(); indexInBlock--;)
54 block->at(indexInBlock)->setRefCount(0);
67 for (unsigned indexInBlock = block->size(); indexInBlock--;) {
68 Node* node = block->at(indexInBlock);
91 for (unsigned indexInBlock = block->size(); indexInBlock--;) {
92 Node* node = block->at(indexInBlock);
132 insertionSet.insertNode(indexInBlock, SpecNon
[all...]
H A DDFGArgumentsSimplificationPhase.cpp146 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
147 Node* node = block->at(indexInBlock);
168 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
169 Node* node = block->at(indexInBlock);
355 for (unsigned indexInBlock = 0; indexInBlock < bloc
[all...]
H A DDFGTypeCheckHoistingPhase.cpp68 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
69 Node* node = block->at(indexInBlock);
257 for (unsigned indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
258 Node* node = block->at(indexInBlock);
279 indexInBlock + 1, variable->prediction(), GetLocal, codeOrigin,
282 indexInBlock
[all...]
H A DDFGVirtualRegisterAllocationPhase.cpp62 for (size_t indexInBlock = 0; indexInBlock < block->size(); ++indexInBlock) {
63 Node* node = block->at(indexInBlock);
H A DDFGAbstractState.cpp246 bool AbstractState::startExecuting(unsigned indexInBlock) argument
248 return startExecuting(m_block->at(indexInBlock));
256 void AbstractState::executeEdges(unsigned indexInBlock) argument
258 executeEdges(m_block->at(indexInBlock));
271 bool AbstractState::executeEffects(unsigned indexInBlock, Node* node) argument
471 clobberWorld(node->codeOrigin, indexInBlock);
891 clobberWorld(node->codeOrigin, indexInBlock);
902 clobberWorld(node->codeOrigin, indexInBlock);
909 clobberWorld(node->codeOrigin, indexInBlock);
920 clobberWorld(node->codeOrigin, indexInBlock);
1583 executeEffects(unsigned indexInBlock) argument
1588 execute(unsigned indexInBlock) argument
1598 clobberWorld(const CodeOrigin& codeOrigin, unsigned indexInBlock) argument
1626 clobberStructures(unsigned indexInBlock) argument
[all...]
H A DDFGGraph.h635 for (unsigned indexInBlock = startIndexInBlock; indexInBlock < block.size(); ++indexInBlock) {
636 Node* node = block[indexInBlock];
666 for (unsigned indexInBlock = startIndexInBlock; indexInBlock < block.size(); ++indexInBlock) {
667 Node* node = block[indexInBlock];
679 substitute(block, indexInBlock, node, newGetLocal);
H A DDFGBackwardsPropagationPhase.cpp56 for (unsigned indexInBlock = block->size(); indexInBlock--;)
57 propagate(block->at(indexInBlock));
H A DDFGGraph.cpp442 for (unsigned indexInBlock = block->size(); indexInBlock--;)
443 block->at(indexInBlock)->setCanExit(true);
H A DDFGSpeculativeJIT.cpp236 unsigned indexInBlock = m_indexInBlock + 1; local
239 if (indexInBlock == m_jit.graph().m_blocks[m_block]->size()) {
246 node = m_jit.graph().m_blocks[m_block]->at(indexInBlock);
249 indexInBlock++;

Completed in 189 milliseconds