Home | History | Annotate | Download | only in dfg

Lines Matching refs:nodeIndex

78     NodeIndex m_nodeIndex;
85 NodeIndex nodeIndex;
89 NodeIndex m_fprInfo[numberOfFPRs];
130 GPRReg fillSpeculateInt(NodeIndex, DataFormat& returnFormat);
131 GPRReg fillSpeculateIntStrict(NodeIndex);
132 GPRReg fillSpeculateCell(NodeIndex);
138 bool isDoubleConstantWithInt32Value(NodeIndex nodeIndex, int32_t& out)
140 if (!m_jit.isDoubleConstant(nodeIndex))
142 double value = m_jit.valueOfDoubleConstant(nodeIndex);
176 GPRReg fillSpeculateIntInternal(NodeIndex, DataFormat& returnFormat);
204 explicit SpeculateIntegerOperand(SpeculativeJIT* jit, NodeIndex index)
223 NodeIndex index() const
249 NodeIndex m_index;
256 explicit SpeculateStrictInt32Operand(SpeculativeJIT* jit, NodeIndex index)
272 NodeIndex index() const
291 NodeIndex m_index;
297 explicit SpeculateCellOperand(SpeculativeJIT* jit, NodeIndex index)
313 NodeIndex index() const
332 NodeIndex m_index;
350 bool hasCheckAtIndex(NodeIndex nodeIndex)
353 NodeIndex current = m_iter->m_nodeIndex;
354 if (current >= nodeIndex)
355 return current == nodeIndex;