src/share/vm/opto/loopUnswitch.cpp

changeset 7385
9e69e8d1c900
parent 4315
2aff40cb4703
child 7535
7ae4e26cb1e0
equal deleted inserted replaced
7384:6a528388c7da 7385:9e69e8d1c900
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->live_nodes(); 62 int nodes_left = phase->C->max_node_limit() - phase->C->live_nodes();
63 if (2 * _body.size() > nodes_left) { 63 if ((int)(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()) {
68 return false; 68 return false;

mercurial