Skip to content

Commit 896207d

Browse files
committedApr 18, 2023
8306077: Replace NEW_ARENA_ARRAY with NEW_RESOURCE_ARRAY when applicable in opto
Reviewed-by: thartmann
1 parent 54f7b6c commit 896207d

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed
 

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

+9-11
Original file line numberDiff line numberDiff line change
@@ -1764,21 +1764,20 @@ void PhaseBlockLayout::merge_traces(bool fall_thru_only) {
17641764

17651765
// Order the sequence of the traces in some desirable way
17661766
void PhaseBlockLayout::reorder_traces(int count) {
1767-
ResourceArea *area = Thread::current()->resource_area();
1768-
Trace ** new_traces = NEW_ARENA_ARRAY(area, Trace *, count);
1767+
Trace** new_traces = NEW_RESOURCE_ARRAY(Trace*, count);
17691768
Block_List worklist;
17701769
int new_count = 0;
17711770

17721771
// Compact the traces.
17731772
for (int i = 0; i < count; i++) {
1774-
Trace *tr = traces[i];
1773+
Trace* tr = traces[i];
17751774
if (tr != nullptr) {
17761775
new_traces[new_count++] = tr;
17771776
}
17781777
}
17791778

17801779
// The entry block should be first on the new trace list.
1781-
Trace *tr = trace(_cfg.get_root_block());
1780+
Trace* tr = trace(_cfg.get_root_block());
17821781
assert(tr == new_traces[0], "entry trace misplaced");
17831782

17841783
// Sort the new trace list by frequency
@@ -1787,7 +1786,7 @@ void PhaseBlockLayout::reorder_traces(int count) {
17871786
// Collect all blocks from existing Traces
17881787
_cfg.clear_blocks();
17891788
for (int i = 0; i < new_count; i++) {
1790-
Trace *tr = new_traces[i];
1789+
Trace* tr = new_traces[i];
17911790
if (tr != nullptr) {
17921791
// push blocks onto the CFG list
17931792
for (Block* b = tr->first_block(); b != nullptr; b = tr->next(b)) {
@@ -1802,16 +1801,15 @@ PhaseBlockLayout::PhaseBlockLayout(PhaseCFG &cfg)
18021801
: Phase(BlockLayout)
18031802
, _cfg(cfg) {
18041803
ResourceMark rm;
1805-
ResourceArea *area = Thread::current()->resource_area();
18061804

18071805
// List of traces
18081806
int size = _cfg.number_of_blocks() + 1;
1809-
traces = NEW_ARENA_ARRAY(area, Trace *, size);
1807+
traces = NEW_RESOURCE_ARRAY(Trace*, size);
18101808
memset(traces, 0, size*sizeof(Trace*));
1811-
next = NEW_ARENA_ARRAY(area, Block *, size);
1812-
memset(next, 0, size*sizeof(Block *));
1813-
prev = NEW_ARENA_ARRAY(area, Block *, size);
1814-
memset(prev , 0, size*sizeof(Block *));
1809+
next = NEW_RESOURCE_ARRAY(Block*, size);
1810+
memset(next, 0, size*sizeof(Block*));
1811+
prev = NEW_RESOURCE_ARRAY(Block*, size);
1812+
memset(prev , 0, size*sizeof(Block*));
18151813

18161814
// List of edges
18171815
edges = new GrowableArray<CFGEdge*>;

0 commit comments

Comments
 (0)
Please sign in to comment.