author | iveresov |
Thu, 22 Jan 2015 11:25:23 -0800 | |
changeset 28723 | 0a36120cb225 |
parent 25932 | 15d133edd8f6 |
child 30211 | 442fbbb31f75 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
25930 | 2 |
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4428
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4428
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4428
diff
changeset
|
21 |
* questions. |
1 | 22 |
*/ |
23 |
||
7397 | 24 |
#include "precompiled.hpp" |
25 |
#include "compiler/compileLog.hpp" |
|
26 |
#include "libadt/vectset.hpp" |
|
27 |
#include "memory/allocation.inline.hpp" |
|
28 |
#include "opto/addnode.hpp" |
|
29 |
#include "opto/callnode.hpp" |
|
23528 | 30 |
#include "opto/castnode.hpp" |
31 |
#include "opto/convertnode.hpp" |
|
7397 | 32 |
#include "opto/divnode.hpp" |
33 |
#include "opto/matcher.hpp" |
|
34 |
#include "opto/memnode.hpp" |
|
35 |
#include "opto/mulnode.hpp" |
|
36 |
#include "opto/opcodes.hpp" |
|
23528 | 37 |
#include "opto/opaquenode.hpp" |
7397 | 38 |
#include "opto/superword.hpp" |
39 |
#include "opto/vectornode.hpp" |
|
1 | 40 |
|
41 |
// |
|
42 |
// S U P E R W O R D T R A N S F O R M |
|
43 |
//============================================================================= |
|
44 |
||
45 |
//------------------------------SuperWord--------------------------- |
|
46 |
SuperWord::SuperWord(PhaseIdealLoop* phase) : |
|
47 |
_phase(phase), |
|
48 |
_igvn(phase->_igvn), |
|
49 |
_arena(phase->C->comp_arena()), |
|
50 |
_packset(arena(), 8, 0, NULL), // packs for the current block |
|
51 |
_bb_idx(arena(), (int)(1.10 * phase->C->unique()), 0, 0), // node idx to index in bb |
|
52 |
_block(arena(), 8, 0, NULL), // nodes in current block |
|
53 |
_data_entry(arena(), 8, 0, NULL), // nodes with all inputs from outside |
|
54 |
_mem_slice_head(arena(), 8, 0, NULL), // memory slice heads |
|
55 |
_mem_slice_tail(arena(), 8, 0, NULL), // memory slice tails |
|
56 |
_node_info(arena(), 8, 0, SWNodeInfo::initial), // info needed per node |
|
57 |
_align_to_ref(NULL), // memory reference to align vectors to |
|
58 |
_disjoint_ptrs(arena(), 8, 0, OrderedPair::initial), // runtime disambiguated pointer pairs |
|
59 |
_dg(_arena), // dependence graph |
|
60 |
_visited(arena()), // visited node set |
|
61 |
_post_visited(arena()), // post visited node set |
|
62 |
_n_idx_list(arena(), 8), // scratch list of (node,index) pairs |
|
63 |
_stk(arena(), 8, 0, NULL), // scratch stack of nodes |
|
64 |
_nlist(arena(), 8, 0, NULL), // scratch list of nodes |
|
65 |
_lpt(NULL), // loop tree node |
|
66 |
_lp(NULL), // LoopNode |
|
67 |
_bb(NULL), // basic block |
|
68 |
_iv(NULL) // induction var |
|
69 |
{} |
|
70 |
||
71 |
//------------------------------transform_loop--------------------------- |
|
72 |
void SuperWord::transform_loop(IdealLoopTree* lpt) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
73 |
assert(UseSuperWord, "should be"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
74 |
// Do vectors exist on this architecture? |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
75 |
if (Matcher::vector_width_in_bytes(T_BYTE) < 2) return; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
76 |
|
1 | 77 |
assert(lpt->_head->is_CountedLoop(), "must be"); |
78 |
CountedLoopNode *cl = lpt->_head->as_CountedLoop(); |
|
79 |
||
10263
fa58671dde31
7077439: Possible reference through NULL in loopPredicate.cpp:726
kvn
parents:
10255
diff
changeset
|
80 |
if (!cl->is_valid_counted_loop()) return; // skip malformed counted loop |
fa58671dde31
7077439: Possible reference through NULL in loopPredicate.cpp:726
kvn
parents:
10255
diff
changeset
|
81 |
|
1 | 82 |
if (!cl->is_main_loop() ) return; // skip normal, pre, and post loops |
83 |
||
84 |
// Check for no control flow in body (other than exit) |
|
85 |
Node *cl_exit = cl->loopexit(); |
|
86 |
if (cl_exit->in(0) != lpt->_head) return; |
|
87 |
||
352
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
88 |
// Make sure the are no extra control users of the loop backedge |
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
89 |
if (cl->back_control()->outcnt() != 1) { |
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
90 |
return; |
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
91 |
} |
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
92 |
|
1 | 93 |
// Check for pre-loop ending with CountedLoopEnd(Bool(Cmp(x,Opaque1(limit)))) |
94 |
CountedLoopEndNode* pre_end = get_pre_loop_end(cl); |
|
95 |
if (pre_end == NULL) return; |
|
96 |
Node *pre_opaq1 = pre_end->limit(); |
|
97 |
if (pre_opaq1->Opcode() != Op_Opaque1) return; |
|
98 |
||
99 |
init(); // initialize data structures |
|
100 |
||
101 |
set_lpt(lpt); |
|
102 |
set_lp(cl); |
|
103 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
104 |
// For now, define one block which is the entire loop body |
1 | 105 |
set_bb(cl); |
106 |
||
107 |
assert(_packset.length() == 0, "packset must be empty"); |
|
108 |
SLP_extract(); |
|
109 |
} |
|
110 |
||
111 |
//------------------------------SLP_extract--------------------------- |
|
112 |
// Extract the superword level parallelism |
|
113 |
// |
|
114 |
// 1) A reverse post-order of nodes in the block is constructed. By scanning |
|
115 |
// this list from first to last, all definitions are visited before their uses. |
|
116 |
// |
|
117 |
// 2) A point-to-point dependence graph is constructed between memory references. |
|
118 |
// This simplies the upcoming "independence" checker. |
|
119 |
// |
|
120 |
// 3) The maximum depth in the node graph from the beginning of the block |
|
121 |
// to each node is computed. This is used to prune the graph search |
|
122 |
// in the independence checker. |
|
123 |
// |
|
124 |
// 4) For integer types, the necessary bit width is propagated backwards |
|
125 |
// from stores to allow packed operations on byte, char, and short |
|
126 |
// integers. This reverses the promotion to type "int" that javac |
|
127 |
// did for operations like: char c1,c2,c3; c1 = c2 + c3. |
|
128 |
// |
|
129 |
// 5) One of the memory references is picked to be an aligned vector reference. |
|
130 |
// The pre-loop trip count is adjusted to align this reference in the |
|
131 |
// unrolled body. |
|
132 |
// |
|
133 |
// 6) The initial set of pack pairs is seeded with memory references. |
|
134 |
// |
|
135 |
// 7) The set of pack pairs is extended by following use->def and def->use links. |
|
136 |
// |
|
137 |
// 8) The pairs are combined into vector sized packs. |
|
138 |
// |
|
139 |
// 9) Reorder the memory slices to co-locate members of the memory packs. |
|
140 |
// |
|
141 |
// 10) Generate ideal vector nodes for the final set of packs and where necessary, |
|
142 |
// inserting scalar promotion, vector creation from multiple scalars, and |
|
143 |
// extraction of scalar values from vectors. |
|
144 |
// |
|
145 |
void SuperWord::SLP_extract() { |
|
146 |
||
147 |
// Ready the block |
|
148 |
||
15755
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
149 |
if (!construct_bb()) |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
150 |
return; // Exit if no interesting nodes or complex graph. |
1 | 151 |
|
152 |
dependence_graph(); |
|
153 |
||
154 |
compute_max_depth(); |
|
155 |
||
156 |
compute_vector_element_type(); |
|
157 |
||
158 |
// Attempt vectorization |
|
159 |
||
160 |
find_adjacent_refs(); |
|
161 |
||
162 |
extend_packlist(); |
|
163 |
||
164 |
combine_packs(); |
|
165 |
||
166 |
construct_my_pack_map(); |
|
167 |
||
168 |
filter_packs(); |
|
169 |
||
170 |
schedule(); |
|
171 |
||
172 |
output(); |
|
173 |
} |
|
174 |
||
175 |
//------------------------------find_adjacent_refs--------------------------- |
|
176 |
// Find the adjacent memory references and create pack pairs for them. |
|
177 |
// This is the initial set of packs that will then be extended by |
|
178 |
// following use->def and def->use links. The align positions are |
|
179 |
// assigned relative to the reference "align_to_ref" |
|
180 |
void SuperWord::find_adjacent_refs() { |
|
181 |
// Get list of memory operations |
|
182 |
Node_List memops; |
|
183 |
for (int i = 0; i < _block.length(); i++) { |
|
184 |
Node* n = _block.at(i); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
185 |
if (n->is_Mem() && !n->is_LoadStore() && in_bb(n) && |
202
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
1
diff
changeset
|
186 |
is_java_primitive(n->as_Mem()->memory_type())) { |
1 | 187 |
int align = memory_alignment(n->as_Mem(), 0); |
188 |
if (align != bottom_align) { |
|
189 |
memops.push(n); |
|
190 |
} |
|
191 |
} |
|
192 |
} |
|
193 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
194 |
Node_List align_to_refs; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
195 |
int best_iv_adjustment = 0; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
196 |
MemNode* best_align_to_mem_ref = NULL; |
1 | 197 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
198 |
while (memops.size() != 0) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
199 |
// Find a memory reference to align to. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
200 |
MemNode* mem_ref = find_align_to_ref(memops); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
201 |
if (mem_ref == NULL) break; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
202 |
align_to_refs.push(mem_ref); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
203 |
int iv_adjustment = get_iv_adjustment(mem_ref); |
1 | 204 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
205 |
if (best_align_to_mem_ref == NULL) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
206 |
// Set memory reference which is the best from all memory operations |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
207 |
// to be used for alignment. The pre-loop trip count is modified to align |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
208 |
// this reference to a vector-aligned address. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
209 |
best_align_to_mem_ref = mem_ref; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
210 |
best_iv_adjustment = iv_adjustment; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
211 |
} |
1 | 212 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
213 |
SWPointer align_to_ref_p(mem_ref, this); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
214 |
// Set alignment relative to "align_to_ref" for all related memory operations. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
215 |
for (int i = memops.size() - 1; i >= 0; i--) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
216 |
MemNode* s = memops.at(i)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
217 |
if (isomorphic(s, mem_ref)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
218 |
SWPointer p2(s, this); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
219 |
if (p2.comparable(align_to_ref_p)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
220 |
int align = memory_alignment(s, iv_adjustment); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
221 |
set_alignment(s, align); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
222 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
223 |
} |
1 | 224 |
} |
225 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
226 |
// Create initial pack pairs of memory operations for which |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
227 |
// alignment is set and vectors will be aligned. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
228 |
bool create_pack = true; |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
229 |
if (memory_alignment(mem_ref, best_iv_adjustment) == 0) { |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
230 |
if (!Matcher::misaligned_vectors_ok()) { |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
231 |
int vw = vector_width(mem_ref); |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
232 |
int vw_best = vector_width(best_align_to_mem_ref); |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
233 |
if (vw > vw_best) { |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
234 |
// Do not vectorize a memory access with more elements per vector |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
235 |
// if unaligned memory access is not allowed because number of |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
236 |
// iterations in pre-loop will be not enough to align it. |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
237 |
create_pack = false; |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
238 |
} |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
239 |
} |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
240 |
} else { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
241 |
if (same_velt_type(mem_ref, best_align_to_mem_ref)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
242 |
// Can't allow vectorization of unaligned memory accesses with the |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
243 |
// same type since it could be overlapped accesses to the same array. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
244 |
create_pack = false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
245 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
246 |
// Allow independent (different type) unaligned memory operations |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
247 |
// if HW supports them. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
248 |
if (!Matcher::misaligned_vectors_ok()) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
249 |
create_pack = false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
250 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
251 |
// Check if packs of the same memory type but |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
252 |
// with a different alignment were created before. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
253 |
for (uint i = 0; i < align_to_refs.size(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
254 |
MemNode* mr = align_to_refs.at(i)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
255 |
if (same_velt_type(mr, mem_ref) && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
256 |
memory_alignment(mr, iv_adjustment) != 0) |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
257 |
create_pack = false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
258 |
} |
1 | 259 |
} |
260 |
} |
|
261 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
262 |
if (create_pack) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
263 |
for (uint i = 0; i < memops.size(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
264 |
Node* s1 = memops.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
265 |
int align = alignment(s1); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
266 |
if (align == top_align) continue; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
267 |
for (uint j = 0; j < memops.size(); j++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
268 |
Node* s2 = memops.at(j); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
269 |
if (alignment(s2) == top_align) continue; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
270 |
if (s1 != s2 && are_adjacent_refs(s1, s2)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
271 |
if (stmts_can_pack(s1, s2, align)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
272 |
Node_List* pair = new Node_List(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
273 |
pair->push(s1); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
274 |
pair->push(s2); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
275 |
_packset.append(pair); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
276 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
277 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
278 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
279 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
280 |
} else { // Don't create unaligned pack |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
281 |
// First, remove remaining memory ops of the same type from the list. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
282 |
for (int i = memops.size() - 1; i >= 0; i--) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
283 |
MemNode* s = memops.at(i)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
284 |
if (same_velt_type(s, mem_ref)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
285 |
memops.remove(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
286 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
287 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
288 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
289 |
// Second, remove already constructed packs of the same type. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
290 |
for (int i = _packset.length() - 1; i >= 0; i--) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
291 |
Node_List* p = _packset.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
292 |
MemNode* s = p->at(0)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
293 |
if (same_velt_type(s, mem_ref)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
294 |
remove_pack_at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
295 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
296 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
297 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
298 |
// If needed find the best memory reference for loop alignment again. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
299 |
if (same_velt_type(mem_ref, best_align_to_mem_ref)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
300 |
// Put memory ops from remaining packs back on memops list for |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
301 |
// the best alignment search. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
302 |
uint orig_msize = memops.size(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
303 |
for (int i = 0; i < _packset.length(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
304 |
Node_List* p = _packset.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
305 |
MemNode* s = p->at(0)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
306 |
assert(!same_velt_type(s, mem_ref), "sanity"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
307 |
memops.push(s); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
308 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
309 |
MemNode* best_align_to_mem_ref = find_align_to_ref(memops); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
310 |
if (best_align_to_mem_ref == NULL) break; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
311 |
best_iv_adjustment = get_iv_adjustment(best_align_to_mem_ref); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
312 |
// Restore list. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
313 |
while (memops.size() > orig_msize) |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
314 |
(void)memops.pop(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
315 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
316 |
} // unaligned memory accesses |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
317 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
318 |
// Remove used mem nodes. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
319 |
for (int i = memops.size() - 1; i >= 0; i--) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
320 |
MemNode* m = memops.at(i)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
321 |
if (alignment(m) != top_align) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
322 |
memops.remove(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
323 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
324 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
325 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
326 |
} // while (memops.size() != 0 |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
327 |
set_align_to_ref(best_align_to_mem_ref); |
1 | 328 |
|
329 |
#ifndef PRODUCT |
|
330 |
if (TraceSuperWord) { |
|
331 |
tty->print_cr("\nAfter find_adjacent_refs"); |
|
332 |
print_packset(); |
|
333 |
} |
|
334 |
#endif |
|
335 |
} |
|
336 |
||
337 |
//------------------------------find_align_to_ref--------------------------- |
|
338 |
// Find a memory reference to align the loop induction variable to. |
|
339 |
// Looks first at stores then at loads, looking for a memory reference |
|
340 |
// with the largest number of references similar to it. |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
341 |
MemNode* SuperWord::find_align_to_ref(Node_List &memops) { |
1 | 342 |
GrowableArray<int> cmp_ct(arena(), memops.size(), memops.size(), 0); |
343 |
||
344 |
// Count number of comparable memory ops |
|
345 |
for (uint i = 0; i < memops.size(); i++) { |
|
346 |
MemNode* s1 = memops.at(i)->as_Mem(); |
|
347 |
SWPointer p1(s1, this); |
|
348 |
// Discard if pre loop can't align this reference |
|
349 |
if (!ref_is_alignable(p1)) { |
|
350 |
*cmp_ct.adr_at(i) = 0; |
|
351 |
continue; |
|
352 |
} |
|
353 |
for (uint j = i+1; j < memops.size(); j++) { |
|
354 |
MemNode* s2 = memops.at(j)->as_Mem(); |
|
355 |
if (isomorphic(s1, s2)) { |
|
356 |
SWPointer p2(s2, this); |
|
357 |
if (p1.comparable(p2)) { |
|
358 |
(*cmp_ct.adr_at(i))++; |
|
359 |
(*cmp_ct.adr_at(j))++; |
|
360 |
} |
|
361 |
} |
|
362 |
} |
|
363 |
} |
|
364 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
365 |
// Find Store (or Load) with the greatest number of "comparable" references, |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
366 |
// biggest vector size, smallest data size and smallest iv offset. |
1 | 367 |
int max_ct = 0; |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
368 |
int max_vw = 0; |
1 | 369 |
int max_idx = -1; |
370 |
int min_size = max_jint; |
|
371 |
int min_iv_offset = max_jint; |
|
372 |
for (uint j = 0; j < memops.size(); j++) { |
|
373 |
MemNode* s = memops.at(j)->as_Mem(); |
|
374 |
if (s->is_Store()) { |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
375 |
int vw = vector_width_in_bytes(s); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
376 |
assert(vw > 1, "sanity"); |
1 | 377 |
SWPointer p(s, this); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
378 |
if (cmp_ct.at(j) > max_ct || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
379 |
cmp_ct.at(j) == max_ct && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
380 |
(vw > max_vw || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
381 |
vw == max_vw && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
382 |
(data_size(s) < min_size || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
383 |
data_size(s) == min_size && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
384 |
(p.offset_in_bytes() < min_iv_offset)))) { |
1 | 385 |
max_ct = cmp_ct.at(j); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
386 |
max_vw = vw; |
1 | 387 |
max_idx = j; |
388 |
min_size = data_size(s); |
|
389 |
min_iv_offset = p.offset_in_bytes(); |
|
390 |
} |
|
391 |
} |
|
392 |
} |
|
393 |
// If no stores, look at loads |
|
394 |
if (max_ct == 0) { |
|
395 |
for (uint j = 0; j < memops.size(); j++) { |
|
396 |
MemNode* s = memops.at(j)->as_Mem(); |
|
397 |
if (s->is_Load()) { |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
398 |
int vw = vector_width_in_bytes(s); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
399 |
assert(vw > 1, "sanity"); |
1 | 400 |
SWPointer p(s, this); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
401 |
if (cmp_ct.at(j) > max_ct || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
402 |
cmp_ct.at(j) == max_ct && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
403 |
(vw > max_vw || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
404 |
vw == max_vw && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
405 |
(data_size(s) < min_size || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
406 |
data_size(s) == min_size && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
407 |
(p.offset_in_bytes() < min_iv_offset)))) { |
1 | 408 |
max_ct = cmp_ct.at(j); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
409 |
max_vw = vw; |
1 | 410 |
max_idx = j; |
411 |
min_size = data_size(s); |
|
412 |
min_iv_offset = p.offset_in_bytes(); |
|
413 |
} |
|
414 |
} |
|
415 |
} |
|
416 |
} |
|
417 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
418 |
#ifdef ASSERT |
1 | 419 |
if (TraceSuperWord && Verbose) { |
420 |
tty->print_cr("\nVector memops after find_align_to_refs"); |
|
421 |
for (uint i = 0; i < memops.size(); i++) { |
|
422 |
MemNode* s = memops.at(i)->as_Mem(); |
|
423 |
s->dump(); |
|
424 |
} |
|
425 |
} |
|
426 |
#endif |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
427 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
428 |
if (max_ct > 0) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
429 |
#ifdef ASSERT |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
430 |
if (TraceSuperWord) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
431 |
tty->print("\nVector align to node: "); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
432 |
memops.at(max_idx)->as_Mem()->dump(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
433 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
434 |
#endif |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
435 |
return memops.at(max_idx)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
436 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
437 |
return NULL; |
1 | 438 |
} |
439 |
||
440 |
//------------------------------ref_is_alignable--------------------------- |
|
441 |
// Can the preloop align the reference to position zero in the vector? |
|
442 |
bool SuperWord::ref_is_alignable(SWPointer& p) { |
|
443 |
if (!p.has_iv()) { |
|
444 |
return true; // no induction variable |
|
445 |
} |
|
446 |
CountedLoopEndNode* pre_end = get_pre_loop_end(lp()->as_CountedLoop()); |
|
22919
4d686766ac23
8010500: [parfait] Possible null pointer dereference at hotspot/src/share/vm/opto/loopnode.hpp
adlertz
parents:
22234
diff
changeset
|
447 |
assert(pre_end != NULL, "we must have a correct pre-loop"); |
1 | 448 |
assert(pre_end->stride_is_con(), "pre loop stride is constant"); |
449 |
int preloop_stride = pre_end->stride_con(); |
|
450 |
||
451 |
int span = preloop_stride * p.scale_in_bytes(); |
|
452 |
||
453 |
// Stride one accesses are alignable. |
|
454 |
if (ABS(span) == p.memory_size()) |
|
455 |
return true; |
|
456 |
||
457 |
// If initial offset from start of object is computable, |
|
458 |
// compute alignment within the vector. |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
459 |
int vw = vector_width_in_bytes(p.mem()); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
460 |
assert(vw > 1, "sanity"); |
1 | 461 |
if (vw % span == 0) { |
462 |
Node* init_nd = pre_end->init_trip(); |
|
463 |
if (init_nd->is_Con() && p.invar() == NULL) { |
|
464 |
int init = init_nd->bottom_type()->is_int()->get_con(); |
|
465 |
||
466 |
int init_offset = init * p.scale_in_bytes() + p.offset_in_bytes(); |
|
467 |
assert(init_offset >= 0, "positive offset from object start"); |
|
468 |
||
469 |
if (span > 0) { |
|
470 |
return (vw - (init_offset % vw)) % span == 0; |
|
471 |
} else { |
|
472 |
assert(span < 0, "nonzero stride * scale"); |
|
473 |
return (init_offset % vw) % -span == 0; |
|
474 |
} |
|
475 |
} |
|
476 |
} |
|
477 |
return false; |
|
478 |
} |
|
479 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
480 |
//---------------------------get_iv_adjustment--------------------------- |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
481 |
// Calculate loop's iv adjustment for this memory ops. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
482 |
int SuperWord::get_iv_adjustment(MemNode* mem_ref) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
483 |
SWPointer align_to_ref_p(mem_ref, this); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
484 |
int offset = align_to_ref_p.offset_in_bytes(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
485 |
int scale = align_to_ref_p.scale_in_bytes(); |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
486 |
int vw = vector_width_in_bytes(mem_ref); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
487 |
assert(vw > 1, "sanity"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
488 |
int stride_sign = (scale * iv_stride()) > 0 ? 1 : -1; |
13885 | 489 |
// At least one iteration is executed in pre-loop by default. As result |
490 |
// several iterations are needed to align memory operations in main-loop even |
|
491 |
// if offset is 0. |
|
492 |
int iv_adjustment_in_bytes = (stride_sign * vw - (offset % vw)); |
|
493 |
int elt_size = align_to_ref_p.memory_size(); |
|
494 |
assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0), |
|
495 |
err_msg_res("(%d) should be divisible by (%d)", iv_adjustment_in_bytes, elt_size)); |
|
496 |
int iv_adjustment = iv_adjustment_in_bytes/elt_size; |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
497 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
498 |
#ifndef PRODUCT |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
499 |
if (TraceSuperWord) |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
500 |
tty->print_cr("\noffset = %d iv_adjust = %d elt_size = %d scale = %d iv_stride = %d vect_size %d", |
13885 | 501 |
offset, iv_adjustment, elt_size, scale, iv_stride(), vw); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
502 |
#endif |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
503 |
return iv_adjustment; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
504 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
505 |
|
1 | 506 |
//---------------------------dependence_graph--------------------------- |
507 |
// Construct dependency graph. |
|
508 |
// Add dependence edges to load/store nodes for memory dependence |
|
509 |
// A.out()->DependNode.in(1) and DependNode.out()->B.prec(x) |
|
510 |
void SuperWord::dependence_graph() { |
|
511 |
// First, assign a dependence node to each memory node |
|
512 |
for (int i = 0; i < _block.length(); i++ ) { |
|
513 |
Node *n = _block.at(i); |
|
514 |
if (n->is_Mem() || n->is_Phi() && n->bottom_type() == Type::MEMORY) { |
|
515 |
_dg.make_node(n); |
|
516 |
} |
|
517 |
} |
|
518 |
||
519 |
// For each memory slice, create the dependences |
|
520 |
for (int i = 0; i < _mem_slice_head.length(); i++) { |
|
521 |
Node* n = _mem_slice_head.at(i); |
|
522 |
Node* n_tail = _mem_slice_tail.at(i); |
|
523 |
||
524 |
// Get slice in predecessor order (last is first) |
|
525 |
mem_slice_preds(n_tail, n, _nlist); |
|
526 |
||
527 |
// Make the slice dependent on the root |
|
528 |
DepMem* slice = _dg.dep(n); |
|
529 |
_dg.make_edge(_dg.root(), slice); |
|
530 |
||
531 |
// Create a sink for the slice |
|
532 |
DepMem* slice_sink = _dg.make_node(NULL); |
|
533 |
_dg.make_edge(slice_sink, _dg.tail()); |
|
534 |
||
535 |
// Now visit each pair of memory ops, creating the edges |
|
536 |
for (int j = _nlist.length() - 1; j >= 0 ; j--) { |
|
537 |
Node* s1 = _nlist.at(j); |
|
538 |
||
539 |
// If no dependency yet, use slice |
|
540 |
if (_dg.dep(s1)->in_cnt() == 0) { |
|
541 |
_dg.make_edge(slice, s1); |
|
542 |
} |
|
543 |
SWPointer p1(s1->as_Mem(), this); |
|
544 |
bool sink_dependent = true; |
|
545 |
for (int k = j - 1; k >= 0; k--) { |
|
546 |
Node* s2 = _nlist.at(k); |
|
547 |
if (s1->is_Load() && s2->is_Load()) |
|
548 |
continue; |
|
549 |
SWPointer p2(s2->as_Mem(), this); |
|
550 |
||
551 |
int cmp = p1.cmp(p2); |
|
552 |
if (SuperWordRTDepCheck && |
|
553 |
p1.base() != p2.base() && p1.valid() && p2.valid()) { |
|
554 |
// Create a runtime check to disambiguate |
|
555 |
OrderedPair pp(p1.base(), p2.base()); |
|
556 |
_disjoint_ptrs.append_if_missing(pp); |
|
557 |
} else if (!SWPointer::not_equal(cmp)) { |
|
558 |
// Possibly same address |
|
559 |
_dg.make_edge(s1, s2); |
|
560 |
sink_dependent = false; |
|
561 |
} |
|
562 |
} |
|
563 |
if (sink_dependent) { |
|
564 |
_dg.make_edge(s1, slice_sink); |
|
565 |
} |
|
566 |
} |
|
567 |
#ifndef PRODUCT |
|
568 |
if (TraceSuperWord) { |
|
569 |
tty->print_cr("\nDependence graph for slice: %d", n->_idx); |
|
570 |
for (int q = 0; q < _nlist.length(); q++) { |
|
571 |
_dg.print(_nlist.at(q)); |
|
572 |
} |
|
573 |
tty->cr(); |
|
574 |
} |
|
575 |
#endif |
|
576 |
_nlist.clear(); |
|
577 |
} |
|
578 |
||
579 |
#ifndef PRODUCT |
|
580 |
if (TraceSuperWord) { |
|
581 |
tty->print_cr("\ndisjoint_ptrs: %s", _disjoint_ptrs.length() > 0 ? "" : "NONE"); |
|
582 |
for (int r = 0; r < _disjoint_ptrs.length(); r++) { |
|
583 |
_disjoint_ptrs.at(r).print(); |
|
584 |
tty->cr(); |
|
585 |
} |
|
586 |
tty->cr(); |
|
587 |
} |
|
588 |
#endif |
|
589 |
} |
|
590 |
||
591 |
//---------------------------mem_slice_preds--------------------------- |
|
592 |
// Return a memory slice (node list) in predecessor order starting at "start" |
|
593 |
void SuperWord::mem_slice_preds(Node* start, Node* stop, GrowableArray<Node*> &preds) { |
|
594 |
assert(preds.length() == 0, "start empty"); |
|
595 |
Node* n = start; |
|
596 |
Node* prev = NULL; |
|
597 |
while (true) { |
|
598 |
assert(in_bb(n), "must be in block"); |
|
599 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
600 |
Node* out = n->fast_out(i); |
|
601 |
if (out->is_Load()) { |
|
602 |
if (in_bb(out)) { |
|
603 |
preds.push(out); |
|
604 |
} |
|
605 |
} else { |
|
606 |
// FIXME |
|
607 |
if (out->is_MergeMem() && !in_bb(out)) { |
|
608 |
// Either unrolling is causing a memory edge not to disappear, |
|
609 |
// or need to run igvn.optimize() again before SLP |
|
610 |
} else if (out->is_Phi() && out->bottom_type() == Type::MEMORY && !in_bb(out)) { |
|
611 |
// Ditto. Not sure what else to check further. |
|
2334 | 612 |
} else if (out->Opcode() == Op_StoreCM && out->in(MemNode::OopStore) == n) { |
1 | 613 |
// StoreCM has an input edge used as a precedence edge. |
614 |
// Maybe an issue when oop stores are vectorized. |
|
615 |
} else { |
|
616 |
assert(out == prev || prev == NULL, "no branches off of store slice"); |
|
617 |
} |
|
618 |
} |
|
619 |
} |
|
620 |
if (n == stop) break; |
|
621 |
preds.push(n); |
|
622 |
prev = n; |
|
15755
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
623 |
assert(n->is_Mem(), err_msg_res("unexpected node %s", n->Name())); |
1 | 624 |
n = n->in(MemNode::Memory); |
625 |
} |
|
626 |
} |
|
627 |
||
628 |
//------------------------------stmts_can_pack--------------------------- |
|
2131 | 629 |
// Can s1 and s2 be in a pack with s1 immediately preceding s2 and |
1 | 630 |
// s1 aligned at "align" |
631 |
bool SuperWord::stmts_can_pack(Node* s1, Node* s2, int align) { |
|
3906
6767b0c66883
6879921: CTW failure jdk6_18/hotspot/src/share/vm/utilities/globalDefinitions.cpp:268
cfang
parents:
3904
diff
changeset
|
632 |
|
6767b0c66883
6879921: CTW failure jdk6_18/hotspot/src/share/vm/utilities/globalDefinitions.cpp:268
cfang
parents:
3904
diff
changeset
|
633 |
// Do not use superword for non-primitives |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
634 |
BasicType bt1 = velt_basic_type(s1); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
635 |
BasicType bt2 = velt_basic_type(s2); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
636 |
if(!is_java_primitive(bt1) || !is_java_primitive(bt2)) |
3906
6767b0c66883
6879921: CTW failure jdk6_18/hotspot/src/share/vm/utilities/globalDefinitions.cpp:268
cfang
parents:
3904
diff
changeset
|
637 |
return false; |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
638 |
if (Matcher::max_vector_size(bt1) < 2) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
639 |
return false; // No vectors for this type |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
640 |
} |
3906
6767b0c66883
6879921: CTW failure jdk6_18/hotspot/src/share/vm/utilities/globalDefinitions.cpp:268
cfang
parents:
3904
diff
changeset
|
641 |
|
1 | 642 |
if (isomorphic(s1, s2)) { |
643 |
if (independent(s1, s2)) { |
|
644 |
if (!exists_at(s1, 0) && !exists_at(s2, 1)) { |
|
645 |
if (!s1->is_Mem() || are_adjacent_refs(s1, s2)) { |
|
646 |
int s1_align = alignment(s1); |
|
647 |
int s2_align = alignment(s2); |
|
648 |
if (s1_align == top_align || s1_align == align) { |
|
649 |
if (s2_align == top_align || s2_align == align + data_size(s1)) { |
|
650 |
return true; |
|
651 |
} |
|
652 |
} |
|
653 |
} |
|
654 |
} |
|
655 |
} |
|
656 |
} |
|
657 |
return false; |
|
658 |
} |
|
659 |
||
660 |
//------------------------------exists_at--------------------------- |
|
661 |
// Does s exist in a pack at position pos? |
|
662 |
bool SuperWord::exists_at(Node* s, uint pos) { |
|
663 |
for (int i = 0; i < _packset.length(); i++) { |
|
664 |
Node_List* p = _packset.at(i); |
|
665 |
if (p->at(pos) == s) { |
|
666 |
return true; |
|
667 |
} |
|
668 |
} |
|
669 |
return false; |
|
670 |
} |
|
671 |
||
672 |
//------------------------------are_adjacent_refs--------------------------- |
|
673 |
// Is s1 immediately before s2 in memory? |
|
674 |
bool SuperWord::are_adjacent_refs(Node* s1, Node* s2) { |
|
675 |
if (!s1->is_Mem() || !s2->is_Mem()) return false; |
|
676 |
if (!in_bb(s1) || !in_bb(s2)) return false; |
|
5708 | 677 |
|
678 |
// Do not use superword for non-primitives |
|
679 |
if (!is_java_primitive(s1->as_Mem()->memory_type()) || |
|
680 |
!is_java_primitive(s2->as_Mem()->memory_type())) { |
|
681 |
return false; |
|
682 |
} |
|
683 |
||
1 | 684 |
// FIXME - co_locate_pack fails on Stores in different mem-slices, so |
685 |
// only pack memops that are in the same alias set until that's fixed. |
|
686 |
if (_phase->C->get_alias_index(s1->as_Mem()->adr_type()) != |
|
687 |
_phase->C->get_alias_index(s2->as_Mem()->adr_type())) |
|
688 |
return false; |
|
689 |
SWPointer p1(s1->as_Mem(), this); |
|
690 |
SWPointer p2(s2->as_Mem(), this); |
|
691 |
if (p1.base() != p2.base() || !p1.comparable(p2)) return false; |
|
692 |
int diff = p2.offset_in_bytes() - p1.offset_in_bytes(); |
|
693 |
return diff == data_size(s1); |
|
694 |
} |
|
695 |
||
696 |
//------------------------------isomorphic--------------------------- |
|
697 |
// Are s1 and s2 similar? |
|
698 |
bool SuperWord::isomorphic(Node* s1, Node* s2) { |
|
699 |
if (s1->Opcode() != s2->Opcode()) return false; |
|
700 |
if (s1->req() != s2->req()) return false; |
|
701 |
if (s1->in(0) != s2->in(0)) return false; |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
702 |
if (!same_velt_type(s1, s2)) return false; |
1 | 703 |
return true; |
704 |
} |
|
705 |
||
706 |
//------------------------------independent--------------------------- |
|
707 |
// Is there no data path from s1 to s2 or s2 to s1? |
|
708 |
bool SuperWord::independent(Node* s1, Node* s2) { |
|
709 |
// assert(s1->Opcode() == s2->Opcode(), "check isomorphic first"); |
|
710 |
int d1 = depth(s1); |
|
711 |
int d2 = depth(s2); |
|
712 |
if (d1 == d2) return s1 != s2; |
|
713 |
Node* deep = d1 > d2 ? s1 : s2; |
|
714 |
Node* shallow = d1 > d2 ? s2 : s1; |
|
715 |
||
716 |
visited_clear(); |
|
717 |
||
718 |
return independent_path(shallow, deep); |
|
719 |
} |
|
720 |
||
721 |
//------------------------------independent_path------------------------------ |
|
722 |
// Helper for independent |
|
723 |
bool SuperWord::independent_path(Node* shallow, Node* deep, uint dp) { |
|
724 |
if (dp >= 1000) return false; // stop deep recursion |
|
725 |
visited_set(deep); |
|
726 |
int shal_depth = depth(shallow); |
|
727 |
assert(shal_depth <= depth(deep), "must be"); |
|
728 |
for (DepPreds preds(deep, _dg); !preds.done(); preds.next()) { |
|
729 |
Node* pred = preds.current(); |
|
730 |
if (in_bb(pred) && !visited_test(pred)) { |
|
731 |
if (shallow == pred) { |
|
732 |
return false; |
|
733 |
} |
|
734 |
if (shal_depth < depth(pred) && !independent_path(shallow, pred, dp+1)) { |
|
735 |
return false; |
|
736 |
} |
|
737 |
} |
|
738 |
} |
|
739 |
return true; |
|
740 |
} |
|
741 |
||
742 |
//------------------------------set_alignment--------------------------- |
|
743 |
void SuperWord::set_alignment(Node* s1, Node* s2, int align) { |
|
744 |
set_alignment(s1, align); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
745 |
if (align == top_align || align == bottom_align) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
746 |
set_alignment(s2, align); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
747 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
748 |
set_alignment(s2, align + data_size(s1)); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
749 |
} |
1 | 750 |
} |
751 |
||
752 |
//------------------------------data_size--------------------------- |
|
753 |
int SuperWord::data_size(Node* s) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
754 |
int bsize = type2aelembytes(velt_basic_type(s)); |
1 | 755 |
assert(bsize != 0, "valid size"); |
756 |
return bsize; |
|
757 |
} |
|
758 |
||
759 |
//------------------------------extend_packlist--------------------------- |
|
760 |
// Extend packset by following use->def and def->use links from pack members. |
|
761 |
void SuperWord::extend_packlist() { |
|
762 |
bool changed; |
|
763 |
do { |
|
764 |
changed = false; |
|
765 |
for (int i = 0; i < _packset.length(); i++) { |
|
766 |
Node_List* p = _packset.at(i); |
|
767 |
changed |= follow_use_defs(p); |
|
768 |
changed |= follow_def_uses(p); |
|
769 |
} |
|
770 |
} while (changed); |
|
771 |
||
772 |
#ifndef PRODUCT |
|
773 |
if (TraceSuperWord) { |
|
774 |
tty->print_cr("\nAfter extend_packlist"); |
|
775 |
print_packset(); |
|
776 |
} |
|
777 |
#endif |
|
778 |
} |
|
779 |
||
780 |
//------------------------------follow_use_defs--------------------------- |
|
781 |
// Extend the packset by visiting operand definitions of nodes in pack p |
|
782 |
bool SuperWord::follow_use_defs(Node_List* p) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
783 |
assert(p->size() == 2, "just checking"); |
1 | 784 |
Node* s1 = p->at(0); |
785 |
Node* s2 = p->at(1); |
|
786 |
assert(s1->req() == s2->req(), "just checking"); |
|
787 |
assert(alignment(s1) + data_size(s1) == alignment(s2), "just checking"); |
|
788 |
||
789 |
if (s1->is_Load()) return false; |
|
790 |
||
791 |
int align = alignment(s1); |
|
792 |
bool changed = false; |
|
793 |
int start = s1->is_Store() ? MemNode::ValueIn : 1; |
|
794 |
int end = s1->is_Store() ? MemNode::ValueIn+1 : s1->req(); |
|
795 |
for (int j = start; j < end; j++) { |
|
796 |
Node* t1 = s1->in(j); |
|
797 |
Node* t2 = s2->in(j); |
|
798 |
if (!in_bb(t1) || !in_bb(t2)) |
|
799 |
continue; |
|
800 |
if (stmts_can_pack(t1, t2, align)) { |
|
801 |
if (est_savings(t1, t2) >= 0) { |
|
802 |
Node_List* pair = new Node_List(); |
|
803 |
pair->push(t1); |
|
804 |
pair->push(t2); |
|
805 |
_packset.append(pair); |
|
806 |
set_alignment(t1, t2, align); |
|
807 |
changed = true; |
|
808 |
} |
|
809 |
} |
|
810 |
} |
|
811 |
return changed; |
|
812 |
} |
|
813 |
||
814 |
//------------------------------follow_def_uses--------------------------- |
|
815 |
// Extend the packset by visiting uses of nodes in pack p |
|
816 |
bool SuperWord::follow_def_uses(Node_List* p) { |
|
817 |
bool changed = false; |
|
818 |
Node* s1 = p->at(0); |
|
819 |
Node* s2 = p->at(1); |
|
820 |
assert(p->size() == 2, "just checking"); |
|
821 |
assert(s1->req() == s2->req(), "just checking"); |
|
822 |
assert(alignment(s1) + data_size(s1) == alignment(s2), "just checking"); |
|
823 |
||
824 |
if (s1->is_Store()) return false; |
|
825 |
||
826 |
int align = alignment(s1); |
|
827 |
int savings = -1; |
|
828 |
Node* u1 = NULL; |
|
829 |
Node* u2 = NULL; |
|
830 |
for (DUIterator_Fast imax, i = s1->fast_outs(imax); i < imax; i++) { |
|
831 |
Node* t1 = s1->fast_out(i); |
|
832 |
if (!in_bb(t1)) continue; |
|
833 |
for (DUIterator_Fast jmax, j = s2->fast_outs(jmax); j < jmax; j++) { |
|
834 |
Node* t2 = s2->fast_out(j); |
|
835 |
if (!in_bb(t2)) continue; |
|
836 |
if (!opnd_positions_match(s1, t1, s2, t2)) |
|
837 |
continue; |
|
838 |
if (stmts_can_pack(t1, t2, align)) { |
|
839 |
int my_savings = est_savings(t1, t2); |
|
840 |
if (my_savings > savings) { |
|
841 |
savings = my_savings; |
|
842 |
u1 = t1; |
|
843 |
u2 = t2; |
|
844 |
} |
|
845 |
} |
|
846 |
} |
|
847 |
} |
|
848 |
if (savings >= 0) { |
|
849 |
Node_List* pair = new Node_List(); |
|
850 |
pair->push(u1); |
|
851 |
pair->push(u2); |
|
852 |
_packset.append(pair); |
|
853 |
set_alignment(u1, u2, align); |
|
854 |
changed = true; |
|
855 |
} |
|
856 |
return changed; |
|
857 |
} |
|
858 |
||
859 |
//---------------------------opnd_positions_match------------------------- |
|
860 |
// Is the use of d1 in u1 at the same operand position as d2 in u2? |
|
861 |
bool SuperWord::opnd_positions_match(Node* d1, Node* u1, Node* d2, Node* u2) { |
|
862 |
uint ct = u1->req(); |
|
863 |
if (ct != u2->req()) return false; |
|
864 |
uint i1 = 0; |
|
865 |
uint i2 = 0; |
|
866 |
do { |
|
867 |
for (i1++; i1 < ct; i1++) if (u1->in(i1) == d1) break; |
|
868 |
for (i2++; i2 < ct; i2++) if (u2->in(i2) == d2) break; |
|
869 |
if (i1 != i2) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
870 |
if ((i1 == (3-i2)) && (u2->is_Add() || u2->is_Mul())) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
871 |
// Further analysis relies on operands position matching. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
872 |
u2->swap_edges(i1, i2); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
873 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
874 |
return false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
875 |
} |
1 | 876 |
} |
877 |
} while (i1 < ct); |
|
878 |
return true; |
|
879 |
} |
|
880 |
||
881 |
//------------------------------est_savings--------------------------- |
|
882 |
// Estimate the savings from executing s1 and s2 as a pack |
|
883 |
int SuperWord::est_savings(Node* s1, Node* s2) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
884 |
int save_in = 2 - 1; // 2 operations per instruction in packed form |
1 | 885 |
|
886 |
// inputs |
|
887 |
for (uint i = 1; i < s1->req(); i++) { |
|
888 |
Node* x1 = s1->in(i); |
|
889 |
Node* x2 = s2->in(i); |
|
890 |
if (x1 != x2) { |
|
891 |
if (are_adjacent_refs(x1, x2)) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
892 |
save_in += adjacent_profit(x1, x2); |
1 | 893 |
} else if (!in_packset(x1, x2)) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
894 |
save_in -= pack_cost(2); |
1 | 895 |
} else { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
896 |
save_in += unpack_cost(2); |
1 | 897 |
} |
898 |
} |
|
899 |
} |
|
900 |
||
901 |
// uses of result |
|
902 |
uint ct = 0; |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
903 |
int save_use = 0; |
1 | 904 |
for (DUIterator_Fast imax, i = s1->fast_outs(imax); i < imax; i++) { |
905 |
Node* s1_use = s1->fast_out(i); |
|
906 |
for (int j = 0; j < _packset.length(); j++) { |
|
907 |
Node_List* p = _packset.at(j); |
|
908 |
if (p->at(0) == s1_use) { |
|
909 |
for (DUIterator_Fast kmax, k = s2->fast_outs(kmax); k < kmax; k++) { |
|
910 |
Node* s2_use = s2->fast_out(k); |
|
911 |
if (p->at(p->size()-1) == s2_use) { |
|
912 |
ct++; |
|
913 |
if (are_adjacent_refs(s1_use, s2_use)) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
914 |
save_use += adjacent_profit(s1_use, s2_use); |
1 | 915 |
} |
916 |
} |
|
917 |
} |
|
918 |
} |
|
919 |
} |
|
920 |
} |
|
921 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
922 |
if (ct < s1->outcnt()) save_use += unpack_cost(1); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
923 |
if (ct < s2->outcnt()) save_use += unpack_cost(1); |
1 | 924 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
925 |
return MAX2(save_in, save_use); |
1 | 926 |
} |
927 |
||
928 |
//------------------------------costs--------------------------- |
|
929 |
int SuperWord::adjacent_profit(Node* s1, Node* s2) { return 2; } |
|
930 |
int SuperWord::pack_cost(int ct) { return ct; } |
|
931 |
int SuperWord::unpack_cost(int ct) { return ct; } |
|
932 |
||
933 |
//------------------------------combine_packs--------------------------- |
|
934 |
// Combine packs A and B with A.last == B.first into A.first..,A.last,B.second,..B.last |
|
935 |
void SuperWord::combine_packs() { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
936 |
bool changed = true; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
937 |
// Combine packs regardless max vector size. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
938 |
while (changed) { |
1 | 939 |
changed = false; |
940 |
for (int i = 0; i < _packset.length(); i++) { |
|
941 |
Node_List* p1 = _packset.at(i); |
|
942 |
if (p1 == NULL) continue; |
|
943 |
for (int j = 0; j < _packset.length(); j++) { |
|
944 |
Node_List* p2 = _packset.at(j); |
|
945 |
if (p2 == NULL) continue; |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
946 |
if (i == j) continue; |
1 | 947 |
if (p1->at(p1->size()-1) == p2->at(0)) { |
948 |
for (uint k = 1; k < p2->size(); k++) { |
|
949 |
p1->push(p2->at(k)); |
|
950 |
} |
|
951 |
_packset.at_put(j, NULL); |
|
952 |
changed = true; |
|
953 |
} |
|
954 |
} |
|
955 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
956 |
} |
1 | 957 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
958 |
// Split packs which have size greater then max vector size. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
959 |
for (int i = 0; i < _packset.length(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
960 |
Node_List* p1 = _packset.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
961 |
if (p1 != NULL) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
962 |
BasicType bt = velt_basic_type(p1->at(0)); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
963 |
uint max_vlen = Matcher::max_vector_size(bt); // Max elements in vector |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
964 |
assert(is_power_of_2(max_vlen), "sanity"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
965 |
uint psize = p1->size(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
966 |
if (!is_power_of_2(psize)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
967 |
// Skip pack which can't be vector. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
968 |
// case1: for(...) { a[i] = i; } elements values are different (i+x) |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
969 |
// case2: for(...) { a[i] = b[i+1]; } can't align both, load and store |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
970 |
_packset.at_put(i, NULL); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
971 |
continue; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
972 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
973 |
if (psize > max_vlen) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
974 |
Node_List* pack = new Node_List(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
975 |
for (uint j = 0; j < psize; j++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
976 |
pack->push(p1->at(j)); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
977 |
if (pack->size() >= max_vlen) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
978 |
assert(is_power_of_2(pack->size()), "sanity"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
979 |
_packset.append(pack); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
980 |
pack = new Node_List(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
981 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
982 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
983 |
_packset.at_put(i, NULL); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
984 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
985 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
986 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
987 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
988 |
// Compress list. |
1 | 989 |
for (int i = _packset.length() - 1; i >= 0; i--) { |
990 |
Node_List* p1 = _packset.at(i); |
|
991 |
if (p1 == NULL) { |
|
992 |
_packset.remove_at(i); |
|
993 |
} |
|
994 |
} |
|
995 |
||
996 |
#ifndef PRODUCT |
|
997 |
if (TraceSuperWord) { |
|
998 |
tty->print_cr("\nAfter combine_packs"); |
|
999 |
print_packset(); |
|
1000 |
} |
|
1001 |
#endif |
|
1002 |
} |
|
1003 |
||
1004 |
//-----------------------------construct_my_pack_map-------------------------- |
|
1005 |
// Construct the map from nodes to packs. Only valid after the |
|
1006 |
// point where a node is only in one pack (after combine_packs). |
|
1007 |
void SuperWord::construct_my_pack_map() { |
|
1008 |
Node_List* rslt = NULL; |
|
1009 |
for (int i = 0; i < _packset.length(); i++) { |
|
1010 |
Node_List* p = _packset.at(i); |
|
1011 |
for (uint j = 0; j < p->size(); j++) { |
|
1012 |
Node* s = p->at(j); |
|
1013 |
assert(my_pack(s) == NULL, "only in one pack"); |
|
1014 |
set_my_pack(s, p); |
|
1015 |
} |
|
1016 |
} |
|
1017 |
} |
|
1018 |
||
1019 |
//------------------------------filter_packs--------------------------- |
|
1020 |
// Remove packs that are not implemented or not profitable. |
|
1021 |
void SuperWord::filter_packs() { |
|
1022 |
||
1023 |
// Remove packs that are not implemented |
|
1024 |
for (int i = _packset.length() - 1; i >= 0; i--) { |
|
1025 |
Node_List* pk = _packset.at(i); |
|
1026 |
bool impl = implemented(pk); |
|
1027 |
if (!impl) { |
|
1028 |
#ifndef PRODUCT |
|
1029 |
if (TraceSuperWord && Verbose) { |
|
1030 |
tty->print_cr("Unimplemented"); |
|
1031 |
pk->at(0)->dump(); |
|
1032 |
} |
|
1033 |
#endif |
|
1034 |
remove_pack_at(i); |
|
1035 |
} |
|
1036 |
} |
|
1037 |
||
1038 |
// Remove packs that are not profitable |
|
1039 |
bool changed; |
|
1040 |
do { |
|
1041 |
changed = false; |
|
1042 |
for (int i = _packset.length() - 1; i >= 0; i--) { |
|
1043 |
Node_List* pk = _packset.at(i); |
|
1044 |
bool prof = profitable(pk); |
|
1045 |
if (!prof) { |
|
1046 |
#ifndef PRODUCT |
|
1047 |
if (TraceSuperWord && Verbose) { |
|
1048 |
tty->print_cr("Unprofitable"); |
|
1049 |
pk->at(0)->dump(); |
|
1050 |
} |
|
1051 |
#endif |
|
1052 |
remove_pack_at(i); |
|
1053 |
changed = true; |
|
1054 |
} |
|
1055 |
} |
|
1056 |
} while (changed); |
|
1057 |
||
1058 |
#ifndef PRODUCT |
|
1059 |
if (TraceSuperWord) { |
|
1060 |
tty->print_cr("\nAfter filter_packs"); |
|
1061 |
print_packset(); |
|
1062 |
tty->cr(); |
|
1063 |
} |
|
1064 |
#endif |
|
1065 |
} |
|
1066 |
||
1067 |
//------------------------------implemented--------------------------- |
|
1068 |
// Can code be generated for pack p? |
|
1069 |
bool SuperWord::implemented(Node_List* p) { |
|
1070 |
Node* p0 = p->at(0); |
|
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1071 |
return VectorNode::implemented(p0->Opcode(), p->size(), velt_basic_type(p0)); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1072 |
} |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1073 |
|
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1074 |
//------------------------------same_inputs-------------------------- |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1075 |
// For pack p, are all idx operands the same? |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1076 |
static bool same_inputs(Node_List* p, int idx) { |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1077 |
Node* p0 = p->at(0); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1078 |
uint vlen = p->size(); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1079 |
Node* p0_def = p0->in(idx); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1080 |
for (uint i = 1; i < vlen; i++) { |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1081 |
Node* pi = p->at(i); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1082 |
Node* pi_def = pi->in(idx); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1083 |
if (p0_def != pi_def) |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1084 |
return false; |
13488 | 1085 |
} |
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1086 |
return true; |
1 | 1087 |
} |
1088 |
||
1089 |
//------------------------------profitable--------------------------- |
|
1090 |
// For pack p, are all operands and all uses (with in the block) vector? |
|
1091 |
bool SuperWord::profitable(Node_List* p) { |
|
1092 |
Node* p0 = p->at(0); |
|
1093 |
uint start, end; |
|
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1094 |
VectorNode::vector_operands(p0, &start, &end); |
1 | 1095 |
|
13894 | 1096 |
// Return false if some inputs are not vectors or vectors with different |
1097 |
// size or alignment. |
|
1098 |
// Also, for now, return false if not scalar promotion case when inputs are |
|
1099 |
// the same. Later, implement PackNode and allow differing, non-vector inputs |
|
1100 |
// (maybe just the ones from outside the block.) |
|
1 | 1101 |
for (uint i = start; i < end; i++) { |
13894 | 1102 |
if (!is_vector_use(p0, i)) |
1103 |
return false; |
|
1 | 1104 |
} |
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1105 |
if (VectorNode::is_shift(p0)) { |
13894 | 1106 |
// For now, return false if shift count is vector or not scalar promotion |
1107 |
// case (different shift counts) because it is not supported yet. |
|
1108 |
Node* cnt = p0->in(2); |
|
1109 |
Node_List* cnt_pk = my_pack(cnt); |
|
1110 |
if (cnt_pk != NULL) |
|
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1111 |
return false; |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1112 |
if (!same_inputs(p, 2)) |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1113 |
return false; |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1114 |
} |
1 | 1115 |
if (!p0->is_Store()) { |
1116 |
// For now, return false if not all uses are vector. |
|
1117 |
// Later, implement ExtractNode and allow non-vector uses (maybe |
|
1118 |
// just the ones outside the block.) |
|
1119 |
for (uint i = 0; i < p->size(); i++) { |
|
1120 |
Node* def = p->at(i); |
|
1121 |
for (DUIterator_Fast jmax, j = def->fast_outs(jmax); j < jmax; j++) { |
|
1122 |
Node* use = def->fast_out(j); |
|
1123 |
for (uint k = 0; k < use->req(); k++) { |
|
1124 |
Node* n = use->in(k); |
|
1125 |
if (def == n) { |
|
1126 |
if (!is_vector_use(use, k)) { |
|
1127 |
return false; |
|
1128 |
} |
|
1129 |
} |
|
1130 |
} |
|
1131 |
} |
|
1132 |
} |
|
1133 |
} |
|
1134 |
return true; |
|
1135 |
} |
|
1136 |
||
1137 |
//------------------------------schedule--------------------------- |
|
1138 |
// Adjust the memory graph for the packed operations |
|
1139 |
void SuperWord::schedule() { |
|
1140 |
||
1141 |
// Co-locate in the memory graph the members of each memory pack |
|
1142 |
for (int i = 0; i < _packset.length(); i++) { |
|
1143 |
co_locate_pack(_packset.at(i)); |
|
1144 |
} |
|
1145 |
} |
|
1146 |
||
2334 | 1147 |
//-------------------------------remove_and_insert------------------- |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1148 |
// Remove "current" from its current position in the memory graph and insert |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1149 |
// it after the appropriate insertion point (lip or uip). |
2334 | 1150 |
void SuperWord::remove_and_insert(MemNode *current, MemNode *prev, MemNode *lip, |
1151 |
Node *uip, Unique_Node_List &sched_before) { |
|
1152 |
Node* my_mem = current->in(MemNode::Memory); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1153 |
bool sched_up = sched_before.member(current); |
2334 | 1154 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1155 |
// remove current_store from its current position in the memmory graph |
2334 | 1156 |
for (DUIterator i = current->outs(); current->has_out(i); i++) { |
1157 |
Node* use = current->out(i); |
|
1158 |
if (use->is_Mem()) { |
|
1159 |
assert(use->in(MemNode::Memory) == current, "must be"); |
|
1160 |
if (use == prev) { // connect prev to my_mem |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1161 |
_igvn.replace_input_of(use, MemNode::Memory, my_mem); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1162 |
--i; //deleted this edge; rescan position |
2334 | 1163 |
} else if (sched_before.member(use)) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1164 |
if (!sched_up) { // Will be moved together with current |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1165 |
_igvn.replace_input_of(use, MemNode::Memory, uip); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1166 |
--i; //deleted this edge; rescan position |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1167 |
} |
2334 | 1168 |
} else { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1169 |
if (sched_up) { // Will be moved together with current |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1170 |
_igvn.replace_input_of(use, MemNode::Memory, lip); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1171 |
--i; //deleted this edge; rescan position |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1172 |
} |
2334 | 1173 |
} |
1174 |
} |
|
1175 |
} |
|
1176 |
||
1177 |
Node *insert_pt = sched_up ? uip : lip; |
|
1178 |
||
1179 |
// all uses of insert_pt's memory state should use current's instead |
|
1180 |
for (DUIterator i = insert_pt->outs(); insert_pt->has_out(i); i++) { |
|
1181 |
Node* use = insert_pt->out(i); |
|
1182 |
if (use->is_Mem()) { |
|
1183 |
assert(use->in(MemNode::Memory) == insert_pt, "must be"); |
|
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1184 |
_igvn.replace_input_of(use, MemNode::Memory, current); |
2334 | 1185 |
--i; //deleted this edge; rescan position |
1186 |
} else if (!sched_up && use->is_Phi() && use->bottom_type() == Type::MEMORY) { |
|
1187 |
uint pos; //lip (lower insert point) must be the last one in the memory slice |
|
1188 |
for (pos=1; pos < use->req(); pos++) { |
|
1189 |
if (use->in(pos) == insert_pt) break; |
|
1190 |
} |
|
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1191 |
_igvn.replace_input_of(use, pos, current); |
2334 | 1192 |
--i; |
1193 |
} |
|
1194 |
} |
|
1195 |
||
1196 |
//connect current to insert_pt |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1197 |
_igvn.replace_input_of(current, MemNode::Memory, insert_pt); |
2334 | 1198 |
} |
1199 |
||
1200 |
//------------------------------co_locate_pack---------------------------------- |
|
1201 |
// To schedule a store pack, we need to move any sandwiched memory ops either before |
|
1202 |
// or after the pack, based upon dependence information: |
|
1203 |
// (1) If any store in the pack depends on the sandwiched memory op, the |
|
1204 |
// sandwiched memory op must be scheduled BEFORE the pack; |
|
1205 |
// (2) If a sandwiched memory op depends on any store in the pack, the |
|
1206 |
// sandwiched memory op must be scheduled AFTER the pack; |
|
1207 |
// (3) If a sandwiched memory op (say, memA) depends on another sandwiched |
|
1208 |
// memory op (say memB), memB must be scheduled before memA. So, if memA is |
|
1209 |
// scheduled before the pack, memB must also be scheduled before the pack; |
|
1210 |
// (4) If there is no dependence restriction for a sandwiched memory op, we simply |
|
1211 |
// schedule this store AFTER the pack |
|
1212 |
// (5) We know there is no dependence cycle, so there in no other case; |
|
1213 |
// (6) Finally, all memory ops in another single pack should be moved in the same direction. |
|
1214 |
// |
|
3799 | 1215 |
// To schedule a load pack, we use the memory state of either the first or the last load in |
1216 |
// the pack, based on the dependence constraint. |
|
1 | 1217 |
void SuperWord::co_locate_pack(Node_List* pk) { |
1218 |
if (pk->at(0)->is_Store()) { |
|
1219 |
MemNode* first = executed_first(pk)->as_Mem(); |
|
1220 |
MemNode* last = executed_last(pk)->as_Mem(); |
|
2334 | 1221 |
Unique_Node_List schedule_before_pack; |
1222 |
Unique_Node_List memops; |
|
1223 |
||
1 | 1224 |
MemNode* current = last->in(MemNode::Memory)->as_Mem(); |
2334 | 1225 |
MemNode* previous = last; |
1 | 1226 |
while (true) { |
1227 |
assert(in_bb(current), "stay in block"); |
|
2334 | 1228 |
memops.push(previous); |
1229 |
for (DUIterator i = current->outs(); current->has_out(i); i++) { |
|
1230 |
Node* use = current->out(i); |
|
1231 |
if (use->is_Mem() && use != previous) |
|
1232 |
memops.push(use); |
|
1233 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1234 |
if (current == first) break; |
2334 | 1235 |
previous = current; |
1236 |
current = current->in(MemNode::Memory)->as_Mem(); |
|
1237 |
} |
|
1238 |
||
1239 |
// determine which memory operations should be scheduled before the pack |
|
1240 |
for (uint i = 1; i < memops.size(); i++) { |
|
1241 |
Node *s1 = memops.at(i); |
|
1242 |
if (!in_pack(s1, pk) && !schedule_before_pack.member(s1)) { |
|
1243 |
for (uint j = 0; j< i; j++) { |
|
1244 |
Node *s2 = memops.at(j); |
|
1245 |
if (!independent(s1, s2)) { |
|
1246 |
if (in_pack(s2, pk) || schedule_before_pack.member(s2)) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1247 |
schedule_before_pack.push(s1); // s1 must be scheduled before |
2334 | 1248 |
Node_List* mem_pk = my_pack(s1); |
1249 |
if (mem_pk != NULL) { |
|
1250 |
for (uint ii = 0; ii < mem_pk->size(); ii++) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1251 |
Node* s = mem_pk->at(ii); // follow partner |
2334 | 1252 |
if (memops.member(s) && !schedule_before_pack.member(s)) |
1253 |
schedule_before_pack.push(s); |
|
1254 |
} |
|
1255 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1256 |
break; |
2334 | 1257 |
} |
1258 |
} |
|
1259 |
} |
|
1260 |
} |
|
1261 |
} |
|
1262 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1263 |
Node* upper_insert_pt = first->in(MemNode::Memory); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1264 |
// Following code moves loads connected to upper_insert_pt below aliased stores. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1265 |
// Collect such loads here and reconnect them back to upper_insert_pt later. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1266 |
memops.clear(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1267 |
for (DUIterator i = upper_insert_pt->outs(); upper_insert_pt->has_out(i); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1268 |
Node* use = upper_insert_pt->out(i); |
24090
196e4bd91543
8041351: Crash in src/share/vm/opto/loopnode.cpp:3215 - assert(!had_error) failed: bad dominance
kvn
parents:
23528
diff
changeset
|
1269 |
if (use->is_Mem() && !use->is_Store()) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1270 |
memops.push(use); |
24090
196e4bd91543
8041351: Crash in src/share/vm/opto/loopnode.cpp:3215 - assert(!had_error) failed: bad dominance
kvn
parents:
23528
diff
changeset
|
1271 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1272 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1273 |
|
2334 | 1274 |
MemNode* lower_insert_pt = last; |
1275 |
previous = last; //previous store in pk |
|
1276 |
current = last->in(MemNode::Memory)->as_Mem(); |
|
1277 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1278 |
// start scheduling from "last" to "first" |
2334 | 1279 |
while (true) { |
1280 |
assert(in_bb(current), "stay in block"); |
|
1281 |
assert(in_pack(previous, pk), "previous stays in pack"); |
|
1 | 1282 |
Node* my_mem = current->in(MemNode::Memory); |
2334 | 1283 |
|
1 | 1284 |
if (in_pack(current, pk)) { |
2334 | 1285 |
// Forward users of my memory state (except "previous) to my input memory state |
1 | 1286 |
for (DUIterator i = current->outs(); current->has_out(i); i++) { |
1287 |
Node* use = current->out(i); |
|
2334 | 1288 |
if (use->is_Mem() && use != previous) { |
1 | 1289 |
assert(use->in(MemNode::Memory) == current, "must be"); |
2334 | 1290 |
if (schedule_before_pack.member(use)) { |
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1291 |
_igvn.replace_input_of(use, MemNode::Memory, upper_insert_pt); |
2334 | 1292 |
} else { |
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1293 |
_igvn.replace_input_of(use, MemNode::Memory, lower_insert_pt); |
2334 | 1294 |
} |
1 | 1295 |
--i; // deleted this edge; rescan position |
1296 |
} |
|
1297 |
} |
|
2334 | 1298 |
previous = current; |
1299 |
} else { // !in_pack(current, pk) ==> a sandwiched store |
|
1300 |
remove_and_insert(current, previous, lower_insert_pt, upper_insert_pt, schedule_before_pack); |
|
1 | 1301 |
} |
2334 | 1302 |
|
1 | 1303 |
if (current == first) break; |
1304 |
current = my_mem->as_Mem(); |
|
2334 | 1305 |
} // end while |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1306 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1307 |
// Reconnect loads back to upper_insert_pt. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1308 |
for (uint i = 0; i < memops.size(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1309 |
Node *ld = memops.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1310 |
if (ld->in(MemNode::Memory) != upper_insert_pt) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1311 |
_igvn.replace_input_of(ld, MemNode::Memory, upper_insert_pt); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1312 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1313 |
} |
2334 | 1314 |
} else if (pk->at(0)->is_Load()) { //load |
3799 | 1315 |
// all loads in the pack should have the same memory state. By default, |
1316 |
// we use the memory state of the last load. However, if any load could |
|
1317 |
// not be moved down due to the dependence constraint, we use the memory |
|
1318 |
// state of the first load. |
|
1319 |
Node* last_mem = executed_last(pk)->in(MemNode::Memory); |
|
1320 |
Node* first_mem = executed_first(pk)->in(MemNode::Memory); |
|
1321 |
bool schedule_last = true; |
|
1322 |
for (uint i = 0; i < pk->size(); i++) { |
|
1323 |
Node* ld = pk->at(i); |
|
1324 |
for (Node* current = last_mem; current != ld->in(MemNode::Memory); |
|
1325 |
current=current->in(MemNode::Memory)) { |
|
1326 |
assert(current != first_mem, "corrupted memory graph"); |
|
1327 |
if(current->is_Mem() && !independent(current, ld)){ |
|
1328 |
schedule_last = false; // a later store depends on this load |
|
1329 |
break; |
|
1330 |
} |
|
1331 |
} |
|
1332 |
} |
|
1333 |
||
1334 |
Node* mem_input = schedule_last ? last_mem : first_mem; |
|
1335 |
_igvn.hash_delete(mem_input); |
|
1336 |
// Give each load the same memory state |
|
1 | 1337 |
for (uint i = 0; i < pk->size(); i++) { |
1338 |
LoadNode* ld = pk->at(i)->as_Load(); |
|
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1339 |
_igvn.replace_input_of(ld, MemNode::Memory, mem_input); |
1 | 1340 |
} |
1341 |
} |
|
1342 |
} |
|
1343 |
||
1344 |
//------------------------------output--------------------------- |
|
1345 |
// Convert packs into vector node operations |
|
1346 |
void SuperWord::output() { |
|
1347 |
if (_packset.length() == 0) return; |
|
1348 |
||
9101 | 1349 |
#ifndef PRODUCT |
1350 |
if (TraceLoopOpts) { |
|
1351 |
tty->print("SuperWord "); |
|
1352 |
lpt()->dump_head(); |
|
1353 |
} |
|
1354 |
#endif |
|
1355 |
||
1 | 1356 |
// MUST ENSURE main loop's initial value is properly aligned: |
1357 |
// (iv_initial_value + min_iv_offset) % vector_width_in_bytes() == 0 |
|
1358 |
||
1359 |
align_initial_loop_index(align_to_ref()); |
|
1360 |
||
1361 |
// Insert extract (unpack) operations for scalar uses |
|
1362 |
for (int i = 0; i < _packset.length(); i++) { |
|
1363 |
insert_extracts(_packset.at(i)); |
|
1364 |
} |
|
1365 |
||
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1366 |
Compile* C = _phase->C; |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1367 |
uint max_vlen_in_bytes = 0; |
1 | 1368 |
for (int i = 0; i < _block.length(); i++) { |
1369 |
Node* n = _block.at(i); |
|
1370 |
Node_List* p = my_pack(n); |
|
1371 |
if (p && n == executed_last(p)) { |
|
1372 |
uint vlen = p->size(); |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1373 |
uint vlen_in_bytes = 0; |
1 | 1374 |
Node* vn = NULL; |
1375 |
Node* low_adr = p->at(0); |
|
1376 |
Node* first = executed_first(p); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1377 |
int opc = n->Opcode(); |
1 | 1378 |
if (n->is_Load()) { |
1379 |
Node* ctl = n->in(MemNode::Control); |
|
1380 |
Node* mem = first->in(MemNode::Memory); |
|
25932
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1381 |
SWPointer p1(n->as_Mem(), this); |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1382 |
// Identify the memory dependency for the new loadVector node by |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1383 |
// walking up through memory chain. |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1384 |
// This is done to give flexibility to the new loadVector node so that |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1385 |
// it can move above independent storeVector nodes. |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1386 |
while (mem->is_StoreVector()) { |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1387 |
SWPointer p2(mem->as_Mem(), this); |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1388 |
int cmp = p1.cmp(p2); |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1389 |
if (SWPointer::not_equal(cmp) || !SWPointer::comparable(cmp)) { |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1390 |
mem = mem->in(MemNode::Memory); |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1391 |
} else { |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1392 |
break; // dependent memory |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1393 |
} |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1394 |
} |
1 | 1395 |
Node* adr = low_adr->in(MemNode::Address); |
1396 |
const TypePtr* atyp = n->adr_type(); |
|
25930 | 1397 |
vn = LoadVectorNode::make(opc, ctl, mem, adr, atyp, vlen, velt_basic_type(n)); |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1398 |
vlen_in_bytes = vn->as_LoadVector()->memory_size(); |
1 | 1399 |
} else if (n->is_Store()) { |
1400 |
// Promote value to be stored to vector |
|
10255 | 1401 |
Node* val = vector_opd(p, MemNode::ValueIn); |
1 | 1402 |
Node* ctl = n->in(MemNode::Control); |
1403 |
Node* mem = first->in(MemNode::Memory); |
|
1404 |
Node* adr = low_adr->in(MemNode::Address); |
|
1405 |
const TypePtr* atyp = n->adr_type(); |
|
25930 | 1406 |
vn = StoreVectorNode::make(opc, ctl, mem, adr, atyp, val, vlen); |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1407 |
vlen_in_bytes = vn->as_StoreVector()->memory_size(); |
1 | 1408 |
} else if (n->req() == 3) { |
1409 |
// Promote operands to vector |
|
1410 |
Node* in1 = vector_opd(p, 1); |
|
1411 |
Node* in2 = vector_opd(p, 2); |
|
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1412 |
if (VectorNode::is_invariant_vector(in1) && (n->is_Add() || n->is_Mul())) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1413 |
// Move invariant vector input into second position to avoid register spilling. |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1414 |
Node* tmp = in1; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1415 |
in1 = in2; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1416 |
in2 = tmp; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1417 |
} |
25930 | 1418 |
vn = VectorNode::make(opc, in1, in2, vlen, velt_basic_type(n)); |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1419 |
vlen_in_bytes = vn->as_Vector()->length_in_bytes(); |
1 | 1420 |
} else { |
1421 |
ShouldNotReachHere(); |
|
1422 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1423 |
assert(vn != NULL, "sanity"); |
13894 | 1424 |
_igvn.register_new_node_with_optimizer(vn); |
1 | 1425 |
_phase->set_ctrl(vn, _phase->get_ctrl(p->at(0))); |
1426 |
for (uint j = 0; j < p->size(); j++) { |
|
1427 |
Node* pm = p->at(j); |
|
5901
c046f8e9c52b
6677629: PhaseIterGVN::subsume_node() should call hash_delete() and add_users_to_worklist()
kvn
parents:
5708
diff
changeset
|
1428 |
_igvn.replace_node(pm, vn); |
1 | 1429 |
} |
1430 |
_igvn._worklist.push(vn); |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1431 |
|
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1432 |
if (vlen_in_bytes > max_vlen_in_bytes) { |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1433 |
max_vlen_in_bytes = vlen_in_bytes; |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1434 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1435 |
#ifdef ASSERT |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
1436 |
if (TraceNewVectors) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1437 |
tty->print("new Vector node: "); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1438 |
vn->dump(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1439 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1440 |
#endif |
1 | 1441 |
} |
1442 |
} |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1443 |
C->set_max_vector_size(max_vlen_in_bytes); |
1 | 1444 |
} |
1445 |
||
1446 |
//------------------------------vector_opd--------------------------- |
|
1447 |
// Create a vector operand for the nodes in pack p for operand: in(opd_idx) |
|
10255 | 1448 |
Node* SuperWord::vector_opd(Node_List* p, int opd_idx) { |
1 | 1449 |
Node* p0 = p->at(0); |
1450 |
uint vlen = p->size(); |
|
1451 |
Node* opd = p0->in(opd_idx); |
|
1452 |
||
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1453 |
if (same_inputs(p, opd_idx)) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1454 |
if (opd->is_Vector() || opd->is_LoadVector()) { |
13488 | 1455 |
assert(((opd_idx != 2) || !VectorNode::is_shift(p0)), "shift's count can't be vector"); |
10255 | 1456 |
return opd; // input is matching vector |
1 | 1457 |
} |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1458 |
if ((opd_idx == 2) && VectorNode::is_shift(p0)) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1459 |
Compile* C = _phase->C; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1460 |
Node* cnt = opd; |
13930 | 1461 |
// Vector instructions do not mask shift count, do it here. |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1462 |
juint mask = (p0->bottom_type() == TypeInt::INT) ? (BitsPerInt - 1) : (BitsPerLong - 1); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1463 |
const TypeInt* t = opd->find_int_type(); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1464 |
if (t != NULL && t->is_con()) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1465 |
juint shift = t->get_con(); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1466 |
if (shift > mask) { // Unsigned cmp |
25930 | 1467 |
cnt = ConNode::make(TypeInt::make(shift & mask)); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1468 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1469 |
} else { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1470 |
if (t == NULL || t->_lo < 0 || t->_hi > (int)mask) { |
25930 | 1471 |
cnt = ConNode::make(TypeInt::make(mask)); |
13894 | 1472 |
_igvn.register_new_node_with_optimizer(cnt); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
1473 |
cnt = new AndINode(opd, cnt); |
13894 | 1474 |
_igvn.register_new_node_with_optimizer(cnt); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1475 |
_phase->set_ctrl(cnt, _phase->get_ctrl(opd)); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1476 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1477 |
assert(opd->bottom_type()->isa_int(), "int type only"); |
13930 | 1478 |
// Move non constant shift count into vector register. |
25930 | 1479 |
cnt = VectorNode::shift_count(p0, cnt, vlen, velt_basic_type(p0)); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1480 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1481 |
if (cnt != opd) { |
13894 | 1482 |
_igvn.register_new_node_with_optimizer(cnt); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1483 |
_phase->set_ctrl(cnt, _phase->get_ctrl(opd)); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1484 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1485 |
return cnt; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1486 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1487 |
assert(!opd->is_StoreVector(), "such vector is not expected here"); |
12594 | 1488 |
// Convert scalar input to vector with the same number of elements as |
1489 |
// p0's vector. Use p0's type because size of operand's container in |
|
1490 |
// vector should match p0's size regardless operand's size. |
|
1491 |
const Type* p0_t = velt_type(p0); |
|
25930 | 1492 |
VectorNode* vn = VectorNode::scalar2vector(opd, vlen, p0_t); |
1 | 1493 |
|
13894 | 1494 |
_igvn.register_new_node_with_optimizer(vn); |
1 | 1495 |
_phase->set_ctrl(vn, _phase->get_ctrl(opd)); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1496 |
#ifdef ASSERT |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
1497 |
if (TraceNewVectors) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1498 |
tty->print("new Vector node: "); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1499 |
vn->dump(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1500 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1501 |
#endif |
1 | 1502 |
return vn; |
1503 |
} |
|
1504 |
||
1505 |
// Insert pack operation |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1506 |
BasicType bt = velt_basic_type(p0); |
25930 | 1507 |
PackNode* pk = PackNode::make(opd, vlen, bt); |
12594 | 1508 |
DEBUG_ONLY( const BasicType opd_bt = opd->bottom_type()->basic_type(); ) |
1 | 1509 |
|
1510 |
for (uint i = 1; i < vlen; i++) { |
|
1511 |
Node* pi = p->at(i); |
|
1512 |
Node* in = pi->in(opd_idx); |
|
1513 |
assert(my_pack(in) == NULL, "Should already have been unpacked"); |
|
12594 | 1514 |
assert(opd_bt == in->bottom_type()->basic_type(), "all same type"); |
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1515 |
pk->add_opd(in); |
1 | 1516 |
} |
13894 | 1517 |
_igvn.register_new_node_with_optimizer(pk); |
1 | 1518 |
_phase->set_ctrl(pk, _phase->get_ctrl(opd)); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1519 |
#ifdef ASSERT |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1520 |
if (TraceNewVectors) { |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1521 |
tty->print("new Vector node: "); |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1522 |
pk->dump(); |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1523 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1524 |
#endif |
1 | 1525 |
return pk; |
1526 |
} |
|
1527 |
||
1528 |
//------------------------------insert_extracts--------------------------- |
|
1529 |
// If a use of pack p is not a vector use, then replace the |
|
1530 |
// use with an extract operation. |
|
1531 |
void SuperWord::insert_extracts(Node_List* p) { |
|
1532 |
if (p->at(0)->is_Store()) return; |
|
1533 |
assert(_n_idx_list.is_empty(), "empty (node,index) list"); |
|
1534 |
||
1535 |
// Inspect each use of each pack member. For each use that is |
|
1536 |
// not a vector use, replace the use with an extract operation. |
|
1537 |
||
1538 |
for (uint i = 0; i < p->size(); i++) { |
|
1539 |
Node* def = p->at(i); |
|
1540 |
for (DUIterator_Fast jmax, j = def->fast_outs(jmax); j < jmax; j++) { |
|
1541 |
Node* use = def->fast_out(j); |
|
1542 |
for (uint k = 0; k < use->req(); k++) { |
|
1543 |
Node* n = use->in(k); |
|
1544 |
if (def == n) { |
|
1545 |
if (!is_vector_use(use, k)) { |
|
1546 |
_n_idx_list.push(use, k); |
|
1547 |
} |
|
1548 |
} |
|
1549 |
} |
|
1550 |
} |
|
1551 |
} |
|
1552 |
||
1553 |
while (_n_idx_list.is_nonempty()) { |
|
1554 |
Node* use = _n_idx_list.node(); |
|
1555 |
int idx = _n_idx_list.index(); |
|
1556 |
_n_idx_list.pop(); |
|
1557 |
Node* def = use->in(idx); |
|
1558 |
||
1559 |
// Insert extract operation |
|
1560 |
_igvn.hash_delete(def); |
|
1561 |
int def_pos = alignment(def) / data_size(def); |
|
1562 |
||
25930 | 1563 |
Node* ex = ExtractNode::make(def, def_pos, velt_basic_type(def)); |
13894 | 1564 |
_igvn.register_new_node_with_optimizer(ex); |
1 | 1565 |
_phase->set_ctrl(ex, _phase->get_ctrl(def)); |
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1566 |
_igvn.replace_input_of(use, idx, ex); |
1 | 1567 |
_igvn._worklist.push(def); |
1568 |
||
1569 |
bb_insert_after(ex, bb_idx(def)); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1570 |
set_velt_type(ex, velt_type(def)); |
1 | 1571 |
} |
1572 |
} |
|
1573 |
||
1574 |
//------------------------------is_vector_use--------------------------- |
|
1575 |
// Is use->in(u_idx) a vector use? |
|
1576 |
bool SuperWord::is_vector_use(Node* use, int u_idx) { |
|
1577 |
Node_List* u_pk = my_pack(use); |
|
1578 |
if (u_pk == NULL) return false; |
|
1579 |
Node* def = use->in(u_idx); |
|
1580 |
Node_List* d_pk = my_pack(def); |
|
1581 |
if (d_pk == NULL) { |
|
1582 |
// check for scalar promotion |
|
1583 |
Node* n = u_pk->at(0)->in(u_idx); |
|
1584 |
for (uint i = 1; i < u_pk->size(); i++) { |
|
1585 |
if (u_pk->at(i)->in(u_idx) != n) return false; |
|
1586 |
} |
|
1587 |
return true; |
|
1588 |
} |
|
1589 |
if (u_pk->size() != d_pk->size()) |
|
1590 |
return false; |
|
1591 |
for (uint i = 0; i < u_pk->size(); i++) { |
|
1592 |
Node* ui = u_pk->at(i); |
|
1593 |
Node* di = d_pk->at(i); |
|
1594 |
if (ui->in(u_idx) != di || alignment(ui) != alignment(di)) |
|
1595 |
return false; |
|
1596 |
} |
|
1597 |
return true; |
|
1598 |
} |
|
1599 |
||
1600 |
//------------------------------construct_bb--------------------------- |
|
1601 |
// Construct reverse postorder list of block members |
|
15755
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1602 |
bool SuperWord::construct_bb() { |
1 | 1603 |
Node* entry = bb(); |
1604 |
||
1605 |
assert(_stk.length() == 0, "stk is empty"); |
|
1606 |
assert(_block.length() == 0, "block is empty"); |
|
1607 |
assert(_data_entry.length() == 0, "data_entry is empty"); |
|
1608 |
assert(_mem_slice_head.length() == 0, "mem_slice_head is empty"); |
|
1609 |
assert(_mem_slice_tail.length() == 0, "mem_slice_tail is empty"); |
|
1610 |
||
1611 |
// Find non-control nodes with no inputs from within block, |
|
1612 |
// create a temporary map from node _idx to bb_idx for use |
|
1613 |
// by the visited and post_visited sets, |
|
1614 |
// and count number of nodes in block. |
|
1615 |
int bb_ct = 0; |
|
1616 |
for (uint i = 0; i < lpt()->_body.size(); i++ ) { |
|
1617 |
Node *n = lpt()->_body.at(i); |
|
1618 |
set_bb_idx(n, i); // Create a temporary map |
|
1619 |
if (in_bb(n)) { |
|
15755
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1620 |
if (n->is_LoadStore() || n->is_MergeMem() || |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1621 |
(n->is_Proj() && !n->as_Proj()->is_CFG())) { |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1622 |
// Bailout if the loop has LoadStore, MergeMem or data Proj |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1623 |
// nodes. Superword optimization does not work with them. |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1624 |
return false; |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1625 |
} |
1 | 1626 |
bb_ct++; |
1627 |
if (!n->is_CFG()) { |
|
1628 |
bool found = false; |
|
1629 |
for (uint j = 0; j < n->req(); j++) { |
|
1630 |
Node* def = n->in(j); |
|
1631 |
if (def && in_bb(def)) { |
|
1632 |
found = true; |
|
1633 |
break; |
|
1634 |
} |
|
1635 |
} |
|
1636 |
if (!found) { |
|
1637 |
assert(n != entry, "can't be entry"); |
|
1638 |
_data_entry.push(n); |
|
1639 |
} |
|
1640 |
} |
|
1641 |
} |
|
1642 |
} |
|
1643 |
||
1644 |
// Find memory slices (head and tail) |
|
1645 |
for (DUIterator_Fast imax, i = lp()->fast_outs(imax); i < imax; i++) { |
|
1646 |
Node *n = lp()->fast_out(i); |
|
1647 |
if (in_bb(n) && (n->is_Phi() && n->bottom_type() == Type::MEMORY)) { |
|
1648 |
Node* n_tail = n->in(LoopNode::LoopBackControl); |
|
961
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
781
diff
changeset
|
1649 |
if (n_tail != n->in(LoopNode::EntryControl)) { |
15755
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1650 |
if (!n_tail->is_Mem()) { |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1651 |
assert(n_tail->is_Mem(), err_msg_res("unexpected node for memory slice: %s", n_tail->Name())); |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1652 |
return false; // Bailout |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1653 |
} |
961
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
781
diff
changeset
|
1654 |
_mem_slice_head.push(n); |
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
781
diff
changeset
|
1655 |
_mem_slice_tail.push(n_tail); |
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
781
diff
changeset
|
1656 |
} |
1 | 1657 |
} |
1658 |
} |
|
1659 |
||
1660 |
// Create an RPO list of nodes in block |
|
1661 |
||
1662 |
visited_clear(); |
|
1663 |
post_visited_clear(); |
|
1664 |
||
1665 |
// Push all non-control nodes with no inputs from within block, then control entry |
|
1666 |
for (int j = 0; j < _data_entry.length(); j++) { |
|
1667 |
Node* n = _data_entry.at(j); |
|
1668 |
visited_set(n); |
|
1669 |
_stk.push(n); |
|
1670 |
} |
|
1671 |
visited_set(entry); |
|
1672 |
_stk.push(entry); |
|
1673 |
||
1674 |
// Do a depth first walk over out edges |
|
1675 |
int rpo_idx = bb_ct - 1; |
|
1676 |
int size; |
|
1677 |
while ((size = _stk.length()) > 0) { |
|
1678 |
Node* n = _stk.top(); // Leave node on stack |
|
1679 |
if (!visited_test_set(n)) { |
|
1680 |
// forward arc in graph |
|
1681 |
} else if (!post_visited_test(n)) { |
|
1682 |
// cross or back arc |
|
1683 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
1684 |
Node *use = n->fast_out(i); |
|
1685 |
if (in_bb(use) && !visited_test(use) && |
|
1686 |
// Don't go around backedge |
|
1687 |
(!use->is_Phi() || n == entry)) { |
|
1688 |
_stk.push(use); |
|
1689 |
} |
|
1690 |
} |
|
1691 |
if (_stk.length() == size) { |
|
1692 |
// There were no additional uses, post visit node now |
|
1693 |
_stk.pop(); // Remove node from stack |
|
1694 |
assert(rpo_idx >= 0, ""); |
|
1695 |
_block.at_put_grow(rpo_idx, n); |
|
1696 |
rpo_idx--; |
|
1697 |
post_visited_set(n); |
|
1698 |
assert(rpo_idx >= 0 || _stk.is_empty(), ""); |
|
1699 |
} |
|
1700 |
} else { |
|
1701 |
_stk.pop(); // Remove post-visited node from stack |
|
1702 |
} |
|
1703 |
} |
|
1704 |
||
1705 |
// Create real map of block indices for nodes |
|
1706 |
for (int j = 0; j < _block.length(); j++) { |
|
1707 |
Node* n = _block.at(j); |
|
1708 |
set_bb_idx(n, j); |
|
1709 |
} |
|
1710 |
||
1711 |
initialize_bb(); // Ensure extra info is allocated. |
|
1712 |
||
1713 |
#ifndef PRODUCT |
|
1714 |
if (TraceSuperWord) { |
|
1715 |
print_bb(); |
|
1716 |
tty->print_cr("\ndata entry nodes: %s", _data_entry.length() > 0 ? "" : "NONE"); |
|
1717 |
for (int m = 0; m < _data_entry.length(); m++) { |
|
1718 |
tty->print("%3d ", m); |
|
1719 |
_data_entry.at(m)->dump(); |
|
1720 |
} |
|
1721 |
tty->print_cr("\nmemory slices: %s", _mem_slice_head.length() > 0 ? "" : "NONE"); |
|
1722 |
for (int m = 0; m < _mem_slice_head.length(); m++) { |
|
1723 |
tty->print("%3d ", m); _mem_slice_head.at(m)->dump(); |
|
1724 |
tty->print(" "); _mem_slice_tail.at(m)->dump(); |
|
1725 |
} |
|
1726 |
} |
|
1727 |
#endif |
|
1728 |
assert(rpo_idx == -1 && bb_ct == _block.length(), "all block members found"); |
|
15755
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
1729 |
return (_mem_slice_head.length() > 0) || (_data_entry.length() > 0); |
1 | 1730 |
} |
1731 |
||
1732 |
//------------------------------initialize_bb--------------------------- |
|
1733 |
// Initialize per node info |
|
1734 |
void SuperWord::initialize_bb() { |
|
1735 |
Node* last = _block.at(_block.length() - 1); |
|
1736 |
grow_node_info(bb_idx(last)); |
|
1737 |
} |
|
1738 |
||
1739 |
//------------------------------bb_insert_after--------------------------- |
|
1740 |
// Insert n into block after pos |
|
1741 |
void SuperWord::bb_insert_after(Node* n, int pos) { |
|
1742 |
int n_pos = pos + 1; |
|
1743 |
// Make room |
|
1744 |
for (int i = _block.length() - 1; i >= n_pos; i--) { |
|
1745 |
_block.at_put_grow(i+1, _block.at(i)); |
|
1746 |
} |
|
1747 |
for (int j = _node_info.length() - 1; j >= n_pos; j--) { |
|
1748 |
_node_info.at_put_grow(j+1, _node_info.at(j)); |
|
1749 |
} |
|
1750 |
// Set value |
|
1751 |
_block.at_put_grow(n_pos, n); |
|
1752 |
_node_info.at_put_grow(n_pos, SWNodeInfo::initial); |
|
1753 |
// Adjust map from node->_idx to _block index |
|
1754 |
for (int i = n_pos; i < _block.length(); i++) { |
|
1755 |
set_bb_idx(_block.at(i), i); |
|
1756 |
} |
|
1757 |
} |
|
1758 |
||
1759 |
//------------------------------compute_max_depth--------------------------- |
|
1760 |
// Compute max depth for expressions from beginning of block |
|
1761 |
// Use to prune search paths during test for independence. |
|
1762 |
void SuperWord::compute_max_depth() { |
|
1763 |
int ct = 0; |
|
1764 |
bool again; |
|
1765 |
do { |
|
1766 |
again = false; |
|
1767 |
for (int i = 0; i < _block.length(); i++) { |
|
1768 |
Node* n = _block.at(i); |
|
1769 |
if (!n->is_Phi()) { |
|
1770 |
int d_orig = depth(n); |
|
1771 |
int d_in = 0; |
|
1772 |
for (DepPreds preds(n, _dg); !preds.done(); preds.next()) { |
|
1773 |
Node* pred = preds.current(); |
|
1774 |
if (in_bb(pred)) { |
|
1775 |
d_in = MAX2(d_in, depth(pred)); |
|
1776 |
} |
|
1777 |
} |
|
1778 |
if (d_in + 1 != d_orig) { |
|
1779 |
set_depth(n, d_in + 1); |
|
1780 |
again = true; |
|
1781 |
} |
|
1782 |
} |
|
1783 |
} |
|
1784 |
ct++; |
|
1785 |
} while (again); |
|
1786 |
#ifndef PRODUCT |
|
1787 |
if (TraceSuperWord && Verbose) |
|
1788 |
tty->print_cr("compute_max_depth iterated: %d times", ct); |
|
1789 |
#endif |
|
1790 |
} |
|
1791 |
||
1792 |
//-------------------------compute_vector_element_type----------------------- |
|
1793 |
// Compute necessary vector element type for expressions |
|
1794 |
// This propagates backwards a narrower integer type when the |
|
1795 |
// upper bits of the value are not needed. |
|
1796 |
// Example: char a,b,c; a = b + c; |
|
1797 |
// Normally the type of the add is integer, but for packed character |
|
1798 |
// operations the type of the add needs to be char. |
|
1799 |
void SuperWord::compute_vector_element_type() { |
|
1800 |
#ifndef PRODUCT |
|
1801 |
if (TraceSuperWord && Verbose) |
|
1802 |
tty->print_cr("\ncompute_velt_type:"); |
|
1803 |
#endif |
|
1804 |
||
1805 |
// Initial type |
|
1806 |
for (int i = 0; i < _block.length(); i++) { |
|
1807 |
Node* n = _block.at(i); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1808 |
set_velt_type(n, container_type(n)); |
1 | 1809 |
} |
1810 |
||
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1811 |
// Propagate integer narrowed type backwards through operations |
1 | 1812 |
// that don't depend on higher order bits |
1813 |
for (int i = _block.length() - 1; i >= 0; i--) { |
|
1814 |
Node* n = _block.at(i); |
|
1815 |
// Only integer types need be examined |
|
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1816 |
const Type* vtn = velt_type(n); |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1817 |
if (vtn->basic_type() == T_INT) { |
1 | 1818 |
uint start, end; |
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1819 |
VectorNode::vector_operands(n, &start, &end); |
1 | 1820 |
|
1821 |
for (uint j = start; j < end; j++) { |
|
1822 |
Node* in = n->in(j); |
|
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1823 |
// Don't propagate through a memory |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1824 |
if (!in->is_Mem() && in_bb(in) && velt_type(in)->basic_type() == T_INT && |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1825 |
data_size(n) < data_size(in)) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1826 |
bool same_type = true; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1827 |
for (DUIterator_Fast kmax, k = in->fast_outs(kmax); k < kmax; k++) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1828 |
Node *use = in->fast_out(k); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1829 |
if (!in_bb(use) || !same_velt_type(use, n)) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1830 |
same_type = false; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1831 |
break; |
1 | 1832 |
} |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1833 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1834 |
if (same_type) { |
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1835 |
// For right shifts of small integer types (bool, byte, char, short) |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1836 |
// we need precise information about sign-ness. Only Load nodes have |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1837 |
// this information because Store nodes are the same for signed and |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1838 |
// unsigned values. And any arithmetic operation after a load may |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1839 |
// expand a value to signed Int so such right shifts can't be used |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1840 |
// because vector elements do not have upper bits of Int. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1841 |
const Type* vt = vtn; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1842 |
if (VectorNode::is_shift(in)) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1843 |
Node* load = in->in(1); |
14134 | 1844 |
if (load->is_Load() && in_bb(load) && (velt_type(load)->basic_type() == T_INT)) { |
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1845 |
vt = velt_type(load); |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1846 |
} else if (in->Opcode() != Op_LShiftI) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1847 |
// Widen type to Int to avoid creation of right shift vector |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1848 |
// (align + data_size(s1) check in stmts_can_pack() will fail). |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1849 |
// Note, left shifts work regardless type. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1850 |
vt = TypeInt::INT; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1851 |
} |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1852 |
} |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1853 |
set_velt_type(in, vt); |
1 | 1854 |
} |
1855 |
} |
|
1856 |
} |
|
1857 |
} |
|
1858 |
} |
|
1859 |
#ifndef PRODUCT |
|
1860 |
if (TraceSuperWord && Verbose) { |
|
1861 |
for (int i = 0; i < _block.length(); i++) { |
|
1862 |
Node* n = _block.at(i); |
|
1863 |
velt_type(n)->dump(); |
|
1864 |
tty->print("\t"); |
|
1865 |
n->dump(); |
|
1866 |
} |
|
1867 |
} |
|
1868 |
#endif |
|
1869 |
} |
|
1870 |
||
1871 |
//------------------------------memory_alignment--------------------------- |
|
1872 |
// Alignment within a vector memory reference |
|
13885 | 1873 |
int SuperWord::memory_alignment(MemNode* s, int iv_adjust) { |
1 | 1874 |
SWPointer p(s, this); |
1875 |
if (!p.valid()) { |
|
1876 |
return bottom_align; |
|
1877 |
} |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
1878 |
int vw = vector_width_in_bytes(s); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1879 |
if (vw < 2) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1880 |
return bottom_align; // No vectors for this type |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1881 |
} |
1 | 1882 |
int offset = p.offset_in_bytes(); |
13885 | 1883 |
offset += iv_adjust*p.memory_size(); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1884 |
int off_rem = offset % vw; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1885 |
int off_mod = off_rem >= 0 ? off_rem : off_rem + vw; |
1 | 1886 |
return off_mod; |
1887 |
} |
|
1888 |
||
1889 |
//---------------------------container_type--------------------------- |
|
1890 |
// Smallest type containing range of values |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1891 |
const Type* SuperWord::container_type(Node* n) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1892 |
if (n->is_Mem()) { |
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1893 |
BasicType bt = n->as_Mem()->memory_type(); |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1894 |
if (n->is_Store() && (bt == T_CHAR)) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1895 |
// Use T_SHORT type instead of T_CHAR for stored values because any |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1896 |
// preceding arithmetic operation extends values to signed Int. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1897 |
bt = T_SHORT; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1898 |
} |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1899 |
if (n->Opcode() == Op_LoadUB) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1900 |
// Adjust type for unsigned byte loads, it is important for right shifts. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1901 |
// T_BOOLEAN is used because there is no basic type representing type |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1902 |
// TypeInt::UBYTE. Use of T_BOOLEAN for vectors is fine because only |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1903 |
// size (one byte) and sign is important. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1904 |
bt = T_BOOLEAN; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1905 |
} |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
1906 |
return Type::get_const_basic_type(bt); |
1 | 1907 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1908 |
const Type* t = _igvn.type(n); |
1 | 1909 |
if (t->basic_type() == T_INT) { |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1910 |
// A narrow type of arithmetic operations will be determined by |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1911 |
// propagating the type of memory operations. |
1 | 1912 |
return TypeInt::INT; |
1913 |
} |
|
1914 |
return t; |
|
1915 |
} |
|
1916 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1917 |
bool SuperWord::same_velt_type(Node* n1, Node* n2) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1918 |
const Type* vt1 = velt_type(n1); |
13885 | 1919 |
const Type* vt2 = velt_type(n2); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1920 |
if (vt1->basic_type() == T_INT && vt2->basic_type() == T_INT) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1921 |
// Compare vectors element sizes for integer types. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1922 |
return data_size(n1) == data_size(n2); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1923 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1924 |
return vt1 == vt2; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1925 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1926 |
|
1 | 1927 |
//------------------------------in_packset--------------------------- |
1928 |
// Are s1 and s2 in a pack pair and ordered as s1,s2? |
|
1929 |
bool SuperWord::in_packset(Node* s1, Node* s2) { |
|
1930 |
for (int i = 0; i < _packset.length(); i++) { |
|
1931 |
Node_List* p = _packset.at(i); |
|
1932 |
assert(p->size() == 2, "must be"); |
|
1933 |
if (p->at(0) == s1 && p->at(p->size()-1) == s2) { |
|
1934 |
return true; |
|
1935 |
} |
|
1936 |
} |
|
1937 |
return false; |
|
1938 |
} |
|
1939 |
||
1940 |
//------------------------------in_pack--------------------------- |
|
1941 |
// Is s in pack p? |
|
1942 |
Node_List* SuperWord::in_pack(Node* s, Node_List* p) { |
|
1943 |
for (uint i = 0; i < p->size(); i++) { |
|
1944 |
if (p->at(i) == s) { |
|
1945 |
return p; |
|
1946 |
} |
|
1947 |
} |
|
1948 |
return NULL; |
|
1949 |
} |
|
1950 |
||
1951 |
//------------------------------remove_pack_at--------------------------- |
|
1952 |
// Remove the pack at position pos in the packset |
|
1953 |
void SuperWord::remove_pack_at(int pos) { |
|
1954 |
Node_List* p = _packset.at(pos); |
|
1955 |
for (uint i = 0; i < p->size(); i++) { |
|
1956 |
Node* s = p->at(i); |
|
1957 |
set_my_pack(s, NULL); |
|
1958 |
} |
|
1959 |
_packset.remove_at(pos); |
|
1960 |
} |
|
1961 |
||
1962 |
//------------------------------executed_first--------------------------- |
|
1963 |
// Return the node executed first in pack p. Uses the RPO block list |
|
1964 |
// to determine order. |
|
1965 |
Node* SuperWord::executed_first(Node_List* p) { |
|
1966 |
Node* n = p->at(0); |
|
1967 |
int n_rpo = bb_idx(n); |
|
1968 |
for (uint i = 1; i < p->size(); i++) { |
|
1969 |
Node* s = p->at(i); |
|
1970 |
int s_rpo = bb_idx(s); |
|
1971 |
if (s_rpo < n_rpo) { |
|
1972 |
n = s; |
|
1973 |
n_rpo = s_rpo; |
|
1974 |
} |
|
1975 |
} |
|
1976 |
return n; |
|
1977 |
} |
|
1978 |
||
1979 |
//------------------------------executed_last--------------------------- |
|
1980 |
// Return the node executed last in pack p. |
|
1981 |
Node* SuperWord::executed_last(Node_List* p) { |
|
1982 |
Node* n = p->at(0); |
|
1983 |
int n_rpo = bb_idx(n); |
|
1984 |
for (uint i = 1; i < p->size(); i++) { |
|
1985 |
Node* s = p->at(i); |
|
1986 |
int s_rpo = bb_idx(s); |
|
1987 |
if (s_rpo > n_rpo) { |
|
1988 |
n = s; |
|
1989 |
n_rpo = s_rpo; |
|
1990 |
} |
|
1991 |
} |
|
1992 |
return n; |
|
1993 |
} |
|
1994 |
||
1995 |
//----------------------------align_initial_loop_index--------------------------- |
|
1996 |
// Adjust pre-loop limit so that in main loop, a load/store reference |
|
1997 |
// to align_to_ref will be a position zero in the vector. |
|
1998 |
// (iv + k) mod vector_align == 0 |
|
1999 |
void SuperWord::align_initial_loop_index(MemNode* align_to_ref) { |
|
2000 |
CountedLoopNode *main_head = lp()->as_CountedLoop(); |
|
2001 |
assert(main_head->is_main_loop(), ""); |
|
2002 |
CountedLoopEndNode* pre_end = get_pre_loop_end(main_head); |
|
22919
4d686766ac23
8010500: [parfait] Possible null pointer dereference at hotspot/src/share/vm/opto/loopnode.hpp
adlertz
parents:
22234
diff
changeset
|
2003 |
assert(pre_end != NULL, "we must have a correct pre-loop"); |
1 | 2004 |
Node *pre_opaq1 = pre_end->limit(); |
2005 |
assert(pre_opaq1->Opcode() == Op_Opaque1, ""); |
|
2006 |
Opaque1Node *pre_opaq = (Opaque1Node*)pre_opaq1; |
|
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2007 |
Node *lim0 = pre_opaq->in(1); |
1 | 2008 |
|
2009 |
// Where we put new limit calculations |
|
2010 |
Node *pre_ctrl = pre_end->loopnode()->in(LoopNode::EntryControl); |
|
2011 |
||
2012 |
// Ensure the original loop limit is available from the |
|
2013 |
// pre-loop Opaque1 node. |
|
2014 |
Node *orig_limit = pre_opaq->original_loop_limit(); |
|
2015 |
assert(orig_limit != NULL && _igvn.type(orig_limit) != Type::TOP, ""); |
|
2016 |
||
2017 |
SWPointer align_to_ref_p(align_to_ref, this); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2018 |
assert(align_to_ref_p.valid(), "sanity"); |
1 | 2019 |
|
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2020 |
// Given: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2021 |
// lim0 == original pre loop limit |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2022 |
// V == v_align (power of 2) |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2023 |
// invar == extra invariant piece of the address expression |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2024 |
// e == offset [ +/- invar ] |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2025 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2026 |
// When reassociating expressions involving '%' the basic rules are: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2027 |
// (a - b) % k == 0 => a % k == b % k |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2028 |
// and: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2029 |
// (a + b) % k == 0 => a % k == (k - b) % k |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2030 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2031 |
// For stride > 0 && scale > 0, |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2032 |
// Derive the new pre-loop limit "lim" such that the two constraints: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2033 |
// (1) lim = lim0 + N (where N is some positive integer < V) |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2034 |
// (2) (e + lim) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2035 |
// are true. |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2036 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2037 |
// Substituting (1) into (2), |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2038 |
// (e + lim0 + N) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2039 |
// solve for N: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2040 |
// N = (V - (e + lim0)) % V |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2041 |
// substitute back into (1), so that new limit |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2042 |
// lim = lim0 + (V - (e + lim0)) % V |
1 | 2043 |
// |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2044 |
// For stride > 0 && scale < 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2045 |
// Constraints: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2046 |
// lim = lim0 + N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2047 |
// (e - lim) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2048 |
// Solving for lim: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2049 |
// (e - lim0 - N) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2050 |
// N = (e - lim0) % V |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2051 |
// lim = lim0 + (e - lim0) % V |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2052 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2053 |
// For stride < 0 && scale > 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2054 |
// Constraints: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2055 |
// lim = lim0 - N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2056 |
// (e + lim) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2057 |
// Solving for lim: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2058 |
// (e + lim0 - N) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2059 |
// N = (e + lim0) % V |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2060 |
// lim = lim0 - (e + lim0) % V |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2061 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2062 |
// For stride < 0 && scale < 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2063 |
// Constraints: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2064 |
// lim = lim0 - N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2065 |
// (e - lim) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2066 |
// Solving for lim: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2067 |
// (e - lim0 + N) % V == 0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2068 |
// N = (V - (e - lim0)) % V |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2069 |
// lim = lim0 - (V - (e - lim0)) % V |
1 | 2070 |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
2071 |
int vw = vector_width_in_bytes(align_to_ref); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2072 |
int stride = iv_stride(); |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2073 |
int scale = align_to_ref_p.scale_in_bytes(); |
1 | 2074 |
int elt_size = align_to_ref_p.memory_size(); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2075 |
int v_align = vw / elt_size; |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
2076 |
assert(v_align > 1, "sanity"); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2077 |
int offset = align_to_ref_p.offset_in_bytes() / elt_size; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2078 |
Node *offsn = _igvn.intcon(offset); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2079 |
|
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2080 |
Node *e = offsn; |
1 | 2081 |
if (align_to_ref_p.invar() != NULL) { |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2082 |
// incorporate any extra invariant piece producing (offset +/- invar) >>> log2(elt) |
1 | 2083 |
Node* log2_elt = _igvn.intcon(exact_log2(elt_size)); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2084 |
Node* aref = new URShiftINode(align_to_ref_p.invar(), log2_elt); |
13894 | 2085 |
_igvn.register_new_node_with_optimizer(aref); |
1 | 2086 |
_phase->set_ctrl(aref, pre_ctrl); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2087 |
if (align_to_ref_p.negate_invar()) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2088 |
e = new SubINode(e, aref); |
1 | 2089 |
} else { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2090 |
e = new AddINode(e, aref); |
1 | 2091 |
} |
13894 | 2092 |
_igvn.register_new_node_with_optimizer(e); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2093 |
_phase->set_ctrl(e, pre_ctrl); |
1 | 2094 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2095 |
if (vw > ObjectAlignmentInBytes) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2096 |
// incorporate base e +/- base && Mask >>> log2(elt) |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2097 |
Node* xbase = new CastP2XNode(NULL, align_to_ref_p.base()); |
13894 | 2098 |
_igvn.register_new_node_with_optimizer(xbase); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2099 |
#ifdef _LP64 |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2100 |
xbase = new ConvL2INode(xbase); |
13894 | 2101 |
_igvn.register_new_node_with_optimizer(xbase); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2102 |
#endif |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2103 |
Node* mask = _igvn.intcon(vw-1); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2104 |
Node* masked_xbase = new AndINode(xbase, mask); |
13894 | 2105 |
_igvn.register_new_node_with_optimizer(masked_xbase); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2106 |
Node* log2_elt = _igvn.intcon(exact_log2(elt_size)); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2107 |
Node* bref = new URShiftINode(masked_xbase, log2_elt); |
13894 | 2108 |
_igvn.register_new_node_with_optimizer(bref); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2109 |
_phase->set_ctrl(bref, pre_ctrl); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2110 |
e = new AddINode(e, bref); |
13894 | 2111 |
_igvn.register_new_node_with_optimizer(e); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2112 |
_phase->set_ctrl(e, pre_ctrl); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2113 |
} |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2114 |
|
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2115 |
// compute e +/- lim0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2116 |
if (scale < 0) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2117 |
e = new SubINode(e, lim0); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2118 |
} else { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2119 |
e = new AddINode(e, lim0); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2120 |
} |
13894 | 2121 |
_igvn.register_new_node_with_optimizer(e); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2122 |
_phase->set_ctrl(e, pre_ctrl); |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2123 |
|
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2124 |
if (stride * scale > 0) { |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2125 |
// compute V - (e +/- lim0) |
1 | 2126 |
Node* va = _igvn.intcon(v_align); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2127 |
e = new SubINode(va, e); |
13894 | 2128 |
_igvn.register_new_node_with_optimizer(e); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2129 |
_phase->set_ctrl(e, pre_ctrl); |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2130 |
} |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2131 |
// compute N = (exp) % V |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2132 |
Node* va_msk = _igvn.intcon(v_align - 1); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2133 |
Node* N = new AndINode(e, va_msk); |
13894 | 2134 |
_igvn.register_new_node_with_optimizer(N); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2135 |
_phase->set_ctrl(N, pre_ctrl); |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2136 |
|
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2137 |
// substitute back into (1), so that new limit |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2138 |
// lim = lim0 + N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2139 |
Node* lim; |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2140 |
if (stride < 0) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2141 |
lim = new SubINode(lim0, N); |
1 | 2142 |
} else { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2143 |
lim = new AddINode(lim0, N); |
1 | 2144 |
} |
13894 | 2145 |
_igvn.register_new_node_with_optimizer(lim); |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2146 |
_phase->set_ctrl(lim, pre_ctrl); |
1 | 2147 |
Node* constrained = |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2148 |
(stride > 0) ? (Node*) new MinINode(lim, orig_limit) |
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2149 |
: (Node*) new MaxINode(lim, orig_limit); |
13894 | 2150 |
_igvn.register_new_node_with_optimizer(constrained); |
1 | 2151 |
_phase->set_ctrl(constrained, pre_ctrl); |
2152 |
_igvn.hash_delete(pre_opaq); |
|
2153 |
pre_opaq->set_req(1, constrained); |
|
2154 |
} |
|
2155 |
||
2156 |
//----------------------------get_pre_loop_end--------------------------- |
|
2157 |
// Find pre loop end from main loop. Returns null if none. |
|
2158 |
CountedLoopEndNode* SuperWord::get_pre_loop_end(CountedLoopNode *cl) { |
|
2159 |
Node *ctrl = cl->in(LoopNode::EntryControl); |
|
2160 |
if (!ctrl->is_IfTrue() && !ctrl->is_IfFalse()) return NULL; |
|
2161 |
Node *iffm = ctrl->in(0); |
|
2162 |
if (!iffm->is_If()) return NULL; |
|
2163 |
Node *p_f = iffm->in(0); |
|
2164 |
if (!p_f->is_IfFalse()) return NULL; |
|
2165 |
if (!p_f->in(0)->is_CountedLoopEnd()) return NULL; |
|
2166 |
CountedLoopEndNode *pre_end = p_f->in(0)->as_CountedLoopEnd(); |
|
22919
4d686766ac23
8010500: [parfait] Possible null pointer dereference at hotspot/src/share/vm/opto/loopnode.hpp
adlertz
parents:
22234
diff
changeset
|
2167 |
CountedLoopNode* loop_node = pre_end->loopnode(); |
4d686766ac23
8010500: [parfait] Possible null pointer dereference at hotspot/src/share/vm/opto/loopnode.hpp
adlertz
parents:
22234
diff
changeset
|
2168 |
if (loop_node == NULL || !loop_node->is_pre_loop()) return NULL; |
1 | 2169 |
return pre_end; |
2170 |
} |
|
2171 |
||
2172 |
||
2173 |
//------------------------------init--------------------------- |
|
2174 |
void SuperWord::init() { |
|
2175 |
_dg.init(); |
|
2176 |
_packset.clear(); |
|
2177 |
_disjoint_ptrs.clear(); |
|
2178 |
_block.clear(); |
|
2179 |
_data_entry.clear(); |
|
2180 |
_mem_slice_head.clear(); |
|
2181 |
_mem_slice_tail.clear(); |
|
2182 |
_node_info.clear(); |
|
2183 |
_align_to_ref = NULL; |
|
2184 |
_lpt = NULL; |
|
2185 |
_lp = NULL; |
|
2186 |
_bb = NULL; |
|
2187 |
_iv = NULL; |
|
2188 |
} |
|
2189 |
||
2190 |
//------------------------------print_packset--------------------------- |
|
2191 |
void SuperWord::print_packset() { |
|
2192 |
#ifndef PRODUCT |
|
2193 |
tty->print_cr("packset"); |
|
2194 |
for (int i = 0; i < _packset.length(); i++) { |
|
2195 |
tty->print_cr("Pack: %d", i); |
|
2196 |
Node_List* p = _packset.at(i); |
|
2197 |
print_pack(p); |
|
2198 |
} |
|
2199 |
#endif |
|
2200 |
} |
|
2201 |
||
2202 |
//------------------------------print_pack--------------------------- |
|
2203 |
void SuperWord::print_pack(Node_List* p) { |
|
2204 |
for (uint i = 0; i < p->size(); i++) { |
|
2205 |
print_stmt(p->at(i)); |
|
2206 |
} |
|
2207 |
} |
|
2208 |
||
2209 |
//------------------------------print_bb--------------------------- |
|
2210 |
void SuperWord::print_bb() { |
|
2211 |
#ifndef PRODUCT |
|
2212 |
tty->print_cr("\nBlock"); |
|
2213 |
for (int i = 0; i < _block.length(); i++) { |
|
2214 |
Node* n = _block.at(i); |
|
2215 |
tty->print("%d ", i); |
|
2216 |
if (n) { |
|
2217 |
n->dump(); |
|
2218 |
} |
|
2219 |
} |
|
2220 |
#endif |
|
2221 |
} |
|
2222 |
||
2223 |
//------------------------------print_stmt--------------------------- |
|
2224 |
void SuperWord::print_stmt(Node* s) { |
|
2225 |
#ifndef PRODUCT |
|
2226 |
tty->print(" align: %d \t", alignment(s)); |
|
2227 |
s->dump(); |
|
2228 |
#endif |
|
2229 |
} |
|
2230 |
||
2231 |
//------------------------------blank--------------------------- |
|
2232 |
char* SuperWord::blank(uint depth) { |
|
2233 |
static char blanks[101]; |
|
2234 |
assert(depth < 101, "too deep"); |
|
2235 |
for (uint i = 0; i < depth; i++) blanks[i] = ' '; |
|
2236 |
blanks[depth] = '\0'; |
|
2237 |
return blanks; |
|
2238 |
} |
|
2239 |
||
2240 |
||
2241 |
//==============================SWPointer=========================== |
|
2242 |
||
2243 |
//----------------------------SWPointer------------------------ |
|
2244 |
SWPointer::SWPointer(MemNode* mem, SuperWord* slp) : |
|
2245 |
_mem(mem), _slp(slp), _base(NULL), _adr(NULL), |
|
2246 |
_scale(0), _offset(0), _invar(NULL), _negate_invar(false) { |
|
2247 |
||
2248 |
Node* adr = mem->in(MemNode::Address); |
|
2249 |
if (!adr->is_AddP()) { |
|
2250 |
assert(!valid(), "too complex"); |
|
2251 |
return; |
|
2252 |
} |
|
2253 |
// Match AddP(base, AddP(ptr, k*iv [+ invariant]), constant) |
|
2254 |
Node* base = adr->in(AddPNode::Base); |
|
4428
d1617f46285d
6852078: HSX 14/16 in jdk 5.0: api/javax_management api/org_omg jck tests crashes or make tnameserv crash
cfang
parents:
3906
diff
changeset
|
2255 |
//unsafe reference could not be aligned appropriately without runtime checking |
d1617f46285d
6852078: HSX 14/16 in jdk 5.0: api/javax_management api/org_omg jck tests crashes or make tnameserv crash
cfang
parents:
3906
diff
changeset
|
2256 |
if (base == NULL || base->bottom_type() == Type::TOP) { |
d1617f46285d
6852078: HSX 14/16 in jdk 5.0: api/javax_management api/org_omg jck tests crashes or make tnameserv crash
cfang
parents:
3906
diff
changeset
|
2257 |
assert(!valid(), "unsafe access"); |
d1617f46285d
6852078: HSX 14/16 in jdk 5.0: api/javax_management api/org_omg jck tests crashes or make tnameserv crash
cfang
parents:
3906
diff
changeset
|
2258 |
return; |
d1617f46285d
6852078: HSX 14/16 in jdk 5.0: api/javax_management api/org_omg jck tests crashes or make tnameserv crash
cfang
parents:
3906
diff
changeset
|
2259 |
} |
1 | 2260 |
for (int i = 0; i < 3; i++) { |
2261 |
if (!scaled_iv_plus_offset(adr->in(AddPNode::Offset))) { |
|
2262 |
assert(!valid(), "too complex"); |
|
2263 |
return; |
|
2264 |
} |
|
2265 |
adr = adr->in(AddPNode::Address); |
|
2266 |
if (base == adr || !adr->is_AddP()) { |
|
2267 |
break; // stop looking at addp's |
|
2268 |
} |
|
2269 |
} |
|
2270 |
_base = base; |
|
2271 |
_adr = adr; |
|
2272 |
assert(valid(), "Usable"); |
|
2273 |
} |
|
2274 |
||
2275 |
// Following is used to create a temporary object during |
|
2276 |
// the pattern match of an address expression. |
|
2277 |
SWPointer::SWPointer(SWPointer* p) : |
|
2278 |
_mem(p->_mem), _slp(p->_slp), _base(NULL), _adr(NULL), |
|
2279 |
_scale(0), _offset(0), _invar(NULL), _negate_invar(false) {} |
|
2280 |
||
2281 |
//------------------------scaled_iv_plus_offset-------------------- |
|
2282 |
// Match: k*iv + offset |
|
2283 |
// where: k is a constant that maybe zero, and |
|
2284 |
// offset is (k2 [+/- invariant]) where k2 maybe zero and invariant is optional |
|
2285 |
bool SWPointer::scaled_iv_plus_offset(Node* n) { |
|
2286 |
if (scaled_iv(n)) { |
|
2287 |
return true; |
|
2288 |
} |
|
2289 |
if (offset_plus_k(n)) { |
|
2290 |
return true; |
|
2291 |
} |
|
2292 |
int opc = n->Opcode(); |
|
2293 |
if (opc == Op_AddI) { |
|
2294 |
if (scaled_iv(n->in(1)) && offset_plus_k(n->in(2))) { |
|
2295 |
return true; |
|
2296 |
} |
|
2297 |
if (scaled_iv(n->in(2)) && offset_plus_k(n->in(1))) { |
|
2298 |
return true; |
|
2299 |
} |
|
2300 |
} else if (opc == Op_SubI) { |
|
2301 |
if (scaled_iv(n->in(1)) && offset_plus_k(n->in(2), true)) { |
|
2302 |
return true; |
|
2303 |
} |
|
2304 |
if (scaled_iv(n->in(2)) && offset_plus_k(n->in(1))) { |
|
2305 |
_scale *= -1; |
|
2306 |
return true; |
|
2307 |
} |
|
2308 |
} |
|
2309 |
return false; |
|
2310 |
} |
|
2311 |
||
2312 |
//----------------------------scaled_iv------------------------ |
|
2313 |
// Match: k*iv where k is a constant that's not zero |
|
2314 |
bool SWPointer::scaled_iv(Node* n) { |
|
2315 |
if (_scale != 0) { |
|
2316 |
return false; // already found a scale |
|
2317 |
} |
|
2318 |
if (n == iv()) { |
|
2319 |
_scale = 1; |
|
2320 |
return true; |
|
2321 |
} |
|
2322 |
int opc = n->Opcode(); |
|
2323 |
if (opc == Op_MulI) { |
|
2324 |
if (n->in(1) == iv() && n->in(2)->is_Con()) { |
|
2325 |
_scale = n->in(2)->get_int(); |
|
2326 |
return true; |
|
2327 |
} else if (n->in(2) == iv() && n->in(1)->is_Con()) { |
|
2328 |
_scale = n->in(1)->get_int(); |
|
2329 |
return true; |
|
2330 |
} |
|
2331 |
} else if (opc == Op_LShiftI) { |
|
2332 |
if (n->in(1) == iv() && n->in(2)->is_Con()) { |
|
2333 |
_scale = 1 << n->in(2)->get_int(); |
|
2334 |
return true; |
|
2335 |
} |
|
2336 |
} else if (opc == Op_ConvI2L) { |
|
2337 |
if (scaled_iv_plus_offset(n->in(1))) { |
|
2338 |
return true; |
|
2339 |
} |
|
2340 |
} else if (opc == Op_LShiftL) { |
|
2341 |
if (!has_iv() && _invar == NULL) { |
|
2342 |
// Need to preserve the current _offset value, so |
|
2343 |
// create a temporary object for this expression subtree. |
|
2344 |
// Hacky, so should re-engineer the address pattern match. |
|
2345 |
SWPointer tmp(this); |
|
2346 |
if (tmp.scaled_iv_plus_offset(n->in(1))) { |
|
2347 |
if (tmp._invar == NULL) { |
|
2348 |
int mult = 1 << n->in(2)->get_int(); |
|
2349 |
_scale = tmp._scale * mult; |
|
2350 |
_offset += tmp._offset * mult; |
|
2351 |
return true; |
|
2352 |
} |
|
2353 |
} |
|
2354 |
} |
|
2355 |
} |
|
2356 |
return false; |
|
2357 |
} |
|
2358 |
||
2359 |
//----------------------------offset_plus_k------------------------ |
|
2360 |
// Match: offset is (k [+/- invariant]) |
|
2361 |
// where k maybe zero and invariant is optional, but not both. |
|
2362 |
bool SWPointer::offset_plus_k(Node* n, bool negate) { |
|
2363 |
int opc = n->Opcode(); |
|
2364 |
if (opc == Op_ConI) { |
|
2365 |
_offset += negate ? -(n->get_int()) : n->get_int(); |
|
2366 |
return true; |
|
2367 |
} else if (opc == Op_ConL) { |
|
2368 |
// Okay if value fits into an int |
|
2369 |
const TypeLong* t = n->find_long_type(); |
|
2370 |
if (t->higher_equal(TypeLong::INT)) { |
|
2371 |
jlong loff = n->get_long(); |
|
2372 |
jint off = (jint)loff; |
|
2373 |
_offset += negate ? -off : loff; |
|
2374 |
return true; |
|
2375 |
} |
|
2376 |
return false; |
|
2377 |
} |
|
2378 |
if (_invar != NULL) return false; // already have an invariant |
|
2379 |
if (opc == Op_AddI) { |
|
2380 |
if (n->in(2)->is_Con() && invariant(n->in(1))) { |
|
2381 |
_negate_invar = negate; |
|
2382 |
_invar = n->in(1); |
|
2383 |
_offset += negate ? -(n->in(2)->get_int()) : n->in(2)->get_int(); |
|
2384 |
return true; |
|
2385 |
} else if (n->in(1)->is_Con() && invariant(n->in(2))) { |
|
2386 |
_offset += negate ? -(n->in(1)->get_int()) : n->in(1)->get_int(); |
|
2387 |
_negate_invar = negate; |
|
2388 |
_invar = n->in(2); |
|
2389 |
return true; |
|
2390 |
} |
|
2391 |
} |
|
2392 |
if (opc == Op_SubI) { |
|
2393 |
if (n->in(2)->is_Con() && invariant(n->in(1))) { |
|
2394 |
_negate_invar = negate; |
|
2395 |
_invar = n->in(1); |
|
2396 |
_offset += !negate ? -(n->in(2)->get_int()) : n->in(2)->get_int(); |
|
2397 |
return true; |
|
2398 |
} else if (n->in(1)->is_Con() && invariant(n->in(2))) { |
|
2399 |
_offset += negate ? -(n->in(1)->get_int()) : n->in(1)->get_int(); |
|
2400 |
_negate_invar = !negate; |
|
2401 |
_invar = n->in(2); |
|
2402 |
return true; |
|
2403 |
} |
|
2404 |
} |
|
2405 |
if (invariant(n)) { |
|
2406 |
_negate_invar = negate; |
|
2407 |
_invar = n; |
|
2408 |
return true; |
|
2409 |
} |
|
2410 |
return false; |
|
2411 |
} |
|
2412 |
||
2413 |
//----------------------------print------------------------ |
|
2414 |
void SWPointer::print() { |
|
2415 |
#ifndef PRODUCT |
|
2416 |
tty->print("base: %d adr: %d scale: %d offset: %d invar: %c%d\n", |
|
2417 |
_base != NULL ? _base->_idx : 0, |
|
2418 |
_adr != NULL ? _adr->_idx : 0, |
|
2419 |
_scale, _offset, |
|
2420 |
_negate_invar?'-':'+', |
|
2421 |
_invar != NULL ? _invar->_idx : 0); |
|
2422 |
#endif |
|
2423 |
} |
|
2424 |
||
2425 |
// ========================= OrderedPair ===================== |
|
2426 |
||
2427 |
const OrderedPair OrderedPair::initial; |
|
2428 |
||
2429 |
// ========================= SWNodeInfo ===================== |
|
2430 |
||
2431 |
const SWNodeInfo SWNodeInfo::initial; |
|
2432 |
||
2433 |
||
2434 |
// ============================ DepGraph =========================== |
|
2435 |
||
2436 |
//------------------------------make_node--------------------------- |
|
2437 |
// Make a new dependence graph node for an ideal node. |
|
2438 |
DepMem* DepGraph::make_node(Node* node) { |
|
2439 |
DepMem* m = new (_arena) DepMem(node); |
|
2440 |
if (node != NULL) { |
|
2441 |
assert(_map.at_grow(node->_idx) == NULL, "one init only"); |
|
2442 |
_map.at_put_grow(node->_idx, m); |
|
2443 |
} |
|
2444 |
return m; |
|
2445 |
} |
|
2446 |
||
2447 |
//------------------------------make_edge--------------------------- |
|
2448 |
// Make a new dependence graph edge from dpred -> dsucc |
|
2449 |
DepEdge* DepGraph::make_edge(DepMem* dpred, DepMem* dsucc) { |
|
2450 |
DepEdge* e = new (_arena) DepEdge(dpred, dsucc, dsucc->in_head(), dpred->out_head()); |
|
2451 |
dpred->set_out_head(e); |
|
2452 |
dsucc->set_in_head(e); |
|
2453 |
return e; |
|
2454 |
} |
|
2455 |
||
2456 |
// ========================== DepMem ======================== |
|
2457 |
||
2458 |
//------------------------------in_cnt--------------------------- |
|
2459 |
int DepMem::in_cnt() { |
|
2460 |
int ct = 0; |
|
2461 |
for (DepEdge* e = _in_head; e != NULL; e = e->next_in()) ct++; |
|
2462 |
return ct; |
|
2463 |
} |
|
2464 |
||
2465 |
//------------------------------out_cnt--------------------------- |
|
2466 |
int DepMem::out_cnt() { |
|
2467 |
int ct = 0; |
|
2468 |
for (DepEdge* e = _out_head; e != NULL; e = e->next_out()) ct++; |
|
2469 |
return ct; |
|
2470 |
} |
|
2471 |
||
2472 |
//------------------------------print----------------------------- |
|
2473 |
void DepMem::print() { |
|
2474 |
#ifndef PRODUCT |
|
2475 |
tty->print(" DepNode %d (", _node->_idx); |
|
2476 |
for (DepEdge* p = _in_head; p != NULL; p = p->next_in()) { |
|
2477 |
Node* pred = p->pred()->node(); |
|
2478 |
tty->print(" %d", pred != NULL ? pred->_idx : 0); |
|
2479 |
} |
|
2480 |
tty->print(") ["); |
|
2481 |
for (DepEdge* s = _out_head; s != NULL; s = s->next_out()) { |
|
2482 |
Node* succ = s->succ()->node(); |
|
2483 |
tty->print(" %d", succ != NULL ? succ->_idx : 0); |
|
2484 |
} |
|
2485 |
tty->print_cr(" ]"); |
|
2486 |
#endif |
|
2487 |
} |
|
2488 |
||
2489 |
// =========================== DepEdge ========================= |
|
2490 |
||
2491 |
//------------------------------DepPreds--------------------------- |
|
2492 |
void DepEdge::print() { |
|
2493 |
#ifndef PRODUCT |
|
2494 |
tty->print_cr("DepEdge: %d [ %d ]", _pred->node()->_idx, _succ->node()->_idx); |
|
2495 |
#endif |
|
2496 |
} |
|
2497 |
||
2498 |
// =========================== DepPreds ========================= |
|
2499 |
// Iterator over predecessor edges in the dependence graph. |
|
2500 |
||
2501 |
//------------------------------DepPreds--------------------------- |
|
2502 |
DepPreds::DepPreds(Node* n, DepGraph& dg) { |
|
2503 |
_n = n; |
|
2504 |
_done = false; |
|
2505 |
if (_n->is_Store() || _n->is_Load()) { |
|
2506 |
_next_idx = MemNode::Address; |
|
2507 |
_end_idx = n->req(); |
|
2508 |
_dep_next = dg.dep(_n)->in_head(); |
|
2509 |
} else if (_n->is_Mem()) { |
|
2510 |
_next_idx = 0; |
|
2511 |
_end_idx = 0; |
|
2512 |
_dep_next = dg.dep(_n)->in_head(); |
|
2513 |
} else { |
|
2514 |
_next_idx = 1; |
|
2515 |
_end_idx = _n->req(); |
|
2516 |
_dep_next = NULL; |
|
2517 |
} |
|
2518 |
next(); |
|
2519 |
} |
|
2520 |
||
2521 |
//------------------------------next--------------------------- |
|
2522 |
void DepPreds::next() { |
|
2523 |
if (_dep_next != NULL) { |
|
2524 |
_current = _dep_next->pred()->node(); |
|
2525 |
_dep_next = _dep_next->next_in(); |
|
2526 |
} else if (_next_idx < _end_idx) { |
|
2527 |
_current = _n->in(_next_idx++); |
|
2528 |
} else { |
|
2529 |
_done = true; |
|
2530 |
} |
|
2531 |
} |
|
2532 |
||
2533 |
// =========================== DepSuccs ========================= |
|
2534 |
// Iterator over successor edges in the dependence graph. |
|
2535 |
||
2536 |
//------------------------------DepSuccs--------------------------- |
|
2537 |
DepSuccs::DepSuccs(Node* n, DepGraph& dg) { |
|
2538 |
_n = n; |
|
2539 |
_done = false; |
|
2540 |
if (_n->is_Load()) { |
|
2541 |
_next_idx = 0; |
|
2542 |
_end_idx = _n->outcnt(); |
|
2543 |
_dep_next = dg.dep(_n)->out_head(); |
|
2544 |
} else if (_n->is_Mem() || _n->is_Phi() && _n->bottom_type() == Type::MEMORY) { |
|
2545 |
_next_idx = 0; |
|
2546 |
_end_idx = 0; |
|
2547 |
_dep_next = dg.dep(_n)->out_head(); |
|
2548 |
} else { |
|
2549 |
_next_idx = 0; |
|
2550 |
_end_idx = _n->outcnt(); |
|
2551 |
_dep_next = NULL; |
|
2552 |
} |
|
2553 |
next(); |
|
2554 |
} |
|
2555 |
||
2556 |
//-------------------------------next--------------------------- |
|
2557 |
void DepSuccs::next() { |
|
2558 |
if (_dep_next != NULL) { |
|
2559 |
_current = _dep_next->succ()->node(); |
|
2560 |
_dep_next = _dep_next->next_out(); |
|
2561 |
} else if (_next_idx < _end_idx) { |
|
2562 |
_current = _n->raw_out(_next_idx++); |
|
2563 |
} else { |
|
2564 |
_done = true; |
|
2565 |
} |
|
2566 |
} |