comparison src/share/vm/opto/loopUnswitch.cpp @ 7206:d2f8c38e543d

Merge
author roland
date Fri, 07 Dec 2012 01:09:03 -0800
parents 2aff40cb4703
children 9e69e8d1c900
comparison
equal deleted inserted replaced
7191:816b7e5bf2ed 7206:d2f8c38e543d
57 return false; 57 return false;
58 } 58 }
59 if (!_head->is_Loop()) { 59 if (!_head->is_Loop()) {
60 return false; 60 return false;
61 } 61 }
62 uint nodes_left = MaxNodeLimit - phase->C->unique(); 62 uint nodes_left = MaxNodeLimit - phase->C->live_nodes();
63 if (2 * _body.size() > nodes_left) { 63 if (2 * _body.size() > nodes_left) {
64 return false; // Too speculative if running low on nodes. 64 return false; // Too speculative if running low on nodes.
65 } 65 }
66 LoopNode* head = _head->as_Loop(); 66 LoopNode* head = _head->as_Loop();
67 if (head->unswitch_count() + 1 > head->unswitch_max()) { 67 if (head->unswitch_count() + 1 > head->unswitch_max()) {