@@ -1764,21 +1764,20 @@ void PhaseBlockLayout::merge_traces(bool fall_thru_only) {
1764
1764
1765
1765
// Order the sequence of the traces in some desirable way
1766
1766
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);
1769
1768
Block_List worklist;
1770
1769
int new_count = 0 ;
1771
1770
1772
1771
// Compact the traces.
1773
1772
for (int i = 0 ; i < count; i++) {
1774
- Trace * tr = traces[i];
1773
+ Trace* tr = traces[i];
1775
1774
if (tr != nullptr ) {
1776
1775
new_traces[new_count++] = tr;
1777
1776
}
1778
1777
}
1779
1778
1780
1779
// 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 ());
1782
1781
assert (tr == new_traces[0 ], " entry trace misplaced" );
1783
1782
1784
1783
// Sort the new trace list by frequency
@@ -1787,7 +1786,7 @@ void PhaseBlockLayout::reorder_traces(int count) {
1787
1786
// Collect all blocks from existing Traces
1788
1787
_cfg.clear_blocks ();
1789
1788
for (int i = 0 ; i < new_count; i++) {
1790
- Trace * tr = new_traces[i];
1789
+ Trace* tr = new_traces[i];
1791
1790
if (tr != nullptr ) {
1792
1791
// push blocks onto the CFG list
1793
1792
for (Block* b = tr->first_block (); b != nullptr ; b = tr->next (b)) {
@@ -1802,16 +1801,15 @@ PhaseBlockLayout::PhaseBlockLayout(PhaseCFG &cfg)
1802
1801
: Phase(BlockLayout)
1803
1802
, _cfg(cfg) {
1804
1803
ResourceMark rm;
1805
- ResourceArea *area = Thread::current ()->resource_area ();
1806
1804
1807
1805
// List of traces
1808
1806
int size = _cfg.number_of_blocks () + 1 ;
1809
- traces = NEW_ARENA_ARRAY (area, Trace *, size);
1807
+ traces = NEW_RESOURCE_ARRAY ( Trace*, size);
1810
1808
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*));
1815
1813
1816
1814
// List of edges
1817
1815
edges = new GrowableArray<CFGEdge*>;
0 commit comments