annotate src/share/vm/opto/chaitin.cpp @ 12071:adb9a7d94cb5

8023003: Cleanup the public interface to PhaseCFG Summary: public methods that don't need to be public should be private. Reviewed-by: kvn, twisti
author adlertz
date Fri, 16 Aug 2013 10:23:55 +0200
parents d1034bd8cefc
children 4b2838704fd5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10999
693e4d04fd09 8014959: assert(Compile::current()->live_nodes() < (uint)MaxNodeLimit) failed: Live Node limit exceeded limit
drchase
parents: 10111
diff changeset
2 * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1012
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1012
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1012
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
26 #include "compiler/compileLog.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
27 #include "compiler/oopMap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
28 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
29 #include "opto/addnode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
30 #include "opto/block.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
31 #include "opto/callnode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
32 #include "opto/cfgnode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
33 #include "opto/chaitin.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
34 #include "opto/coalesce.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
35 #include "opto/connode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
36 #include "opto/idealGraphPrinter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
37 #include "opto/indexSet.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
38 #include "opto/machnode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
39 #include "opto/memnode.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
40 #include "opto/opcodes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1685
diff changeset
41 #include "opto/rootnode.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 #ifndef PRODUCT
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
44 void LRG::dump() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 tty->print("%d ",num_regs());
a61af66fc99e Initial load
duke
parents:
diff changeset
47 _mask.dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 if( _msize_valid ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 if( mask_size() == compute_mask_size() ) tty->print(", #%d ",_mask_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
50 else tty->print(", #!!!_%d_vs_%d ",_mask_size,_mask.Size());
a61af66fc99e Initial load
duke
parents:
diff changeset
51 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 tty->print(", #?(%d) ",_mask.Size());
a61af66fc99e Initial load
duke
parents:
diff changeset
53 }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 tty->print("EffDeg: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
56 if( _degree_valid ) tty->print( "%d ", _eff_degree );
a61af66fc99e Initial load
duke
parents:
diff changeset
57 else tty->print("? ");
a61af66fc99e Initial load
duke
parents:
diff changeset
58
295
ea18057223c4 6732194: Data corruption dependent on -server/-client/-Xbatch
never
parents: 196
diff changeset
59 if( is_multidef() ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60 tty->print("MultiDef ");
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (_defs != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 tty->print("(");
a61af66fc99e Initial load
duke
parents:
diff changeset
63 for (int i = 0; i < _defs->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 tty->print("N%d ", _defs->at(i)->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
a61af66fc99e Initial load
duke
parents:
diff changeset
66 tty->print(") ");
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 else if( _def == 0 ) tty->print("Dead ");
a61af66fc99e Initial load
duke
parents:
diff changeset
70 else tty->print("Def: N%d ",_def->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 tty->print("Cost:%4.2g Area:%4.2g Score:%4.2g ",_cost,_area, score());
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // Flags
a61af66fc99e Initial load
duke
parents:
diff changeset
74 if( _is_oop ) tty->print("Oop ");
a61af66fc99e Initial load
duke
parents:
diff changeset
75 if( _is_float ) tty->print("Float ");
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
76 if( _is_vector ) tty->print("Vector ");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if( _was_spilled1 ) tty->print("Spilled ");
a61af66fc99e Initial load
duke
parents:
diff changeset
78 if( _was_spilled2 ) tty->print("Spilled2 ");
a61af66fc99e Initial load
duke
parents:
diff changeset
79 if( _direct_conflict ) tty->print("Direct_conflict ");
a61af66fc99e Initial load
duke
parents:
diff changeset
80 if( _fat_proj ) tty->print("Fat ");
a61af66fc99e Initial load
duke
parents:
diff changeset
81 if( _was_lo ) tty->print("Lo ");
a61af66fc99e Initial load
duke
parents:
diff changeset
82 if( _has_copy ) tty->print("Copy ");
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if( _at_risk ) tty->print("Risk ");
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if( _must_spill ) tty->print("Must_spill ");
a61af66fc99e Initial load
duke
parents:
diff changeset
86 if( _is_bound ) tty->print("Bound ");
a61af66fc99e Initial load
duke
parents:
diff changeset
87 if( _msize_valid ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 if( _degree_valid && lo_degree() ) tty->print("Trivial ");
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Compute score from cost and area. Low score is best to spill.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 static double raw_score( double cost, double area ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return cost - (area*RegisterCostAreaRatio) * 1.52588e-5;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 double LRG::score() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Scale _area by RegisterCostAreaRatio/64K then subtract from cost.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Bigger area lowers score, encourages spilling this live range.
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Bigger cost raise score, prevents spilling this live range.
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // (Note: 1/65536 is the magic constant below; I dont trust the C optimizer
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // to turn a divide by a constant into a multiply by the reciprical).
a61af66fc99e Initial load
duke
parents:
diff changeset
106 double score = raw_score( _cost, _area);
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // Account for area. Basically, LRGs covering large areas are better
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // to spill because more other LRGs get freed up.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 if( _area == 0.0 ) // No area? Then no progress to spill
a61af66fc99e Initial load
duke
parents:
diff changeset
111 return 1e35;
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 if( _was_spilled2 ) // If spilled once before, we are unlikely
a61af66fc99e Initial load
duke
parents:
diff changeset
114 return score + 1e30; // to make progress again.
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 if( _cost >= _area*3.0 ) // Tiny area relative to cost
a61af66fc99e Initial load
duke
parents:
diff changeset
117 return score + 1e17; // Probably no progress to spill
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 if( (_cost+_cost) >= _area*3.0 ) // Small area relative to cost
a61af66fc99e Initial load
duke
parents:
diff changeset
120 return score + 1e10; // Likely no progress to spill
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 return score;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 LRG_List::LRG_List( uint max ) : _cnt(max), _max(max), _lidxs(NEW_RESOURCE_ARRAY(uint,max)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 memset( _lidxs, 0, sizeof(uint)*max );
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void LRG_List::extend( uint nidx, uint lidx ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _nesting.check();
a61af66fc99e Initial load
duke
parents:
diff changeset
131 if( nidx >= _max ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 uint size = 16;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 while( size <= nidx ) size <<=1;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 _lidxs = REALLOC_RESOURCE_ARRAY( uint, _lidxs, _max, size );
a61af66fc99e Initial load
duke
parents:
diff changeset
135 _max = size;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 while( _cnt <= nidx )
a61af66fc99e Initial load
duke
parents:
diff changeset
138 _lidxs[_cnt++] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _lidxs[nidx] = lidx;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #define NUMBUCKS 3
a61af66fc99e Initial load
duke
parents:
diff changeset
143
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
144 // Straight out of Tarjan's union-find algorithm
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
145 uint LiveRangeMap::find_compress(uint lrg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
146 uint cur = lrg;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
147 uint next = _uf_map[cur];
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
148 while (next != cur) { // Scan chain of equivalences
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
149 assert( next < cur, "always union smaller");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
150 cur = next; // until find a fixed-point
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
151 next = _uf_map[cur];
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
152 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
153
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
154 // Core of union-find algorithm: update chain of
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
155 // equivalences to be equal to the root.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
156 while (lrg != next) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
157 uint tmp = _uf_map[lrg];
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
158 _uf_map.map(lrg, next);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
159 lrg = tmp;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
160 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
161 return lrg;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
162 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
163
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
164 // Reset the Union-Find map to identity
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
165 void LiveRangeMap::reset_uf_map(uint max_lrg_id) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
166 _max_lrg_id= max_lrg_id;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
167 // Force the Union-Find mapping to be at least this large
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
168 _uf_map.extend(_max_lrg_id, 0);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
169 // Initialize it to be the ID mapping.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
170 for (uint i = 0; i < _max_lrg_id; ++i) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
171 _uf_map.map(i, i);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
172 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
173 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
174
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
175 // Make all Nodes map directly to their final live range; no need for
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
176 // the Union-Find mapping after this call.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
177 void LiveRangeMap::compress_uf_map_for_nodes() {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
178 // For all Nodes, compress mapping
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
179 uint unique = _names.Size();
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
180 for (uint i = 0; i < unique; ++i) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
181 uint lrg = _names[i];
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
182 uint compressed_lrg = find(lrg);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
183 if (lrg != compressed_lrg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
184 _names.map(i, compressed_lrg);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
185 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
186 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
187 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
188
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
189 // Like Find above, but no path compress, so bad asymptotic behavior
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
190 uint LiveRangeMap::find_const(uint lrg) const {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
191 if (!lrg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
192 return lrg; // Ignore the zero LRG
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
193 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
194
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
195 // Off the end? This happens during debugging dumps when you got
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
196 // brand new live ranges but have not told the allocator yet.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
197 if (lrg >= _max_lrg_id) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
198 return lrg;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
199 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
200
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
201 uint next = _uf_map[lrg];
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
202 while (next != lrg) { // Scan chain of equivalences
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
203 assert(next < lrg, "always union smaller");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
204 lrg = next; // until find a fixed-point
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
205 next = _uf_map[lrg];
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
206 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
207 return next;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
208 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
209
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210 PhaseChaitin::PhaseChaitin(uint unique, PhaseCFG &cfg, Matcher &matcher)
a61af66fc99e Initial load
duke
parents:
diff changeset
211 : PhaseRegAlloc(unique, cfg, matcher,
a61af66fc99e Initial load
duke
parents:
diff changeset
212 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
213 print_chaitin_statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
214 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
215 NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
216 #endif
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
217 )
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
218 , _lrg_map(unique)
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
219 , _live(0)
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
220 , _spilled_once(Thread::current()->resource_area())
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
221 , _spilled_twice(Thread::current()->resource_area())
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
222 , _lo_degree(0), _lo_stk_degree(0), _hi_degree(0), _simplified(0)
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
223 , _oldphi(unique)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
225 , _trace_spilling(TraceSpilling || C->method_has_option("TraceSpilling"))
a61af66fc99e Initial load
duke
parents:
diff changeset
226 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
227 {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 NOT_PRODUCT( Compile::TracePhase t3("ctorChaitin", &_t_ctorChaitin, TimeCompiler); )
673
fbc12e71c476 6810845: Performance regression in mpegaudio on x64
kvn
parents: 628
diff changeset
229
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
230 _high_frequency_lrg = MIN2(float(OPTO_LRG_HIGH_FREQ), _cfg.get_outer_loop_frequency());
673
fbc12e71c476 6810845: Performance regression in mpegaudio on x64
kvn
parents: 628
diff changeset
231
0
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Build a list of basic blocks, sorted by frequency
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
233 _blks = NEW_RESOURCE_ARRAY(Block *, _cfg.number_of_blocks());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // Experiment with sorting strategies to speed compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
235 double cutoff = BLOCK_FREQUENCY(1.0); // Cutoff for high frequency bucket
a61af66fc99e Initial load
duke
parents:
diff changeset
236 Block **buckets[NUMBUCKS]; // Array of buckets
a61af66fc99e Initial load
duke
parents:
diff changeset
237 uint buckcnt[NUMBUCKS]; // Array of bucket counters
a61af66fc99e Initial load
duke
parents:
diff changeset
238 double buckval[NUMBUCKS]; // Array of bucket value cutoffs
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
239 for (uint i = 0; i < NUMBUCKS; i++) {
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
240 buckets[i] = NEW_RESOURCE_ARRAY(Block *, _cfg.number_of_blocks());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241 buckcnt[i] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // Bump by three orders of magnitude each time
a61af66fc99e Initial load
duke
parents:
diff changeset
243 cutoff *= 0.001;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 buckval[i] = cutoff;
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
245 for (uint j = 0; j < _cfg.number_of_blocks(); j++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
246 buckets[i][j] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // Sort blocks into buckets
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
250 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
251 for (uint j = 0; j < NUMBUCKS; j++) {
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
252 if ((j == NUMBUCKS - 1) || (_cfg.get_block(i)->_freq > buckval[j])) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Assign block to end of list for appropriate bucket
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
254 buckets[j][buckcnt[j]++] = _cfg.get_block(i);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
255 break; // kick out of inner loop
0
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // Dump buckets into final block array
a61af66fc99e Initial load
duke
parents:
diff changeset
260 uint blkcnt = 0;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
261 for (uint i = 0; i < NUMBUCKS; i++) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
262 for (uint j = 0; j < buckcnt[i]; j++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
263 _blks[blkcnt++] = buckets[i][j];
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
267 assert(blkcnt == _cfg.number_of_blocks(), "Block array not totally filled");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
270 // union 2 sets together.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
271 void PhaseChaitin::Union( const Node *src_n, const Node *dst_n ) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
272 uint src = _lrg_map.find(src_n);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
273 uint dst = _lrg_map.find(dst_n);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
274 assert(src, "");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
275 assert(dst, "");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
276 assert(src < _lrg_map.max_lrg_id(), "oob");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
277 assert(dst < _lrg_map.max_lrg_id(), "oob");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
278 assert(src < dst, "always union smaller");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
279 _lrg_map.uf_map(dst, src);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
280 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
281
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
282 void PhaseChaitin::new_lrg(const Node *x, uint lrg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
283 // Make the Node->LRG mapping
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
284 _lrg_map.extend(x->_idx,lrg);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
285 // Make the Union-Find mapping an identity function
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
286 _lrg_map.uf_extend(lrg, lrg);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
287 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
288
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
289
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
290 bool PhaseChaitin::clone_projs_shared(Block *b, uint idx, Node *con, Node *copy, uint max_lrg_id) {
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
291 Block* bcon = _cfg.get_block_for_node(con);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
292 uint cindex = bcon->find_node(con);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
293 Node *con_next = bcon->_nodes[cindex+1];
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
294 if (con_next->in(0) != con || !con_next->is_MachProj()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
295 return false; // No MachProj's follow
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
296 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
297
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
298 // Copy kills after the cloned constant
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
299 Node *kills = con_next->clone();
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
300 kills->set_req(0, copy);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
301 b->_nodes.insert(idx, kills);
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
302 _cfg.map_node_to_block(kills, b);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
303 new_lrg(kills, max_lrg_id);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
304 return true;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
305 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
306
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
307 // Renumber the live ranges to compact them. Makes the IFG smaller.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
308 void PhaseChaitin::compact() {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
309 // Current the _uf_map contains a series of short chains which are headed
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
310 // by a self-cycle. All the chains run from big numbers to little numbers.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
311 // The Find() call chases the chains & shortens them for the next Find call.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
312 // We are going to change this structure slightly. Numbers above a moving
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
313 // wave 'i' are unchanged. Numbers below 'j' point directly to their
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
314 // compacted live range with no further chaining. There are no chains or
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
315 // cycles below 'i', so the Find call no longer works.
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
316 uint j=1;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
317 uint i;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
318 for (i = 1; i < _lrg_map.max_lrg_id(); i++) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
319 uint lr = _lrg_map.uf_live_range_id(i);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
320 // Ignore unallocated live ranges
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
321 if (!lr) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
322 continue;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
323 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
324 assert(lr <= i, "");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
325 _lrg_map.uf_map(i, ( lr == i ) ? j++ : _lrg_map.uf_live_range_id(lr));
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
326 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
327 // Now change the Node->LR mapping to reflect the compacted names
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
328 uint unique = _lrg_map.size();
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
329 for (i = 0; i < unique; i++) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
330 uint lrg_id = _lrg_map.live_range_id(i);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
331 _lrg_map.map(i, _lrg_map.uf_live_range_id(lrg_id));
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
332 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
333
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
334 // Reset the Union-Find mapping
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
335 _lrg_map.reset_uf_map(j);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
336 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
337
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338 void PhaseChaitin::Register_Allocate() {
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // Above the OLD FP (and in registers) are the incoming arguments. Stack
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // slots in this area are called "arg_slots". Above the NEW FP (and in
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // registers) is the outgoing argument area; above that is the spill/temp
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // area. These are all "frame_slots". Arg_slots start at the zero
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // stack_slots and count up to the known arg_size. Frame_slots start at
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // the stack_slot #arg_size and go up. After allocation I map stack
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // slots to actual offsets. Stack-slots in the arg_slot area are biased
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // by the frame_size; stack-slots in the frame_slot area are biased by 0.
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 _trip_cnt = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
350 _alternate = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 _matcher._allocation_started = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
352
6632
a1c7f6472621 7148109: C2 compiler consumes too much heap resources
kvn
parents: 6620
diff changeset
353 ResourceArea split_arena; // Arena for Split local resources
0
a61af66fc99e Initial load
duke
parents:
diff changeset
354 ResourceArea live_arena; // Arena for liveness & IFG info
a61af66fc99e Initial load
duke
parents:
diff changeset
355 ResourceMark rm(&live_arena);
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // Need live-ness for the IFG; need the IFG for coalescing. If the
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // liveness is JUST for coalescing, then I can get some mileage by renaming
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // all copy-related live ranges low and then using the max copy-related
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // live range as a cut-off for LIVE and the IFG. In other words, I can
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // build a subset of LIVE and IFG just for copies.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
362 PhaseLive live(_cfg, _lrg_map.names(), &live_arena);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Need IFG for coalescing and coloring
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
365 PhaseIFG ifg(&live_arena);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
366 _ifg = &ifg;
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // Come out of SSA world to the Named world. Assign (virtual) registers to
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // Nodes. Use the same register for all inputs and the output of PhiNodes
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // - effectively ending SSA form. This requires either coalescing live
a61af66fc99e Initial load
duke
parents:
diff changeset
371 // ranges or inserting copies. For the moment, we insert "virtual copies"
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // - we pretend there is a copy prior to each Phi in predecessor blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // We will attempt to coalesce such "virtual copies" before we manifest
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // them for real.
a61af66fc99e Initial load
duke
parents:
diff changeset
375 de_ssa();
a61af66fc99e Initial load
duke
parents:
diff changeset
376
566
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
377 #ifdef ASSERT
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
378 // Veify the graph before RA.
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
379 verify(&live_arena);
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
380 #endif
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
381
0
a61af66fc99e Initial load
duke
parents:
diff changeset
382 {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
a61af66fc99e Initial load
duke
parents:
diff changeset
384 _live = NULL; // Mark live as being not available
a61af66fc99e Initial load
duke
parents:
diff changeset
385 rm.reset_to_mark(); // Reclaim working storage
a61af66fc99e Initial load
duke
parents:
diff changeset
386 IndexSet::reset_memory(C, &live_arena);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
387 ifg.init(_lrg_map.max_lrg_id()); // Empty IFG
0
a61af66fc99e Initial load
duke
parents:
diff changeset
388 gather_lrg_masks( false ); // Collect LRG masks
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
389 live.compute(_lrg_map.max_lrg_id()); // Compute liveness
0
a61af66fc99e Initial load
duke
parents:
diff changeset
390 _live = &live; // Mark LIVE as being available
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // Base pointers are currently "used" by instructions which define new
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // derived pointers. This makes base pointers live up to the where the
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // derived pointer is made, but not beyond. Really, they need to be live
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // across any GC point where the derived value is live. So this code looks
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // at all the GC points, and "stretches" the live range of any base pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // to the GC point.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
399 if (stretch_base_pointer_live_ranges(&live_arena)) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
400 NOT_PRODUCT(Compile::TracePhase t3("computeLive (sbplr)", &_t_computeLive, TimeCompiler);)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // Since some live range stretched, I need to recompute live
a61af66fc99e Initial load
duke
parents:
diff changeset
402 _live = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
403 rm.reset_to_mark(); // Reclaim working storage
a61af66fc99e Initial load
duke
parents:
diff changeset
404 IndexSet::reset_memory(C, &live_arena);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
405 ifg.init(_lrg_map.max_lrg_id());
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
406 gather_lrg_masks(false);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
407 live.compute(_lrg_map.max_lrg_id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
408 _live = &live;
a61af66fc99e Initial load
duke
parents:
diff changeset
409 }
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // Create the interference graph using virtual copies
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
411 build_ifg_virtual(); // Include stack slots this time
0
a61af66fc99e Initial load
duke
parents:
diff changeset
412
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // Aggressive (but pessimistic) copy coalescing.
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // This pass works on virtual copies. Any virtual copies which are not
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // coalesced get manifested as actual copies
a61af66fc99e Initial load
duke
parents:
diff changeset
416 {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // The IFG is/was triangular. I am 'squaring it up' so Union can run
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // faster. Union requires a 'for all' operation which is slow on the
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // triangular adjacency matrix (quick reminder: the IFG is 'sparse' -
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // meaning I can visit all the Nodes neighbors less than a Node in time
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // O(# of neighbors), but I have to visit all the Nodes greater than a
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // given Node and search them for an instance, i.e., time O(#MaxLRG)).
a61af66fc99e Initial load
duke
parents:
diff changeset
423 _ifg->SquareUp();
a61af66fc99e Initial load
duke
parents:
diff changeset
424
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
425 PhaseAggressiveCoalesce coalesce(*this);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
426 coalesce.coalesce_driver();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
427 // Insert un-coalesced copies. Visit all Phis. Where inputs to a Phi do
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // not match the Phi itself, insert a copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
429 coalesce.insert_copies(_matcher);
10999
693e4d04fd09 8014959: assert(Compile::current()->live_nodes() < (uint)MaxNodeLimit) failed: Live Node limit exceeded limit
drchase
parents: 10111
diff changeset
430 if (C->failing()) {
693e4d04fd09 8014959: assert(Compile::current()->live_nodes() < (uint)MaxNodeLimit) failed: Live Node limit exceeded limit
drchase
parents: 10111
diff changeset
431 return;
693e4d04fd09 8014959: assert(Compile::current()->live_nodes() < (uint)MaxNodeLimit) failed: Live Node limit exceeded limit
drchase
parents: 10111
diff changeset
432 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // After aggressive coalesce, attempt a first cut at coloring.
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // To color, we need the IFG and for that we need LIVE.
a61af66fc99e Initial load
duke
parents:
diff changeset
437 {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
a61af66fc99e Initial load
duke
parents:
diff changeset
439 _live = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 rm.reset_to_mark(); // Reclaim working storage
a61af66fc99e Initial load
duke
parents:
diff changeset
441 IndexSet::reset_memory(C, &live_arena);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
442 ifg.init(_lrg_map.max_lrg_id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
443 gather_lrg_masks( true );
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
444 live.compute(_lrg_map.max_lrg_id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
445 _live = &live;
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // Build physical interference graph
a61af66fc99e Initial load
duke
parents:
diff changeset
449 uint must_spill = 0;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
450 must_spill = build_ifg_physical(&live_arena);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // If we have a guaranteed spill, might as well spill now
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
452 if (must_spill) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
453 if(!_lrg_map.max_lrg_id()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
454 return;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
455 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // Bail out if unique gets too large (ie - unique > MaxNodeLimit)
a61af66fc99e Initial load
duke
parents:
diff changeset
457 C->check_node_count(10*must_spill, "out of nodes before split");
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
458 if (C->failing()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
459 return;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
460 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
461
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
462 uint new_max_lrg_id = Split(_lrg_map.max_lrg_id(), &split_arena); // Split spilling LRG everywhere
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
463 _lrg_map.set_max_lrg_id(new_max_lrg_id);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // Bail out if unique gets too large (ie - unique > MaxNodeLimit - 2*NodeLimitFudgeFactor)
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // or we failed to split
a61af66fc99e Initial load
duke
parents:
diff changeset
466 C->check_node_count(2*NodeLimitFudgeFactor, "out of nodes after physical split");
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
467 if (C->failing()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
468 return;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
469 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
470
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
471 NOT_PRODUCT(C->verify_graph_edges();)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 compact(); // Compact LRGs; return new lower max lrg
a61af66fc99e Initial load
duke
parents:
diff changeset
474
a61af66fc99e Initial load
duke
parents:
diff changeset
475 {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
a61af66fc99e Initial load
duke
parents:
diff changeset
477 _live = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
478 rm.reset_to_mark(); // Reclaim working storage
a61af66fc99e Initial load
duke
parents:
diff changeset
479 IndexSet::reset_memory(C, &live_arena);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
480 ifg.init(_lrg_map.max_lrg_id()); // Build a new interference graph
0
a61af66fc99e Initial load
duke
parents:
diff changeset
481 gather_lrg_masks( true ); // Collect intersect mask
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
482 live.compute(_lrg_map.max_lrg_id()); // Compute LIVE
0
a61af66fc99e Initial load
duke
parents:
diff changeset
483 _live = &live;
a61af66fc99e Initial load
duke
parents:
diff changeset
484 }
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
485 build_ifg_physical(&live_arena);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
486 _ifg->SquareUp();
a61af66fc99e Initial load
duke
parents:
diff changeset
487 _ifg->Compute_Effective_Degree();
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // Only do conservative coalescing if requested
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
489 if (OptoCoalesce) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // Conservative (and pessimistic) copy coalescing of those spills
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
491 PhaseConservativeCoalesce coalesce(*this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // If max live ranges greater than cutoff, don't color the stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
493 // This cutoff can be larger than below since it is only done once.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
494 coalesce.coalesce_driver();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
496 _lrg_map.compress_uf_map_for_nodes();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498 #ifdef ASSERT
566
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
499 verify(&live_arena, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
500 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
501 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
502 ifg.SquareUp();
a61af66fc99e Initial load
duke
parents:
diff changeset
503 ifg.Compute_Effective_Degree();
a61af66fc99e Initial load
duke
parents:
diff changeset
504 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
505 set_was_low();
a61af66fc99e Initial load
duke
parents:
diff changeset
506 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
507 }
a61af66fc99e Initial load
duke
parents:
diff changeset
508
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // Prepare for Simplify & Select
a61af66fc99e Initial load
duke
parents:
diff changeset
510 cache_lrg_info(); // Count degree of LRGs
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 // Simplify the InterFerence Graph by removing LRGs of low degree.
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // LRGs of low degree are trivially colorable.
a61af66fc99e Initial load
duke
parents:
diff changeset
514 Simplify();
a61af66fc99e Initial load
duke
parents:
diff changeset
515
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // Select colors by re-inserting LRGs back into the IFG in reverse order.
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // Return whether or not something spills.
a61af66fc99e Initial load
duke
parents:
diff changeset
518 uint spills = Select( );
a61af66fc99e Initial load
duke
parents:
diff changeset
519
a61af66fc99e Initial load
duke
parents:
diff changeset
520 // If we spill, split and recycle the entire thing
a61af66fc99e Initial load
duke
parents:
diff changeset
521 while( spills ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
522 if( _trip_cnt++ > 24 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
523 DEBUG_ONLY( dump_for_spill_split_recycle(); )
a61af66fc99e Initial load
duke
parents:
diff changeset
524 if( _trip_cnt > 27 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
525 C->record_method_not_compilable("failed spill-split-recycle sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
526 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 }
a61af66fc99e Initial load
duke
parents:
diff changeset
528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
529
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
530 if (!_lrg_map.max_lrg_id()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
531 return;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
532 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
533 uint new_max_lrg_id = Split(_lrg_map.max_lrg_id(), &split_arena); // Split spilling LRG everywhere
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
534 _lrg_map.set_max_lrg_id(new_max_lrg_id);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
535 // Bail out if unique gets too large (ie - unique > MaxNodeLimit - 2*NodeLimitFudgeFactor)
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
536 C->check_node_count(2 * NodeLimitFudgeFactor, "out of nodes after split");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
537 if (C->failing()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
538 return;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
539 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
540
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
541 compact(); // Compact LRGs; return new lower max lrg
0
a61af66fc99e Initial load
duke
parents:
diff changeset
542
a61af66fc99e Initial load
duke
parents:
diff changeset
543 // Nuke the live-ness and interference graph and LiveRanGe info
a61af66fc99e Initial load
duke
parents:
diff changeset
544 {
a61af66fc99e Initial load
duke
parents:
diff changeset
545 NOT_PRODUCT( Compile::TracePhase t3("computeLive", &_t_computeLive, TimeCompiler); )
a61af66fc99e Initial load
duke
parents:
diff changeset
546 _live = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 rm.reset_to_mark(); // Reclaim working storage
a61af66fc99e Initial load
duke
parents:
diff changeset
548 IndexSet::reset_memory(C, &live_arena);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
549 ifg.init(_lrg_map.max_lrg_id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 // Create LiveRanGe array.
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // Intersect register masks for all USEs and DEFs
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
553 gather_lrg_masks(true);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
554 live.compute(_lrg_map.max_lrg_id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
555 _live = &live;
a61af66fc99e Initial load
duke
parents:
diff changeset
556 }
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
557 must_spill = build_ifg_physical(&live_arena);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
558 _ifg->SquareUp();
a61af66fc99e Initial load
duke
parents:
diff changeset
559 _ifg->Compute_Effective_Degree();
a61af66fc99e Initial load
duke
parents:
diff changeset
560
a61af66fc99e Initial load
duke
parents:
diff changeset
561 // Only do conservative coalescing if requested
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
562 if (OptoCoalesce) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
563 // Conservative (and pessimistic) copy coalescing
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
564 PhaseConservativeCoalesce coalesce(*this);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
565 // Check for few live ranges determines how aggressive coalesce is.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
566 coalesce.coalesce_driver();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
568 _lrg_map.compress_uf_map_for_nodes();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
569 #ifdef ASSERT
566
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
570 verify(&live_arena, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
571 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
572 cache_lrg_info(); // Count degree of LRGs
a61af66fc99e Initial load
duke
parents:
diff changeset
573
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // Simplify the InterFerence Graph by removing LRGs of low degree.
a61af66fc99e Initial load
duke
parents:
diff changeset
575 // LRGs of low degree are trivially colorable.
a61af66fc99e Initial load
duke
parents:
diff changeset
576 Simplify();
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 // Select colors by re-inserting LRGs back into the IFG in reverse order.
a61af66fc99e Initial load
duke
parents:
diff changeset
579 // Return whether or not something spills.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
580 spills = Select();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
582
a61af66fc99e Initial load
duke
parents:
diff changeset
583 // Count number of Simplify-Select trips per coloring success.
a61af66fc99e Initial load
duke
parents:
diff changeset
584 _allocator_attempts += _trip_cnt + 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
585 _allocator_successes += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // Peephole remove copies
a61af66fc99e Initial load
duke
parents:
diff changeset
588 post_allocate_copy_removal();
a61af66fc99e Initial load
duke
parents:
diff changeset
589
566
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
590 #ifdef ASSERT
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
591 // Veify the graph after RA.
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
592 verify(&live_arena);
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
593 #endif
91263420e1c6 6791852: assert(b->_nodes[insidx] == n,"got insidx set incorrectly")
kvn
parents: 550
diff changeset
594
0
a61af66fc99e Initial load
duke
parents:
diff changeset
595 // max_reg is past the largest *register* used.
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // Convert that to a frame_slot number.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
597 if (_max_reg <= _matcher._new_SP) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
598 _framesize = C->out_preserve_stack_slots();
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
599 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
600 else {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
601 _framesize = _max_reg -_matcher._new_SP;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
602 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
603 assert((int)(_matcher._new_SP+_framesize) >= (int)_matcher._out_arg_limit, "framesize must be large enough");
a61af66fc99e Initial load
duke
parents:
diff changeset
604
a61af66fc99e Initial load
duke
parents:
diff changeset
605 // This frame must preserve the required fp alignment
419
0bf25c4807f9 6761594: framesize rounding code rounds using wrong units leading to slightly oversized frames
never
parents: 295
diff changeset
606 _framesize = round_to(_framesize, Matcher::stack_alignment_in_slots());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
607 assert( _framesize >= 0 && _framesize <= 1000000, "sanity check" );
a61af66fc99e Initial load
duke
parents:
diff changeset
608 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
609 _total_framesize += _framesize;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
610 if ((int)_framesize > _max_framesize) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
611 _max_framesize = _framesize;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
612 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
613 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
614
a61af66fc99e Initial load
duke
parents:
diff changeset
615 // Convert CISC spills
a61af66fc99e Initial load
duke
parents:
diff changeset
616 fixup_spills();
a61af66fc99e Initial load
duke
parents:
diff changeset
617
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // Log regalloc results
a61af66fc99e Initial load
duke
parents:
diff changeset
619 CompileLog* log = Compile::current()->log();
a61af66fc99e Initial load
duke
parents:
diff changeset
620 if (log != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
621 log->elem("regalloc attempts='%d' success='%d'", _trip_cnt, !C->failing());
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
624 if (C->failing()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
625 return;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
626 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
627
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
628 NOT_PRODUCT(C->verify_graph_edges();)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 // Move important info out of the live_arena to longer lasting storage.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
631 alloc_node_regs(_lrg_map.size());
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
632 for (uint i=0; i < _lrg_map.size(); i++) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
633 if (_lrg_map.live_range_id(i)) { // Live range associated with Node?
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
634 LRG &lrg = lrgs(_lrg_map.live_range_id(i));
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
635 if (!lrg.alive()) {
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
636 set_bad(i);
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
637 } else if (lrg.num_regs() == 1) {
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
638 set1(i, lrg.reg());
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
639 } else { // Must be a register-set
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
640 if (!lrg._fat_proj) { // Must be aligned adjacent register set
0
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // Live ranges record the highest register in their mask.
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // We want the low register for the AD file writer's convenience.
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
643 OptoReg::Name hi = lrg.reg(); // Get hi register
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
644 OptoReg::Name lo = OptoReg::add(hi, (1-lrg.num_regs())); // Find lo
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
645 // We have to use pair [lo,lo+1] even for wide vectors because
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
646 // the rest of code generation works only with pairs. It is safe
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
647 // since for registers encoding only 'lo' is used.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
648 // Second reg from pair is used in ScheduleAndBundle on SPARC where
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
649 // vector max size is 8 which corresponds to registers pair.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
650 // It is also used in BuildOopMaps but oop operations are not
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
651 // vectorized.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
652 set2(i, lo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
653 } else { // Misaligned; extract 2 bits
a61af66fc99e Initial load
duke
parents:
diff changeset
654 OptoReg::Name hi = lrg.reg(); // Get hi register
a61af66fc99e Initial load
duke
parents:
diff changeset
655 lrg.Remove(hi); // Yank from mask
a61af66fc99e Initial load
duke
parents:
diff changeset
656 int lo = lrg.mask().find_first_elem(); // Find lo
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
657 set_pair(i, hi, lo);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
659 }
a61af66fc99e Initial load
duke
parents:
diff changeset
660 if( lrg._is_oop ) _node_oops.set(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 } else {
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
662 set_bad(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 }
a61af66fc99e Initial load
duke
parents:
diff changeset
664 }
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // Done!
a61af66fc99e Initial load
duke
parents:
diff changeset
667 _live = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 _ifg = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
669 C->set_indexSet_arena(NULL); // ResourceArea is at end of scope
a61af66fc99e Initial load
duke
parents:
diff changeset
670 }
a61af66fc99e Initial load
duke
parents:
diff changeset
671
a61af66fc99e Initial load
duke
parents:
diff changeset
672 void PhaseChaitin::de_ssa() {
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // Set initial Names for all Nodes. Most Nodes get the virtual register
a61af66fc99e Initial load
duke
parents:
diff changeset
674 // number. A few get the ZERO live range number. These do not
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // get allocated, but instead rely on correct scheduling to ensure that
a61af66fc99e Initial load
duke
parents:
diff changeset
676 // only one instance is simultaneously live at a time.
a61af66fc99e Initial load
duke
parents:
diff changeset
677 uint lr_counter = 1;
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
678 for( uint i = 0; i < _cfg.number_of_blocks(); i++ ) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
679 Block* block = _cfg.get_block(i);
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
680 uint cnt = block->_nodes.size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // Handle all the normal Nodes in the block
a61af66fc99e Initial load
duke
parents:
diff changeset
683 for( uint j = 0; j < cnt; j++ ) {
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
684 Node *n = block->_nodes[j];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
685 // Pre-color to the zero live range, or pick virtual register
a61af66fc99e Initial load
duke
parents:
diff changeset
686 const RegMask &rm = n->out_RegMask();
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
687 _lrg_map.map(n->_idx, rm.is_NotEmpty() ? lr_counter++ : 0);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
688 }
a61af66fc99e Initial load
duke
parents:
diff changeset
689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
690 // Reset the Union-Find mapping to be identity
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
691 _lrg_map.reset_uf_map(lr_counter);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
692 }
a61af66fc99e Initial load
duke
parents:
diff changeset
693
a61af66fc99e Initial load
duke
parents:
diff changeset
694
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // Gather LiveRanGe information, including register masks. Modification of
a61af66fc99e Initial load
duke
parents:
diff changeset
696 // cisc spillable in_RegMasks should not be done before AggressiveCoalesce.
a61af66fc99e Initial load
duke
parents:
diff changeset
697 void PhaseChaitin::gather_lrg_masks( bool after_aggressive ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
698
a61af66fc99e Initial load
duke
parents:
diff changeset
699 // Nail down the frame pointer live range
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
700 uint fp_lrg = _lrg_map.live_range_id(_cfg.get_root_node()->in(1)->in(TypeFunc::FramePtr));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
701 lrgs(fp_lrg)._cost += 1e12; // Cost is infinite
a61af66fc99e Initial load
duke
parents:
diff changeset
702
a61af66fc99e Initial load
duke
parents:
diff changeset
703 // For all blocks
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
704 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
705 Block* block = _cfg.get_block(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // For all instructions
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
708 for (uint j = 1; j < block->_nodes.size(); j++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
709 Node* n = block->_nodes[j];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
710 uint input_edge_start =1; // Skip control most nodes
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
711 if (n->is_Mach()) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
712 input_edge_start = n->as_Mach()->oper_input_base();
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
713 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
714 uint idx = n->is_Copy();
a61af66fc99e Initial load
duke
parents:
diff changeset
715
a61af66fc99e Initial load
duke
parents:
diff changeset
716 // Get virtual register number, same as LiveRanGe index
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
717 uint vreg = _lrg_map.live_range_id(n);
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
718 LRG& lrg = lrgs(vreg);
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
719 if (vreg) { // No vreg means un-allocable (e.g. memory)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
720
a61af66fc99e Initial load
duke
parents:
diff changeset
721 // Collect has-copy bit
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
722 if (idx) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
723 lrg._has_copy = 1;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
724 uint clidx = _lrg_map.live_range_id(n->in(idx));
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
725 LRG& copy_src = lrgs(clidx);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
726 copy_src._has_copy = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
727 }
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 // Check for float-vs-int live range (used in register-pressure
a61af66fc99e Initial load
duke
parents:
diff changeset
730 // calculations)
a61af66fc99e Initial load
duke
parents:
diff changeset
731 const Type *n_type = n->bottom_type();
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
732 if (n_type->is_floatingpoint()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
733 lrg._is_float = 1;
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
734 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // Check for twice prior spilling. Once prior spilling might have
a61af66fc99e Initial load
duke
parents:
diff changeset
737 // spilled 'soft', 2nd prior spill should have spilled 'hard' and
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // further spilling is unlikely to make progress.
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
739 if (_spilled_once.test(n->_idx)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
740 lrg._was_spilled1 = 1;
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
741 if (_spilled_twice.test(n->_idx)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
742 lrg._was_spilled2 = 1;
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
743 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
744 }
a61af66fc99e Initial load
duke
parents:
diff changeset
745
a61af66fc99e Initial load
duke
parents:
diff changeset
746 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
747 if (trace_spilling() && lrg._def != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // collect defs for MultiDef printing
a61af66fc99e Initial load
duke
parents:
diff changeset
749 if (lrg._defs == NULL) {
1685
0e35fa8ebccd 6973963: SEGV in ciBlock::start_bci() with EA
kvn
parents: 1552
diff changeset
750 lrg._defs = new (_ifg->_arena) GrowableArray<Node*>(_ifg->_arena, 2, 0, NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
751 lrg._defs->append(lrg._def);
a61af66fc99e Initial load
duke
parents:
diff changeset
752 }
a61af66fc99e Initial load
duke
parents:
diff changeset
753 lrg._defs->append(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
754 }
a61af66fc99e Initial load
duke
parents:
diff changeset
755 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
756
a61af66fc99e Initial load
duke
parents:
diff changeset
757 // Check for a single def LRG; these can spill nicely
a61af66fc99e Initial load
duke
parents:
diff changeset
758 // via rematerialization. Flag as NULL for no def found
a61af66fc99e Initial load
duke
parents:
diff changeset
759 // yet, or 'n' for single def or -1 for many defs.
a61af66fc99e Initial load
duke
parents:
diff changeset
760 lrg._def = lrg._def ? NodeSentinel : n;
a61af66fc99e Initial load
duke
parents:
diff changeset
761
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // Limit result register mask to acceptable registers
a61af66fc99e Initial load
duke
parents:
diff changeset
763 const RegMask &rm = n->out_RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
764 lrg.AND( rm );
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766 int ireg = n->ideal_reg();
a61af66fc99e Initial load
duke
parents:
diff changeset
767 assert( !n->bottom_type()->isa_oop_ptr() || ireg == Op_RegP,
a61af66fc99e Initial load
duke
parents:
diff changeset
768 "oops must be in Op_RegP's" );
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
769
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
770 // Check for vector live range (only if vector register is used).
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
771 // On SPARC vector uses RegD which could be misaligned so it is not
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
772 // processes as vector in RA.
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
773 if (RegMask::is_vector(ireg))
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
774 lrg._is_vector = 1;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
775 assert(n_type->isa_vect() == NULL || lrg._is_vector || ireg == Op_RegD,
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
776 "vector must be in vector registers");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
777
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
778 // Check for bound register masks
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
779 const RegMask &lrgmask = lrg.mask();
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
780 if (lrgmask.is_bound(ireg)) {
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
781 lrg._is_bound = 1;
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
782 }
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
783
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
784 // Check for maximum frequency value
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
785 if (lrg._maxfreq < block->_freq) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
786 lrg._maxfreq = block->_freq;
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
787 }
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
788
0
a61af66fc99e Initial load
duke
parents:
diff changeset
789 // Check for oop-iness, or long/double
a61af66fc99e Initial load
duke
parents:
diff changeset
790 // Check for multi-kill projection
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
791 switch (ireg) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
792 case MachProjNode::fat_proj:
a61af66fc99e Initial load
duke
parents:
diff changeset
793 // Fat projections have size equal to number of registers killed
a61af66fc99e Initial load
duke
parents:
diff changeset
794 lrg.set_num_regs(rm.Size());
a61af66fc99e Initial load
duke
parents:
diff changeset
795 lrg.set_reg_pressure(lrg.num_regs());
a61af66fc99e Initial load
duke
parents:
diff changeset
796 lrg._fat_proj = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
797 lrg._is_bound = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
798 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
799 case Op_RegP:
a61af66fc99e Initial load
duke
parents:
diff changeset
800 #ifdef _LP64
a61af66fc99e Initial load
duke
parents:
diff changeset
801 lrg.set_num_regs(2); // Size is 2 stack words
a61af66fc99e Initial load
duke
parents:
diff changeset
802 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
803 lrg.set_num_regs(1); // Size is 1 stack word
a61af66fc99e Initial load
duke
parents:
diff changeset
804 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
805 // Register pressure is tracked relative to the maximum values
a61af66fc99e Initial load
duke
parents:
diff changeset
806 // suggested for that platform, INTPRESSURE and FLOATPRESSURE,
a61af66fc99e Initial load
duke
parents:
diff changeset
807 // and relative to other types which compete for the same regs.
a61af66fc99e Initial load
duke
parents:
diff changeset
808 //
a61af66fc99e Initial load
duke
parents:
diff changeset
809 // The following table contains suggested values based on the
a61af66fc99e Initial load
duke
parents:
diff changeset
810 // architectures as defined in each .ad file.
a61af66fc99e Initial load
duke
parents:
diff changeset
811 // INTPRESSURE and FLOATPRESSURE may be tuned differently for
a61af66fc99e Initial load
duke
parents:
diff changeset
812 // compile-speed or performance.
a61af66fc99e Initial load
duke
parents:
diff changeset
813 // Note1:
a61af66fc99e Initial load
duke
parents:
diff changeset
814 // SPARC and SPARCV9 reg_pressures are at 2 instead of 1
a61af66fc99e Initial load
duke
parents:
diff changeset
815 // since .ad registers are defined as high and low halves.
a61af66fc99e Initial load
duke
parents:
diff changeset
816 // These reg_pressure values remain compatible with the code
a61af66fc99e Initial load
duke
parents:
diff changeset
817 // in is_high_pressure() which relates get_invalid_mask_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
818 // Block::_reg_pressure and INTPRESSURE, FLOATPRESSURE.
a61af66fc99e Initial load
duke
parents:
diff changeset
819 // Note2:
a61af66fc99e Initial load
duke
parents:
diff changeset
820 // SPARC -d32 has 24 registers available for integral values,
a61af66fc99e Initial load
duke
parents:
diff changeset
821 // but only 10 of these are safe for 64-bit longs.
a61af66fc99e Initial load
duke
parents:
diff changeset
822 // Using set_reg_pressure(2) for both int and long means
a61af66fc99e Initial load
duke
parents:
diff changeset
823 // the allocator will believe it can fit 26 longs into
a61af66fc99e Initial load
duke
parents:
diff changeset
824 // registers. Using 2 for longs and 1 for ints means the
a61af66fc99e Initial load
duke
parents:
diff changeset
825 // allocator will attempt to put 52 integers into registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
826 // The settings below limit this problem to methods with
a61af66fc99e Initial load
duke
parents:
diff changeset
827 // many long values which are being run on 32-bit SPARC.
a61af66fc99e Initial load
duke
parents:
diff changeset
828 //
a61af66fc99e Initial load
duke
parents:
diff changeset
829 // ------------------- reg_pressure --------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
830 // Each entry is reg_pressure_per_value,number_of_regs
a61af66fc99e Initial load
duke
parents:
diff changeset
831 // RegL RegI RegFlags RegF RegD INTPRESSURE FLOATPRESSURE
a61af66fc99e Initial load
duke
parents:
diff changeset
832 // IA32 2 1 1 1 1 6 6
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // IA64 1 1 1 1 1 50 41
a61af66fc99e Initial load
duke
parents:
diff changeset
834 // SPARC 2 2 2 2 2 48 (24) 52 (26)
a61af66fc99e Initial load
duke
parents:
diff changeset
835 // SPARCV9 2 2 2 2 2 48 (24) 52 (26)
a61af66fc99e Initial load
duke
parents:
diff changeset
836 // AMD64 1 1 1 1 1 14 15
a61af66fc99e Initial load
duke
parents:
diff changeset
837 // -----------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
838 #if defined(SPARC)
a61af66fc99e Initial load
duke
parents:
diff changeset
839 lrg.set_reg_pressure(2); // use for v9 as well
a61af66fc99e Initial load
duke
parents:
diff changeset
840 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
841 lrg.set_reg_pressure(1); // normally one value per register
a61af66fc99e Initial load
duke
parents:
diff changeset
842 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
843 if( n_type->isa_oop_ptr() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
844 lrg._is_oop = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
845 }
a61af66fc99e Initial load
duke
parents:
diff changeset
846 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
847 case Op_RegL: // Check for long or double
a61af66fc99e Initial load
duke
parents:
diff changeset
848 case Op_RegD:
a61af66fc99e Initial load
duke
parents:
diff changeset
849 lrg.set_num_regs(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
850 // Define platform specific register pressure
2401
7e88bdae86ec 7029017: Additional architecture support for c2 compiler
roland
parents: 2016
diff changeset
851 #if defined(SPARC) || defined(ARM)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
852 lrg.set_reg_pressure(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
853 #elif defined(IA32)
a61af66fc99e Initial load
duke
parents:
diff changeset
854 if( ireg == Op_RegL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
855 lrg.set_reg_pressure(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
856 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
857 lrg.set_reg_pressure(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
858 }
a61af66fc99e Initial load
duke
parents:
diff changeset
859 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
860 lrg.set_reg_pressure(1); // normally one value per register
a61af66fc99e Initial load
duke
parents:
diff changeset
861 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
862 // If this def of a double forces a mis-aligned double,
a61af66fc99e Initial load
duke
parents:
diff changeset
863 // flag as '_fat_proj' - really flag as allowing misalignment
a61af66fc99e Initial load
duke
parents:
diff changeset
864 // AND changes how we count interferences. A mis-aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // double can interfere with TWO aligned pairs, or effectively
a61af66fc99e Initial load
duke
parents:
diff changeset
866 // FOUR registers!
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
867 if (rm.is_misaligned_pair()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
868 lrg._fat_proj = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
869 lrg._is_bound = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
870 }
a61af66fc99e Initial load
duke
parents:
diff changeset
871 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
872 case Op_RegF:
a61af66fc99e Initial load
duke
parents:
diff changeset
873 case Op_RegI:
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
874 case Op_RegN:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
875 case Op_RegFlags:
a61af66fc99e Initial load
duke
parents:
diff changeset
876 case 0: // not an ideal register
a61af66fc99e Initial load
duke
parents:
diff changeset
877 lrg.set_num_regs(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
878 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
879 lrg.set_reg_pressure(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
880 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
881 lrg.set_reg_pressure(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
882 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
883 break;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
884 case Op_VecS:
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
885 assert(Matcher::vector_size_supported(T_BYTE,4), "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
886 assert(RegMask::num_registers(Op_VecS) == RegMask::SlotsPerVecS, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
887 lrg.set_num_regs(RegMask::SlotsPerVecS);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
888 lrg.set_reg_pressure(1);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
889 break;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
890 case Op_VecD:
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
891 assert(Matcher::vector_size_supported(T_FLOAT,RegMask::SlotsPerVecD), "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
892 assert(RegMask::num_registers(Op_VecD) == RegMask::SlotsPerVecD, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
893 assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecD), "vector should be aligned");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
894 lrg.set_num_regs(RegMask::SlotsPerVecD);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
895 lrg.set_reg_pressure(1);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
896 break;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
897 case Op_VecX:
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
898 assert(Matcher::vector_size_supported(T_FLOAT,RegMask::SlotsPerVecX), "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
899 assert(RegMask::num_registers(Op_VecX) == RegMask::SlotsPerVecX, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
900 assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecX), "vector should be aligned");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
901 lrg.set_num_regs(RegMask::SlotsPerVecX);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
902 lrg.set_reg_pressure(1);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
903 break;
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
904 case Op_VecY:
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
905 assert(Matcher::vector_size_supported(T_FLOAT,RegMask::SlotsPerVecY), "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
906 assert(RegMask::num_registers(Op_VecY) == RegMask::SlotsPerVecY, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
907 assert(lrgmask.is_aligned_sets(RegMask::SlotsPerVecY), "vector should be aligned");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
908 lrg.set_num_regs(RegMask::SlotsPerVecY);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
909 lrg.set_reg_pressure(1);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
910 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
911 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
912 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
913 }
a61af66fc99e Initial load
duke
parents:
diff changeset
914 }
a61af66fc99e Initial load
duke
parents:
diff changeset
915
a61af66fc99e Initial load
duke
parents:
diff changeset
916 // Now do the same for inputs
a61af66fc99e Initial load
duke
parents:
diff changeset
917 uint cnt = n->req();
a61af66fc99e Initial load
duke
parents:
diff changeset
918 // Setup for CISC SPILLING
a61af66fc99e Initial load
duke
parents:
diff changeset
919 uint inp = (uint)AdlcVMDeps::Not_cisc_spillable;
a61af66fc99e Initial load
duke
parents:
diff changeset
920 if( UseCISCSpill && after_aggressive ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
921 inp = n->cisc_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
922 if( inp != (uint)AdlcVMDeps::Not_cisc_spillable )
a61af66fc99e Initial load
duke
parents:
diff changeset
923 // Convert operand number to edge index number
a61af66fc99e Initial load
duke
parents:
diff changeset
924 inp = n->as_Mach()->operand_index(inp);
a61af66fc99e Initial load
duke
parents:
diff changeset
925 }
a61af66fc99e Initial load
duke
parents:
diff changeset
926 // Prepare register mask for each input
a61af66fc99e Initial load
duke
parents:
diff changeset
927 for( uint k = input_edge_start; k < cnt; k++ ) {
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
928 uint vreg = _lrg_map.live_range_id(n->in(k));
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
929 if (!vreg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
930 continue;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
931 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
932
a61af66fc99e Initial load
duke
parents:
diff changeset
933 // If this instruction is CISC Spillable, add the flags
a61af66fc99e Initial load
duke
parents:
diff changeset
934 // bit to its appropriate input
a61af66fc99e Initial load
duke
parents:
diff changeset
935 if( UseCISCSpill && after_aggressive && inp == k ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
936 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
937 if( TraceCISCSpill ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
938 tty->print(" use_cisc_RegMask: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
939 n->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
941 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
942 n->as_Mach()->use_cisc_RegMask();
a61af66fc99e Initial load
duke
parents:
diff changeset
943 }
a61af66fc99e Initial load
duke
parents:
diff changeset
944
a61af66fc99e Initial load
duke
parents:
diff changeset
945 LRG &lrg = lrgs(vreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
946 // // Testing for floating point code shape
a61af66fc99e Initial load
duke
parents:
diff changeset
947 // Node *test = n->in(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
948 // if( test->is_Mach() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
949 // MachNode *m = test->as_Mach();
a61af66fc99e Initial load
duke
parents:
diff changeset
950 // int op = m->ideal_Opcode();
a61af66fc99e Initial load
duke
parents:
diff changeset
951 // if (n->is_Call() && (op == Op_AddF || op == Op_MulF) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
952 // int zzz = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
953 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
954 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
955
a61af66fc99e Initial load
duke
parents:
diff changeset
956 // Limit result register mask to acceptable registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
957 // Do not limit registers from uncommon uses before
a61af66fc99e Initial load
duke
parents:
diff changeset
958 // AggressiveCoalesce. This effectively pre-virtual-splits
a61af66fc99e Initial load
duke
parents:
diff changeset
959 // around uncommon uses of common defs.
a61af66fc99e Initial load
duke
parents:
diff changeset
960 const RegMask &rm = n->in_RegMask(k);
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
961 if (!after_aggressive && _cfg.get_block_for_node(n->in(k))->_freq > 1000 * block->_freq) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // Since we are BEFORE aggressive coalesce, leave the register
a61af66fc99e Initial load
duke
parents:
diff changeset
963 // mask untrimmed by the call. This encourages more coalescing.
a61af66fc99e Initial load
duke
parents:
diff changeset
964 // Later, AFTER aggressive, this live range will have to spill
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // but the spiller handles slow-path calls very nicely.
a61af66fc99e Initial load
duke
parents:
diff changeset
966 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
967 lrg.AND( rm );
a61af66fc99e Initial load
duke
parents:
diff changeset
968 }
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
969
0
a61af66fc99e Initial load
duke
parents:
diff changeset
970 // Check for bound register masks
a61af66fc99e Initial load
duke
parents:
diff changeset
971 const RegMask &lrgmask = lrg.mask();
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
972 int kreg = n->in(k)->ideal_reg();
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
973 bool is_vect = RegMask::is_vector(kreg);
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
974 assert(n->in(k)->bottom_type()->isa_vect() == NULL ||
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
975 is_vect || kreg == Op_RegD,
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
976 "vector must be in vector registers");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
977 if (lrgmask.is_bound(kreg))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
978 lrg._is_bound = 1;
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
979
0
a61af66fc99e Initial load
duke
parents:
diff changeset
980 // If this use of a double forces a mis-aligned double,
a61af66fc99e Initial load
duke
parents:
diff changeset
981 // flag as '_fat_proj' - really flag as allowing misalignment
a61af66fc99e Initial load
duke
parents:
diff changeset
982 // AND changes how we count interferences. A mis-aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
983 // double can interfere with TWO aligned pairs, or effectively
a61af66fc99e Initial load
duke
parents:
diff changeset
984 // FOUR registers!
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
985 #ifdef ASSERT
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
986 if (is_vect) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
987 assert(lrgmask.is_aligned_sets(lrg.num_regs()), "vector should be aligned");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
988 assert(!lrg._fat_proj, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
989 assert(RegMask::num_registers(kreg) == lrg.num_regs(), "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
990 }
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
991 #endif
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
992 if (!is_vect && lrg.num_regs() == 2 && !lrg._fat_proj && rm.is_misaligned_pair()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
993 lrg._fat_proj = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
994 lrg._is_bound = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
995 }
a61af66fc99e Initial load
duke
parents:
diff changeset
996 // if the LRG is an unaligned pair, we will have to spill
a61af66fc99e Initial load
duke
parents:
diff changeset
997 // so clear the LRG's register mask if it is not already spilled
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
998 if (!is_vect && !n->is_SpillCopy() &&
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
999 (lrg._def == NULL || lrg.is_multidef() || !lrg._def->is_SpillCopy()) &&
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1000 lrgmask.is_misaligned_pair()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 lrg.Clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1003
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 // Check for maximum frequency value
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1005 if (lrg._maxfreq < block->_freq) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1006 lrg._maxfreq = block->_freq;
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1007 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1008
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 } // End for all allocated inputs
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 } // end for all instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 } // end for all blocks
a61af66fc99e Initial load
duke
parents:
diff changeset
1012
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 // Final per-liverange setup
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1014 for (uint i2 = 0; i2 < _lrg_map.max_lrg_id(); i2++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 LRG &lrg = lrgs(i2);
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1016 assert(!lrg._is_vector || !lrg._fat_proj, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1017 if (lrg.num_regs() > 1 && !lrg._fat_proj) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1018 lrg.clear_to_sets();
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1019 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 lrg.compute_set_mask_size();
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1021 if (lrg.not_free()) { // Handle case where we lose from the start
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 lrg.set_reg(OptoReg::Name(LRG::SPILL_REG));
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 lrg._direct_conflict = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 lrg.set_degree(0); // no neighbors in IFG yet
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1028
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 // Set the was-lo-degree bit. Conservative coalescing should not change the
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 // colorability of the graph. If any live range was of low-degree before
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 // coalescing, it should Simplify. This call sets the was-lo-degree bit.
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 // The bit is checked in Simplify.
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 void PhaseChaitin::set_was_low() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 #ifdef ASSERT
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1035 for (uint i = 1; i < _lrg_map.max_lrg_id(); i++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 int size = lrgs(i).num_regs();
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 uint old_was_lo = lrgs(i)._was_lo;
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 lrgs(i)._was_lo = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 if( lrgs(i).lo_degree() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 lrgs(i)._was_lo = 1; // Trivially of low degree
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 } else { // Else check the Brigg's assertion
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 // Brigg's observation is that the lo-degree neighbors of a
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 // hi-degree live range will not interfere with the color choices
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 // of said hi-degree live range. The Simplify reverse-stack-coloring
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 // order takes care of the details. Hence you do not have to count
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 // low-degree neighbors when determining if this guy colors.
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 int briggs_degree = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 IndexSet *s = _ifg->neighbors(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 IndexSetIterator elements(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 uint lidx;
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 while((lidx = elements.next()) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 if( !lrgs(lidx).lo_degree() )
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 briggs_degree += MAX2(size,lrgs(lidx).num_regs());
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 if( briggs_degree < lrgs(i).degrees_of_freedom() )
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 lrgs(i)._was_lo = 1; // Low degree via the briggs assertion
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 assert(old_was_lo <= lrgs(i)._was_lo, "_was_lo may not decrease");
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1062
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 #define REGISTER_CONSTRAINED 16
a61af66fc99e Initial load
duke
parents:
diff changeset
1064
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 // Compute cost/area ratio, in case we spill. Build the lo-degree list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 void PhaseChaitin::cache_lrg_info( ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1067
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1068 for (uint i = 1; i < _lrg_map.max_lrg_id(); i++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 LRG &lrg = lrgs(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1070
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 // Check for being of low degree: means we can be trivially colored.
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 // Low degree, dead or must-spill guys just get to simplify right away
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 if( lrg.lo_degree() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 !lrg.alive() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 lrg._must_spill ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 // Split low degree list into those guys that must get a
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // register and those that can go to register or stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 // The idea is LRGs that can go register or stack color first when
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 // they have a good chance of getting a register. The register-only
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 // lo-degree live ranges always get a register.
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 OptoReg::Name hi_reg = lrg.mask().find_last_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 if( OptoReg::is_stack(hi_reg)) { // Can go to stack?
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 lrg._next = _lo_stk_degree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 _lo_stk_degree = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 lrg._next = _lo_degree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 _lo_degree = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 } else { // Else high degree
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 lrgs(_hi_degree)._prev = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 lrg._next = _hi_degree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 lrg._prev = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 _hi_degree = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1097
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 // Simplify the IFG by removing LRGs of low degree that have NO copies
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 void PhaseChaitin::Pre_Simplify( ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1100
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 // Warm up the lo-degree no-copy list
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 int lo_no_copy = 0;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1103 for (uint i = 1; i < _lrg_map.max_lrg_id(); i++) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1104 if ((lrgs(i).lo_degree() && !lrgs(i)._has_copy) ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 !lrgs(i).alive() ||
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1106 lrgs(i)._must_spill) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 lrgs(i)._next = lo_no_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 lo_no_copy = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1111
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 while( lo_no_copy ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 uint lo = lo_no_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 lo_no_copy = lrgs(lo)._next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 int size = lrgs(lo).num_regs();
a61af66fc99e Initial load
duke
parents:
diff changeset
1116
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 // Put the simplified guy on the simplified list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 lrgs(lo)._next = _simplified;
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 _simplified = lo;
a61af66fc99e Initial load
duke
parents:
diff changeset
1120
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 // Yank this guy from the IFG.
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 IndexSet *adj = _ifg->remove_node( lo );
a61af66fc99e Initial load
duke
parents:
diff changeset
1123
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 // If any neighbors' degrees fall below their number of
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 // allowed registers, then put that neighbor on the low degree
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 // list. Note that 'degree' can only fall and 'numregs' is
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 // unchanged by this action. Thus the two are equal at most once,
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 // so LRGs hit the lo-degree worklists at most once.
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 IndexSetIterator elements(adj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 uint neighbor;
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 while ((neighbor = elements.next()) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 LRG *n = &lrgs(neighbor);
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 assert( _ifg->effective_degree(neighbor) == n->degree(), "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1134
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 // Check for just becoming of-low-degree
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 if( n->just_lo_degree() && !n->_has_copy ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 assert(!(*_ifg->_yanked)[neighbor],"Cannot move to lo degree twice");
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 // Put on lo-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 n->_next = lo_no_copy;
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 lo_no_copy = neighbor;
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 } // End of while lo-degree no_copy worklist not empty
a61af66fc99e Initial load
duke
parents:
diff changeset
1144
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 // No more lo-degree no-copy live ranges to simplify
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1147
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 // Simplify the IFG by removing LRGs of low degree.
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 void PhaseChaitin::Simplify( ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 while( 1 ) { // Repeat till simplified it all
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 // May want to explore simplifying lo_degree before _lo_stk_degree.
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 // This might result in more spills coloring into registers during
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // Select().
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 while( _lo_degree || _lo_stk_degree ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 // If possible, pull from lo_stk first
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 uint lo;
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 if( _lo_degree ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 lo = _lo_degree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 _lo_degree = lrgs(lo)._next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 lo = _lo_stk_degree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 _lo_stk_degree = lrgs(lo)._next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1165
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 // Put the simplified guy on the simplified list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 lrgs(lo)._next = _simplified;
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 _simplified = lo;
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 // If this guy is "at risk" then mark his current neighbors
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 if( lrgs(lo)._at_risk ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 IndexSetIterator elements(_ifg->neighbors(lo));
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 uint datum;
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 while ((datum = elements.next()) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 lrgs(datum)._risk_bias = lo;
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1177
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 // Yank this guy from the IFG.
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 IndexSet *adj = _ifg->remove_node( lo );
a61af66fc99e Initial load
duke
parents:
diff changeset
1180
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 // If any neighbors' degrees fall below their number of
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 // allowed registers, then put that neighbor on the low degree
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 // list. Note that 'degree' can only fall and 'numregs' is
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 // unchanged by this action. Thus the two are equal at most once,
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 // so LRGs hit the lo-degree worklist at most once.
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 IndexSetIterator elements(adj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 uint neighbor;
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 while ((neighbor = elements.next()) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 LRG *n = &lrgs(neighbor);
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 #ifdef ASSERT
550
96964ebdb154 6782232: assert("CreateEx must be first instruction in block" )
kvn
parents: 419
diff changeset
1191 if( VerifyOpto || VerifyRegisterAllocator ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 assert( _ifg->effective_degree(neighbor) == n->degree(), "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1195
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 // Check for just becoming of-low-degree just counting registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 // _must_spill live ranges are already on the low degree list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 if( n->just_lo_degree() && !n->_must_spill ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 assert(!(*_ifg->_yanked)[neighbor],"Cannot move to lo degree twice");
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 // Pull from hi-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 uint prev = n->_prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 uint next = n->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 if( prev ) lrgs(prev)._next = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 else _hi_degree = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 lrgs(next)._prev = prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 n->_next = _lo_degree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 _lo_degree = neighbor;
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 } // End of while lo-degree/lo_stk_degree worklist not empty
a61af66fc99e Initial load
duke
parents:
diff changeset
1211
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 // Check for got everything: is hi-degree list empty?
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 if( !_hi_degree ) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1214
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 // Time to pick a potential spill guy
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 uint lo_score = _hi_degree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 double score = lrgs(lo_score).score();
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 double area = lrgs(lo_score)._area;
1008
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1219 double cost = lrgs(lo_score)._cost;
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1220 bool bound = lrgs(lo_score)._is_bound;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1221
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 // Find cheapest guy
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 debug_only( int lo_no_simplify=0; );
1012
5f29a958a545 6889656: assert(lo_lrg->lo_degree() || !lo_no_simplify,"Live range was lo-degree before coalesce
kvn
parents: 1008
diff changeset
1224 for( uint i = _hi_degree; i; i = lrgs(i)._next ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 assert( !(*_ifg->_yanked)[i], "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 // It's just vaguely possible to move hi-degree to lo-degree without
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 // going through a just-lo-degree stage: If you remove a double from
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 // a float live range it's degree will drop by 2 and you can skip the
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 // just-lo-degree stage. It's very rare (shows up after 5000+ methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 // in -Xcomp of Java2Demo). So just choose this guy to simplify next.
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 if( lrgs(i).lo_degree() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 lo_score = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 debug_only( if( lrgs(i)._was_lo ) lo_no_simplify=i; );
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 double iscore = lrgs(i).score();
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 double iarea = lrgs(i)._area;
1008
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1238 double icost = lrgs(i)._cost;
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1239 bool ibound = lrgs(i)._is_bound;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 // Compare cost/area of i vs cost/area of lo_score. Smaller cost/area
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 // wins. Ties happen because all live ranges in question have spilled
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 // a few times before and the spill-score adds a huge number which
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 // washes out the low order bits. We are choosing the lesser of 2
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 // evils; in this case pick largest area to spill.
1008
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1246 // Ties also happen when live ranges are defined and used only inside
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1247 // one block. In which case their area is 0 and score set to max.
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1248 // In such case choose bound live range over unbound to free registers
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1249 // or with smaller cost to spill.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 if( iscore < score ||
1008
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1251 (iscore == score && iarea > area && lrgs(lo_score)._was_spilled2) ||
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1252 (iscore == score && iarea == area &&
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1253 ( (ibound && !bound) || ibound == bound && (icost < cost) )) ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 lo_score = i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 score = iscore;
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 area = iarea;
1008
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1257 cost = icost;
e90521d61f9a 6875959: CTW fails hotspot/src/share/vm/opto/reg_split.cpp:1087
kvn
parents: 729
diff changeset
1258 bound = ibound;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 LRG *lo_lrg = &lrgs(lo_score);
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 // The live range we choose for spilling is either hi-degree, or very
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 // rarely it can be low-degree. If we choose a hi-degree live range
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 // there better not be any lo-degree choices.
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 assert( lo_lrg->lo_degree() || !lo_no_simplify, "Live range was lo-degree before coalesce; should simplify" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1266
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 // Pull from hi-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 uint prev = lo_lrg->_prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 uint next = lo_lrg->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 if( prev ) lrgs(prev)._next = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 else _hi_degree = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 lrgs(next)._prev = prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 // Jam him on the lo-degree list, despite his high degree.
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 // Maybe he'll get a color, and maybe he'll spill.
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 // Only Select() will know.
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 lrgs(lo_score)._at_risk = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 _lo_degree = lo_score;
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 lo_lrg->_next = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1279
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 } // End of while not simplified everything
a61af66fc99e Initial load
duke
parents:
diff changeset
1281
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1283
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1284 // Is 'reg' register legal for 'lrg'?
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1285 static bool is_legal_reg(LRG &lrg, OptoReg::Name reg, int chunk) {
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1286 if (reg >= chunk && reg < (chunk + RegMask::CHUNK_SIZE) &&
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1287 lrg.mask().Member(OptoReg::add(reg,-chunk))) {
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1288 // RA uses OptoReg which represent the highest element of a registers set.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1289 // For example, vectorX (128bit) on x86 uses [XMM,XMMb,XMMc,XMMd] set
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1290 // in which XMMd is used by RA to represent such vectors. A double value
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1291 // uses [XMM,XMMb] pairs and XMMb is used by RA for it.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1292 // The register mask uses largest bits set of overlapping register sets.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1293 // On x86 with AVX it uses 8 bits for each XMM registers set.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1294 //
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1295 // The 'lrg' already has cleared-to-set register mask (done in Select()
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1296 // before calling choose_color()). Passing mask.Member(reg) check above
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1297 // indicates that the size (num_regs) of 'reg' set is less or equal to
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1298 // 'lrg' set size.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1299 // For set size 1 any register which is member of 'lrg' mask is legal.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1300 if (lrg.num_regs()==1)
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1301 return true;
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1302 // For larger sets only an aligned register with the same set size is legal.
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1303 int mask = lrg.num_regs()-1;
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1304 if ((reg&mask) == mask)
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1305 return true;
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1306 }
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1307 return false;
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1308 }
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1309
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 // Choose a color using the biasing heuristic
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 OptoReg::Name PhaseChaitin::bias_color( LRG &lrg, int chunk ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1312
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 // Check for "at_risk" LRG's
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1314 uint risk_lrg = _lrg_map.find(lrg._risk_bias);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 if( risk_lrg != 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 // Walk the colored neighbors of the "at_risk" candidate
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 // Choose a color which is both legal and already taken by a neighbor
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 // of the "at_risk" candidate in order to improve the chances of the
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 // "at_risk" candidate of coloring
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 IndexSetIterator elements(_ifg->neighbors(risk_lrg));
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 uint datum;
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 while ((datum = elements.next()) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 OptoReg::Name reg = lrgs(datum).reg();
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 // If this LRG's register is legal for us, choose it
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1325 if (is_legal_reg(lrg, reg, chunk))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 return reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1329
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1330 uint copy_lrg = _lrg_map.find(lrg._copy_bias);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 if( copy_lrg != 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 // If he has a color,
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 if( !(*(_ifg->_yanked))[copy_lrg] ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 OptoReg::Name reg = lrgs(copy_lrg).reg();
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 // And it is legal for you,
6620
f7cd53cedd78 7192965: assert(is_aligned_sets(size)) failed: mask is not aligned, adjacent sets
kvn
parents: 6268
diff changeset
1336 if (is_legal_reg(lrg, reg, chunk))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 return reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 } else if( chunk == 0 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 // Choose a color which is legal for him
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 RegMask tempmask = lrg.mask();
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 tempmask.AND(lrgs(copy_lrg).mask());
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1342 tempmask.clear_to_sets(lrg.num_regs());
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1343 OptoReg::Name reg = tempmask.find_first_set(lrg.num_regs());
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1344 if (OptoReg::is_valid(reg))
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 return reg;
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1348
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 // If no bias info exists, just go with the register selection ordering
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1350 if (lrg._is_vector || lrg.num_regs() == 2) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1351 // Find an aligned set
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1352 return OptoReg::add(lrg.mask().find_first_set(lrg.num_regs()),chunk);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1354
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 // CNC - Fun hack. Alternate 1st and 2nd selection. Enables post-allocate
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 // copy removal to remove many more copies, by preventing a just-assigned
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 // register from being repeatedly assigned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 OptoReg::Name reg = lrg.mask().find_first_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 if( (++_alternate & 1) && OptoReg::is_valid(reg) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 // This 'Remove; find; Insert' idiom is an expensive way to find the
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 // SECOND element in the mask.
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 lrg.Remove(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 OptoReg::Name reg2 = lrg.mask().find_first_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 lrg.Insert(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 if( OptoReg::is_reg(reg2))
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 reg = reg2;
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 return OptoReg::add( reg, chunk );
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1370
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 // Choose a color in the current chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 OptoReg::Name PhaseChaitin::choose_color( LRG &lrg, int chunk ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 assert( C->in_preserve_stack_slots() == 0 || chunk != 0 || lrg._is_bound || lrg.mask().is_bound1() || !lrg.mask().Member(OptoReg::Name(_matcher._old_SP-1)), "must not allocate stack0 (inside preserve area)");
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 assert(C->out_preserve_stack_slots() == 0 || chunk != 0 || lrg._is_bound || lrg.mask().is_bound1() || !lrg.mask().Member(OptoReg::Name(_matcher._old_SP+0)), "must not allocate stack0 (inside preserve area)");
a61af66fc99e Initial load
duke
parents:
diff changeset
1375
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 if( lrg.num_regs() == 1 || // Common Case
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 !lrg._fat_proj ) // Aligned+adjacent pairs ok
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 // Use a heuristic to "bias" the color choice
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 return bias_color(lrg, chunk);
a61af66fc99e Initial load
duke
parents:
diff changeset
1380
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1381 assert(!lrg._is_vector, "should be not vector here" );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 assert( lrg.num_regs() >= 2, "dead live ranges do not color" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1383
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 // Fat-proj case or misaligned double argument.
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 assert(lrg.compute_mask_size() == lrg.num_regs() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 lrg.num_regs() == 2,"fat projs exactly color" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 assert( !chunk, "always color in 1st chunk" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 // Return the highest element in the set.
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 return lrg.mask().find_last_elem();
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1391
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 // Select colors by re-inserting LRGs back into the IFG. LRGs are re-inserted
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 // in reverse order of removal. As long as nothing of hi-degree was yanked,
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 // everything going back is guaranteed a color. Select that color. If some
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 // hi-degree LRG cannot get a color then we record that we must spill.
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 uint PhaseChaitin::Select( ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 uint spill_reg = LRG::SPILL_REG;
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 _max_reg = OptoReg::Name(0); // Past max register used
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 while( _simplified ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 // Pull next LRG from the simplified list - in reverse order of removal
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 uint lidx = _simplified;
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 LRG *lrg = &lrgs(lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 _simplified = lrg->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1404
a61af66fc99e Initial load
duke
parents:
diff changeset
1405
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 if (trace_spilling()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 tty->print_cr("L%d selecting degree %d degrees_of_freedom %d", lidx, lrg->degree(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 lrg->degrees_of_freedom());
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 lrg->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1414
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 // Re-insert into the IFG
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 _ifg->re_insert(lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 if( !lrg->alive() ) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 // capture allstackedness flag before mask is hacked
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 const int is_allstack = lrg->mask().is_AllStack();
a61af66fc99e Initial load
duke
parents:
diff changeset
1420
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 // Yeah, yeah, yeah, I know, I know. I can refactor this
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 // to avoid the GOTO, although the refactored code will not
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 // be much clearer. We arrive here IFF we have a stack-based
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 // live range that cannot color in the current chunk, and it
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 // has to move into the next free stack chunk.
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 int chunk = 0; // Current chunk is first chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 retry_next_chunk:
a61af66fc99e Initial load
duke
parents:
diff changeset
1428
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 // Remove neighbor colors
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 IndexSet *s = _ifg->neighbors(lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1431
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 debug_only(RegMask orig_mask = lrg->mask();)
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 IndexSetIterator elements(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 uint neighbor;
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 while ((neighbor = elements.next()) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 // Note that neighbor might be a spill_reg. In this case, exclusion
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 // of its color will be a no-op, since the spill_reg chunk is in outer
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 // space. Also, if neighbor is in a different chunk, this exclusion
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 // will be a no-op. (Later on, if lrg runs out of possible colors in
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 // its chunk, a new chunk of color may be tried, in which case
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 // examination of neighbors is started again, at retry_next_chunk.)
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 LRG &nlrg = lrgs(neighbor);
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 OptoReg::Name nreg = nlrg.reg();
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 // Only subtract masks in the same chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 if( nreg >= chunk && nreg < chunk + RegMask::CHUNK_SIZE ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 uint size = lrg->mask().Size();
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 RegMask rm = lrg->mask();
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 lrg->SUBTRACT(nlrg.mask());
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 if (trace_spilling() && lrg->mask().Size() != size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 tty->print("L%d ", lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 rm.dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 tty->print(" intersected L%d ", neighbor);
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 nlrg.mask().dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 tty->print(" removed ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 rm.SUBTRACT(lrg->mask());
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 rm.dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 tty->print(" leaving ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 lrg->mask().dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 //assert(is_allstack == lrg->mask().is_AllStack(), "nbrs must not change AllStackedness");
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 // Aligned pairs need aligned masks
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1470 assert(!lrg->_is_vector || !lrg->_fat_proj, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1471 if (lrg->num_regs() > 1 && !lrg->_fat_proj) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1472 lrg->clear_to_sets();
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1473 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1474
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 // Check if a color is available and if so pick the color
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 OptoReg::Name reg = choose_color( *lrg, chunk );
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 #ifdef SPARC
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 debug_only(lrg->compute_set_mask_size());
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1479 assert(lrg->num_regs() < 2 || lrg->is_bound() || is_even(reg-1), "allocate all doubles aligned");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1481
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 //---------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 // If we fail to color and the AllStack flag is set, trigger
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 // a chunk-rollover event
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 if(!OptoReg::is_valid(OptoReg::add(reg,-chunk)) && is_allstack) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 // Bump register mask up to next stack chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 chunk += RegMask::CHUNK_SIZE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 lrg->Set_All();
a61af66fc99e Initial load
duke
parents:
diff changeset
1489
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 goto retry_next_chunk;
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1492
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 //---------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 // Did we get a color?
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 else if( OptoReg::is_valid(reg)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 RegMask avail_rm = lrg->mask();
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1499
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 // Record selected register
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 lrg->set_reg(reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1502
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 if( reg >= _max_reg ) // Compute max register limit
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 _max_reg = OptoReg::add(reg,1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 // Fold reg back into normal space
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 reg = OptoReg::add(reg,-chunk);
a61af66fc99e Initial load
duke
parents:
diff changeset
1507
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 // If the live range is not bound, then we actually had some choices
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 // to make. In this case, the mask has more bits in it than the colors
605
98cb887364d3 6810672: Comment typos
twisti
parents: 566
diff changeset
1510 // chosen. Restrict the mask to just what was picked.
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1511 int n_regs = lrg->num_regs();
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1512 assert(!lrg->_is_vector || !lrg->_fat_proj, "sanity");
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1513 if (n_regs == 1 || !lrg->_fat_proj) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1514 assert(!lrg->_is_vector || n_regs <= RegMask::SlotsPerVecY, "sanity");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 lrg->Clear(); // Clear the mask
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 lrg->Insert(reg); // Set regmask to match selected reg
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1517 // For vectors and pairs, also insert the low bit of the pair
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1518 for (int i = 1; i < n_regs; i++)
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1519 lrg->Insert(OptoReg::add(reg,-i));
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
1520 lrg->set_mask_size(n_regs);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 } else { // Else fatproj
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 // mask must be equal to fatproj bits, by definition
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 if (trace_spilling()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 tty->print("L%d selected ", lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 lrg->mask().dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 tty->print(" from ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 avail_rm.dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 // Note that reg is the highest-numbered register in the newly-bound mask.
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 } // end color available case
a61af66fc99e Initial load
duke
parents:
diff changeset
1536
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 //---------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 // Live range is live and no colors available
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 assert( lrg->alive(), "" );
295
ea18057223c4 6732194: Data corruption dependent on -server/-client/-Xbatch
never
parents: 196
diff changeset
1541 assert( !lrg->_fat_proj || lrg->is_multidef() ||
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 lrg->_def->outcnt() > 0, "fat_proj cannot spill");
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 assert( !orig_mask.is_AllStack(), "All Stack does not spill" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1544
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 // Assign the special spillreg register
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 lrg->set_reg(OptoReg::Name(spill_reg++));
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 // Do not empty the regmask; leave mask_size lying around
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 // for use during Spilling
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 if( trace_spilling() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 ttyLocker ttyl;
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 tty->print("L%d spilling with neighbors: ", lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 s->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 debug_only(tty->print(" original mask: "));
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 debug_only(orig_mask.dump());
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 dump_lrg(lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 } // end spill case
a61af66fc99e Initial load
duke
parents:
diff changeset
1560
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1562
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 return spill_reg-LRG::SPILL_REG; // Return number of spills
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1565
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 // Copy 'was_spilled'-edness from the source Node to the dst Node.
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 void PhaseChaitin::copy_was_spilled( Node *src, Node *dst ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 if( _spilled_once.test(src->_idx) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 _spilled_once.set(dst->_idx);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1570 lrgs(_lrg_map.find(dst))._was_spilled1 = 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 if( _spilled_twice.test(src->_idx) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 _spilled_twice.set(dst->_idx);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1573 lrgs(_lrg_map.find(dst))._was_spilled2 = 1;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1577
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 // Set the 'spilled_once' or 'spilled_twice' flag on a node.
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 void PhaseChaitin::set_was_spilled( Node *n ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 if( _spilled_once.test_set(n->_idx) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 _spilled_twice.set(n->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1583
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 // Convert Ideal spill instructions into proper FramePtr + offset Loads and
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 // Stores. Use-def chains are NOT preserved, but Node->LRG->reg maps are.
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 void PhaseChaitin::fixup_spills() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 // This function does only cisc spill work.
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 if( !UseCISCSpill ) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1589
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 NOT_PRODUCT( Compile::TracePhase t3("fixupSpills", &_t_fixupSpills, TimeCompiler); )
a61af66fc99e Initial load
duke
parents:
diff changeset
1591
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 // Grab the Frame Pointer
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1593 Node *fp = _cfg.get_root_block()->head()->in(1)->in(TypeFunc::FramePtr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1594
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 // For all blocks
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1596 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1597 Block* block = _cfg.get_block(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1598
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 // For all instructions in block
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1600 uint last_inst = block->end_idx();
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1601 for (uint j = 1; j <= last_inst; j++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1602 Node* n = block->_nodes[j];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1603
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 // Dead instruction???
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 assert( n->outcnt() != 0 ||// Nothing dead after post alloc
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 C->top() == n || // Or the random TOP node
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 n->is_Proj(), // Or a fat-proj kill node
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 "No dead instructions after post-alloc" );
a61af66fc99e Initial load
duke
parents:
diff changeset
1609
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 int inp = n->cisc_operand();
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 if( inp != AdlcVMDeps::Not_cisc_spillable ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 // Convert operand number to edge index number
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 MachNode *mach = n->as_Mach();
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 inp = mach->operand_index(inp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 Node *src = n->in(inp); // Value to load or store
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1616 LRG &lrg_cisc = lrgs(_lrg_map.find_const(src));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 OptoReg::Name src_reg = lrg_cisc.reg();
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 // Doubles record the HIGH register of an adjacent pair.
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 src_reg = OptoReg::add(src_reg,1-lrg_cisc.num_regs());
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 if( OptoReg::is_stack(src_reg) ) { // If input is on stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 // This is a CISC Spill, get stack offset and construct new node
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 if( TraceCISCSpill ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 tty->print(" reg-instr: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 n->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 int stk_offset = reg2offset(src_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 // Bailout if we might exceed node limit when spilling this instruction
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 C->check_node_count(0, "out of nodes fixing spills");
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 if (C->failing()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 // Transform node
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 MachNode *cisc = mach->cisc_version(stk_offset, C)->as_Mach();
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 cisc->set_req(inp,fp); // Base register is frame pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 if( cisc->oper_input_base() > 1 && mach->oper_input_base() <= 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 assert( cisc->oper_input_base() == 2, "Only adding one edge");
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 cisc->ins_req(1,src); // Requires a memory edge
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 }
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1639 block->_nodes.map(j,cisc); // Insert into basic block
7196
2aff40cb4703 7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents: 6804
diff changeset
1640 n->subsume_by(cisc, C); // Correct graph
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1642 ++_used_cisc_instructions;
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 if( TraceCISCSpill ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 tty->print(" cisc-instr: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 cisc->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 if( TraceCISCSpill ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 tty->print(" using reg-instr: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 n->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 ++_unused_cisc_instructions; // input can be on stack
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1659
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 } // End of for all instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
1661
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 } // End of for all blocks
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1664
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 // Helper to stretch above; recursively discover the base Node for a
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 // given derived Node. Easy for AddP-related machine nodes, but needs
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 // to be recursive for derived Phis.
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 Node *PhaseChaitin::find_base_for_derived( Node **derived_base_map, Node *derived, uint &maxlrg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 // See if already computed; if so return it
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 if( derived_base_map[derived->_idx] )
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 return derived_base_map[derived->_idx];
a61af66fc99e Initial load
duke
parents:
diff changeset
1672
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 // See if this happens to be a base.
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 // NOTE: we use TypePtr instead of TypeOopPtr because we can have
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 // pointers derived from NULL! These are always along paths that
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 // can't happen at run-time but the optimizer cannot deduce it so
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 // we have to handle it gracefully.
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1678 assert(!derived->bottom_type()->isa_narrowoop() ||
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1679 derived->bottom_type()->make_ptr()->is_ptr()->_offset == 0, "sanity");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 const TypePtr *tj = derived->bottom_type()->isa_ptr();
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 // If its an OOP with a non-zero offset, then it is derived.
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1682 if( tj == NULL || tj->_offset == 0 ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 derived_base_map[derived->_idx] = derived;
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 return derived;
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 // Derived is NULL+offset? Base is NULL!
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 if( derived->is_Con() ) {
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1688 Node *base = _matcher.mach_null();
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1689 assert(base != NULL, "sanity");
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1690 if (base->in(0) == NULL) {
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1691 // Initialize it once and make it shared:
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1692 // set control to _root and place it into Start block
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1693 // (where top() node is placed).
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1694 base->init_req(0, _cfg.get_root_node());
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
1695 Block *startb = _cfg.get_block_for_node(C->top());
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1696 startb->_nodes.insert(startb->find_node(C->top()), base );
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
1697 _cfg.map_node_to_block(base, startb);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1698 assert(_lrg_map.live_range_id(base) == 0, "should not have LRG yet");
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1699 }
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1700 if (_lrg_map.live_range_id(base) == 0) {
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1701 new_lrg(base, maxlrg++);
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1702 }
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1703 assert(base->in(0) == _cfg.get_root_node() && _cfg.get_block_for_node(base) == _cfg.get_block_for_node(C->top()), "base NULL should be shared");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 derived_base_map[derived->_idx] = base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 return base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1707
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 // Check for AddP-related opcodes
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1709 if (!derived->is_Phi()) {
6268
6c5b7a6becc8 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 6182
diff changeset
1710 assert(derived->as_Mach()->ideal_Opcode() == Op_AddP, err_msg_res("but is: %s", derived->Name()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 Node *base = derived->in(AddPNode::Base);
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 derived_base_map[derived->_idx] = base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 return base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1715
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 // Recursively find bases for Phis.
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 // First check to see if we can avoid a base Phi here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 Node *base = find_base_for_derived( derived_base_map, derived->in(1),maxlrg);
a61af66fc99e Initial load
duke
parents:
diff changeset
1719 uint i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 for( i = 2; i < derived->req(); i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 if( base != find_base_for_derived( derived_base_map,derived->in(i),maxlrg))
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 // Went to the end without finding any different bases?
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 if( i == derived->req() ) { // No need for a base Phi here
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 derived_base_map[derived->_idx] = base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 return base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1728
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 // Now we see we need a base-Phi here to merge the bases
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1730 const Type *t = base->bottom_type();
6804
e626685e9f6c 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 6632
diff changeset
1731 base = new (C) PhiNode( derived->in(0), t );
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1732 for( i = 1; i < derived->req(); i++ ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 base->init_req(i, find_base_for_derived(derived_base_map, derived->in(i), maxlrg));
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1734 t = t->meet(base->in(i)->bottom_type());
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1735 }
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1736 base->as_Phi()->set_type(t);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1737
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 // Search the current block for an existing base-Phi
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
1739 Block *b = _cfg.get_block_for_node(derived);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 for( i = 1; i <= b->end_idx(); i++ ) {// Search for matching Phi
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 Node *phi = b->_nodes[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
1742 if( !phi->is_Phi() ) { // Found end of Phis with no match?
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 b->_nodes.insert( i, base ); // Must insert created Phi here as base
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
1744 _cfg.map_node_to_block(base, b);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 new_lrg(base,maxlrg++);
a61af66fc99e Initial load
duke
parents:
diff changeset
1746 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 // See if Phi matches.
a61af66fc99e Initial load
duke
parents:
diff changeset
1749 uint j;
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 for( j = 1; j < base->req(); j++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 if( phi->in(j) != base->in(j) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 !(phi->in(j)->is_Con() && base->in(j)->is_Con()) ) // allow different NULLs
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 if( j == base->req() ) { // All inputs match?
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 base = phi; // Then use existing 'phi' and drop 'base'
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1759
a61af66fc99e Initial load
duke
parents:
diff changeset
1760
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 // Cache info for later passes
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 derived_base_map[derived->_idx] = base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 return base;
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1765
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 // At each Safepoint, insert extra debug edges for each pair of derived value/
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 // base pointer that is live across the Safepoint for oopmap building. The
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 // edge pairs get added in after sfpt->jvmtail()->oopoff(), but are in the
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 // required edge set.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1770 bool PhaseChaitin::stretch_base_pointer_live_ranges(ResourceArea *a) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 int must_recompute_live = false;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1772 uint maxlrg = _lrg_map.max_lrg_id();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 Node **derived_base_map = (Node**)a->Amalloc(sizeof(Node*)*C->unique());
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 memset( derived_base_map, 0, sizeof(Node*)*C->unique() );
a61af66fc99e Initial load
duke
parents:
diff changeset
1775
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 // For all blocks in RPO do...
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1777 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1778 Block* block = _cfg.get_block(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 // Note use of deep-copy constructor. I cannot hammer the original
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 // liveout bits, because they are needed by the following coalesce pass.
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1781 IndexSet liveout(_live->live(block));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1782
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1783 for (uint j = block->end_idx() + 1; j > 1; j--) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1784 Node* n = block->_nodes[j - 1];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1785
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 // Pre-split compares of loop-phis. Loop-phis form a cycle we would
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 // like to see in the same register. Compare uses the loop-phi and so
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 // extends its live range BUT cannot be part of the cycle. If this
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 // extended live range overlaps with the update of the loop-phi value
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 // we need both alive at the same time -- which requires at least 1
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 // copy. But because Intel has only 2-address registers we end up with
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 // at least 2 copies, one before the loop-phi update instruction and
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 // one after. Instead we split the input to the compare just after the
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 // phi.
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 if( n->is_Mach() && n->as_Mach()->ideal_Opcode() == Op_CmpI ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 Node *phi = n->in(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 if( phi->is_Phi() && phi->as_Phi()->region()->is_Loop() ) {
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
1798 Block *phi_block = _cfg.get_block_for_node(phi);
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1799 if (_cfg.get_block_for_node(phi_block->pred(2)) == block) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 const RegMask *mask = C->matcher()->idealreg2spillmask[Op_RegI];
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 Node *spill = new (C) MachSpillCopyNode( phi, *mask, *mask );
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 insert_proj( phi_block, 1, spill, maxlrg++ );
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 n->set_req(1,spill);
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 must_recompute_live = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1808
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 // Get value being defined
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1810 uint lidx = _lrg_map.live_range_id(n);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1811 // Ignore the occasional brand-new live range
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1812 if (lidx && lidx < _lrg_map.max_lrg_id()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1813 // Remove from live-out set
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 liveout.remove(lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1815
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 // Copies do not define a new value and so do not interfere.
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 // Remove the copies source from the liveout set before interfering.
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 uint idx = n->is_Copy();
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1819 if (idx) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1820 liveout.remove(_lrg_map.live_range_id(n->in(idx)));
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1821 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1823
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 // Found a safepoint?
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 JVMState *jvms = n->jvms();
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 if( jvms ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 // Now scan for a live derived pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 IndexSetIterator elements(&liveout);
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 uint neighbor;
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 while ((neighbor = elements.next()) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 // Find reaching DEF for base and derived values
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 // This works because we are still in SSA during this call.
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 Node *derived = lrgs(neighbor)._def;
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 const TypePtr *tj = derived->bottom_type()->isa_ptr();
729
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1835 assert(!derived->bottom_type()->isa_narrowoop() ||
04fa5affa478 6709742: find_base_for_derived's use of Ideal NULL is unsafe causing crashes during register allocation
kvn
parents: 673
diff changeset
1836 derived->bottom_type()->make_ptr()->is_ptr()->_offset == 0, "sanity");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 // If its an OOP with a non-zero offset, then it is derived.
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 if( tj && tj->_offset != 0 && tj->isa_oop_ptr() ) {
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1839 Node *base = find_base_for_derived(derived_base_map, derived, maxlrg);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1840 assert(base->_idx < _lrg_map.size(), "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1841 // Add reaching DEFs of derived pointer and base pointer as a
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 // pair of inputs
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1843 n->add_req(derived);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1844 n->add_req(base);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1845
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 // See if the base pointer is already live to this point.
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 // Since I'm working on the SSA form, live-ness amounts to
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 // reaching def's. So if I find the base's live range then
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 // I know the base's def reaches here.
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1850 if ((_lrg_map.live_range_id(base) >= _lrg_map.max_lrg_id() || // (Brand new base (hence not live) or
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1851 !liveout.member(_lrg_map.live_range_id(base))) && // not live) AND
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1852 (_lrg_map.live_range_id(base) > 0) && // not a constant
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1853 _cfg.get_block_for_node(base) != block) { // base not def'd in blk)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 // Base pointer is not currently live. Since I stretched
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 // the base pointer to here and it crosses basic-block
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 // boundaries, the global live info is now incorrect.
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 // Recompute live.
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 must_recompute_live = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 } // End of if base pointer is not live to debug info
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 } // End of scan all live data for derived ptrs crossing GC point
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 } // End of if found a GC point
a61af66fc99e Initial load
duke
parents:
diff changeset
1863
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 // Make all inputs live
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1865 if (!n->is_Phi()) { // Phi function uses come from prior block
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1866 for (uint k = 1; k < n->req(); k++) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1867 uint lidx = _lrg_map.live_range_id(n->in(k));
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1868 if (lidx < _lrg_map.max_lrg_id()) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1869 liveout.insert(lidx);
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1870 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1873
a61af66fc99e Initial load
duke
parents:
diff changeset
1874 } // End of forall instructions in block
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 liveout.clear(); // Free the memory used by liveout.
a61af66fc99e Initial load
duke
parents:
diff changeset
1876
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 } // End of forall blocks
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1878 _lrg_map.set_max_lrg_id(maxlrg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1879
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 // If I created a new live range I need to recompute live
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1881 if (maxlrg != _ifg->_maxlrg) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 must_recompute_live = true;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1883 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1884
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 return must_recompute_live != 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1887
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 // Extend the node to LRG mapping
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1889
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1890 void PhaseChaitin::add_reference(const Node *node, const Node *old_node) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1891 _lrg_map.extend(node->_idx, _lrg_map.live_range_id(old_node));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1893
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 #ifndef PRODUCT
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1895 void PhaseChaitin::dump(const Node *n) const {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1896 uint r = (n->_idx < _lrg_map.size()) ? _lrg_map.find_const(n) : 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 tty->print("L%d",r);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1898 if (r && n->Opcode() != Op_Phi) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 if( _node_regs ) { // Got a post-allocation copy of allocation?
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 tty->print("[");
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 OptoReg::Name second = get_reg_second(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 if( OptoReg::is_valid(second) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 if( OptoReg::is_reg(second) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 tty->print("%s:",Matcher::regName[second]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 tty->print("%s+%d:",OptoReg::regname(OptoReg::c_frame_pointer), reg2offset_unchecked(second));
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 OptoReg::Name first = get_reg_first(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 if( OptoReg::is_reg(first) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 tty->print("%s]",Matcher::regName[first]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 tty->print("%s+%d]",OptoReg::regname(OptoReg::c_frame_pointer), reg2offset_unchecked(first));
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 } else
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 n->out_RegMask().dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 tty->print("/N%d\t",n->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 tty->print("%s === ", n->Name());
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 uint k;
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1919 for (k = 0; k < n->req(); k++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 Node *m = n->in(k);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1921 if (!m) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1922 tty->print("_ ");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1923 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 else {
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1925 uint r = (m->_idx < _lrg_map.size()) ? _lrg_map.find_const(m) : 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 tty->print("L%d",r);
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 // Data MultiNode's can have projections with no real registers.
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 // Don't die while dumping them.
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 int op = n->Opcode();
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 if( r && op != Op_Phi && op != Op_Proj && op != Op_SCMemProj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 if( _node_regs ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 tty->print("[");
a61af66fc99e Initial load
duke
parents:
diff changeset
1933 OptoReg::Name second = get_reg_second(n->in(k));
a61af66fc99e Initial load
duke
parents:
diff changeset
1934 if( OptoReg::is_valid(second) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 if( OptoReg::is_reg(second) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 tty->print("%s:",Matcher::regName[second]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 tty->print("%s+%d:",OptoReg::regname(OptoReg::c_frame_pointer),
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 reg2offset_unchecked(second));
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 OptoReg::Name first = get_reg_first(n->in(k));
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 if( OptoReg::is_reg(first) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 tty->print("%s]",Matcher::regName[first]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 tty->print("%s+%d]",OptoReg::regname(OptoReg::c_frame_pointer),
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 reg2offset_unchecked(first));
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 } else
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 n->in_RegMask(k).dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 tty->print("/N%d ",m->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 if( k < n->len() && n->in(k) ) tty->print("| ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 for( ; k < n->len(); k++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 Node *m = n->in(k);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1956 if(!m) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1957 break;
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1958 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1959 uint r = (m->_idx < _lrg_map.size()) ? _lrg_map.find_const(m) : 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 tty->print("L%d",r);
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 tty->print("/N%d ",m->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 if( n->is_Mach() ) n->as_Mach()->dump_spec(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 else n->dump_spec(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 if( _spilled_once.test(n->_idx ) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 tty->print(" Spill_1");
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 if( _spilled_twice.test(n->_idx ) )
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 tty->print(" Spill_2");
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 tty->print("\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1972
12023
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
1973 void PhaseChaitin::dump(const Block *b) const {
d1034bd8cefc 8022284: Hide internal data structure in PhaseCFG
adlertz
parents: 10999
diff changeset
1974 b->dump_head(&_cfg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1975
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 // For all instructions
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 for( uint j = 0; j < b->_nodes.size(); j++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 dump(b->_nodes[j]);
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 // Print live-out info at end of block
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 if( _live ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 tty->print("Liveout: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 IndexSet *live = _live->live(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 IndexSetIterator elements(live);
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 tty->print("{");
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 uint i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 while ((i = elements.next()) != 0) {
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
1987 tty->print("L%d ", _lrg_map.find_const(i));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 tty->print_cr("}");
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 tty->print("\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1993
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 void PhaseChaitin::dump() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 tty->print( "--- Chaitin -- argsize: %d framesize: %d ---\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 _matcher._new_SP, _framesize );
a61af66fc99e Initial load
duke
parents:
diff changeset
1997
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 // For all blocks
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
1999 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2000 dump(_cfg.get_block(i));
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2001 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 // End of per-block dump
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 tty->print("\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2004
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 if (!_ifg) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 tty->print("(No IFG.)\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2009
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 // Dump LRG array
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 tty->print("--- Live RanGe Array ---\n");
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2012 for (uint i2 = 1; i2 < _lrg_map.max_lrg_id(); i2++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 tty->print("L%d: ",i2);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2014 if (i2 < _ifg->_maxlrg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2015 lrgs(i2).dump();
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2016 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2017 else {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2018 tty->print_cr("new LRG");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2019 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2022
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 // Dump lo-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 tty->print("Lo degree: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 for(uint i3 = _lo_degree; i3; i3 = lrgs(i3)._next )
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 tty->print("L%d ",i3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2028
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 // Dump lo-stk-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 tty->print("Lo stk degree: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 for(uint i4 = _lo_stk_degree; i4; i4 = lrgs(i4)._next )
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 tty->print("L%d ",i4);
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2034
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 // Dump lo-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 tty->print("Hi degree: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 for(uint i5 = _hi_degree; i5; i5 = lrgs(i5)._next )
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 tty->print("L%d ",i5);
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2041
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 void PhaseChaitin::dump_degree_lists() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 // Dump lo-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 tty->print("Lo degree: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2045 for( uint i = _lo_degree; i; i = lrgs(i)._next )
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 tty->print("L%d ",i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2048
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 // Dump lo-stk-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 tty->print("Lo stk degree: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 for(uint i2 = _lo_stk_degree; i2; i2 = lrgs(i2)._next )
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 tty->print("L%d ",i2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2054
a61af66fc99e Initial load
duke
parents:
diff changeset
2055 // Dump lo-degree list
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 tty->print("Hi degree: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 for(uint i3 = _hi_degree; i3; i3 = lrgs(i3)._next )
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 tty->print("L%d ",i3);
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2061
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 void PhaseChaitin::dump_simplified() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 tty->print("Simplified: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 for( uint i = _simplified; i; i = lrgs(i)._next )
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 tty->print("L%d ",i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2068
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 static char *print_reg( OptoReg::Name reg, const PhaseChaitin *pc, char *buf ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 if ((int)reg < 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 sprintf(buf, "<OptoReg::%d>", (int)reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 else if (OptoReg::is_reg(reg))
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 strcpy(buf, Matcher::regName[reg]);
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 else
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 sprintf(buf,"%s + #%d",OptoReg::regname(OptoReg::c_frame_pointer),
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 pc->reg2offset(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 return buf+strlen(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2079
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 // Dump a register name into a buffer. Be intelligent if we get called
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 // before allocation is complete.
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 char *PhaseChaitin::dump_register( const Node *n, char *buf ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 if( !this ) { // Not got anything?
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 sprintf(buf,"N%d",n->_idx); // Then use Node index
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 } else if( _node_regs ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 // Post allocation, use direct mappings, no LRG info available
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 print_reg( get_reg_first(n), this, buf );
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 } else {
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2089 uint lidx = _lrg_map.find_const(n); // Grab LRG number
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 if( !_ifg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 sprintf(buf,"L%d",lidx); // No register binding yet
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 } else if( !lidx ) { // Special, not allocated value
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 strcpy(buf,"Special");
6179
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2094 } else {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2095 if (lrgs(lidx)._is_vector) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2096 if (lrgs(lidx).mask().is_bound_set(lrgs(lidx).num_regs()))
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2097 print_reg( lrgs(lidx).reg(), this, buf ); // a bound machine register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2098 else
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2099 sprintf(buf,"L%d",lidx); // No register binding yet
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2100 } else if( (lrgs(lidx).num_regs() == 1)
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2101 ? lrgs(lidx).mask().is_bound1()
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2102 : lrgs(lidx).mask().is_bound_pair() ) {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2103 // Hah! We have a bound machine register
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2104 print_reg( lrgs(lidx).reg(), this, buf );
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2105 } else {
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2106 sprintf(buf,"L%d",lidx); // No register binding yet
8c92982cbbc4 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 4950
diff changeset
2107 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 return buf+strlen(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2112
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 void PhaseChaitin::dump_for_spill_split_recycle() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 if( WizardMode && (PrintCompilation || PrintOpto) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 // Display which live ranges need to be split and the allocator's state
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 tty->print_cr("Graph-Coloring Iteration %d will split the following live ranges", _trip_cnt);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2117 for (uint bidx = 1; bidx < _lrg_map.max_lrg_id(); bidx++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 if( lrgs(bidx).alive() && lrgs(bidx).reg() >= LRG::SPILL_REG ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 tty->print("L%d: ", bidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 lrgs(bidx).dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2127
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 void PhaseChaitin::dump_frame() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2129 const char *fp = OptoReg::regname(OptoReg::c_frame_pointer);
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 const TypeTuple *domain = C->tf()->domain();
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 const int argcnt = domain->cnt() - TypeFunc::Parms;
a61af66fc99e Initial load
duke
parents:
diff changeset
2132
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 // Incoming arguments in registers dump
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 for( int k = 0; k < argcnt; k++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 OptoReg::Name parmreg = _matcher._parm_regs[k].first();
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 if( OptoReg::is_reg(parmreg)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 const char *reg_name = OptoReg::regname(parmreg);
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 tty->print("#r%3.3d %s", parmreg, reg_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 parmreg = _matcher._parm_regs[k].second();
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 if( OptoReg::is_reg(parmreg)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 tty->print(":%s", OptoReg::regname(parmreg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 tty->print(" : parm %d: ", k);
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 domain->field_at(k + TypeFunc::Parms)->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2148
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 // Check for un-owned padding above incoming args
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 OptoReg::Name reg = _matcher._new_SP;
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 if( reg > _matcher._in_arg_limit ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 reg = OptoReg::add(reg, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 tty->print_cr("#r%3.3d %s+%2d: pad0, owned by CALLER", reg, fp, reg2offset_unchecked(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2155
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 // Incoming argument area dump
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 OptoReg::Name begin_in_arg = OptoReg::add(_matcher._old_SP,C->out_preserve_stack_slots());
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 while( reg > begin_in_arg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2159 reg = OptoReg::add(reg, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 tty->print("#r%3.3d %s+%2d: ",reg,fp,reg2offset_unchecked(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 int j;
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 for( j = 0; j < argcnt; j++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2163 if( _matcher._parm_regs[j].first() == reg ||
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 _matcher._parm_regs[j].second() == reg ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2165 tty->print("parm %d: ",j);
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 domain->field_at(j + TypeFunc::Parms)->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 if( j >= argcnt )
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 tty->print_cr("HOLE, owned by SELF");
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2174
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 // Old outgoing preserve area
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 while( reg > _matcher._old_SP ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 reg = OptoReg::add(reg, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 tty->print_cr("#r%3.3d %s+%2d: old out preserve",reg,fp,reg2offset_unchecked(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2180
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 // Old SP
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 tty->print_cr("# -- Old %s -- Framesize: %d --",fp,
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 reg2offset_unchecked(OptoReg::add(_matcher._old_SP,-1)) - reg2offset_unchecked(_matcher._new_SP)+jintSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
2184
a61af66fc99e Initial load
duke
parents:
diff changeset
2185 // Preserve area dump
4950
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2186 int fixed_slots = C->fixed_slots();
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2187 OptoReg::Name begin_in_preserve = OptoReg::add(_matcher._old_SP, -(int)C->in_preserve_stack_slots());
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2188 OptoReg::Name return_addr = _matcher.return_addr();
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2189
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 reg = OptoReg::add(reg, -1);
4950
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2191 while (OptoReg::is_stack(reg)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 tty->print("#r%3.3d %s+%2d: ",reg,fp,reg2offset_unchecked(reg));
4950
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2193 if (return_addr == reg) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 tty->print_cr("return address");
4950
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2195 } else if (reg >= begin_in_preserve) {
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2196 // Preserved slots are present on x86
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2197 if (return_addr == OptoReg::add(reg, VMRegImpl::slots_per_word))
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2198 tty->print_cr("saved fp register");
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2199 else if (return_addr == OptoReg::add(reg, 2*VMRegImpl::slots_per_word) &&
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2200 VerifyStackAtCalls)
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2201 tty->print_cr("0xBADB100D +VerifyStackAtCalls");
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2202 else
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2203 tty->print_cr("in_preserve");
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2204 } else if ((int)OptoReg::reg2stack(reg) < fixed_slots) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2205 tty->print_cr("Fixed slot %d", OptoReg::reg2stack(reg));
4950
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2206 } else {
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2207 tty->print_cr("pad2, stack alignment");
9b8ce46870df 7145346: VerifyStackAtCalls is broken
kvn
parents: 2426
diff changeset
2208 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 reg = OptoReg::add(reg, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2211
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 // Spill area dump
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 reg = OptoReg::add(_matcher._new_SP, _framesize );
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 while( reg > _matcher._out_arg_limit ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 reg = OptoReg::add(reg, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 tty->print_cr("#r%3.3d %s+%2d: spill",reg,fp,reg2offset_unchecked(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2218
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 // Outgoing argument area dump
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 while( reg > OptoReg::add(_matcher._new_SP, C->out_preserve_stack_slots()) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 reg = OptoReg::add(reg, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 tty->print_cr("#r%3.3d %s+%2d: outgoing argument",reg,fp,reg2offset_unchecked(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2224
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 // Outgoing new preserve area
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 while( reg > _matcher._new_SP ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 reg = OptoReg::add(reg, -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 tty->print_cr("#r%3.3d %s+%2d: new out preserve",reg,fp,reg2offset_unchecked(reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 tty->print_cr("#");
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2232
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 void PhaseChaitin::dump_bb( uint pre_order ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 tty->print_cr("---dump of B%d---",pre_order);
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2235 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2236 Block* block = _cfg.get_block(i);
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2237 if (block->_pre_order == pre_order) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2238 dump(block);
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2239 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2242
2016
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2243 void PhaseChaitin::dump_lrg( uint lidx, bool defs_only ) const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 tty->print_cr("---dump of L%d---",lidx);
a61af66fc99e Initial load
duke
parents:
diff changeset
2245
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2246 if (_ifg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2247 if (lidx >= _lrg_map.max_lrg_id()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 tty->print("Attempt to print live range index beyond max live range.\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
2249 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 tty->print("L%d: ",lidx);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2252 if (lidx < _ifg->_maxlrg) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2253 lrgs(lidx).dump();
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2254 } else {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2255 tty->print_cr("new LRG");
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2256 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2257 }
2016
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2258 if( _ifg && lidx < _ifg->_maxlrg) {
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2259 tty->print("Neighbors: %d - ", _ifg->neighbor_cnt(lidx));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2260 _ifg->neighbors(lidx)->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 // For all blocks
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2264 for (uint i = 0; i < _cfg.number_of_blocks(); i++) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2265 Block* block = _cfg.get_block(i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 int dump_once = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2267
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 // For all instructions
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2269 for( uint j = 0; j < block->_nodes.size(); j++ ) {
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2270 Node *n = block->_nodes[j];
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2271 if (_lrg_map.find_const(n) == lidx) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2272 if (!dump_once++) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 tty->cr();
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2274 block->dump_head(&_cfg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 dump(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 }
2016
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2279 if (!defs_only) {
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2280 uint cnt = n->req();
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2281 for( uint k = 1; k < cnt; k++ ) {
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2282 Node *m = n->in(k);
10111
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2283 if (!m) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2284 continue; // be robust in the dumper
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2285 }
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2286 if (_lrg_map.find_const(m) == lidx) {
8373c19be854 8011621: live_ranges_in_separate_class.patch
neliasso
parents: 7196
diff changeset
2287 if (!dump_once++) {
2016
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2288 tty->cr();
12071
adb9a7d94cb5 8023003: Cleanup the public interface to PhaseCFG
adlertz
parents: 12023
diff changeset
2289 block->dump_head(&_cfg);
2016
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2290 }
361783318e7e 7004940: CTW: assert(!def_outside->member(r)) failed: Use of external LRG overlaps the same LRG
never
parents: 1972
diff changeset
2291 dump(n);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 } // End of per-block dump
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 #endif // not PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
2300
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 int PhaseChaitin::_final_loads = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 int PhaseChaitin::_final_stores = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 int PhaseChaitin::_final_memoves= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 int PhaseChaitin::_final_copies = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 double PhaseChaitin::_final_load_cost = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 double PhaseChaitin::_final_store_cost = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 double PhaseChaitin::_final_memove_cost= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 double PhaseChaitin::_final_copy_cost = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 int PhaseChaitin::_conserv_coalesce = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 int PhaseChaitin::_conserv_coalesce_pair = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 int PhaseChaitin::_conserv_coalesce_trie = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 int PhaseChaitin::_conserv_coalesce_quad = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 int PhaseChaitin::_post_alloc = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 int PhaseChaitin::_lost_opp_pp_coalesce = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 int PhaseChaitin::_lost_opp_cflow_coalesce = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 int PhaseChaitin::_used_cisc_instructions = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 int PhaseChaitin::_unused_cisc_instructions = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 int PhaseChaitin::_allocator_attempts = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 int PhaseChaitin::_allocator_successes = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2320
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 uint PhaseChaitin::_high_pressure = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 uint PhaseChaitin::_low_pressure = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2324
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 void PhaseChaitin::print_chaitin_statistics() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 tty->print_cr("Inserted %d spill loads, %d spill stores, %d mem-mem moves and %d copies.", _final_loads, _final_stores, _final_memoves, _final_copies);
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 tty->print_cr("Total load cost= %6.0f, store cost = %6.0f, mem-mem cost = %5.2f, copy cost = %5.0f.", _final_load_cost, _final_store_cost, _final_memove_cost, _final_copy_cost);
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 tty->print_cr("Adjusted spill cost = %7.0f.",
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 _final_load_cost*4.0 + _final_store_cost * 2.0 +
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 _final_copy_cost*1.0 + _final_memove_cost*12.0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 tty->print("Conservatively coalesced %d copies, %d pairs",
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 _conserv_coalesce, _conserv_coalesce_pair);
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 if( _conserv_coalesce_trie || _conserv_coalesce_quad )
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 tty->print(", %d tries, %d quads", _conserv_coalesce_trie, _conserv_coalesce_quad);
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 tty->print_cr(", %d post alloc.", _post_alloc);
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 if( _lost_opp_pp_coalesce || _lost_opp_cflow_coalesce )
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 tty->print_cr("Lost coalesce opportunity, %d private-private, and %d cflow interfered.",
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 _lost_opp_pp_coalesce, _lost_opp_cflow_coalesce );
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 if( _used_cisc_instructions || _unused_cisc_instructions )
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 tty->print_cr("Used cisc instruction %d, remained in register %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 _used_cisc_instructions, _unused_cisc_instructions);
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 if( _allocator_successes != 0 )
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 tty->print_cr("Average allocation trips %f", (float)_allocator_attempts/(float)_allocator_successes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 tty->print_cr("High Pressure Blocks = %d, Low Pressure Blocks = %d", _high_pressure, _low_pressure);
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 #endif // not PRODUCT