• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/

Lines Matching refs:m_graph

50         ASSERT(m_graph.m_fixpointState == BeforeFixpoint);
51 ASSERT(m_graph.m_form == ThreadedCPS);
54 for (BlockIndex blockIndex = 0; blockIndex < m_graph.m_blocks.size(); ++blockIndex)
55 fixupBlock(m_graph.m_blocks[blockIndex].get());
60 for (unsigned i = m_graph.m_argumentPositions.size(); i--;)
61 m_graph.m_argumentPositions[i].mergeArgumentUnboxingAwareness();
63 for (BlockIndex blockIndex = 0; blockIndex < m_graph.m_blocks.size(); ++blockIndex)
64 fixupSetLocalsInBlock(m_graph.m_blocks[blockIndex].get());
196 if (m_graph.negateShouldSpeculateInteger(node)) {
205 if (m_graph.mulShouldSpeculateInteger(node)) {
399 && m_graph.globalObjectFor(node->codeOrigin)->arrayPrototypeChainIsSane()
427 Edge& child1 = m_graph.varArgChild(node, 0);
428 Edge& child2 = m_graph.varArgChild(node, 1);
429 Edge& child3 = m_graph.varArgChild(node, 2);
437 blessArrayOperation(child1, child2, m_graph.varArgChild(node, 3));
598 for (unsigned i = m_graph.varArgNumChildren(node); i--;) {
601 node->indexingType(), m_graph.varArgChild(node, i)->prediction()));
618 setUseKindAndUnboxIfProfitable<Int32Use>(m_graph.m_varArgChildren[node->firstChild() + operandIndex]);
622 setUseKindAndUnboxIfProfitable<RealNumberUse>(m_graph.m_varArgChildren[node->firstChild() + operandIndex]);
645 node->convertToWeakConstant(m_graph.globalThisObjectFor(node->codeOrigin));
693 m_graph.baselineCodeBlockFor(node->codeOrigin)->getArrayProfile(
697 arrayProfile->computeUpdatedPrediction(m_graph.baselineCodeBlockFor(node->codeOrigin));
704 OpInfo(m_graph.addStructureSet(arrayProfile->expectedStructure())),
960 if (!m_graph.isConstant(edge.node()))
962 JSString* string = jsCast<JSString*>(m_graph.valueOfJSConstant(edge.node()).asCell());
1108 if (m_graph.hasExitSite(codeOrigin, NotStringObject))
1111 Structure* stringObjectStructure = m_graph.globalObjectFor(codeOrigin)->stringObjectStructure();
1191 Structure* structure = arrayMode.originalArrayStructure(m_graph, codeOrigin);
1216 OpInfo(m_graph.addStructureSet(structure)), Edge(array, CellUse));
1388 JSValue value = m_graph.valueOfJSConstant(oldNode);
1413 AddSpeculationMode mode = m_graph.addSpeculationMode(node);