@@ -4468,7 +4468,7 @@ void PhaseIdealLoop::build_and_optimize() {
4468
4468
AutoNodeBudget node_budget (this );
4469
4469
if (lpt->_head ->as_CountedLoop ()->is_normal_loop () &&
4470
4470
lpt->policy_maximally_unroll (this )) {
4471
- memset ( worklist.adr (), 0 , worklist.Size ()*sizeof (Node*) );
4471
+ memset ( worklist.adr (), 0 , worklist.max ()*sizeof (Node*) );
4472
4472
do_maximally_unroll (lpt, worklist);
4473
4473
}
4474
4474
}
@@ -4543,7 +4543,7 @@ void PhaseIdealLoop::build_and_optimize() {
4543
4543
// If split-if's didn't hack the graph too bad (no CFG changes)
4544
4544
// then do loop opts.
4545
4545
if (C->has_loops () && !C->major_progress ()) {
4546
- memset ( worklist.adr (), 0 , worklist.Size ()*sizeof (Node*) );
4546
+ memset ( worklist.adr (), 0 , worklist.max ()*sizeof (Node*) );
4547
4547
_ltree_root->_child ->iteration_split ( this , worklist );
4548
4548
// No verify after peeling! GCM has hoisted code out of the loop.
4549
4549
// After peeling, the hoisted code could sink inside the peeled area.
@@ -6356,7 +6356,7 @@ void PhaseIdealLoop::dump(IdealLoopTree* loop, uint idx, Node_List &rpo_list) co
6356
6356
}
6357
6357
}
6358
6358
// Dump nodes it controls
6359
- for (uint k = 0 ; k < _nodes.Size (); k++) {
6359
+ for (uint k = 0 ; k < _nodes.max (); k++) {
6360
6360
// (k < C->unique() && get_ctrl(find(k)) == n)
6361
6361
if (k < C->unique () && _nodes[k] == (Node*)((intptr_t )n + 1 )) {
6362
6362
Node* m = C->root ()->find (k);
0 commit comments