Lines Matching defs:index
372 void JSONGraphWriter::PrintEdge(Node* from, int index, Node* to) {
379 if (index < NodeProperties::FirstValueIndex(from)) {
381 } else if (index < NodeProperties::FirstContextIndex(from)) {
383 } else if (index < NodeProperties::FirstFrameStateIndex(from)) {
385 } else if (index < NodeProperties::FirstEffectIndex(from)) {
387 } else if (index < NodeProperties::FirstControlIndex(from)) {
393 << ",\"index\":" << index << ",\"type\":\"" << edge_type << "\"}";
628 int index = 0;
633 os_ << index << " ";
638 index++;
748 int index = -1;
750 index = kMaxInt; // This hasn't been set yet.
756 index = AllocatedOperand::cast(top->GetSpillOperand())->index();
758 os_ << " \"fp_stack:" << index << "\"";
760 os_ << " \"stack:" << index << "\"";
973 int index = top->GetSpillRange()->assigned_slot();
976 os << "\"fp_stack:" << index << "\"";
978 os << "\"stack:" << index << "\"";
1164 int index = imm->indexed_value();
1165 os << "\"text\": \"imm:" << index << "\",";
1183 os << "stack:" << allocated->index();
1185 os << "fp_stack:" << allocated->index();