comparison src/share/vm/opto/idealGraphPrinter.cpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 4cdf4f71177d
children 52b4284cb496
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
402 402
403 head(PROPERTIES_ELEMENT); 403 head(PROPERTIES_ELEMENT);
404 404
405 Node *node = n; 405 Node *node = n;
406 #ifndef PRODUCT 406 #ifndef PRODUCT
407 Compile::current()->_in_dump_cnt++; 407 node->_in_dump_cnt++;
408 print_prop(NODE_NAME_PROPERTY, (const char *)node->Name()); 408 print_prop(NODE_NAME_PROPERTY, (const char *)node->Name());
409 const Type *t = node->bottom_type(); 409 const Type *t = node->bottom_type();
410 print_prop("type", t->msg()); 410 print_prop("type", t->msg());
411 print_prop("idx", node->_idx); 411 print_prop("idx", node->_idx);
412 #ifdef ASSERT 412 #ifdef ASSERT
621 lrg_id = _chaitin->_lrg_map.live_range_id(node); 621 lrg_id = _chaitin->_lrg_map.live_range_id(node);
622 } 622 }
623 print_prop("lrg", lrg_id); 623 print_prop("lrg", lrg_id);
624 } 624 }
625 625
626 Compile::current()->_in_dump_cnt--; 626 node->_in_dump_cnt--;
627 #endif 627 #endif
628 628
629 tail(PROPERTIES_ELEMENT); 629 tail(PROPERTIES_ELEMENT);
630 tail(NODE_ELEMENT); 630 tail(NODE_ELEMENT);
631 } 631 }