comparison src/share/vm/opto/idealGraphPrinter.cpp @ 250:6ca61c728c2d

6712835: Server compiler fails with assertion (loop_count < K,"infinite loop in PhaseIterGVN::transform") Reviewed-by: kvn
author never
date Fri, 25 Jul 2008 11:32:56 -0700
parents 2a1a77d3458f
children 9ee9cf798b59
comparison
equal deleted inserted replaced
249:910a4cb98e9e 250:6ca61c728c2d
471 print_prop("is_dontcare", "true"); 471 print_prop("is_dontcare", "true");
472 } else { 472 } else {
473 print_prop("is_dontcare", "false"); 473 print_prop("is_dontcare", "false");
474 } 474 }
475 475
476 #ifdef ASSERT
476 Node* old = C->matcher()->find_old_node(node); 477 Node* old = C->matcher()->find_old_node(node);
477 if (old != NULL) { 478 if (old != NULL) {
478 print_prop("old_node_idx", old->_idx); 479 print_prop("old_node_idx", old->_idx);
479 } 480 }
481 #endif
480 } 482 }
481 483
482 if (node->is_Proj()) { 484 if (node->is_Proj()) {
483 print_prop("con", (int)node->as_Proj()->_con); 485 print_prop("con", (int)node->as_Proj()->_con);
484 } 486 }