Skip to content

Commit 35e8023

Browse files
author
Xin Liu
committedApr 26, 2023
8306872: Rename Node_Array::Size()
Reviewed-by: kvn, thartmann, shade
1 parent 2e340e8 commit 35e8023

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed
 

‎src/hotspot/share/opto/loopnode.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -4468,7 +4468,7 @@ void PhaseIdealLoop::build_and_optimize() {
44684468
AutoNodeBudget node_budget(this);
44694469
if (lpt->_head->as_CountedLoop()->is_normal_loop() &&
44704470
lpt->policy_maximally_unroll(this)) {
4471-
memset( worklist.adr(), 0, worklist.Size()*sizeof(Node*) );
4471+
memset( worklist.adr(), 0, worklist.max()*sizeof(Node*) );
44724472
do_maximally_unroll(lpt, worklist);
44734473
}
44744474
}
@@ -4543,7 +4543,7 @@ void PhaseIdealLoop::build_and_optimize() {
45434543
// If split-if's didn't hack the graph too bad (no CFG changes)
45444544
// then do loop opts.
45454545
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*) );
45474547
_ltree_root->_child->iteration_split( this, worklist );
45484548
// No verify after peeling! GCM has hoisted code out of the loop.
45494549
// 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
63566356
}
63576357
}
63586358
// Dump nodes it controls
6359-
for (uint k = 0; k < _nodes.Size(); k++) {
6359+
for (uint k = 0; k < _nodes.max(); k++) {
63606360
// (k < C->unique() && get_ctrl(find(k)) == n)
63616361
if (k < C->unique() && _nodes[k] == (Node*)((intptr_t)n + 1)) {
63626362
Node* m = C->root()->find(k);

‎src/hotspot/share/opto/matcher.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1735,7 +1735,7 @@ MachNode* Matcher::find_shared_node(Node* leaf, uint rule) {
17351735
if (!leaf->is_Con() && !leaf->is_DecodeNarrowPtr()) return nullptr;
17361736

17371737
// See if this Con has already been reduced using this rule.
1738-
if (_shared_nodes.Size() <= leaf->_idx) return nullptr;
1738+
if (_shared_nodes.max() <= leaf->_idx) return nullptr;
17391739
MachNode* last = (MachNode*)_shared_nodes.at(leaf->_idx);
17401740
if (last != nullptr && rule == last->rule()) {
17411741
// Don't expect control change for DecodeN

‎src/hotspot/share/opto/node.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@ class Node_Array : public AnyObj {
15481548
Copy::zero_to_bytes(_nodes, _max * sizeof(Node*));
15491549
}
15501550

1551-
uint Size() const { return _max; }
1551+
uint max() const { return _max; }
15521552
void dump() const;
15531553
};
15541554

‎src/hotspot/share/opto/output.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3072,7 +3072,7 @@ void Scheduling::garbage_collect_pinch_nodes() {
30723072
if (_cfg->C->trace_opto_output()) tty->print("Reclaimed pinch nodes:");
30733073
#endif
30743074
int trace_cnt = 0;
3075-
for (uint k = 0; k < _reg_node.Size(); k++) {
3075+
for (uint k = 0; k < _reg_node.max(); k++) {
30763076
Node* pinch = _reg_node[k];
30773077
if ((pinch != nullptr) && pinch->Opcode() == Op_Node &&
30783078
// no predecence input edges

‎src/hotspot/share/opto/phaseX.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ void PhaseTransform::dump_old2new_map() const {
664664
}
665665

666666
void PhaseTransform::dump_new( uint nidx ) const {
667-
for( uint i=0; i<_nodes.Size(); i++ )
667+
for( uint i=0; i<_nodes.max(); i++ )
668668
if( _nodes[i] && _nodes[i]->_idx == nidx ) {
669669
_nodes[i]->dump();
670670
tty->cr();

0 commit comments

Comments
 (0)
Please sign in to comment.