author | enevill |
Wed, 30 Sep 2015 04:35:39 -0400 | |
changeset 33088 | 34fe49ecee13 |
parent 33082 | c3e302e8e429 |
child 33166 | 81352250770f |
child 33155 | 73bf16b22e89 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
30593 | 2 |
* Copyright (c) 2007, 2015, 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 |
|
30593 | 57 |
_clone_map(phase->C->clone_map()), // map of nodes created in cloning |
1 | 58 |
_align_to_ref(NULL), // memory reference to align vectors to |
59 |
_disjoint_ptrs(arena(), 8, 0, OrderedPair::initial), // runtime disambiguated pointer pairs |
|
60 |
_dg(_arena), // dependence graph |
|
61 |
_visited(arena()), // visited node set |
|
62 |
_post_visited(arena()), // post visited node set |
|
63 |
_n_idx_list(arena(), 8), // scratch list of (node,index) pairs |
|
64 |
_stk(arena(), 8, 0, NULL), // scratch stack of nodes |
|
65 |
_nlist(arena(), 8, 0, NULL), // scratch list of nodes |
|
66 |
_lpt(NULL), // loop tree node |
|
67 |
_lp(NULL), // LoopNode |
|
68 |
_bb(NULL), // basic block |
|
30211 | 69 |
_iv(NULL), // induction var |
30588 | 70 |
_race_possible(false), // cases where SDMU is true |
31403 | 71 |
_early_return(true), // analysis evaluations routine |
30588 | 72 |
_num_work_vecs(0), // amount of vector work we have |
30593 | 73 |
_num_reductions(0), // amount of reduction work we have |
74 |
_do_vector_loop(phase->C->do_vector_loop()), // whether to do vectorization/simd style |
|
75 |
_ii_first(-1), // first loop generation index - only if do_vector_loop() |
|
76 |
_ii_last(-1), // last loop generation index - only if do_vector_loop() |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
77 |
_ii_order(arena(), 8, 0, 0) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
78 |
{ |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
79 |
#ifndef PRODUCT |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
80 |
_vector_loop_debug = 0; |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
81 |
if (_phase->C->method() != NULL) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
82 |
_phase->C->method()->has_option_value("VectorizeDebug", _vector_loop_debug); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
83 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
84 |
#endif |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
85 |
} |
1 | 86 |
|
87 |
//------------------------------transform_loop--------------------------- |
|
31403 | 88 |
void SuperWord::transform_loop(IdealLoopTree* lpt, bool do_optimization) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
89 |
assert(UseSuperWord, "should be"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
90 |
// Do vectors exist on this architecture? |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
91 |
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
|
92 |
|
1 | 93 |
assert(lpt->_head->is_CountedLoop(), "must be"); |
94 |
CountedLoopNode *cl = lpt->_head->as_CountedLoop(); |
|
95 |
||
10263
fa58671dde31
7077439: Possible reference through NULL in loopPredicate.cpp:726
kvn
parents:
10255
diff
changeset
|
96 |
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
|
97 |
|
1 | 98 |
if (!cl->is_main_loop() ) return; // skip normal, pre, and post loops |
99 |
// Check for no control flow in body (other than exit) |
|
100 |
Node *cl_exit = cl->loopexit(); |
|
101 |
if (cl_exit->in(0) != lpt->_head) return; |
|
102 |
||
352
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
103 |
// 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
|
104 |
if (cl->back_control()->outcnt() != 1) { |
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
105 |
return; |
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
106 |
} |
6d8e1aa5834e
6646020: assert(in_bb(n),"must be in block") in -Xcomp mode
never
parents:
245
diff
changeset
|
107 |
|
31772 | 108 |
// We only re-enter slp when we vector mapped a queried loop and we want to |
109 |
// continue unrolling, in this case, slp is not subsequently done. |
|
110 |
if (cl->do_unroll_only()) return; |
|
111 |
||
1 | 112 |
// Check for pre-loop ending with CountedLoopEnd(Bool(Cmp(x,Opaque1(limit)))) |
113 |
CountedLoopEndNode* pre_end = get_pre_loop_end(cl); |
|
114 |
if (pre_end == NULL) return; |
|
115 |
Node *pre_opaq1 = pre_end->limit(); |
|
116 |
if (pre_opaq1->Opcode() != Op_Opaque1) return; |
|
117 |
||
118 |
init(); // initialize data structures |
|
119 |
||
120 |
set_lpt(lpt); |
|
121 |
set_lp(cl); |
|
122 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
123 |
// For now, define one block which is the entire loop body |
1 | 124 |
set_bb(cl); |
125 |
||
31403 | 126 |
if (do_optimization) { |
127 |
assert(_packset.length() == 0, "packset must be empty"); |
|
128 |
SLP_extract(); |
|
129 |
} |
|
130 |
} |
|
131 |
||
132 |
//------------------------------early unrolling analysis------------------------------ |
|
31772 | 133 |
void SuperWord::unrolling_analysis(int &local_loop_unroll_factor) { |
31403 | 134 |
bool is_slp = true; |
135 |
ResourceMark rm; |
|
136 |
size_t ignored_size = lpt()->_body.size(); |
|
137 |
int *ignored_loop_nodes = NEW_RESOURCE_ARRAY(int, ignored_size); |
|
138 |
Node_Stack nstack((int)ignored_size); |
|
31772 | 139 |
CountedLoopNode *cl = lpt()->_head->as_CountedLoop(); |
31403 | 140 |
Node *cl_exit = cl->loopexit(); |
141 |
||
142 |
// First clear the entries |
|
143 |
for (uint i = 0; i < lpt()->_body.size(); i++) { |
|
144 |
ignored_loop_nodes[i] = -1; |
|
145 |
} |
|
146 |
||
147 |
int max_vector = Matcher::max_vector_size(T_INT); |
|
148 |
||
149 |
// Process the loop, some/all of the stack entries will not be in order, ergo |
|
150 |
// need to preprocess the ignored initial state before we process the loop |
|
151 |
for (uint i = 0; i < lpt()->_body.size(); i++) { |
|
152 |
Node* n = lpt()->_body.at(i); |
|
153 |
if (n == cl->incr() || |
|
154 |
n->is_reduction() || |
|
155 |
n->is_AddP() || |
|
156 |
n->is_Cmp() || |
|
157 |
n->is_IfTrue() || |
|
158 |
n->is_CountedLoop() || |
|
159 |
(n == cl_exit)) { |
|
160 |
ignored_loop_nodes[i] = n->_idx; |
|
161 |
continue; |
|
162 |
} |
|
163 |
||
164 |
if (n->is_If()) { |
|
165 |
IfNode *iff = n->as_If(); |
|
166 |
if (iff->_fcnt != COUNT_UNKNOWN && iff->_prob != PROB_UNKNOWN) { |
|
167 |
if (lpt()->is_loop_exit(iff)) { |
|
168 |
ignored_loop_nodes[i] = n->_idx; |
|
169 |
continue; |
|
170 |
} |
|
171 |
} |
|
172 |
} |
|
173 |
||
174 |
if (n->is_Phi() && (n->bottom_type() == Type::MEMORY)) { |
|
175 |
Node* n_tail = n->in(LoopNode::LoopBackControl); |
|
176 |
if (n_tail != n->in(LoopNode::EntryControl)) { |
|
177 |
if (!n_tail->is_Mem()) { |
|
178 |
is_slp = false; |
|
179 |
break; |
|
180 |
} |
|
181 |
} |
|
182 |
} |
|
183 |
||
184 |
// This must happen after check of phi/if |
|
185 |
if (n->is_Phi() || n->is_If()) { |
|
186 |
ignored_loop_nodes[i] = n->_idx; |
|
187 |
continue; |
|
188 |
} |
|
189 |
||
190 |
if (n->is_LoadStore() || n->is_MergeMem() || |
|
191 |
(n->is_Proj() && !n->as_Proj()->is_CFG())) { |
|
192 |
is_slp = false; |
|
193 |
break; |
|
194 |
} |
|
195 |
||
31520 | 196 |
// Ignore nodes with non-primitive type. |
197 |
BasicType bt; |
|
198 |
if (n->is_Mem()) { |
|
199 |
bt = n->as_Mem()->memory_type(); |
|
200 |
} else { |
|
201 |
bt = n->bottom_type()->basic_type(); |
|
202 |
} |
|
203 |
if (is_java_primitive(bt) == false) { |
|
204 |
ignored_loop_nodes[i] = n->_idx; |
|
205 |
continue; |
|
206 |
} |
|
207 |
||
31403 | 208 |
if (n->is_Mem()) { |
31405
594c1ae9477e
8129094: assert(is_java_primitive(bt)) failed: only primitive type vectors
kvn
parents:
31403
diff
changeset
|
209 |
MemNode* current = n->as_Mem(); |
31403 | 210 |
Node* adr = n->in(MemNode::Address); |
211 |
Node* n_ctrl = _phase->get_ctrl(adr); |
|
212 |
||
213 |
// save a queue of post process nodes |
|
214 |
if (n_ctrl != NULL && lpt()->is_member(_phase->get_loop(n_ctrl))) { |
|
215 |
// Process the memory expression |
|
216 |
int stack_idx = 0; |
|
217 |
bool have_side_effects = true; |
|
218 |
if (adr->is_AddP() == false) { |
|
219 |
nstack.push(adr, stack_idx++); |
|
220 |
} else { |
|
221 |
// Mark the components of the memory operation in nstack |
|
222 |
SWPointer p1(current, this, &nstack, true); |
|
223 |
have_side_effects = p1.node_stack()->is_nonempty(); |
|
224 |
} |
|
225 |
||
226 |
// Process the pointer stack |
|
227 |
while (have_side_effects) { |
|
228 |
Node* pointer_node = nstack.node(); |
|
229 |
for (uint j = 0; j < lpt()->_body.size(); j++) { |
|
230 |
Node* cur_node = lpt()->_body.at(j); |
|
231 |
if (cur_node == pointer_node) { |
|
232 |
ignored_loop_nodes[j] = cur_node->_idx; |
|
233 |
break; |
|
234 |
} |
|
235 |
} |
|
236 |
nstack.pop(); |
|
237 |
have_side_effects = nstack.is_nonempty(); |
|
238 |
} |
|
239 |
} |
|
240 |
} |
|
241 |
} |
|
242 |
||
243 |
if (is_slp) { |
|
244 |
// Now we try to find the maximum supported consistent vector which the machine |
|
245 |
// description can use |
|
246 |
for (uint i = 0; i < lpt()->_body.size(); i++) { |
|
247 |
if (ignored_loop_nodes[i] != -1) continue; |
|
248 |
||
249 |
BasicType bt; |
|
250 |
Node* n = lpt()->_body.at(i); |
|
31520 | 251 |
if (n->is_Mem()) { |
31403 | 252 |
bt = n->as_Mem()->memory_type(); |
31405
594c1ae9477e
8129094: assert(is_java_primitive(bt)) failed: only primitive type vectors
kvn
parents:
31403
diff
changeset
|
253 |
} else { |
31403 | 254 |
bt = n->bottom_type()->basic_type(); |
255 |
} |
|
31520 | 256 |
if (is_java_primitive(bt) == false) continue; |
31403 | 257 |
|
258 |
int cur_max_vector = Matcher::max_vector_size(bt); |
|
259 |
||
260 |
// If a max vector exists which is not larger than _local_loop_unroll_factor |
|
261 |
// stop looking, we already have the max vector to map to. |
|
31772 | 262 |
if (cur_max_vector < local_loop_unroll_factor) { |
31403 | 263 |
is_slp = false; |
31772 | 264 |
NOT_PRODUCT(if (TraceSuperWordLoopUnrollAnalysis) tty->print_cr("slp analysis fails: unroll limit greater than max vector\n")); |
31403 | 265 |
break; |
266 |
} |
|
267 |
||
268 |
// Map the maximal common vector |
|
269 |
if (VectorNode::implemented(n->Opcode(), cur_max_vector, bt)) { |
|
270 |
if (cur_max_vector < max_vector) { |
|
271 |
max_vector = cur_max_vector; |
|
272 |
} |
|
273 |
} |
|
274 |
} |
|
275 |
if (is_slp) { |
|
276 |
local_loop_unroll_factor = max_vector; |
|
31772 | 277 |
cl->mark_passed_slp(); |
31403 | 278 |
} |
31772 | 279 |
cl->mark_was_slp(); |
31403 | 280 |
cl->set_slp_max_unroll(local_loop_unroll_factor); |
281 |
} |
|
1 | 282 |
} |
283 |
||
284 |
//------------------------------SLP_extract--------------------------- |
|
285 |
// Extract the superword level parallelism |
|
286 |
// |
|
287 |
// 1) A reverse post-order of nodes in the block is constructed. By scanning |
|
288 |
// this list from first to last, all definitions are visited before their uses. |
|
289 |
// |
|
290 |
// 2) A point-to-point dependence graph is constructed between memory references. |
|
291 |
// This simplies the upcoming "independence" checker. |
|
292 |
// |
|
293 |
// 3) The maximum depth in the node graph from the beginning of the block |
|
294 |
// to each node is computed. This is used to prune the graph search |
|
295 |
// in the independence checker. |
|
296 |
// |
|
297 |
// 4) For integer types, the necessary bit width is propagated backwards |
|
298 |
// from stores to allow packed operations on byte, char, and short |
|
299 |
// integers. This reverses the promotion to type "int" that javac |
|
300 |
// did for operations like: char c1,c2,c3; c1 = c2 + c3. |
|
301 |
// |
|
302 |
// 5) One of the memory references is picked to be an aligned vector reference. |
|
303 |
// The pre-loop trip count is adjusted to align this reference in the |
|
304 |
// unrolled body. |
|
305 |
// |
|
306 |
// 6) The initial set of pack pairs is seeded with memory references. |
|
307 |
// |
|
308 |
// 7) The set of pack pairs is extended by following use->def and def->use links. |
|
309 |
// |
|
310 |
// 8) The pairs are combined into vector sized packs. |
|
311 |
// |
|
312 |
// 9) Reorder the memory slices to co-locate members of the memory packs. |
|
313 |
// |
|
314 |
// 10) Generate ideal vector nodes for the final set of packs and where necessary, |
|
315 |
// inserting scalar promotion, vector creation from multiple scalars, and |
|
316 |
// extraction of scalar values from vectors. |
|
317 |
// |
|
318 |
void SuperWord::SLP_extract() { |
|
319 |
||
30593 | 320 |
#ifndef PRODUCT |
321 |
if (_do_vector_loop && TraceSuperWord) { |
|
322 |
tty->print("SuperWord::SLP_extract\n"); |
|
323 |
tty->print("input loop\n"); |
|
324 |
_lpt->dump_head(); |
|
325 |
_lpt->dump(); |
|
326 |
for (uint i = 0; i < _lpt->_body.size(); i++) { |
|
327 |
_lpt->_body.at(i)->dump(); |
|
328 |
} |
|
329 |
} |
|
330 |
#endif |
|
1 | 331 |
// Ready the block |
30593 | 332 |
if (!construct_bb()) { |
15755
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
333 |
return; // Exit if no interesting nodes or complex graph. |
30593 | 334 |
} |
335 |
// build _dg, _disjoint_ptrs |
|
1 | 336 |
dependence_graph(); |
337 |
||
30593 | 338 |
// compute function depth(Node*) |
1 | 339 |
compute_max_depth(); |
340 |
||
30593 | 341 |
if (_do_vector_loop) { |
342 |
if (mark_generations() != -1) { |
|
343 |
hoist_loads_in_graph(); // this only rebuild the graph; all basic structs need rebuild explicitly |
|
344 |
||
345 |
if (!construct_bb()) { |
|
346 |
return; // Exit if no interesting nodes or complex graph. |
|
347 |
} |
|
348 |
dependence_graph(); |
|
349 |
compute_max_depth(); |
|
350 |
} |
|
351 |
||
352 |
#ifndef PRODUCT |
|
353 |
if (TraceSuperWord) { |
|
354 |
tty->print_cr("\nSuperWord::_do_vector_loop: graph after hoist_loads_in_graph"); |
|
355 |
_lpt->dump_head(); |
|
356 |
for (int j = 0; j < _block.length(); j++) { |
|
357 |
Node* n = _block.at(j); |
|
358 |
int d = depth(n); |
|
359 |
for (int i = 0; i < d; i++) tty->print("%s", " "); |
|
360 |
tty->print("%d :", d); |
|
361 |
n->dump(); |
|
362 |
} |
|
363 |
} |
|
364 |
#endif |
|
365 |
} |
|
366 |
||
1 | 367 |
compute_vector_element_type(); |
368 |
||
369 |
// Attempt vectorization |
|
370 |
||
371 |
find_adjacent_refs(); |
|
372 |
||
373 |
extend_packlist(); |
|
374 |
||
30593 | 375 |
if (_do_vector_loop) { |
376 |
if (_packset.length() == 0) { |
|
377 |
#ifndef PRODUCT |
|
378 |
if (TraceSuperWord) { |
|
379 |
tty->print_cr("\nSuperWord::_do_vector_loop DFA could not build packset, now trying to build anyway"); |
|
380 |
} |
|
381 |
#endif |
|
382 |
pack_parallel(); |
|
383 |
} |
|
384 |
} |
|
385 |
||
1 | 386 |
combine_packs(); |
387 |
||
388 |
construct_my_pack_map(); |
|
389 |
||
390 |
filter_packs(); |
|
391 |
||
392 |
schedule(); |
|
393 |
||
394 |
output(); |
|
395 |
} |
|
396 |
||
397 |
//------------------------------find_adjacent_refs--------------------------- |
|
398 |
// Find the adjacent memory references and create pack pairs for them. |
|
399 |
// This is the initial set of packs that will then be extended by |
|
400 |
// following use->def and def->use links. The align positions are |
|
401 |
// assigned relative to the reference "align_to_ref" |
|
402 |
void SuperWord::find_adjacent_refs() { |
|
403 |
// Get list of memory operations |
|
404 |
Node_List memops; |
|
405 |
for (int i = 0; i < _block.length(); i++) { |
|
406 |
Node* n = _block.at(i); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
407 |
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
|
408 |
is_java_primitive(n->as_Mem()->memory_type())) { |
1 | 409 |
int align = memory_alignment(n->as_Mem(), 0); |
410 |
if (align != bottom_align) { |
|
411 |
memops.push(n); |
|
412 |
} |
|
413 |
} |
|
414 |
} |
|
415 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
416 |
Node_List align_to_refs; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
417 |
int best_iv_adjustment = 0; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
418 |
MemNode* best_align_to_mem_ref = NULL; |
1 | 419 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
420 |
while (memops.size() != 0) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
421 |
// Find a memory reference to align to. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
422 |
MemNode* mem_ref = find_align_to_ref(memops); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
423 |
if (mem_ref == NULL) break; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
424 |
align_to_refs.push(mem_ref); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
425 |
int iv_adjustment = get_iv_adjustment(mem_ref); |
1 | 426 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
427 |
if (best_align_to_mem_ref == NULL) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
428 |
// 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
|
429 |
// 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
|
430 |
// this reference to a vector-aligned address. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
431 |
best_align_to_mem_ref = mem_ref; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
432 |
best_iv_adjustment = iv_adjustment; |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
433 |
NOT_PRODUCT(find_adjacent_refs_trace_1(best_align_to_mem_ref, best_iv_adjustment);) |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
434 |
} |
1 | 435 |
|
31403 | 436 |
SWPointer align_to_ref_p(mem_ref, this, NULL, false); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
437 |
// 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
|
438 |
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
|
439 |
MemNode* s = memops.at(i)->as_Mem(); |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
440 |
if (isomorphic(s, mem_ref) && |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
441 |
(!_do_vector_loop || same_origin_idx(s, mem_ref))) { |
31403 | 442 |
SWPointer p2(s, this, NULL, false); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
443 |
if (p2.comparable(align_to_ref_p)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
444 |
int align = memory_alignment(s, iv_adjustment); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
445 |
set_alignment(s, align); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
446 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
447 |
} |
1 | 448 |
} |
449 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
450 |
// 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
|
451 |
// alignment is set and vectors will be aligned. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
452 |
bool create_pack = true; |
30593 | 453 |
if (memory_alignment(mem_ref, best_iv_adjustment) == 0 || _do_vector_loop) { |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
454 |
if (!Matcher::misaligned_vectors_ok()) { |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
455 |
int vw = vector_width(mem_ref); |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
456 |
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
|
457 |
if (vw > vw_best) { |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
458 |
// 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
|
459 |
// 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
|
460 |
// 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
|
461 |
create_pack = false; |
30625
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
462 |
} else { |
31403 | 463 |
SWPointer p2(best_align_to_mem_ref, this, NULL, false); |
30625
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
464 |
if (align_to_ref_p.invar() != p2.invar()) { |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
465 |
// Do not vectorize memory accesses with different invariants |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
466 |
// if unaligned memory accesses are not allowed. |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
467 |
create_pack = false; |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
468 |
} |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
469 |
} |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
470 |
} |
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
471 |
} else { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
472 |
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
|
473 |
// 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
|
474 |
// 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
|
475 |
create_pack = false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
476 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
477 |
// Allow independent (different type) unaligned memory operations |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
478 |
// if HW supports them. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
479 |
if (!Matcher::misaligned_vectors_ok()) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
480 |
create_pack = false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
481 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
482 |
// 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
|
483 |
// with a different alignment were created before. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
484 |
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
|
485 |
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
|
486 |
if (same_velt_type(mr, mem_ref) && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
487 |
memory_alignment(mr, iv_adjustment) != 0) |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
488 |
create_pack = false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
489 |
} |
1 | 490 |
} |
491 |
} |
|
492 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
493 |
if (create_pack) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
494 |
for (uint i = 0; i < memops.size(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
495 |
Node* s1 = memops.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
496 |
int align = alignment(s1); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
497 |
if (align == top_align) continue; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
498 |
for (uint j = 0; j < memops.size(); j++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
499 |
Node* s2 = memops.at(j); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
500 |
if (alignment(s2) == top_align) continue; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
501 |
if (s1 != s2 && are_adjacent_refs(s1, s2)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
502 |
if (stmts_can_pack(s1, s2, align)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
503 |
Node_List* pair = new Node_List(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
504 |
pair->push(s1); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
505 |
pair->push(s2); |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
506 |
if (!_do_vector_loop || same_origin_idx(s1, s2)) { |
30593 | 507 |
_packset.append(pair); |
508 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
509 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
510 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
511 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
512 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
513 |
} else { // Don't create unaligned pack |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
514 |
// 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
|
515 |
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
|
516 |
MemNode* s = memops.at(i)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
517 |
if (same_velt_type(s, mem_ref)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
518 |
memops.remove(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
519 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
520 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
521 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
522 |
// 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
|
523 |
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
|
524 |
Node_List* p = _packset.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
525 |
MemNode* s = p->at(0)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
526 |
if (same_velt_type(s, mem_ref)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
527 |
remove_pack_at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
528 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
529 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
530 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
531 |
// 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
|
532 |
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
|
533 |
// 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
|
534 |
// the best alignment search. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
535 |
uint orig_msize = memops.size(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
536 |
for (int i = 0; i < _packset.length(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
537 |
Node_List* p = _packset.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
538 |
MemNode* s = p->at(0)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
539 |
assert(!same_velt_type(s, mem_ref), "sanity"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
540 |
memops.push(s); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
541 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
542 |
MemNode* best_align_to_mem_ref = find_align_to_ref(memops); |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
543 |
if (best_align_to_mem_ref == NULL) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
544 |
NOT_PRODUCT(if (TraceSuperWord) tty->print_cr("SuperWord::find_adjacent_refs(): best_align_to_mem_ref == NULL");) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
545 |
break; |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
546 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
547 |
best_iv_adjustment = get_iv_adjustment(best_align_to_mem_ref); |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
548 |
NOT_PRODUCT(find_adjacent_refs_trace_1(best_align_to_mem_ref, best_iv_adjustment);) |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
549 |
// Restore list. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
550 |
while (memops.size() > orig_msize) |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
551 |
(void)memops.pop(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
552 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
553 |
} // unaligned memory accesses |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
554 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
555 |
// Remove used mem nodes. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
556 |
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
|
557 |
MemNode* m = memops.at(i)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
558 |
if (alignment(m) != top_align) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
559 |
memops.remove(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
560 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
561 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
562 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
563 |
} // while (memops.size() != 0 |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
564 |
set_align_to_ref(best_align_to_mem_ref); |
1 | 565 |
|
566 |
#ifndef PRODUCT |
|
567 |
if (TraceSuperWord) { |
|
568 |
tty->print_cr("\nAfter find_adjacent_refs"); |
|
569 |
print_packset(); |
|
570 |
} |
|
571 |
#endif |
|
572 |
} |
|
573 |
||
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
574 |
#ifndef PRODUCT |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
575 |
void SuperWord::find_adjacent_refs_trace_1(Node* best_align_to_mem_ref, int best_iv_adjustment) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
576 |
if (is_trace_adjacent()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
577 |
tty->print("SuperWord::find_adjacent_refs best_align_to_mem_ref = %d, best_iv_adjustment = %d", |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
578 |
best_align_to_mem_ref->_idx, best_iv_adjustment); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
579 |
best_align_to_mem_ref->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
580 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
581 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
582 |
#endif |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
583 |
|
1 | 584 |
//------------------------------find_align_to_ref--------------------------- |
585 |
// Find a memory reference to align the loop induction variable to. |
|
586 |
// Looks first at stores then at loads, looking for a memory reference |
|
587 |
// 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
|
588 |
MemNode* SuperWord::find_align_to_ref(Node_List &memops) { |
1 | 589 |
GrowableArray<int> cmp_ct(arena(), memops.size(), memops.size(), 0); |
590 |
||
591 |
// Count number of comparable memory ops |
|
592 |
for (uint i = 0; i < memops.size(); i++) { |
|
593 |
MemNode* s1 = memops.at(i)->as_Mem(); |
|
31403 | 594 |
SWPointer p1(s1, this, NULL, false); |
1 | 595 |
// Discard if pre loop can't align this reference |
596 |
if (!ref_is_alignable(p1)) { |
|
597 |
*cmp_ct.adr_at(i) = 0; |
|
598 |
continue; |
|
599 |
} |
|
600 |
for (uint j = i+1; j < memops.size(); j++) { |
|
601 |
MemNode* s2 = memops.at(j)->as_Mem(); |
|
602 |
if (isomorphic(s1, s2)) { |
|
31403 | 603 |
SWPointer p2(s2, this, NULL, false); |
1 | 604 |
if (p1.comparable(p2)) { |
605 |
(*cmp_ct.adr_at(i))++; |
|
606 |
(*cmp_ct.adr_at(j))++; |
|
607 |
} |
|
608 |
} |
|
609 |
} |
|
610 |
} |
|
611 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
612 |
// 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
|
613 |
// biggest vector size, smallest data size and smallest iv offset. |
1 | 614 |
int max_ct = 0; |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
615 |
int max_vw = 0; |
1 | 616 |
int max_idx = -1; |
617 |
int min_size = max_jint; |
|
618 |
int min_iv_offset = max_jint; |
|
619 |
for (uint j = 0; j < memops.size(); j++) { |
|
620 |
MemNode* s = memops.at(j)->as_Mem(); |
|
621 |
if (s->is_Store()) { |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
622 |
int vw = vector_width_in_bytes(s); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
623 |
assert(vw > 1, "sanity"); |
31403 | 624 |
SWPointer p(s, this, NULL, false); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
625 |
if (cmp_ct.at(j) > max_ct || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
626 |
cmp_ct.at(j) == max_ct && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
627 |
(vw > max_vw || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
628 |
vw == max_vw && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
629 |
(data_size(s) < min_size || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
630 |
data_size(s) == min_size && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
631 |
(p.offset_in_bytes() < min_iv_offset)))) { |
1 | 632 |
max_ct = cmp_ct.at(j); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
633 |
max_vw = vw; |
1 | 634 |
max_idx = j; |
635 |
min_size = data_size(s); |
|
636 |
min_iv_offset = p.offset_in_bytes(); |
|
637 |
} |
|
638 |
} |
|
639 |
} |
|
640 |
// If no stores, look at loads |
|
641 |
if (max_ct == 0) { |
|
642 |
for (uint j = 0; j < memops.size(); j++) { |
|
643 |
MemNode* s = memops.at(j)->as_Mem(); |
|
644 |
if (s->is_Load()) { |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
645 |
int vw = vector_width_in_bytes(s); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
646 |
assert(vw > 1, "sanity"); |
31403 | 647 |
SWPointer p(s, this, NULL, false); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
648 |
if (cmp_ct.at(j) > max_ct || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
649 |
cmp_ct.at(j) == max_ct && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
650 |
(vw > max_vw || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
651 |
vw == max_vw && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
652 |
(data_size(s) < min_size || |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
653 |
data_size(s) == min_size && |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
654 |
(p.offset_in_bytes() < min_iv_offset)))) { |
1 | 655 |
max_ct = cmp_ct.at(j); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
656 |
max_vw = vw; |
1 | 657 |
max_idx = j; |
658 |
min_size = data_size(s); |
|
659 |
min_iv_offset = p.offset_in_bytes(); |
|
660 |
} |
|
661 |
} |
|
662 |
} |
|
663 |
} |
|
664 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
665 |
#ifdef ASSERT |
1 | 666 |
if (TraceSuperWord && Verbose) { |
30593 | 667 |
tty->print_cr("\nVector memops after find_align_to_ref"); |
1 | 668 |
for (uint i = 0; i < memops.size(); i++) { |
669 |
MemNode* s = memops.at(i)->as_Mem(); |
|
670 |
s->dump(); |
|
671 |
} |
|
672 |
} |
|
673 |
#endif |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
674 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
675 |
if (max_ct > 0) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
676 |
#ifdef ASSERT |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
677 |
if (TraceSuperWord) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
678 |
tty->print("\nVector align to node: "); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
679 |
memops.at(max_idx)->as_Mem()->dump(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
680 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
681 |
#endif |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
682 |
return memops.at(max_idx)->as_Mem(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
683 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
684 |
return NULL; |
1 | 685 |
} |
686 |
||
687 |
//------------------------------ref_is_alignable--------------------------- |
|
688 |
// Can the preloop align the reference to position zero in the vector? |
|
689 |
bool SuperWord::ref_is_alignable(SWPointer& p) { |
|
690 |
if (!p.has_iv()) { |
|
691 |
return true; // no induction variable |
|
692 |
} |
|
693 |
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
|
694 |
assert(pre_end != NULL, "we must have a correct pre-loop"); |
1 | 695 |
assert(pre_end->stride_is_con(), "pre loop stride is constant"); |
696 |
int preloop_stride = pre_end->stride_con(); |
|
697 |
||
698 |
int span = preloop_stride * p.scale_in_bytes(); |
|
30215
24fb50d99dc3
8076523: assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0)) fails in superword.cpp
kvn
parents:
30211
diff
changeset
|
699 |
int mem_size = p.memory_size(); |
24fb50d99dc3
8076523: assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0)) fails in superword.cpp
kvn
parents:
30211
diff
changeset
|
700 |
int offset = p.offset_in_bytes(); |
24fb50d99dc3
8076523: assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0)) fails in superword.cpp
kvn
parents:
30211
diff
changeset
|
701 |
// Stride one accesses are alignable if offset is aligned to memory operation size. |
24fb50d99dc3
8076523: assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0)) fails in superword.cpp
kvn
parents:
30211
diff
changeset
|
702 |
// Offset can be unaligned when UseUnalignedAccesses is used. |
24fb50d99dc3
8076523: assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0)) fails in superword.cpp
kvn
parents:
30211
diff
changeset
|
703 |
if (ABS(span) == mem_size && (ABS(offset) % mem_size) == 0) { |
1 | 704 |
return true; |
30215
24fb50d99dc3
8076523: assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0)) fails in superword.cpp
kvn
parents:
30211
diff
changeset
|
705 |
} |
30625
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
706 |
// If the initial offset from start of the object is computable, |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
707 |
// check if the pre-loop can align the final offset accordingly. |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
708 |
// |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
709 |
// In other words: Can we find an i such that the offset |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
710 |
// after i pre-loop iterations is aligned to vw? |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
711 |
// (init_offset + pre_loop) % vw == 0 (1) |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
712 |
// where |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
713 |
// pre_loop = i * span |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
714 |
// is the number of bytes added to the offset by i pre-loop iterations. |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
715 |
// |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
716 |
// For this to hold we need pre_loop to increase init_offset by |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
717 |
// pre_loop = vw - (init_offset % vw) |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
718 |
// |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
719 |
// This is only possible if pre_loop is divisible by span because each |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
720 |
// pre-loop iteration increases the initial offset by 'span' bytes: |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
721 |
// (vw - (init_offset % vw)) % span == 0 |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
722 |
// |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
723 |
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
|
724 |
assert(vw > 1, "sanity"); |
30625
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
725 |
Node* init_nd = pre_end->init_trip(); |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
726 |
if (init_nd->is_Con() && p.invar() == NULL) { |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
727 |
int init = init_nd->bottom_type()->is_int()->get_con(); |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
728 |
int init_offset = init * p.scale_in_bytes() + offset; |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
729 |
assert(init_offset >= 0, "positive offset from object start"); |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
730 |
if (vw % span == 0) { |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
731 |
// If vm is a multiple of span, we use formula (1). |
1 | 732 |
if (span > 0) { |
733 |
return (vw - (init_offset % vw)) % span == 0; |
|
734 |
} else { |
|
735 |
assert(span < 0, "nonzero stride * scale"); |
|
736 |
return (init_offset % vw) % -span == 0; |
|
737 |
} |
|
30625
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
738 |
} else if (span % vw == 0) { |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
739 |
// If span is a multiple of vw, we can simplify formula (1) to: |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
740 |
// (init_offset + i * span) % vw == 0 |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
741 |
// => |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
742 |
// (init_offset % vw) + ((i * span) % vw) == 0 |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
743 |
// => |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
744 |
// init_offset % vw == 0 |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
745 |
// |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
746 |
// Because we add a multiple of vw to the initial offset, the final |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
747 |
// offset is a multiple of vw if and only if init_offset is a multiple. |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
748 |
// |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
749 |
return (init_offset % vw) == 0; |
1 | 750 |
} |
751 |
} |
|
752 |
return false; |
|
753 |
} |
|
754 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
755 |
//---------------------------get_iv_adjustment--------------------------- |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
756 |
// 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
|
757 |
int SuperWord::get_iv_adjustment(MemNode* mem_ref) { |
31403 | 758 |
SWPointer align_to_ref_p(mem_ref, this, NULL, false); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
759 |
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
|
760 |
int scale = align_to_ref_p.scale_in_bytes(); |
30625
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
761 |
int elt_size = align_to_ref_p.memory_size(); |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
762 |
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
|
763 |
assert(vw > 1, "sanity"); |
30625
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
764 |
int iv_adjustment; |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
765 |
if (scale != 0) { |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
766 |
int stride_sign = (scale * iv_stride()) > 0 ? 1 : -1; |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
767 |
// At least one iteration is executed in pre-loop by default. As result |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
768 |
// several iterations are needed to align memory operations in main-loop even |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
769 |
// if offset is 0. |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
770 |
int iv_adjustment_in_bytes = (stride_sign * vw - (offset % vw)); |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
771 |
assert(((ABS(iv_adjustment_in_bytes) % elt_size) == 0), |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
772 |
err_msg_res("(%d) should be divisible by (%d)", iv_adjustment_in_bytes, elt_size)); |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
773 |
iv_adjustment = iv_adjustment_in_bytes/elt_size; |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
774 |
} else { |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
775 |
// This memory op is not dependent on iv (scale == 0) |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
776 |
iv_adjustment = 0; |
80a08f9b2d63
8078497: C2's superword optimization causes unaligned memory accesses
thartmann
parents:
30593
diff
changeset
|
777 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
778 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
779 |
#ifndef PRODUCT |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
780 |
if (TraceSuperWord) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
781 |
tty->print("SuperWord::get_iv_adjustment: n = %d, noffset = %d iv_adjust = %d elt_size = %d scale = %d iv_stride = %d vect_size %d: ", |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
782 |
mem_ref->_idx, offset, iv_adjustment, elt_size, scale, iv_stride(), vw); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
783 |
mem_ref->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
784 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
785 |
#endif |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
786 |
return iv_adjustment; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
787 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
788 |
|
1 | 789 |
//---------------------------dependence_graph--------------------------- |
790 |
// Construct dependency graph. |
|
791 |
// Add dependence edges to load/store nodes for memory dependence |
|
792 |
// A.out()->DependNode.in(1) and DependNode.out()->B.prec(x) |
|
793 |
void SuperWord::dependence_graph() { |
|
794 |
// First, assign a dependence node to each memory node |
|
795 |
for (int i = 0; i < _block.length(); i++ ) { |
|
796 |
Node *n = _block.at(i); |
|
797 |
if (n->is_Mem() || n->is_Phi() && n->bottom_type() == Type::MEMORY) { |
|
798 |
_dg.make_node(n); |
|
799 |
} |
|
800 |
} |
|
801 |
||
802 |
// For each memory slice, create the dependences |
|
803 |
for (int i = 0; i < _mem_slice_head.length(); i++) { |
|
804 |
Node* n = _mem_slice_head.at(i); |
|
805 |
Node* n_tail = _mem_slice_tail.at(i); |
|
806 |
||
807 |
// Get slice in predecessor order (last is first) |
|
808 |
mem_slice_preds(n_tail, n, _nlist); |
|
809 |
||
30593 | 810 |
#ifndef PRODUCT |
811 |
if(TraceSuperWord && Verbose) { |
|
812 |
tty->print_cr("SuperWord::dependence_graph: built a new mem slice"); |
|
813 |
for (int j = _nlist.length() - 1; j >= 0 ; j--) { |
|
814 |
_nlist.at(j)->dump(); |
|
815 |
} |
|
816 |
} |
|
817 |
#endif |
|
1 | 818 |
// Make the slice dependent on the root |
819 |
DepMem* slice = _dg.dep(n); |
|
820 |
_dg.make_edge(_dg.root(), slice); |
|
821 |
||
822 |
// Create a sink for the slice |
|
823 |
DepMem* slice_sink = _dg.make_node(NULL); |
|
824 |
_dg.make_edge(slice_sink, _dg.tail()); |
|
825 |
||
826 |
// Now visit each pair of memory ops, creating the edges |
|
827 |
for (int j = _nlist.length() - 1; j >= 0 ; j--) { |
|
828 |
Node* s1 = _nlist.at(j); |
|
829 |
||
830 |
// If no dependency yet, use slice |
|
831 |
if (_dg.dep(s1)->in_cnt() == 0) { |
|
832 |
_dg.make_edge(slice, s1); |
|
833 |
} |
|
31403 | 834 |
SWPointer p1(s1->as_Mem(), this, NULL, false); |
1 | 835 |
bool sink_dependent = true; |
836 |
for (int k = j - 1; k >= 0; k--) { |
|
837 |
Node* s2 = _nlist.at(k); |
|
838 |
if (s1->is_Load() && s2->is_Load()) |
|
839 |
continue; |
|
31403 | 840 |
SWPointer p2(s2->as_Mem(), this, NULL, false); |
1 | 841 |
|
842 |
int cmp = p1.cmp(p2); |
|
843 |
if (SuperWordRTDepCheck && |
|
844 |
p1.base() != p2.base() && p1.valid() && p2.valid()) { |
|
845 |
// Create a runtime check to disambiguate |
|
846 |
OrderedPair pp(p1.base(), p2.base()); |
|
847 |
_disjoint_ptrs.append_if_missing(pp); |
|
848 |
} else if (!SWPointer::not_equal(cmp)) { |
|
849 |
// Possibly same address |
|
850 |
_dg.make_edge(s1, s2); |
|
851 |
sink_dependent = false; |
|
852 |
} |
|
853 |
} |
|
854 |
if (sink_dependent) { |
|
855 |
_dg.make_edge(s1, slice_sink); |
|
856 |
} |
|
857 |
} |
|
858 |
#ifndef PRODUCT |
|
859 |
if (TraceSuperWord) { |
|
860 |
tty->print_cr("\nDependence graph for slice: %d", n->_idx); |
|
861 |
for (int q = 0; q < _nlist.length(); q++) { |
|
862 |
_dg.print(_nlist.at(q)); |
|
863 |
} |
|
864 |
tty->cr(); |
|
865 |
} |
|
866 |
#endif |
|
867 |
_nlist.clear(); |
|
868 |
} |
|
869 |
||
870 |
#ifndef PRODUCT |
|
871 |
if (TraceSuperWord) { |
|
872 |
tty->print_cr("\ndisjoint_ptrs: %s", _disjoint_ptrs.length() > 0 ? "" : "NONE"); |
|
873 |
for (int r = 0; r < _disjoint_ptrs.length(); r++) { |
|
874 |
_disjoint_ptrs.at(r).print(); |
|
875 |
tty->cr(); |
|
876 |
} |
|
877 |
tty->cr(); |
|
878 |
} |
|
879 |
#endif |
|
880 |
} |
|
881 |
||
882 |
//---------------------------mem_slice_preds--------------------------- |
|
883 |
// Return a memory slice (node list) in predecessor order starting at "start" |
|
884 |
void SuperWord::mem_slice_preds(Node* start, Node* stop, GrowableArray<Node*> &preds) { |
|
885 |
assert(preds.length() == 0, "start empty"); |
|
886 |
Node* n = start; |
|
887 |
Node* prev = NULL; |
|
888 |
while (true) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
889 |
NOT_PRODUCT( if(is_trace_mem_slice()) tty->print_cr("SuperWord::mem_slice_preds: n %d", n->_idx);) |
1 | 890 |
assert(in_bb(n), "must be in block"); |
891 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
892 |
Node* out = n->fast_out(i); |
|
893 |
if (out->is_Load()) { |
|
894 |
if (in_bb(out)) { |
|
895 |
preds.push(out); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
896 |
NOT_PRODUCT(if (TraceSuperWord && Verbose) tty->print_cr("SuperWord::mem_slice_preds: added pred(%d)", out->_idx);) |
1 | 897 |
} |
898 |
} else { |
|
899 |
// FIXME |
|
900 |
if (out->is_MergeMem() && !in_bb(out)) { |
|
901 |
// Either unrolling is causing a memory edge not to disappear, |
|
902 |
// or need to run igvn.optimize() again before SLP |
|
903 |
} else if (out->is_Phi() && out->bottom_type() == Type::MEMORY && !in_bb(out)) { |
|
904 |
// Ditto. Not sure what else to check further. |
|
2334 | 905 |
} else if (out->Opcode() == Op_StoreCM && out->in(MemNode::OopStore) == n) { |
1 | 906 |
// StoreCM has an input edge used as a precedence edge. |
907 |
// Maybe an issue when oop stores are vectorized. |
|
908 |
} else { |
|
909 |
assert(out == prev || prev == NULL, "no branches off of store slice"); |
|
910 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
911 |
}//else |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
912 |
}//for |
1 | 913 |
if (n == stop) break; |
914 |
preds.push(n); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
915 |
NOT_PRODUCT(if (TraceSuperWord && Verbose) tty->print_cr("SuperWord::mem_slice_preds: added pred(%d)", n->_idx);) |
1 | 916 |
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
|
917 |
assert(n->is_Mem(), err_msg_res("unexpected node %s", n->Name())); |
1 | 918 |
n = n->in(MemNode::Memory); |
919 |
} |
|
920 |
} |
|
921 |
||
922 |
//------------------------------stmts_can_pack--------------------------- |
|
2131 | 923 |
// Can s1 and s2 be in a pack with s1 immediately preceding s2 and |
1 | 924 |
// s1 aligned at "align" |
925 |
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
|
926 |
|
6767b0c66883
6879921: CTW failure jdk6_18/hotspot/src/share/vm/utilities/globalDefinitions.cpp:268
cfang
parents:
3904
diff
changeset
|
927 |
// Do not use superword for non-primitives |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
928 |
BasicType bt1 = velt_basic_type(s1); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
929 |
BasicType bt2 = velt_basic_type(s2); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
930 |
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
|
931 |
return false; |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
932 |
if (Matcher::max_vector_size(bt1) < 2) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
933 |
return false; // No vectors for this type |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
934 |
} |
3906
6767b0c66883
6879921: CTW failure jdk6_18/hotspot/src/share/vm/utilities/globalDefinitions.cpp:268
cfang
parents:
3904
diff
changeset
|
935 |
|
1 | 936 |
if (isomorphic(s1, s2)) { |
30211 | 937 |
if (independent(s1, s2) || reduction(s1, s2)) { |
1 | 938 |
if (!exists_at(s1, 0) && !exists_at(s2, 1)) { |
939 |
if (!s1->is_Mem() || are_adjacent_refs(s1, s2)) { |
|
940 |
int s1_align = alignment(s1); |
|
941 |
int s2_align = alignment(s2); |
|
942 |
if (s1_align == top_align || s1_align == align) { |
|
943 |
if (s2_align == top_align || s2_align == align + data_size(s1)) { |
|
944 |
return true; |
|
945 |
} |
|
946 |
} |
|
947 |
} |
|
948 |
} |
|
949 |
} |
|
950 |
} |
|
951 |
return false; |
|
952 |
} |
|
953 |
||
954 |
//------------------------------exists_at--------------------------- |
|
955 |
// Does s exist in a pack at position pos? |
|
956 |
bool SuperWord::exists_at(Node* s, uint pos) { |
|
957 |
for (int i = 0; i < _packset.length(); i++) { |
|
958 |
Node_List* p = _packset.at(i); |
|
959 |
if (p->at(pos) == s) { |
|
960 |
return true; |
|
961 |
} |
|
962 |
} |
|
963 |
return false; |
|
964 |
} |
|
965 |
||
966 |
//------------------------------are_adjacent_refs--------------------------- |
|
967 |
// Is s1 immediately before s2 in memory? |
|
968 |
bool SuperWord::are_adjacent_refs(Node* s1, Node* s2) { |
|
969 |
if (!s1->is_Mem() || !s2->is_Mem()) return false; |
|
970 |
if (!in_bb(s1) || !in_bb(s2)) return false; |
|
5708 | 971 |
|
972 |
// Do not use superword for non-primitives |
|
973 |
if (!is_java_primitive(s1->as_Mem()->memory_type()) || |
|
974 |
!is_java_primitive(s2->as_Mem()->memory_type())) { |
|
975 |
return false; |
|
976 |
} |
|
977 |
||
1 | 978 |
// FIXME - co_locate_pack fails on Stores in different mem-slices, so |
979 |
// only pack memops that are in the same alias set until that's fixed. |
|
980 |
if (_phase->C->get_alias_index(s1->as_Mem()->adr_type()) != |
|
981 |
_phase->C->get_alias_index(s2->as_Mem()->adr_type())) |
|
982 |
return false; |
|
31403 | 983 |
SWPointer p1(s1->as_Mem(), this, NULL, false); |
984 |
SWPointer p2(s2->as_Mem(), this, NULL, false); |
|
1 | 985 |
if (p1.base() != p2.base() || !p1.comparable(p2)) return false; |
986 |
int diff = p2.offset_in_bytes() - p1.offset_in_bytes(); |
|
987 |
return diff == data_size(s1); |
|
988 |
} |
|
989 |
||
990 |
//------------------------------isomorphic--------------------------- |
|
991 |
// Are s1 and s2 similar? |
|
992 |
bool SuperWord::isomorphic(Node* s1, Node* s2) { |
|
993 |
if (s1->Opcode() != s2->Opcode()) return false; |
|
994 |
if (s1->req() != s2->req()) return false; |
|
995 |
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
|
996 |
if (!same_velt_type(s1, s2)) return false; |
1 | 997 |
return true; |
998 |
} |
|
999 |
||
1000 |
//------------------------------independent--------------------------- |
|
1001 |
// Is there no data path from s1 to s2 or s2 to s1? |
|
1002 |
bool SuperWord::independent(Node* s1, Node* s2) { |
|
1003 |
// assert(s1->Opcode() == s2->Opcode(), "check isomorphic first"); |
|
1004 |
int d1 = depth(s1); |
|
1005 |
int d2 = depth(s2); |
|
1006 |
if (d1 == d2) return s1 != s2; |
|
1007 |
Node* deep = d1 > d2 ? s1 : s2; |
|
1008 |
Node* shallow = d1 > d2 ? s2 : s1; |
|
1009 |
||
1010 |
visited_clear(); |
|
1011 |
||
1012 |
return independent_path(shallow, deep); |
|
1013 |
} |
|
1014 |
||
30211 | 1015 |
//------------------------------reduction--------------------------- |
1016 |
// Is there a data path between s1 and s2 and the nodes reductions? |
|
1017 |
bool SuperWord::reduction(Node* s1, Node* s2) { |
|
1018 |
bool retValue = false; |
|
1019 |
int d1 = depth(s1); |
|
1020 |
int d2 = depth(s2); |
|
1021 |
if (d1 + 1 == d2) { |
|
1022 |
if (s1->is_reduction() && s2->is_reduction()) { |
|
1023 |
// This is an ordered set, so s1 should define s2 |
|
1024 |
for (DUIterator_Fast imax, i = s1->fast_outs(imax); i < imax; i++) { |
|
1025 |
Node* t1 = s1->fast_out(i); |
|
1026 |
if (t1 == s2) { |
|
1027 |
// both nodes are reductions and connected |
|
1028 |
retValue = true; |
|
1029 |
} |
|
1030 |
} |
|
1031 |
} |
|
1032 |
} |
|
1033 |
||
1034 |
return retValue; |
|
1035 |
} |
|
1036 |
||
1 | 1037 |
//------------------------------independent_path------------------------------ |
1038 |
// Helper for independent |
|
1039 |
bool SuperWord::independent_path(Node* shallow, Node* deep, uint dp) { |
|
1040 |
if (dp >= 1000) return false; // stop deep recursion |
|
1041 |
visited_set(deep); |
|
1042 |
int shal_depth = depth(shallow); |
|
1043 |
assert(shal_depth <= depth(deep), "must be"); |
|
1044 |
for (DepPreds preds(deep, _dg); !preds.done(); preds.next()) { |
|
1045 |
Node* pred = preds.current(); |
|
1046 |
if (in_bb(pred) && !visited_test(pred)) { |
|
1047 |
if (shallow == pred) { |
|
1048 |
return false; |
|
1049 |
} |
|
1050 |
if (shal_depth < depth(pred) && !independent_path(shallow, pred, dp+1)) { |
|
1051 |
return false; |
|
1052 |
} |
|
1053 |
} |
|
1054 |
} |
|
1055 |
return true; |
|
1056 |
} |
|
1057 |
||
1058 |
//------------------------------set_alignment--------------------------- |
|
1059 |
void SuperWord::set_alignment(Node* s1, Node* s2, int align) { |
|
1060 |
set_alignment(s1, align); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1061 |
if (align == top_align || align == bottom_align) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1062 |
set_alignment(s2, align); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1063 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1064 |
set_alignment(s2, align + data_size(s1)); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1065 |
} |
1 | 1066 |
} |
1067 |
||
1068 |
//------------------------------data_size--------------------------- |
|
1069 |
int SuperWord::data_size(Node* s) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1070 |
int bsize = type2aelembytes(velt_basic_type(s)); |
1 | 1071 |
assert(bsize != 0, "valid size"); |
1072 |
return bsize; |
|
1073 |
} |
|
1074 |
||
1075 |
//------------------------------extend_packlist--------------------------- |
|
1076 |
// Extend packset by following use->def and def->use links from pack members. |
|
1077 |
void SuperWord::extend_packlist() { |
|
1078 |
bool changed; |
|
1079 |
do { |
|
30211 | 1080 |
packset_sort(_packset.length()); |
1 | 1081 |
changed = false; |
1082 |
for (int i = 0; i < _packset.length(); i++) { |
|
1083 |
Node_List* p = _packset.at(i); |
|
1084 |
changed |= follow_use_defs(p); |
|
1085 |
changed |= follow_def_uses(p); |
|
1086 |
} |
|
1087 |
} while (changed); |
|
1088 |
||
30211 | 1089 |
if (_race_possible) { |
1090 |
for (int i = 0; i < _packset.length(); i++) { |
|
1091 |
Node_List* p = _packset.at(i); |
|
1092 |
order_def_uses(p); |
|
1093 |
} |
|
1094 |
} |
|
1095 |
||
1 | 1096 |
#ifndef PRODUCT |
1097 |
if (TraceSuperWord) { |
|
1098 |
tty->print_cr("\nAfter extend_packlist"); |
|
1099 |
print_packset(); |
|
1100 |
} |
|
1101 |
#endif |
|
1102 |
} |
|
1103 |
||
1104 |
//------------------------------follow_use_defs--------------------------- |
|
1105 |
// Extend the packset by visiting operand definitions of nodes in pack p |
|
1106 |
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
|
1107 |
assert(p->size() == 2, "just checking"); |
1 | 1108 |
Node* s1 = p->at(0); |
1109 |
Node* s2 = p->at(1); |
|
1110 |
assert(s1->req() == s2->req(), "just checking"); |
|
1111 |
assert(alignment(s1) + data_size(s1) == alignment(s2), "just checking"); |
|
1112 |
||
1113 |
if (s1->is_Load()) return false; |
|
1114 |
||
1115 |
int align = alignment(s1); |
|
1116 |
bool changed = false; |
|
1117 |
int start = s1->is_Store() ? MemNode::ValueIn : 1; |
|
1118 |
int end = s1->is_Store() ? MemNode::ValueIn+1 : s1->req(); |
|
1119 |
for (int j = start; j < end; j++) { |
|
1120 |
Node* t1 = s1->in(j); |
|
1121 |
Node* t2 = s2->in(j); |
|
1122 |
if (!in_bb(t1) || !in_bb(t2)) |
|
1123 |
continue; |
|
1124 |
if (stmts_can_pack(t1, t2, align)) { |
|
1125 |
if (est_savings(t1, t2) >= 0) { |
|
1126 |
Node_List* pair = new Node_List(); |
|
1127 |
pair->push(t1); |
|
1128 |
pair->push(t2); |
|
1129 |
_packset.append(pair); |
|
1130 |
set_alignment(t1, t2, align); |
|
1131 |
changed = true; |
|
1132 |
} |
|
1133 |
} |
|
1134 |
} |
|
1135 |
return changed; |
|
1136 |
} |
|
1137 |
||
1138 |
//------------------------------follow_def_uses--------------------------- |
|
1139 |
// Extend the packset by visiting uses of nodes in pack p |
|
1140 |
bool SuperWord::follow_def_uses(Node_List* p) { |
|
1141 |
bool changed = false; |
|
1142 |
Node* s1 = p->at(0); |
|
1143 |
Node* s2 = p->at(1); |
|
1144 |
assert(p->size() == 2, "just checking"); |
|
1145 |
assert(s1->req() == s2->req(), "just checking"); |
|
1146 |
assert(alignment(s1) + data_size(s1) == alignment(s2), "just checking"); |
|
1147 |
||
1148 |
if (s1->is_Store()) return false; |
|
1149 |
||
1150 |
int align = alignment(s1); |
|
1151 |
int savings = -1; |
|
30211 | 1152 |
int num_s1_uses = 0; |
1 | 1153 |
Node* u1 = NULL; |
1154 |
Node* u2 = NULL; |
|
1155 |
for (DUIterator_Fast imax, i = s1->fast_outs(imax); i < imax; i++) { |
|
1156 |
Node* t1 = s1->fast_out(i); |
|
30211 | 1157 |
num_s1_uses++; |
1 | 1158 |
if (!in_bb(t1)) continue; |
1159 |
for (DUIterator_Fast jmax, j = s2->fast_outs(jmax); j < jmax; j++) { |
|
1160 |
Node* t2 = s2->fast_out(j); |
|
1161 |
if (!in_bb(t2)) continue; |
|
1162 |
if (!opnd_positions_match(s1, t1, s2, t2)) |
|
1163 |
continue; |
|
1164 |
if (stmts_can_pack(t1, t2, align)) { |
|
1165 |
int my_savings = est_savings(t1, t2); |
|
1166 |
if (my_savings > savings) { |
|
1167 |
savings = my_savings; |
|
1168 |
u1 = t1; |
|
1169 |
u2 = t2; |
|
1170 |
} |
|
1171 |
} |
|
1172 |
} |
|
1173 |
} |
|
30211 | 1174 |
if (num_s1_uses > 1) { |
1175 |
_race_possible = true; |
|
1176 |
} |
|
1 | 1177 |
if (savings >= 0) { |
1178 |
Node_List* pair = new Node_List(); |
|
1179 |
pair->push(u1); |
|
1180 |
pair->push(u2); |
|
1181 |
_packset.append(pair); |
|
1182 |
set_alignment(u1, u2, align); |
|
1183 |
changed = true; |
|
1184 |
} |
|
1185 |
return changed; |
|
1186 |
} |
|
1187 |
||
30211 | 1188 |
//------------------------------order_def_uses--------------------------- |
1189 |
// For extended packsets, ordinally arrange uses packset by major component |
|
1190 |
void SuperWord::order_def_uses(Node_List* p) { |
|
1191 |
Node* s1 = p->at(0); |
|
1192 |
||
1193 |
if (s1->is_Store()) return; |
|
1194 |
||
1195 |
// reductions are always managed beforehand |
|
1196 |
if (s1->is_reduction()) return; |
|
1197 |
||
1198 |
for (DUIterator_Fast imax, i = s1->fast_outs(imax); i < imax; i++) { |
|
1199 |
Node* t1 = s1->fast_out(i); |
|
1200 |
||
1201 |
// Only allow operand swap on commuting operations |
|
1202 |
if (!t1->is_Add() && !t1->is_Mul()) { |
|
1203 |
break; |
|
1204 |
} |
|
1205 |
||
1206 |
// Now find t1's packset |
|
1207 |
Node_List* p2 = NULL; |
|
1208 |
for (int j = 0; j < _packset.length(); j++) { |
|
1209 |
p2 = _packset.at(j); |
|
1210 |
Node* first = p2->at(0); |
|
1211 |
if (t1 == first) { |
|
1212 |
break; |
|
1213 |
} |
|
1214 |
p2 = NULL; |
|
1215 |
} |
|
1216 |
// Arrange all sub components by the major component |
|
1217 |
if (p2 != NULL) { |
|
1218 |
for (uint j = 1; j < p->size(); j++) { |
|
1219 |
Node* d1 = p->at(j); |
|
1220 |
Node* u1 = p2->at(j); |
|
1221 |
opnd_positions_match(s1, t1, d1, u1); |
|
1222 |
} |
|
1223 |
} |
|
1224 |
} |
|
1225 |
} |
|
1226 |
||
1 | 1227 |
//---------------------------opnd_positions_match------------------------- |
1228 |
// Is the use of d1 in u1 at the same operand position as d2 in u2? |
|
1229 |
bool SuperWord::opnd_positions_match(Node* d1, Node* u1, Node* d2, Node* u2) { |
|
30211 | 1230 |
// check reductions to see if they are marshalled to represent the reduction |
1231 |
// operator in a specified opnd |
|
1232 |
if (u1->is_reduction() && u2->is_reduction()) { |
|
1233 |
// ensure reductions have phis and reduction definitions feeding the 1st operand |
|
1234 |
Node* first = u1->in(2); |
|
1235 |
if (first->is_Phi() || first->is_reduction()) { |
|
1236 |
u1->swap_edges(1, 2); |
|
1237 |
} |
|
1238 |
// ensure reductions have phis and reduction definitions feeding the 1st operand |
|
1239 |
first = u2->in(2); |
|
1240 |
if (first->is_Phi() || first->is_reduction()) { |
|
1241 |
u2->swap_edges(1, 2); |
|
1242 |
} |
|
1243 |
return true; |
|
1244 |
} |
|
1245 |
||
1 | 1246 |
uint ct = u1->req(); |
1247 |
if (ct != u2->req()) return false; |
|
1248 |
uint i1 = 0; |
|
1249 |
uint i2 = 0; |
|
1250 |
do { |
|
1251 |
for (i1++; i1 < ct; i1++) if (u1->in(i1) == d1) break; |
|
1252 |
for (i2++; i2 < ct; i2++) if (u2->in(i2) == d2) break; |
|
1253 |
if (i1 != i2) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1254 |
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
|
1255 |
// Further analysis relies on operands position matching. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1256 |
u2->swap_edges(i1, i2); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1257 |
} else { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1258 |
return false; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1259 |
} |
1 | 1260 |
} |
1261 |
} while (i1 < ct); |
|
1262 |
return true; |
|
1263 |
} |
|
1264 |
||
1265 |
//------------------------------est_savings--------------------------- |
|
1266 |
// Estimate the savings from executing s1 and s2 as a pack |
|
1267 |
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
|
1268 |
int save_in = 2 - 1; // 2 operations per instruction in packed form |
1 | 1269 |
|
1270 |
// inputs |
|
1271 |
for (uint i = 1; i < s1->req(); i++) { |
|
1272 |
Node* x1 = s1->in(i); |
|
1273 |
Node* x2 = s2->in(i); |
|
1274 |
if (x1 != x2) { |
|
1275 |
if (are_adjacent_refs(x1, x2)) { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1276 |
save_in += adjacent_profit(x1, x2); |
1 | 1277 |
} else if (!in_packset(x1, x2)) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1278 |
save_in -= pack_cost(2); |
1 | 1279 |
} else { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1280 |
save_in += unpack_cost(2); |
1 | 1281 |
} |
1282 |
} |
|
1283 |
} |
|
1284 |
||
1285 |
// uses of result |
|
1286 |
uint ct = 0; |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1287 |
int save_use = 0; |
1 | 1288 |
for (DUIterator_Fast imax, i = s1->fast_outs(imax); i < imax; i++) { |
1289 |
Node* s1_use = s1->fast_out(i); |
|
1290 |
for (int j = 0; j < _packset.length(); j++) { |
|
1291 |
Node_List* p = _packset.at(j); |
|
1292 |
if (p->at(0) == s1_use) { |
|
1293 |
for (DUIterator_Fast kmax, k = s2->fast_outs(kmax); k < kmax; k++) { |
|
1294 |
Node* s2_use = s2->fast_out(k); |
|
1295 |
if (p->at(p->size()-1) == s2_use) { |
|
1296 |
ct++; |
|
1297 |
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
|
1298 |
save_use += adjacent_profit(s1_use, s2_use); |
1 | 1299 |
} |
1300 |
} |
|
1301 |
} |
|
1302 |
} |
|
1303 |
} |
|
1304 |
} |
|
1305 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1306 |
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
|
1307 |
if (ct < s2->outcnt()) save_use += unpack_cost(1); |
1 | 1308 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1309 |
return MAX2(save_in, save_use); |
1 | 1310 |
} |
1311 |
||
1312 |
//------------------------------costs--------------------------- |
|
1313 |
int SuperWord::adjacent_profit(Node* s1, Node* s2) { return 2; } |
|
1314 |
int SuperWord::pack_cost(int ct) { return ct; } |
|
1315 |
int SuperWord::unpack_cost(int ct) { return ct; } |
|
1316 |
||
1317 |
//------------------------------combine_packs--------------------------- |
|
1318 |
// Combine packs A and B with A.last == B.first into A.first..,A.last,B.second,..B.last |
|
1319 |
void SuperWord::combine_packs() { |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1320 |
bool changed = true; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1321 |
// Combine packs regardless max vector size. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1322 |
while (changed) { |
1 | 1323 |
changed = false; |
1324 |
for (int i = 0; i < _packset.length(); i++) { |
|
1325 |
Node_List* p1 = _packset.at(i); |
|
1326 |
if (p1 == NULL) continue; |
|
30211 | 1327 |
// Because of sorting we can start at i + 1 |
1328 |
for (int j = i + 1; j < _packset.length(); j++) { |
|
1 | 1329 |
Node_List* p2 = _packset.at(j); |
1330 |
if (p2 == NULL) continue; |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1331 |
if (i == j) continue; |
1 | 1332 |
if (p1->at(p1->size()-1) == p2->at(0)) { |
1333 |
for (uint k = 1; k < p2->size(); k++) { |
|
1334 |
p1->push(p2->at(k)); |
|
1335 |
} |
|
1336 |
_packset.at_put(j, NULL); |
|
1337 |
changed = true; |
|
1338 |
} |
|
1339 |
} |
|
1340 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1341 |
} |
1 | 1342 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1343 |
// 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
|
1344 |
for (int i = 0; i < _packset.length(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1345 |
Node_List* p1 = _packset.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1346 |
if (p1 != NULL) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1347 |
BasicType bt = velt_basic_type(p1->at(0)); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1348 |
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
|
1349 |
assert(is_power_of_2(max_vlen), "sanity"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1350 |
uint psize = p1->size(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1351 |
if (!is_power_of_2(psize)) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1352 |
// Skip pack which can't be vector. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1353 |
// 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
|
1354 |
// 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
|
1355 |
_packset.at_put(i, NULL); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1356 |
continue; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1357 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1358 |
if (psize > max_vlen) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1359 |
Node_List* pack = new Node_List(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1360 |
for (uint j = 0; j < psize; j++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1361 |
pack->push(p1->at(j)); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1362 |
if (pack->size() >= max_vlen) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1363 |
assert(is_power_of_2(pack->size()), "sanity"); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1364 |
_packset.append(pack); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1365 |
pack = new Node_List(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1366 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1367 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1368 |
_packset.at_put(i, NULL); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1369 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1370 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1371 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1372 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1373 |
// Compress list. |
1 | 1374 |
for (int i = _packset.length() - 1; i >= 0; i--) { |
1375 |
Node_List* p1 = _packset.at(i); |
|
1376 |
if (p1 == NULL) { |
|
1377 |
_packset.remove_at(i); |
|
1378 |
} |
|
1379 |
} |
|
1380 |
||
1381 |
#ifndef PRODUCT |
|
1382 |
if (TraceSuperWord) { |
|
1383 |
tty->print_cr("\nAfter combine_packs"); |
|
1384 |
print_packset(); |
|
1385 |
} |
|
1386 |
#endif |
|
1387 |
} |
|
1388 |
||
1389 |
//-----------------------------construct_my_pack_map-------------------------- |
|
1390 |
// Construct the map from nodes to packs. Only valid after the |
|
1391 |
// point where a node is only in one pack (after combine_packs). |
|
1392 |
void SuperWord::construct_my_pack_map() { |
|
1393 |
Node_List* rslt = NULL; |
|
1394 |
for (int i = 0; i < _packset.length(); i++) { |
|
1395 |
Node_List* p = _packset.at(i); |
|
1396 |
for (uint j = 0; j < p->size(); j++) { |
|
1397 |
Node* s = p->at(j); |
|
1398 |
assert(my_pack(s) == NULL, "only in one pack"); |
|
1399 |
set_my_pack(s, p); |
|
1400 |
} |
|
1401 |
} |
|
1402 |
} |
|
1403 |
||
1404 |
//------------------------------filter_packs--------------------------- |
|
1405 |
// Remove packs that are not implemented or not profitable. |
|
1406 |
void SuperWord::filter_packs() { |
|
1407 |
// Remove packs that are not implemented |
|
1408 |
for (int i = _packset.length() - 1; i >= 0; i--) { |
|
1409 |
Node_List* pk = _packset.at(i); |
|
1410 |
bool impl = implemented(pk); |
|
1411 |
if (!impl) { |
|
1412 |
#ifndef PRODUCT |
|
1413 |
if (TraceSuperWord && Verbose) { |
|
1414 |
tty->print_cr("Unimplemented"); |
|
1415 |
pk->at(0)->dump(); |
|
1416 |
} |
|
1417 |
#endif |
|
1418 |
remove_pack_at(i); |
|
1419 |
} |
|
30588 | 1420 |
Node *n = pk->at(0); |
1421 |
if (n->is_reduction()) { |
|
1422 |
_num_reductions++; |
|
1423 |
} else { |
|
1424 |
_num_work_vecs++; |
|
1425 |
} |
|
1 | 1426 |
} |
1427 |
||
1428 |
// Remove packs that are not profitable |
|
1429 |
bool changed; |
|
1430 |
do { |
|
1431 |
changed = false; |
|
1432 |
for (int i = _packset.length() - 1; i >= 0; i--) { |
|
1433 |
Node_List* pk = _packset.at(i); |
|
1434 |
bool prof = profitable(pk); |
|
1435 |
if (!prof) { |
|
1436 |
#ifndef PRODUCT |
|
1437 |
if (TraceSuperWord && Verbose) { |
|
1438 |
tty->print_cr("Unprofitable"); |
|
1439 |
pk->at(0)->dump(); |
|
1440 |
} |
|
1441 |
#endif |
|
1442 |
remove_pack_at(i); |
|
1443 |
changed = true; |
|
1444 |
} |
|
1445 |
} |
|
1446 |
} while (changed); |
|
1447 |
||
1448 |
#ifndef PRODUCT |
|
1449 |
if (TraceSuperWord) { |
|
1450 |
tty->print_cr("\nAfter filter_packs"); |
|
1451 |
print_packset(); |
|
1452 |
tty->cr(); |
|
1453 |
} |
|
1454 |
#endif |
|
1455 |
} |
|
1456 |
||
1457 |
//------------------------------implemented--------------------------- |
|
1458 |
// Can code be generated for pack p? |
|
1459 |
bool SuperWord::implemented(Node_List* p) { |
|
30211 | 1460 |
bool retValue = false; |
1 | 1461 |
Node* p0 = p->at(0); |
30211 | 1462 |
if (p0 != NULL) { |
1463 |
int opc = p0->Opcode(); |
|
1464 |
uint size = p->size(); |
|
1465 |
if (p0->is_reduction()) { |
|
1466 |
const Type *arith_type = p0->bottom_type(); |
|
30588 | 1467 |
// Length 2 reductions of INT/LONG do not offer performance benefits |
1468 |
if (((arith_type->basic_type() == T_INT) || (arith_type->basic_type() == T_LONG)) && (size == 2)) { |
|
1469 |
retValue = false; |
|
1470 |
} else { |
|
1471 |
retValue = ReductionNode::implemented(opc, size, arith_type->basic_type()); |
|
1472 |
} |
|
30211 | 1473 |
} else { |
1474 |
retValue = VectorNode::implemented(opc, size, velt_basic_type(p0)); |
|
1475 |
} |
|
1476 |
} |
|
1477 |
return retValue; |
|
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1478 |
} |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1479 |
|
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1480 |
//------------------------------same_inputs-------------------------- |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1481 |
// 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
|
1482 |
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
|
1483 |
Node* p0 = p->at(0); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1484 |
uint vlen = p->size(); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1485 |
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
|
1486 |
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
|
1487 |
Node* pi = p->at(i); |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1488 |
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
|
1489 |
if (p0_def != pi_def) |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1490 |
return false; |
13488 | 1491 |
} |
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1492 |
return true; |
1 | 1493 |
} |
1494 |
||
1495 |
//------------------------------profitable--------------------------- |
|
1496 |
// For pack p, are all operands and all uses (with in the block) vector? |
|
1497 |
bool SuperWord::profitable(Node_List* p) { |
|
1498 |
Node* p0 = p->at(0); |
|
1499 |
uint start, end; |
|
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1500 |
VectorNode::vector_operands(p0, &start, &end); |
1 | 1501 |
|
13894 | 1502 |
// Return false if some inputs are not vectors or vectors with different |
1503 |
// size or alignment. |
|
1504 |
// Also, for now, return false if not scalar promotion case when inputs are |
|
1505 |
// the same. Later, implement PackNode and allow differing, non-vector inputs |
|
1506 |
// (maybe just the ones from outside the block.) |
|
1 | 1507 |
for (uint i = start; i < end; i++) { |
13894 | 1508 |
if (!is_vector_use(p0, i)) |
1509 |
return false; |
|
1 | 1510 |
} |
30211 | 1511 |
// Check if reductions are connected |
1512 |
if (p0->is_reduction()) { |
|
1513 |
Node* second_in = p0->in(2); |
|
1514 |
Node_List* second_pk = my_pack(second_in); |
|
30588 | 1515 |
if ((second_pk == NULL) || (_num_work_vecs == _num_reductions)) { |
1516 |
// Remove reduction flag if no parent pack or if not enough work |
|
1517 |
// to cover reduction expansion overhead |
|
30211 | 1518 |
p0->remove_flag(Node::Flag_is_reduction); |
1519 |
return false; |
|
1520 |
} else if (second_pk->size() != p->size()) { |
|
1521 |
return false; |
|
1522 |
} |
|
1523 |
} |
|
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1524 |
if (VectorNode::is_shift(p0)) { |
13894 | 1525 |
// For now, return false if shift count is vector or not scalar promotion |
1526 |
// case (different shift counts) because it is not supported yet. |
|
1527 |
Node* cnt = p0->in(2); |
|
1528 |
Node_List* cnt_pk = my_pack(cnt); |
|
1529 |
if (cnt_pk != NULL) |
|
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1530 |
return false; |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1531 |
if (!same_inputs(p, 2)) |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1532 |
return false; |
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1533 |
} |
1 | 1534 |
if (!p0->is_Store()) { |
1535 |
// For now, return false if not all uses are vector. |
|
1536 |
// Later, implement ExtractNode and allow non-vector uses (maybe |
|
1537 |
// just the ones outside the block.) |
|
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) { |
|
30211 | 1545 |
// reductions can be loop carried dependences |
1546 |
if (def->is_reduction() && use->is_Phi()) |
|
1547 |
continue; |
|
1 | 1548 |
if (!is_vector_use(use, k)) { |
1549 |
return false; |
|
1550 |
} |
|
1551 |
} |
|
1552 |
} |
|
1553 |
} |
|
1554 |
} |
|
1555 |
} |
|
1556 |
return true; |
|
1557 |
} |
|
1558 |
||
1559 |
//------------------------------schedule--------------------------- |
|
1560 |
// Adjust the memory graph for the packed operations |
|
1561 |
void SuperWord::schedule() { |
|
1562 |
||
1563 |
// Co-locate in the memory graph the members of each memory pack |
|
1564 |
for (int i = 0; i < _packset.length(); i++) { |
|
1565 |
co_locate_pack(_packset.at(i)); |
|
1566 |
} |
|
1567 |
} |
|
1568 |
||
2334 | 1569 |
//-------------------------------remove_and_insert------------------- |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1570 |
// 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
|
1571 |
// it after the appropriate insertion point (lip or uip). |
2334 | 1572 |
void SuperWord::remove_and_insert(MemNode *current, MemNode *prev, MemNode *lip, |
1573 |
Node *uip, Unique_Node_List &sched_before) { |
|
1574 |
Node* my_mem = current->in(MemNode::Memory); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1575 |
bool sched_up = sched_before.member(current); |
2334 | 1576 |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1577 |
// remove current_store from its current position in the memmory graph |
2334 | 1578 |
for (DUIterator i = current->outs(); current->has_out(i); i++) { |
1579 |
Node* use = current->out(i); |
|
1580 |
if (use->is_Mem()) { |
|
1581 |
assert(use->in(MemNode::Memory) == current, "must be"); |
|
1582 |
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
|
1583 |
_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
|
1584 |
--i; //deleted this edge; rescan position |
2334 | 1585 |
} else if (sched_before.member(use)) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1586 |
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
|
1587 |
_igvn.replace_input_of(use, MemNode::Memory, uip); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1588 |
--i; //deleted this edge; rescan position |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1589 |
} |
2334 | 1590 |
} else { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1591 |
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
|
1592 |
_igvn.replace_input_of(use, MemNode::Memory, lip); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1593 |
--i; //deleted this edge; rescan position |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1594 |
} |
2334 | 1595 |
} |
1596 |
} |
|
1597 |
} |
|
1598 |
||
1599 |
Node *insert_pt = sched_up ? uip : lip; |
|
1600 |
||
1601 |
// all uses of insert_pt's memory state should use current's instead |
|
1602 |
for (DUIterator i = insert_pt->outs(); insert_pt->has_out(i); i++) { |
|
1603 |
Node* use = insert_pt->out(i); |
|
1604 |
if (use->is_Mem()) { |
|
1605 |
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
|
1606 |
_igvn.replace_input_of(use, MemNode::Memory, current); |
2334 | 1607 |
--i; //deleted this edge; rescan position |
1608 |
} else if (!sched_up && use->is_Phi() && use->bottom_type() == Type::MEMORY) { |
|
1609 |
uint pos; //lip (lower insert point) must be the last one in the memory slice |
|
1610 |
for (pos=1; pos < use->req(); pos++) { |
|
1611 |
if (use->in(pos) == insert_pt) break; |
|
1612 |
} |
|
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1613 |
_igvn.replace_input_of(use, pos, current); |
2334 | 1614 |
--i; |
1615 |
} |
|
1616 |
} |
|
1617 |
||
1618 |
//connect current to insert_pt |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1619 |
_igvn.replace_input_of(current, MemNode::Memory, insert_pt); |
2334 | 1620 |
} |
1621 |
||
1622 |
//------------------------------co_locate_pack---------------------------------- |
|
1623 |
// To schedule a store pack, we need to move any sandwiched memory ops either before |
|
1624 |
// or after the pack, based upon dependence information: |
|
1625 |
// (1) If any store in the pack depends on the sandwiched memory op, the |
|
1626 |
// sandwiched memory op must be scheduled BEFORE the pack; |
|
1627 |
// (2) If a sandwiched memory op depends on any store in the pack, the |
|
1628 |
// sandwiched memory op must be scheduled AFTER the pack; |
|
1629 |
// (3) If a sandwiched memory op (say, memA) depends on another sandwiched |
|
1630 |
// memory op (say memB), memB must be scheduled before memA. So, if memA is |
|
1631 |
// scheduled before the pack, memB must also be scheduled before the pack; |
|
1632 |
// (4) If there is no dependence restriction for a sandwiched memory op, we simply |
|
1633 |
// schedule this store AFTER the pack |
|
1634 |
// (5) We know there is no dependence cycle, so there in no other case; |
|
1635 |
// (6) Finally, all memory ops in another single pack should be moved in the same direction. |
|
1636 |
// |
|
3799 | 1637 |
// To schedule a load pack, we use the memory state of either the first or the last load in |
1638 |
// the pack, based on the dependence constraint. |
|
1 | 1639 |
void SuperWord::co_locate_pack(Node_List* pk) { |
1640 |
if (pk->at(0)->is_Store()) { |
|
1641 |
MemNode* first = executed_first(pk)->as_Mem(); |
|
1642 |
MemNode* last = executed_last(pk)->as_Mem(); |
|
2334 | 1643 |
Unique_Node_List schedule_before_pack; |
1644 |
Unique_Node_List memops; |
|
1645 |
||
1 | 1646 |
MemNode* current = last->in(MemNode::Memory)->as_Mem(); |
2334 | 1647 |
MemNode* previous = last; |
1 | 1648 |
while (true) { |
1649 |
assert(in_bb(current), "stay in block"); |
|
2334 | 1650 |
memops.push(previous); |
1651 |
for (DUIterator i = current->outs(); current->has_out(i); i++) { |
|
1652 |
Node* use = current->out(i); |
|
1653 |
if (use->is_Mem() && use != previous) |
|
1654 |
memops.push(use); |
|
1655 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1656 |
if (current == first) break; |
2334 | 1657 |
previous = current; |
1658 |
current = current->in(MemNode::Memory)->as_Mem(); |
|
1659 |
} |
|
1660 |
||
1661 |
// determine which memory operations should be scheduled before the pack |
|
1662 |
for (uint i = 1; i < memops.size(); i++) { |
|
1663 |
Node *s1 = memops.at(i); |
|
1664 |
if (!in_pack(s1, pk) && !schedule_before_pack.member(s1)) { |
|
1665 |
for (uint j = 0; j< i; j++) { |
|
1666 |
Node *s2 = memops.at(j); |
|
1667 |
if (!independent(s1, s2)) { |
|
1668 |
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
|
1669 |
schedule_before_pack.push(s1); // s1 must be scheduled before |
2334 | 1670 |
Node_List* mem_pk = my_pack(s1); |
1671 |
if (mem_pk != NULL) { |
|
1672 |
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
|
1673 |
Node* s = mem_pk->at(ii); // follow partner |
2334 | 1674 |
if (memops.member(s) && !schedule_before_pack.member(s)) |
1675 |
schedule_before_pack.push(s); |
|
1676 |
} |
|
1677 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1678 |
break; |
2334 | 1679 |
} |
1680 |
} |
|
1681 |
} |
|
1682 |
} |
|
1683 |
} |
|
1684 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1685 |
Node* upper_insert_pt = first->in(MemNode::Memory); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1686 |
// 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
|
1687 |
// 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
|
1688 |
memops.clear(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1689 |
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
|
1690 |
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
|
1691 |
if (use->is_Mem() && !use->is_Store()) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1692 |
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
|
1693 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1694 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1695 |
|
2334 | 1696 |
MemNode* lower_insert_pt = last; |
1697 |
previous = last; //previous store in pk |
|
1698 |
current = last->in(MemNode::Memory)->as_Mem(); |
|
1699 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1700 |
// start scheduling from "last" to "first" |
2334 | 1701 |
while (true) { |
1702 |
assert(in_bb(current), "stay in block"); |
|
1703 |
assert(in_pack(previous, pk), "previous stays in pack"); |
|
1 | 1704 |
Node* my_mem = current->in(MemNode::Memory); |
2334 | 1705 |
|
1 | 1706 |
if (in_pack(current, pk)) { |
2334 | 1707 |
// Forward users of my memory state (except "previous) to my input memory state |
1 | 1708 |
for (DUIterator i = current->outs(); current->has_out(i); i++) { |
1709 |
Node* use = current->out(i); |
|
2334 | 1710 |
if (use->is_Mem() && use != previous) { |
1 | 1711 |
assert(use->in(MemNode::Memory) == current, "must be"); |
2334 | 1712 |
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
|
1713 |
_igvn.replace_input_of(use, MemNode::Memory, upper_insert_pt); |
2334 | 1714 |
} else { |
12958
009b6c9586d8
7173340: C2: code cleanup: use PhaseIterGVN::replace_edge(Node*, int, Node*) where applicable
kvn
parents:
12594
diff
changeset
|
1715 |
_igvn.replace_input_of(use, MemNode::Memory, lower_insert_pt); |
2334 | 1716 |
} |
1 | 1717 |
--i; // deleted this edge; rescan position |
1718 |
} |
|
1719 |
} |
|
2334 | 1720 |
previous = current; |
1721 |
} else { // !in_pack(current, pk) ==> a sandwiched store |
|
1722 |
remove_and_insert(current, previous, lower_insert_pt, upper_insert_pt, schedule_before_pack); |
|
1 | 1723 |
} |
2334 | 1724 |
|
1 | 1725 |
if (current == first) break; |
1726 |
current = my_mem->as_Mem(); |
|
2334 | 1727 |
} // end while |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1728 |
|
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1729 |
// Reconnect loads back to upper_insert_pt. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1730 |
for (uint i = 0; i < memops.size(); i++) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1731 |
Node *ld = memops.at(i); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1732 |
if (ld->in(MemNode::Memory) != upper_insert_pt) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1733 |
_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
|
1734 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1735 |
} |
2334 | 1736 |
} else if (pk->at(0)->is_Load()) { //load |
3799 | 1737 |
// all loads in the pack should have the same memory state. By default, |
1738 |
// we use the memory state of the last load. However, if any load could |
|
1739 |
// not be moved down due to the dependence constraint, we use the memory |
|
1740 |
// state of the first load. |
|
1741 |
Node* last_mem = executed_last(pk)->in(MemNode::Memory); |
|
1742 |
Node* first_mem = executed_first(pk)->in(MemNode::Memory); |
|
1743 |
bool schedule_last = true; |
|
1744 |
for (uint i = 0; i < pk->size(); i++) { |
|
1745 |
Node* ld = pk->at(i); |
|
1746 |
for (Node* current = last_mem; current != ld->in(MemNode::Memory); |
|
1747 |
current=current->in(MemNode::Memory)) { |
|
1748 |
assert(current != first_mem, "corrupted memory graph"); |
|
1749 |
if(current->is_Mem() && !independent(current, ld)){ |
|
1750 |
schedule_last = false; // a later store depends on this load |
|
1751 |
break; |
|
1752 |
} |
|
1753 |
} |
|
1754 |
} |
|
1755 |
||
1756 |
Node* mem_input = schedule_last ? last_mem : first_mem; |
|
1757 |
_igvn.hash_delete(mem_input); |
|
1758 |
// Give each load the same memory state |
|
1 | 1759 |
for (uint i = 0; i < pk->size(); i++) { |
1760 |
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
|
1761 |
_igvn.replace_input_of(ld, MemNode::Memory, mem_input); |
1 | 1762 |
} |
1763 |
} |
|
1764 |
} |
|
1765 |
||
1766 |
//------------------------------output--------------------------- |
|
1767 |
// Convert packs into vector node operations |
|
1768 |
void SuperWord::output() { |
|
1769 |
if (_packset.length() == 0) return; |
|
1770 |
||
9101 | 1771 |
#ifndef PRODUCT |
1772 |
if (TraceLoopOpts) { |
|
1773 |
tty->print("SuperWord "); |
|
1774 |
lpt()->dump_head(); |
|
1775 |
} |
|
1776 |
#endif |
|
1777 |
||
1 | 1778 |
// MUST ENSURE main loop's initial value is properly aligned: |
1779 |
// (iv_initial_value + min_iv_offset) % vector_width_in_bytes() == 0 |
|
1780 |
||
1781 |
align_initial_loop_index(align_to_ref()); |
|
1782 |
||
1783 |
// Insert extract (unpack) operations for scalar uses |
|
1784 |
for (int i = 0; i < _packset.length(); i++) { |
|
1785 |
insert_extracts(_packset.at(i)); |
|
1786 |
} |
|
1787 |
||
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1788 |
Compile* C = _phase->C; |
31772 | 1789 |
CountedLoopNode *cl = lpt()->_head->as_CountedLoop(); |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1790 |
uint max_vlen_in_bytes = 0; |
31772 | 1791 |
uint max_vlen = 0; |
1 | 1792 |
for (int i = 0; i < _block.length(); i++) { |
1793 |
Node* n = _block.at(i); |
|
1794 |
Node_List* p = my_pack(n); |
|
1795 |
if (p && n == executed_last(p)) { |
|
1796 |
uint vlen = p->size(); |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1797 |
uint vlen_in_bytes = 0; |
1 | 1798 |
Node* vn = NULL; |
1799 |
Node* low_adr = p->at(0); |
|
1800 |
Node* first = executed_first(p); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1801 |
int opc = n->Opcode(); |
1 | 1802 |
if (n->is_Load()) { |
1803 |
Node* ctl = n->in(MemNode::Control); |
|
1804 |
Node* mem = first->in(MemNode::Memory); |
|
31403 | 1805 |
SWPointer p1(n->as_Mem(), this, NULL, false); |
25932
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1806 |
// 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
|
1807 |
// walking up through memory chain. |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1808 |
// 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
|
1809 |
// it can move above independent storeVector nodes. |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1810 |
while (mem->is_StoreVector()) { |
31403 | 1811 |
SWPointer p2(mem->as_Mem(), this, NULL, false); |
25932
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1812 |
int cmp = p1.cmp(p2); |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1813 |
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
|
1814 |
mem = mem->in(MemNode::Memory); |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1815 |
} else { |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1816 |
break; // dependent memory |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1817 |
} |
15d133edd8f6
8052081: Optimize generated by C2 code for Intel's Atom processor
kvn
parents:
25930
diff
changeset
|
1818 |
} |
1 | 1819 |
Node* adr = low_adr->in(MemNode::Address); |
1820 |
const TypePtr* atyp = n->adr_type(); |
|
31035
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
1821 |
vn = LoadVectorNode::make(opc, ctl, mem, adr, atyp, vlen, velt_basic_type(n), control_dependency(p)); |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1822 |
vlen_in_bytes = vn->as_LoadVector()->memory_size(); |
1 | 1823 |
} else if (n->is_Store()) { |
1824 |
// Promote value to be stored to vector |
|
10255 | 1825 |
Node* val = vector_opd(p, MemNode::ValueIn); |
1 | 1826 |
Node* ctl = n->in(MemNode::Control); |
1827 |
Node* mem = first->in(MemNode::Memory); |
|
1828 |
Node* adr = low_adr->in(MemNode::Address); |
|
1829 |
const TypePtr* atyp = n->adr_type(); |
|
25930 | 1830 |
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
|
1831 |
vlen_in_bytes = vn->as_StoreVector()->memory_size(); |
1 | 1832 |
} else if (n->req() == 3) { |
1833 |
// Promote operands to vector |
|
30211 | 1834 |
Node* in1 = NULL; |
1835 |
bool node_isa_reduction = n->is_reduction(); |
|
1836 |
if (node_isa_reduction) { |
|
1837 |
// the input to the first reduction operation is retained |
|
1838 |
in1 = low_adr->in(1); |
|
1839 |
} else { |
|
1840 |
in1 = vector_opd(p, 1); |
|
1841 |
} |
|
1 | 1842 |
Node* in2 = vector_opd(p, 2); |
30211 | 1843 |
if (VectorNode::is_invariant_vector(in1) && (node_isa_reduction == false) && (n->is_Add() || n->is_Mul())) { |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1844 |
// Move invariant vector input into second position to avoid register spilling. |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1845 |
Node* tmp = in1; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1846 |
in1 = in2; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1847 |
in2 = tmp; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1848 |
} |
30211 | 1849 |
if (node_isa_reduction) { |
1850 |
const Type *arith_type = n->bottom_type(); |
|
1851 |
vn = ReductionNode::make(opc, NULL, in1, in2, arith_type->basic_type()); |
|
1852 |
if (in2->is_Load()) { |
|
1853 |
vlen_in_bytes = in2->as_LoadVector()->memory_size(); |
|
1854 |
} else { |
|
1855 |
vlen_in_bytes = in2->as_Vector()->length_in_bytes(); |
|
1856 |
} |
|
1857 |
} else { |
|
1858 |
vn = VectorNode::make(opc, in1, in2, vlen, velt_basic_type(n)); |
|
1859 |
vlen_in_bytes = vn->as_Vector()->length_in_bytes(); |
|
1860 |
} |
|
33088
34fe49ecee13
8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents:
33082
diff
changeset
|
1861 |
} else if (opc == Op_SqrtD || opc == Op_AbsF || opc == Op_AbsD || opc == Op_NegF || opc == Op_NegD) { |
34fe49ecee13
8138583: aarch64: add support for vectorizing fabs/fneg
enevill
parents:
33082
diff
changeset
|
1862 |
// Promote operand to vector (Sqrt/Abs/Neg are 2 address instructions) |
32723
56534fb3d71a
8135028: support for vectorizing double precision sqrt
mcberg
parents:
31864
diff
changeset
|
1863 |
Node* in = vector_opd(p, 1); |
56534fb3d71a
8135028: support for vectorizing double precision sqrt
mcberg
parents:
31864
diff
changeset
|
1864 |
vn = VectorNode::make(opc, in, NULL, vlen, velt_basic_type(n)); |
56534fb3d71a
8135028: support for vectorizing double precision sqrt
mcberg
parents:
31864
diff
changeset
|
1865 |
vlen_in_bytes = vn->as_Vector()->length_in_bytes(); |
1 | 1866 |
} else { |
1867 |
ShouldNotReachHere(); |
|
1868 |
} |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1869 |
assert(vn != NULL, "sanity"); |
13894 | 1870 |
_igvn.register_new_node_with_optimizer(vn); |
1 | 1871 |
_phase->set_ctrl(vn, _phase->get_ctrl(p->at(0))); |
1872 |
for (uint j = 0; j < p->size(); j++) { |
|
1873 |
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
|
1874 |
_igvn.replace_node(pm, vn); |
1 | 1875 |
} |
1876 |
_igvn._worklist.push(vn); |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1877 |
|
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1878 |
if (vlen_in_bytes > max_vlen_in_bytes) { |
31772 | 1879 |
max_vlen = vlen; |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1880 |
max_vlen_in_bytes = vlen_in_bytes; |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1881 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1882 |
#ifdef ASSERT |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
1883 |
if (TraceNewVectors) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1884 |
tty->print("new Vector node: "); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1885 |
vn->dump(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1886 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1887 |
#endif |
1 | 1888 |
} |
1889 |
} |
|
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1890 |
C->set_max_vector_size(max_vlen_in_bytes); |
31772 | 1891 |
if (SuperWordLoopUnrollAnalysis) { |
1892 |
if (cl->has_passed_slp()) { |
|
1893 |
uint slp_max_unroll_factor = cl->slp_max_unroll(); |
|
1894 |
if (slp_max_unroll_factor == max_vlen) { |
|
1895 |
NOT_PRODUCT(if (TraceSuperWordLoopUnrollAnalysis) tty->print_cr("vector loop(unroll=%d, len=%d)\n", max_vlen, max_vlen_in_bytes*BitsPerByte)); |
|
1896 |
// For atomic unrolled loops which are vector mapped, instigate more unrolling. |
|
1897 |
cl->set_notpassed_slp(); |
|
1898 |
C->set_major_progress(); |
|
1899 |
cl->mark_do_unroll_only(); |
|
1900 |
} |
|
1901 |
} |
|
1902 |
} |
|
1 | 1903 |
} |
1904 |
||
1905 |
//------------------------------vector_opd--------------------------- |
|
1906 |
// Create a vector operand for the nodes in pack p for operand: in(opd_idx) |
|
10255 | 1907 |
Node* SuperWord::vector_opd(Node_List* p, int opd_idx) { |
1 | 1908 |
Node* p0 = p->at(0); |
1909 |
uint vlen = p->size(); |
|
1910 |
Node* opd = p0->in(opd_idx); |
|
1911 |
||
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
1912 |
if (same_inputs(p, opd_idx)) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1913 |
if (opd->is_Vector() || opd->is_LoadVector()) { |
13488 | 1914 |
assert(((opd_idx != 2) || !VectorNode::is_shift(p0)), "shift's count can't be vector"); |
10255 | 1915 |
return opd; // input is matching vector |
1 | 1916 |
} |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1917 |
if ((opd_idx == 2) && VectorNode::is_shift(p0)) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1918 |
Compile* C = _phase->C; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1919 |
Node* cnt = opd; |
13930 | 1920 |
// Vector instructions do not mask shift count, do it here. |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1921 |
juint mask = (p0->bottom_type() == TypeInt::INT) ? (BitsPerInt - 1) : (BitsPerLong - 1); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1922 |
const TypeInt* t = opd->find_int_type(); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1923 |
if (t != NULL && t->is_con()) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1924 |
juint shift = t->get_con(); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1925 |
if (shift > mask) { // Unsigned cmp |
25930 | 1926 |
cnt = ConNode::make(TypeInt::make(shift & mask)); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1927 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1928 |
} else { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1929 |
if (t == NULL || t->_lo < 0 || t->_hi > (int)mask) { |
25930 | 1930 |
cnt = ConNode::make(TypeInt::make(mask)); |
13894 | 1931 |
_igvn.register_new_node_with_optimizer(cnt); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
1932 |
cnt = new AndINode(opd, cnt); |
13894 | 1933 |
_igvn.register_new_node_with_optimizer(cnt); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1934 |
_phase->set_ctrl(cnt, _phase->get_ctrl(opd)); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1935 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1936 |
assert(opd->bottom_type()->isa_int(), "int type only"); |
13930 | 1937 |
// Move non constant shift count into vector register. |
25930 | 1938 |
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
|
1939 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1940 |
if (cnt != opd) { |
13894 | 1941 |
_igvn.register_new_node_with_optimizer(cnt); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1942 |
_phase->set_ctrl(cnt, _phase->get_ctrl(opd)); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1943 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1944 |
return cnt; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
1945 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1946 |
assert(!opd->is_StoreVector(), "such vector is not expected here"); |
12594 | 1947 |
// Convert scalar input to vector with the same number of elements as |
1948 |
// p0's vector. Use p0's type because size of operand's container in |
|
1949 |
// vector should match p0's size regardless operand's size. |
|
1950 |
const Type* p0_t = velt_type(p0); |
|
25930 | 1951 |
VectorNode* vn = VectorNode::scalar2vector(opd, vlen, p0_t); |
1 | 1952 |
|
13894 | 1953 |
_igvn.register_new_node_with_optimizer(vn); |
1 | 1954 |
_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
|
1955 |
#ifdef ASSERT |
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
1956 |
if (TraceNewVectors) { |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1957 |
tty->print("new Vector node: "); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1958 |
vn->dump(); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1959 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1960 |
#endif |
1 | 1961 |
return vn; |
1962 |
} |
|
1963 |
||
1964 |
// Insert pack operation |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1965 |
BasicType bt = velt_basic_type(p0); |
25930 | 1966 |
PackNode* pk = PackNode::make(opd, vlen, bt); |
12594 | 1967 |
DEBUG_ONLY( const BasicType opd_bt = opd->bottom_type()->basic_type(); ) |
1 | 1968 |
|
1969 |
for (uint i = 1; i < vlen; i++) { |
|
1970 |
Node* pi = p->at(i); |
|
1971 |
Node* in = pi->in(opd_idx); |
|
1972 |
assert(my_pack(in) == NULL, "Should already have been unpacked"); |
|
12594 | 1973 |
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
|
1974 |
pk->add_opd(in); |
1 | 1975 |
} |
13894 | 1976 |
_igvn.register_new_node_with_optimizer(pk); |
1 | 1977 |
_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
|
1978 |
#ifdef ASSERT |
13883
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1979 |
if (TraceNewVectors) { |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1980 |
tty->print("new Vector node: "); |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1981 |
pk->dump(); |
6979b9850feb
7196199: java/text/Bidi/Bug6665028.java failed: Bidi run count incorrect
kvn
parents:
13490
diff
changeset
|
1982 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
1983 |
#endif |
1 | 1984 |
return pk; |
1985 |
} |
|
1986 |
||
1987 |
//------------------------------insert_extracts--------------------------- |
|
1988 |
// If a use of pack p is not a vector use, then replace the |
|
1989 |
// use with an extract operation. |
|
1990 |
void SuperWord::insert_extracts(Node_List* p) { |
|
1991 |
if (p->at(0)->is_Store()) return; |
|
1992 |
assert(_n_idx_list.is_empty(), "empty (node,index) list"); |
|
1993 |
||
1994 |
// Inspect each use of each pack member. For each use that is |
|
1995 |
// not a vector use, replace the use with an extract operation. |
|
1996 |
||
1997 |
for (uint i = 0; i < p->size(); i++) { |
|
1998 |
Node* def = p->at(i); |
|
1999 |
for (DUIterator_Fast jmax, j = def->fast_outs(jmax); j < jmax; j++) { |
|
2000 |
Node* use = def->fast_out(j); |
|
2001 |
for (uint k = 0; k < use->req(); k++) { |
|
2002 |
Node* n = use->in(k); |
|
2003 |
if (def == n) { |
|
2004 |
if (!is_vector_use(use, k)) { |
|
2005 |
_n_idx_list.push(use, k); |
|
2006 |
} |
|
2007 |
} |
|
2008 |
} |
|
2009 |
} |
|
2010 |
} |
|
2011 |
||
2012 |
while (_n_idx_list.is_nonempty()) { |
|
2013 |
Node* use = _n_idx_list.node(); |
|
2014 |
int idx = _n_idx_list.index(); |
|
2015 |
_n_idx_list.pop(); |
|
2016 |
Node* def = use->in(idx); |
|
2017 |
||
30211 | 2018 |
if (def->is_reduction()) continue; |
2019 |
||
1 | 2020 |
// Insert extract operation |
2021 |
_igvn.hash_delete(def); |
|
2022 |
int def_pos = alignment(def) / data_size(def); |
|
2023 |
||
25930 | 2024 |
Node* ex = ExtractNode::make(def, def_pos, velt_basic_type(def)); |
13894 | 2025 |
_igvn.register_new_node_with_optimizer(ex); |
1 | 2026 |
_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
|
2027 |
_igvn.replace_input_of(use, idx, ex); |
1 | 2028 |
_igvn._worklist.push(def); |
2029 |
||
2030 |
bb_insert_after(ex, bb_idx(def)); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2031 |
set_velt_type(ex, velt_type(def)); |
1 | 2032 |
} |
2033 |
} |
|
2034 |
||
2035 |
//------------------------------is_vector_use--------------------------- |
|
2036 |
// Is use->in(u_idx) a vector use? |
|
2037 |
bool SuperWord::is_vector_use(Node* use, int u_idx) { |
|
2038 |
Node_List* u_pk = my_pack(use); |
|
2039 |
if (u_pk == NULL) return false; |
|
30211 | 2040 |
if (use->is_reduction()) return true; |
1 | 2041 |
Node* def = use->in(u_idx); |
2042 |
Node_List* d_pk = my_pack(def); |
|
2043 |
if (d_pk == NULL) { |
|
2044 |
// check for scalar promotion |
|
2045 |
Node* n = u_pk->at(0)->in(u_idx); |
|
2046 |
for (uint i = 1; i < u_pk->size(); i++) { |
|
2047 |
if (u_pk->at(i)->in(u_idx) != n) return false; |
|
2048 |
} |
|
2049 |
return true; |
|
2050 |
} |
|
2051 |
if (u_pk->size() != d_pk->size()) |
|
2052 |
return false; |
|
2053 |
for (uint i = 0; i < u_pk->size(); i++) { |
|
2054 |
Node* ui = u_pk->at(i); |
|
2055 |
Node* di = d_pk->at(i); |
|
2056 |
if (ui->in(u_idx) != di || alignment(ui) != alignment(di)) |
|
2057 |
return false; |
|
2058 |
} |
|
2059 |
return true; |
|
2060 |
} |
|
2061 |
||
2062 |
//------------------------------construct_bb--------------------------- |
|
2063 |
// 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
|
2064 |
bool SuperWord::construct_bb() { |
1 | 2065 |
Node* entry = bb(); |
2066 |
||
2067 |
assert(_stk.length() == 0, "stk is empty"); |
|
2068 |
assert(_block.length() == 0, "block is empty"); |
|
2069 |
assert(_data_entry.length() == 0, "data_entry is empty"); |
|
2070 |
assert(_mem_slice_head.length() == 0, "mem_slice_head is empty"); |
|
2071 |
assert(_mem_slice_tail.length() == 0, "mem_slice_tail is empty"); |
|
2072 |
||
2073 |
// Find non-control nodes with no inputs from within block, |
|
2074 |
// create a temporary map from node _idx to bb_idx for use |
|
2075 |
// by the visited and post_visited sets, |
|
2076 |
// and count number of nodes in block. |
|
2077 |
int bb_ct = 0; |
|
30211 | 2078 |
for (uint i = 0; i < lpt()->_body.size(); i++) { |
1 | 2079 |
Node *n = lpt()->_body.at(i); |
2080 |
set_bb_idx(n, i); // Create a temporary map |
|
2081 |
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
|
2082 |
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
|
2083 |
(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
|
2084 |
// 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
|
2085 |
// 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
|
2086 |
return false; |
c54cbfb4b37f
8004867: VM crashing with assert "share/vm/opto/node.hpp:357 - assert(i < _max) failed: oob"
kvn
parents:
14134
diff
changeset
|
2087 |
} |
1 | 2088 |
bb_ct++; |
2089 |
if (!n->is_CFG()) { |
|
2090 |
bool found = false; |
|
2091 |
for (uint j = 0; j < n->req(); j++) { |
|
2092 |
Node* def = n->in(j); |
|
2093 |
if (def && in_bb(def)) { |
|
2094 |
found = true; |
|
2095 |
break; |
|
2096 |
} |
|
2097 |
} |
|
2098 |
if (!found) { |
|
2099 |
assert(n != entry, "can't be entry"); |
|
2100 |
_data_entry.push(n); |
|
2101 |
} |
|
2102 |
} |
|
2103 |
} |
|
2104 |
} |
|
2105 |
||
2106 |
// Find memory slices (head and tail) |
|
2107 |
for (DUIterator_Fast imax, i = lp()->fast_outs(imax); i < imax; i++) { |
|
2108 |
Node *n = lp()->fast_out(i); |
|
2109 |
if (in_bb(n) && (n->is_Phi() && n->bottom_type() == Type::MEMORY)) { |
|
2110 |
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
|
2111 |
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
|
2112 |
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
|
2113 |
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
|
2114 |
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
|
2115 |
} |
961
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
781
diff
changeset
|
2116 |
_mem_slice_head.push(n); |
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
781
diff
changeset
|
2117 |
_mem_slice_tail.push(n_tail); |
7fb3b13d4205
6726999: nsk/stress/jck12a/jck12a010 assert(n != null,"Bad immediate dominator info.")
kvn
parents:
781
diff
changeset
|
2118 |
} |
1 | 2119 |
} |
2120 |
} |
|
2121 |
||
2122 |
// Create an RPO list of nodes in block |
|
2123 |
||
2124 |
visited_clear(); |
|
2125 |
post_visited_clear(); |
|
2126 |
||
2127 |
// Push all non-control nodes with no inputs from within block, then control entry |
|
2128 |
for (int j = 0; j < _data_entry.length(); j++) { |
|
2129 |
Node* n = _data_entry.at(j); |
|
2130 |
visited_set(n); |
|
2131 |
_stk.push(n); |
|
2132 |
} |
|
2133 |
visited_set(entry); |
|
2134 |
_stk.push(entry); |
|
2135 |
||
2136 |
// Do a depth first walk over out edges |
|
2137 |
int rpo_idx = bb_ct - 1; |
|
2138 |
int size; |
|
30211 | 2139 |
int reduction_uses = 0; |
1 | 2140 |
while ((size = _stk.length()) > 0) { |
2141 |
Node* n = _stk.top(); // Leave node on stack |
|
2142 |
if (!visited_test_set(n)) { |
|
2143 |
// forward arc in graph |
|
2144 |
} else if (!post_visited_test(n)) { |
|
2145 |
// cross or back arc |
|
2146 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
2147 |
Node *use = n->fast_out(i); |
|
2148 |
if (in_bb(use) && !visited_test(use) && |
|
2149 |
// Don't go around backedge |
|
2150 |
(!use->is_Phi() || n == entry)) { |
|
30211 | 2151 |
if (use->is_reduction()) { |
2152 |
// First see if we can map the reduction on the given system we are on, then |
|
2153 |
// make a data entry operation for each reduction we see. |
|
2154 |
BasicType bt = use->bottom_type()->basic_type(); |
|
2155 |
if (ReductionNode::implemented(use->Opcode(), Matcher::min_vector_size(bt), bt)) { |
|
2156 |
reduction_uses++; |
|
2157 |
} |
|
2158 |
} |
|
1 | 2159 |
_stk.push(use); |
2160 |
} |
|
2161 |
} |
|
2162 |
if (_stk.length() == size) { |
|
2163 |
// There were no additional uses, post visit node now |
|
2164 |
_stk.pop(); // Remove node from stack |
|
2165 |
assert(rpo_idx >= 0, ""); |
|
2166 |
_block.at_put_grow(rpo_idx, n); |
|
2167 |
rpo_idx--; |
|
2168 |
post_visited_set(n); |
|
2169 |
assert(rpo_idx >= 0 || _stk.is_empty(), ""); |
|
2170 |
} |
|
2171 |
} else { |
|
2172 |
_stk.pop(); // Remove post-visited node from stack |
|
2173 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2174 |
}//while |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2175 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2176 |
int ii_current = -1; |
31864
341ca6d4b290
8131676: Fix warning 'negative int converted to unsigned' after 8085932.
goetz
parents:
31858
diff
changeset
|
2177 |
unsigned int load_idx = (unsigned int)-1; |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2178 |
_ii_order.clear(); |
1 | 2179 |
// Create real map of block indices for nodes |
2180 |
for (int j = 0; j < _block.length(); j++) { |
|
2181 |
Node* n = _block.at(j); |
|
2182 |
set_bb_idx(n, j); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2183 |
if (_do_vector_loop && n->is_Load()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2184 |
if (ii_current == -1) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2185 |
ii_current = _clone_map.gen(n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2186 |
_ii_order.push(ii_current); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2187 |
load_idx = _clone_map.idx(n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2188 |
} else if (_clone_map.idx(n->_idx) == load_idx && _clone_map.gen(n->_idx) != ii_current) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2189 |
ii_current = _clone_map.gen(n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2190 |
_ii_order.push(ii_current); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2191 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2192 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2193 |
}//for |
1 | 2194 |
|
30211 | 2195 |
// Ensure extra info is allocated. |
2196 |
initialize_bb(); |
|
1 | 2197 |
|
2198 |
#ifndef PRODUCT |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2199 |
if (_vector_loop_debug && _ii_order.length() > 0) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2200 |
tty->print("SuperWord::construct_bb: List of generations: "); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2201 |
for (int jj = 0; jj < _ii_order.length(); ++jj) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2202 |
tty->print(" %d:%d", jj, _ii_order.at(jj)); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2203 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2204 |
tty->print_cr(" "); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2205 |
} |
1 | 2206 |
if (TraceSuperWord) { |
2207 |
print_bb(); |
|
2208 |
tty->print_cr("\ndata entry nodes: %s", _data_entry.length() > 0 ? "" : "NONE"); |
|
2209 |
for (int m = 0; m < _data_entry.length(); m++) { |
|
2210 |
tty->print("%3d ", m); |
|
2211 |
_data_entry.at(m)->dump(); |
|
2212 |
} |
|
2213 |
tty->print_cr("\nmemory slices: %s", _mem_slice_head.length() > 0 ? "" : "NONE"); |
|
2214 |
for (int m = 0; m < _mem_slice_head.length(); m++) { |
|
2215 |
tty->print("%3d ", m); _mem_slice_head.at(m)->dump(); |
|
2216 |
tty->print(" "); _mem_slice_tail.at(m)->dump(); |
|
2217 |
} |
|
2218 |
} |
|
2219 |
#endif |
|
2220 |
assert(rpo_idx == -1 && bb_ct == _block.length(), "all block members found"); |
|
30211 | 2221 |
return (_mem_slice_head.length() > 0) || (reduction_uses > 0) || (_data_entry.length() > 0); |
1 | 2222 |
} |
2223 |
||
2224 |
//------------------------------initialize_bb--------------------------- |
|
2225 |
// Initialize per node info |
|
2226 |
void SuperWord::initialize_bb() { |
|
2227 |
Node* last = _block.at(_block.length() - 1); |
|
2228 |
grow_node_info(bb_idx(last)); |
|
2229 |
} |
|
2230 |
||
2231 |
//------------------------------bb_insert_after--------------------------- |
|
2232 |
// Insert n into block after pos |
|
2233 |
void SuperWord::bb_insert_after(Node* n, int pos) { |
|
2234 |
int n_pos = pos + 1; |
|
2235 |
// Make room |
|
2236 |
for (int i = _block.length() - 1; i >= n_pos; i--) { |
|
2237 |
_block.at_put_grow(i+1, _block.at(i)); |
|
2238 |
} |
|
2239 |
for (int j = _node_info.length() - 1; j >= n_pos; j--) { |
|
2240 |
_node_info.at_put_grow(j+1, _node_info.at(j)); |
|
2241 |
} |
|
2242 |
// Set value |
|
2243 |
_block.at_put_grow(n_pos, n); |
|
2244 |
_node_info.at_put_grow(n_pos, SWNodeInfo::initial); |
|
2245 |
// Adjust map from node->_idx to _block index |
|
2246 |
for (int i = n_pos; i < _block.length(); i++) { |
|
2247 |
set_bb_idx(_block.at(i), i); |
|
2248 |
} |
|
2249 |
} |
|
2250 |
||
2251 |
//------------------------------compute_max_depth--------------------------- |
|
2252 |
// Compute max depth for expressions from beginning of block |
|
2253 |
// Use to prune search paths during test for independence. |
|
2254 |
void SuperWord::compute_max_depth() { |
|
2255 |
int ct = 0; |
|
2256 |
bool again; |
|
2257 |
do { |
|
2258 |
again = false; |
|
2259 |
for (int i = 0; i < _block.length(); i++) { |
|
2260 |
Node* n = _block.at(i); |
|
2261 |
if (!n->is_Phi()) { |
|
2262 |
int d_orig = depth(n); |
|
2263 |
int d_in = 0; |
|
2264 |
for (DepPreds preds(n, _dg); !preds.done(); preds.next()) { |
|
2265 |
Node* pred = preds.current(); |
|
2266 |
if (in_bb(pred)) { |
|
2267 |
d_in = MAX2(d_in, depth(pred)); |
|
2268 |
} |
|
2269 |
} |
|
2270 |
if (d_in + 1 != d_orig) { |
|
2271 |
set_depth(n, d_in + 1); |
|
2272 |
again = true; |
|
2273 |
} |
|
2274 |
} |
|
2275 |
} |
|
2276 |
ct++; |
|
2277 |
} while (again); |
|
2278 |
#ifndef PRODUCT |
|
2279 |
if (TraceSuperWord && Verbose) |
|
2280 |
tty->print_cr("compute_max_depth iterated: %d times", ct); |
|
2281 |
#endif |
|
2282 |
} |
|
2283 |
||
2284 |
//-------------------------compute_vector_element_type----------------------- |
|
2285 |
// Compute necessary vector element type for expressions |
|
2286 |
// This propagates backwards a narrower integer type when the |
|
2287 |
// upper bits of the value are not needed. |
|
2288 |
// Example: char a,b,c; a = b + c; |
|
2289 |
// Normally the type of the add is integer, but for packed character |
|
2290 |
// operations the type of the add needs to be char. |
|
2291 |
void SuperWord::compute_vector_element_type() { |
|
2292 |
#ifndef PRODUCT |
|
2293 |
if (TraceSuperWord && Verbose) |
|
2294 |
tty->print_cr("\ncompute_velt_type:"); |
|
2295 |
#endif |
|
2296 |
||
2297 |
// Initial type |
|
2298 |
for (int i = 0; i < _block.length(); i++) { |
|
2299 |
Node* n = _block.at(i); |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2300 |
set_velt_type(n, container_type(n)); |
1 | 2301 |
} |
2302 |
||
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2303 |
// Propagate integer narrowed type backwards through operations |
1 | 2304 |
// that don't depend on higher order bits |
2305 |
for (int i = _block.length() - 1; i >= 0; i--) { |
|
2306 |
Node* n = _block.at(i); |
|
2307 |
// Only integer types need be examined |
|
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2308 |
const Type* vtn = velt_type(n); |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2309 |
if (vtn->basic_type() == T_INT) { |
1 | 2310 |
uint start, end; |
13490
d19348851d2e
7192963: assert(_in[req-1] == this) failed: Must pass arg count to 'new'
kvn
parents:
13488
diff
changeset
|
2311 |
VectorNode::vector_operands(n, &start, &end); |
1 | 2312 |
|
2313 |
for (uint j = start; j < end; j++) { |
|
2314 |
Node* in = n->in(j); |
|
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2315 |
// Don't propagate through a memory |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2316 |
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
|
2317 |
data_size(n) < data_size(in)) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2318 |
bool same_type = true; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2319 |
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
|
2320 |
Node *use = in->fast_out(k); |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2321 |
if (!in_bb(use) || !same_velt_type(use, n)) { |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2322 |
same_type = false; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2323 |
break; |
1 | 2324 |
} |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2325 |
} |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2326 |
if (same_type) { |
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2327 |
// 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
|
2328 |
// 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
|
2329 |
// 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
|
2330 |
// 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
|
2331 |
// 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
|
2332 |
// 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
|
2333 |
const Type* vt = vtn; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2334 |
if (VectorNode::is_shift(in)) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2335 |
Node* load = in->in(1); |
14134 | 2336 |
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
|
2337 |
vt = velt_type(load); |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2338 |
} else if (in->Opcode() != Op_LShiftI) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2339 |
// 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
|
2340 |
// (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
|
2341 |
// Note, left shifts work regardless type. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2342 |
vt = TypeInt::INT; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2343 |
} |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2344 |
} |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2345 |
set_velt_type(in, vt); |
1 | 2346 |
} |
2347 |
} |
|
2348 |
} |
|
2349 |
} |
|
2350 |
} |
|
2351 |
#ifndef PRODUCT |
|
2352 |
if (TraceSuperWord && Verbose) { |
|
2353 |
for (int i = 0; i < _block.length(); i++) { |
|
2354 |
Node* n = _block.at(i); |
|
2355 |
velt_type(n)->dump(); |
|
2356 |
tty->print("\t"); |
|
2357 |
n->dump(); |
|
2358 |
} |
|
2359 |
} |
|
2360 |
#endif |
|
2361 |
} |
|
2362 |
||
2363 |
//------------------------------memory_alignment--------------------------- |
|
2364 |
// Alignment within a vector memory reference |
|
13885 | 2365 |
int SuperWord::memory_alignment(MemNode* s, int iv_adjust) { |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2366 |
#ifndef PRODUCT |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2367 |
if(TraceSuperWord && Verbose) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2368 |
tty->print("SuperWord::memory_alignment within a vector memory reference for %d: ", s->_idx); s->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2369 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2370 |
#endif |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2371 |
NOT_PRODUCT(SWPointer::Tracer::Depth ddd(0);) |
31403 | 2372 |
SWPointer p(s, this, NULL, false); |
1 | 2373 |
if (!p.valid()) { |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2374 |
NOT_PRODUCT(if(is_trace_alignment()) tty->print("SWPointer::memory_alignment: SWPointer p invalid, return bottom_align");) |
1 | 2375 |
return bottom_align; |
2376 |
} |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
2377 |
int vw = vector_width_in_bytes(s); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2378 |
if (vw < 2) { |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2379 |
NOT_PRODUCT(if(is_trace_alignment()) tty->print_cr("SWPointer::memory_alignment: vector_width_in_bytes < 2, return bottom_align");) |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2380 |
return bottom_align; // No vectors for this type |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2381 |
} |
1 | 2382 |
int offset = p.offset_in_bytes(); |
13885 | 2383 |
offset += iv_adjust*p.memory_size(); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2384 |
int off_rem = offset % vw; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2385 |
int off_mod = off_rem >= 0 ? off_rem : off_rem + vw; |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2386 |
NOT_PRODUCT(if(TraceSuperWord && Verbose) tty->print_cr("SWPointer::memory_alignment: off_rem = %d, off_mod = %d", off_rem, off_mod);) |
1 | 2387 |
return off_mod; |
2388 |
} |
|
2389 |
||
2390 |
//---------------------------container_type--------------------------- |
|
2391 |
// Smallest type containing range of values |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2392 |
const Type* SuperWord::container_type(Node* n) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2393 |
if (n->is_Mem()) { |
14131
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2394 |
BasicType bt = n->as_Mem()->memory_type(); |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2395 |
if (n->is_Store() && (bt == T_CHAR)) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2396 |
// 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
|
2397 |
// preceding arithmetic operation extends values to signed Int. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2398 |
bt = T_SHORT; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2399 |
} |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2400 |
if (n->Opcode() == Op_LoadUB) { |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2401 |
// 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
|
2402 |
// 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
|
2403 |
// 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
|
2404 |
// size (one byte) and sign is important. |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2405 |
bt = T_BOOLEAN; |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2406 |
} |
e376e3d428c9
8001183: incorrect results of char vectors right shift operaiton
kvn
parents:
13970
diff
changeset
|
2407 |
return Type::get_const_basic_type(bt); |
1 | 2408 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2409 |
const Type* t = _igvn.type(n); |
1 | 2410 |
if (t->basic_type() == T_INT) { |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2411 |
// A narrow type of arithmetic operations will be determined by |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2412 |
// propagating the type of memory operations. |
1 | 2413 |
return TypeInt::INT; |
2414 |
} |
|
2415 |
return t; |
|
2416 |
} |
|
2417 |
||
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2418 |
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
|
2419 |
const Type* vt1 = velt_type(n1); |
13885 | 2420 |
const Type* vt2 = velt_type(n2); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2421 |
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
|
2422 |
// Compare vectors element sizes for integer types. |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2423 |
return data_size(n1) == data_size(n2); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2424 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2425 |
return vt1 == vt2; |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2426 |
} |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2427 |
|
1 | 2428 |
//------------------------------in_packset--------------------------- |
2429 |
// Are s1 and s2 in a pack pair and ordered as s1,s2? |
|
2430 |
bool SuperWord::in_packset(Node* s1, Node* s2) { |
|
2431 |
for (int i = 0; i < _packset.length(); i++) { |
|
2432 |
Node_List* p = _packset.at(i); |
|
2433 |
assert(p->size() == 2, "must be"); |
|
2434 |
if (p->at(0) == s1 && p->at(p->size()-1) == s2) { |
|
2435 |
return true; |
|
2436 |
} |
|
2437 |
} |
|
2438 |
return false; |
|
2439 |
} |
|
2440 |
||
2441 |
//------------------------------in_pack--------------------------- |
|
2442 |
// Is s in pack p? |
|
2443 |
Node_List* SuperWord::in_pack(Node* s, Node_List* p) { |
|
2444 |
for (uint i = 0; i < p->size(); i++) { |
|
2445 |
if (p->at(i) == s) { |
|
2446 |
return p; |
|
2447 |
} |
|
2448 |
} |
|
2449 |
return NULL; |
|
2450 |
} |
|
2451 |
||
2452 |
//------------------------------remove_pack_at--------------------------- |
|
2453 |
// Remove the pack at position pos in the packset |
|
2454 |
void SuperWord::remove_pack_at(int pos) { |
|
2455 |
Node_List* p = _packset.at(pos); |
|
2456 |
for (uint i = 0; i < p->size(); i++) { |
|
2457 |
Node* s = p->at(i); |
|
2458 |
set_my_pack(s, NULL); |
|
2459 |
} |
|
2460 |
_packset.remove_at(pos); |
|
2461 |
} |
|
2462 |
||
30211 | 2463 |
void SuperWord::packset_sort(int n) { |
2464 |
// simple bubble sort so that we capitalize with O(n) when its already sorted |
|
2465 |
while (n != 0) { |
|
2466 |
bool swapped = false; |
|
2467 |
for (int i = 1; i < n; i++) { |
|
2468 |
Node_List* q_low = _packset.at(i-1); |
|
2469 |
Node_List* q_i = _packset.at(i); |
|
2470 |
||
2471 |
// only swap when we find something to swap |
|
2472 |
if (alignment(q_low->at(0)) > alignment(q_i->at(0))) { |
|
2473 |
Node_List* t = q_i; |
|
2474 |
*(_packset.adr_at(i)) = q_low; |
|
2475 |
*(_packset.adr_at(i-1)) = q_i; |
|
2476 |
swapped = true; |
|
2477 |
} |
|
2478 |
} |
|
2479 |
if (swapped == false) break; |
|
2480 |
n--; |
|
2481 |
} |
|
2482 |
} |
|
2483 |
||
1 | 2484 |
//------------------------------executed_first--------------------------- |
2485 |
// Return the node executed first in pack p. Uses the RPO block list |
|
2486 |
// to determine order. |
|
2487 |
Node* SuperWord::executed_first(Node_List* p) { |
|
2488 |
Node* n = p->at(0); |
|
2489 |
int n_rpo = bb_idx(n); |
|
2490 |
for (uint i = 1; i < p->size(); i++) { |
|
2491 |
Node* s = p->at(i); |
|
2492 |
int s_rpo = bb_idx(s); |
|
2493 |
if (s_rpo < n_rpo) { |
|
2494 |
n = s; |
|
2495 |
n_rpo = s_rpo; |
|
2496 |
} |
|
2497 |
} |
|
2498 |
return n; |
|
2499 |
} |
|
2500 |
||
2501 |
//------------------------------executed_last--------------------------- |
|
2502 |
// Return the node executed last in pack p. |
|
2503 |
Node* SuperWord::executed_last(Node_List* p) { |
|
2504 |
Node* n = p->at(0); |
|
2505 |
int n_rpo = bb_idx(n); |
|
2506 |
for (uint i = 1; i < p->size(); i++) { |
|
2507 |
Node* s = p->at(i); |
|
2508 |
int s_rpo = bb_idx(s); |
|
2509 |
if (s_rpo > n_rpo) { |
|
2510 |
n = s; |
|
2511 |
n_rpo = s_rpo; |
|
2512 |
} |
|
2513 |
} |
|
2514 |
return n; |
|
2515 |
} |
|
2516 |
||
31035
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2517 |
LoadNode::ControlDependency SuperWord::control_dependency(Node_List* p) { |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2518 |
LoadNode::ControlDependency dep = LoadNode::DependsOnlyOnTest; |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2519 |
for (uint i = 0; i < p->size(); i++) { |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2520 |
Node* n = p->at(i); |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2521 |
assert(n->is_Load(), "only meaningful for loads"); |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2522 |
if (!n->depends_only_on_test()) { |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2523 |
dep = LoadNode::Pinned; |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2524 |
} |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2525 |
} |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2526 |
return dep; |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2527 |
} |
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2528 |
|
0f0743952c41
8077504: Unsafe load can loose control dependency and cause crash
roland
parents:
30626
diff
changeset
|
2529 |
|
1 | 2530 |
//----------------------------align_initial_loop_index--------------------------- |
2531 |
// Adjust pre-loop limit so that in main loop, a load/store reference |
|
2532 |
// to align_to_ref will be a position zero in the vector. |
|
2533 |
// (iv + k) mod vector_align == 0 |
|
2534 |
void SuperWord::align_initial_loop_index(MemNode* align_to_ref) { |
|
2535 |
CountedLoopNode *main_head = lp()->as_CountedLoop(); |
|
2536 |
assert(main_head->is_main_loop(), ""); |
|
2537 |
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
|
2538 |
assert(pre_end != NULL, "we must have a correct pre-loop"); |
1 | 2539 |
Node *pre_opaq1 = pre_end->limit(); |
2540 |
assert(pre_opaq1->Opcode() == Op_Opaque1, ""); |
|
2541 |
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
|
2542 |
Node *lim0 = pre_opaq->in(1); |
1 | 2543 |
|
2544 |
// Where we put new limit calculations |
|
2545 |
Node *pre_ctrl = pre_end->loopnode()->in(LoopNode::EntryControl); |
|
2546 |
||
2547 |
// Ensure the original loop limit is available from the |
|
2548 |
// pre-loop Opaque1 node. |
|
2549 |
Node *orig_limit = pre_opaq->original_loop_limit(); |
|
2550 |
assert(orig_limit != NULL && _igvn.type(orig_limit) != Type::TOP, ""); |
|
2551 |
||
31403 | 2552 |
SWPointer align_to_ref_p(align_to_ref, this, NULL, false); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2553 |
assert(align_to_ref_p.valid(), "sanity"); |
1 | 2554 |
|
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2555 |
// Given: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2556 |
// 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
|
2557 |
// 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
|
2558 |
// invar == extra invariant piece of the address expression |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2559 |
// 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
|
2560 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2561 |
// 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
|
2562 |
// (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
|
2563 |
// and: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2564 |
// (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
|
2565 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2566 |
// 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
|
2567 |
// 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
|
2568 |
// (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
|
2569 |
// (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
|
2570 |
// are true. |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2571 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2572 |
// 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
|
2573 |
// (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
|
2574 |
// solve for N: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2575 |
// 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
|
2576 |
// 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
|
2577 |
// lim = lim0 + (V - (e + lim0)) % V |
1 | 2578 |
// |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2579 |
// 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
|
2580 |
// Constraints: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2581 |
// lim = lim0 + N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2582 |
// (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
|
2583 |
// Solving for lim: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2584 |
// (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
|
2585 |
// 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
|
2586 |
// 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
|
2587 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2588 |
// 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
|
2589 |
// Constraints: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2590 |
// lim = lim0 - N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2591 |
// (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
|
2592 |
// Solving for lim: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2593 |
// (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
|
2594 |
// 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
|
2595 |
// 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
|
2596 |
// |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2597 |
// 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
|
2598 |
// Constraints: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2599 |
// lim = lim0 - N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2600 |
// (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
|
2601 |
// Solving for lim: |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2602 |
// (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
|
2603 |
// 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
|
2604 |
// lim = lim0 - (V - (e - lim0)) % V |
1 | 2605 |
|
13108
6d27f658925c
7177923: SIGBUS on sparc in compiled code for java.util.Calendar.clear()
kvn
parents:
13104
diff
changeset
|
2606 |
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
|
2607 |
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
|
2608 |
int scale = align_to_ref_p.scale_in_bytes(); |
1 | 2609 |
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
|
2610 |
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
|
2611 |
assert(v_align > 1, "sanity"); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2612 |
int offset = align_to_ref_p.offset_in_bytes() / elt_size; |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2613 |
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
|
2614 |
|
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2615 |
Node *e = offsn; |
1 | 2616 |
if (align_to_ref_p.invar() != NULL) { |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2617 |
// incorporate any extra invariant piece producing (offset +/- invar) >>> log2(elt) |
1 | 2618 |
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
|
2619 |
Node* aref = new URShiftINode(align_to_ref_p.invar(), log2_elt); |
13894 | 2620 |
_igvn.register_new_node_with_optimizer(aref); |
1 | 2621 |
_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
|
2622 |
if (align_to_ref_p.negate_invar()) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2623 |
e = new SubINode(e, aref); |
1 | 2624 |
} else { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2625 |
e = new AddINode(e, aref); |
1 | 2626 |
} |
13894 | 2627 |
_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
|
2628 |
_phase->set_ctrl(e, pre_ctrl); |
1 | 2629 |
} |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2630 |
if (vw > ObjectAlignmentInBytes) { |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2631 |
// incorporate base e +/- base && Mask >>> log2(elt) |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2632 |
Node* xbase = new CastP2XNode(NULL, align_to_ref_p.base()); |
13894 | 2633 |
_igvn.register_new_node_with_optimizer(xbase); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2634 |
#ifdef _LP64 |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2635 |
xbase = new ConvL2INode(xbase); |
13894 | 2636 |
_igvn.register_new_node_with_optimizer(xbase); |
13485
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2637 |
#endif |
6c7faa516fc6
6340864: Implement vectorization optimizations in hotspot-server
kvn
parents:
13108
diff
changeset
|
2638 |
Node* mask = _igvn.intcon(vw-1); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2639 |
Node* masked_xbase = new AndINode(xbase, mask); |
13894 | 2640 |
_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
|
2641 |
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
|
2642 |
Node* bref = new URShiftINode(masked_xbase, log2_elt); |
13894 | 2643 |
_igvn.register_new_node_with_optimizer(bref); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2644 |
_phase->set_ctrl(bref, pre_ctrl); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2645 |
e = new AddINode(e, bref); |
13894 | 2646 |
_igvn.register_new_node_with_optimizer(e); |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2647 |
_phase->set_ctrl(e, pre_ctrl); |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
12958
diff
changeset
|
2648 |
} |
245
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2649 |
|
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2650 |
// compute e +/- lim0 |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2651 |
if (scale < 0) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2652 |
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
|
2653 |
} else { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2654 |
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
|
2655 |
} |
13894 | 2656 |
_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
|
2657 |
_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
|
2658 |
|
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2659 |
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
|
2660 |
// compute V - (e +/- lim0) |
1 | 2661 |
Node* va = _igvn.intcon(v_align); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2662 |
e = new SubINode(va, e); |
13894 | 2663 |
_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
|
2664 |
_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
|
2665 |
} |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2666 |
// 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
|
2667 |
Node* va_msk = _igvn.intcon(v_align - 1); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2668 |
Node* N = new AndINode(e, va_msk); |
13894 | 2669 |
_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
|
2670 |
_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
|
2671 |
|
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2672 |
// 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
|
2673 |
// lim = lim0 + N |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2674 |
Node* lim; |
b9df534a2faa
6663621: JVM crashes while trying to execute api/java_security/Signature/SignatureTests.html#initSign tests.
never
parents:
202
diff
changeset
|
2675 |
if (stride < 0) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2676 |
lim = new SubINode(lim0, N); |
1 | 2677 |
} else { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2678 |
lim = new AddINode(lim0, N); |
1 | 2679 |
} |
13894 | 2680 |
_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
|
2681 |
_phase->set_ctrl(lim, pre_ctrl); |
1 | 2682 |
Node* constrained = |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2683 |
(stride > 0) ? (Node*) new MinINode(lim, orig_limit) |
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24090
diff
changeset
|
2684 |
: (Node*) new MaxINode(lim, orig_limit); |
13894 | 2685 |
_igvn.register_new_node_with_optimizer(constrained); |
1 | 2686 |
_phase->set_ctrl(constrained, pre_ctrl); |
2687 |
_igvn.hash_delete(pre_opaq); |
|
2688 |
pre_opaq->set_req(1, constrained); |
|
2689 |
} |
|
2690 |
||
2691 |
//----------------------------get_pre_loop_end--------------------------- |
|
2692 |
// Find pre loop end from main loop. Returns null if none. |
|
33067
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2693 |
CountedLoopEndNode* SuperWord::get_pre_loop_end(CountedLoopNode* cl) { |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2694 |
Node* ctrl = cl->in(LoopNode::EntryControl); |
1 | 2695 |
if (!ctrl->is_IfTrue() && !ctrl->is_IfFalse()) return NULL; |
33067
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2696 |
Node* iffm = ctrl->in(0); |
1 | 2697 |
if (!iffm->is_If()) return NULL; |
33067
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2698 |
Node* bolzm = iffm->in(1); |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2699 |
if (!bolzm->is_Bool()) return NULL; |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2700 |
Node* cmpzm = bolzm->in(1); |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2701 |
if (!cmpzm->is_Cmp()) return NULL; |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2702 |
Node* opqzm = cmpzm->in(2); |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2703 |
// Can not optimize a loop if zero-trip Opaque1 node is optimized |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2704 |
// away and then another round of loop opts attempted. |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2705 |
if (opqzm->Opcode() != Op_Opaque1) { |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2706 |
return NULL; |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2707 |
} |
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2708 |
Node* p_f = iffm->in(0); |
1 | 2709 |
if (!p_f->is_IfFalse()) return NULL; |
2710 |
if (!p_f->in(0)->is_CountedLoopEnd()) return NULL; |
|
33067
0cabc639c87b
8134739: compiler/loopopts/superword/TestVectorizationWithInvariant crashes in loop opts
thartmann
parents:
32723
diff
changeset
|
2711 |
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
|
2712 |
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
|
2713 |
if (loop_node == NULL || !loop_node->is_pre_loop()) return NULL; |
1 | 2714 |
return pre_end; |
2715 |
} |
|
2716 |
||
2717 |
||
2718 |
//------------------------------init--------------------------- |
|
2719 |
void SuperWord::init() { |
|
2720 |
_dg.init(); |
|
2721 |
_packset.clear(); |
|
2722 |
_disjoint_ptrs.clear(); |
|
2723 |
_block.clear(); |
|
2724 |
_data_entry.clear(); |
|
2725 |
_mem_slice_head.clear(); |
|
2726 |
_mem_slice_tail.clear(); |
|
30593 | 2727 |
_iteration_first.clear(); |
2728 |
_iteration_last.clear(); |
|
1 | 2729 |
_node_info.clear(); |
2730 |
_align_to_ref = NULL; |
|
2731 |
_lpt = NULL; |
|
2732 |
_lp = NULL; |
|
2733 |
_bb = NULL; |
|
2734 |
_iv = NULL; |
|
30588 | 2735 |
_race_possible = 0; |
31403 | 2736 |
_early_return = false; |
30588 | 2737 |
_num_work_vecs = 0; |
2738 |
_num_reductions = 0; |
|
1 | 2739 |
} |
2740 |
||
30593 | 2741 |
//------------------------------restart--------------------------- |
2742 |
void SuperWord::restart() { |
|
2743 |
_dg.init(); |
|
2744 |
_packset.clear(); |
|
2745 |
_disjoint_ptrs.clear(); |
|
2746 |
_block.clear(); |
|
2747 |
_data_entry.clear(); |
|
2748 |
_mem_slice_head.clear(); |
|
2749 |
_mem_slice_tail.clear(); |
|
2750 |
_node_info.clear(); |
|
2751 |
} |
|
2752 |
||
1 | 2753 |
//------------------------------print_packset--------------------------- |
2754 |
void SuperWord::print_packset() { |
|
2755 |
#ifndef PRODUCT |
|
2756 |
tty->print_cr("packset"); |
|
2757 |
for (int i = 0; i < _packset.length(); i++) { |
|
2758 |
tty->print_cr("Pack: %d", i); |
|
2759 |
Node_List* p = _packset.at(i); |
|
2760 |
print_pack(p); |
|
2761 |
} |
|
2762 |
#endif |
|
2763 |
} |
|
2764 |
||
2765 |
//------------------------------print_pack--------------------------- |
|
2766 |
void SuperWord::print_pack(Node_List* p) { |
|
2767 |
for (uint i = 0; i < p->size(); i++) { |
|
2768 |
print_stmt(p->at(i)); |
|
2769 |
} |
|
2770 |
} |
|
2771 |
||
2772 |
//------------------------------print_bb--------------------------- |
|
2773 |
void SuperWord::print_bb() { |
|
2774 |
#ifndef PRODUCT |
|
2775 |
tty->print_cr("\nBlock"); |
|
2776 |
for (int i = 0; i < _block.length(); i++) { |
|
2777 |
Node* n = _block.at(i); |
|
2778 |
tty->print("%d ", i); |
|
2779 |
if (n) { |
|
2780 |
n->dump(); |
|
2781 |
} |
|
2782 |
} |
|
2783 |
#endif |
|
2784 |
} |
|
2785 |
||
2786 |
//------------------------------print_stmt--------------------------- |
|
2787 |
void SuperWord::print_stmt(Node* s) { |
|
2788 |
#ifndef PRODUCT |
|
2789 |
tty->print(" align: %d \t", alignment(s)); |
|
2790 |
s->dump(); |
|
2791 |
#endif |
|
2792 |
} |
|
2793 |
||
2794 |
//------------------------------blank--------------------------- |
|
2795 |
char* SuperWord::blank(uint depth) { |
|
2796 |
static char blanks[101]; |
|
2797 |
assert(depth < 101, "too deep"); |
|
2798 |
for (uint i = 0; i < depth; i++) blanks[i] = ' '; |
|
2799 |
blanks[depth] = '\0'; |
|
2800 |
return blanks; |
|
2801 |
} |
|
2802 |
||
2803 |
||
2804 |
//==============================SWPointer=========================== |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2805 |
#ifndef PRODUCT |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2806 |
int SWPointer::Tracer::_depth = 0; |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2807 |
#endif |
1 | 2808 |
//----------------------------SWPointer------------------------ |
31403 | 2809 |
SWPointer::SWPointer(MemNode* mem, SuperWord* slp, Node_Stack *nstack, bool analyze_only) : |
1 | 2810 |
_mem(mem), _slp(slp), _base(NULL), _adr(NULL), |
31403 | 2811 |
_scale(0), _offset(0), _invar(NULL), _negate_invar(false), |
2812 |
_nstack(nstack), _analyze_only(analyze_only), |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2813 |
_stack_idx(0) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2814 |
#ifndef PRODUCT |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2815 |
, _tracer(slp) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2816 |
#endif |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2817 |
{ |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2818 |
NOT_PRODUCT(_tracer.ctor_1(mem);) |
1 | 2819 |
|
2820 |
Node* adr = mem->in(MemNode::Address); |
|
2821 |
if (!adr->is_AddP()) { |
|
2822 |
assert(!valid(), "too complex"); |
|
2823 |
return; |
|
2824 |
} |
|
2825 |
// Match AddP(base, AddP(ptr, k*iv [+ invariant]), constant) |
|
2826 |
Node* base = adr->in(AddPNode::Base); |
|
30626
86ba6ca7ca4a
8079343: Crash in PhaseIdealLoop with "assert(!had_error) failed: bad dominance"
thartmann
parents:
30625
diff
changeset
|
2827 |
// The base address should be loop invariant |
86ba6ca7ca4a
8079343: Crash in PhaseIdealLoop with "assert(!had_error) failed: bad dominance"
thartmann
parents:
30625
diff
changeset
|
2828 |
if (!invariant(base)) { |
86ba6ca7ca4a
8079343: Crash in PhaseIdealLoop with "assert(!had_error) failed: bad dominance"
thartmann
parents:
30625
diff
changeset
|
2829 |
assert(!valid(), "base address is loop variant"); |
86ba6ca7ca4a
8079343: Crash in PhaseIdealLoop with "assert(!had_error) failed: bad dominance"
thartmann
parents:
30625
diff
changeset
|
2830 |
return; |
86ba6ca7ca4a
8079343: Crash in PhaseIdealLoop with "assert(!had_error) failed: bad dominance"
thartmann
parents:
30625
diff
changeset
|
2831 |
} |
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
|
2832 |
//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
|
2833 |
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
|
2834 |
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
|
2835 |
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
|
2836 |
} |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2837 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2838 |
NOT_PRODUCT(if(_slp->is_trace_alignment()) _tracer.store_depth();) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2839 |
NOT_PRODUCT(_tracer.ctor_2(adr);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2840 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2841 |
int i; |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2842 |
for (i = 0; i < 3; i++) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2843 |
NOT_PRODUCT(_tracer.ctor_3(adr, i);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2844 |
|
1 | 2845 |
if (!scaled_iv_plus_offset(adr->in(AddPNode::Offset))) { |
2846 |
assert(!valid(), "too complex"); |
|
2847 |
return; |
|
2848 |
} |
|
2849 |
adr = adr->in(AddPNode::Address); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2850 |
NOT_PRODUCT(_tracer.ctor_4(adr, i);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2851 |
|
1 | 2852 |
if (base == adr || !adr->is_AddP()) { |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2853 |
NOT_PRODUCT(_tracer.ctor_5(adr, base, i);) |
1 | 2854 |
break; // stop looking at addp's |
2855 |
} |
|
2856 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2857 |
NOT_PRODUCT(if(_slp->is_trace_alignment()) _tracer.restore_depth();) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2858 |
NOT_PRODUCT(_tracer.ctor_6(mem);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2859 |
|
1 | 2860 |
_base = base; |
2861 |
_adr = adr; |
|
2862 |
assert(valid(), "Usable"); |
|
2863 |
} |
|
2864 |
||
2865 |
// Following is used to create a temporary object during |
|
2866 |
// the pattern match of an address expression. |
|
2867 |
SWPointer::SWPointer(SWPointer* p) : |
|
2868 |
_mem(p->_mem), _slp(p->_slp), _base(NULL), _adr(NULL), |
|
31403 | 2869 |
_scale(0), _offset(0), _invar(NULL), _negate_invar(false), |
2870 |
_nstack(p->_nstack), _analyze_only(p->_analyze_only), |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2871 |
_stack_idx(p->_stack_idx) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2872 |
#ifndef PRODUCT |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2873 |
, _tracer(p->_slp) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2874 |
#endif |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2875 |
{} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2876 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2877 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2878 |
bool SWPointer::invariant(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2879 |
NOT_PRODUCT(Tracer::Depth dd;) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2880 |
Node *n_c = phase()->get_ctrl(n); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2881 |
NOT_PRODUCT(_tracer.invariant_1(n, n_c);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2882 |
return !lpt()->is_member(phase()->get_loop(n_c)); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2883 |
} |
1 | 2884 |
//------------------------scaled_iv_plus_offset-------------------- |
2885 |
// Match: k*iv + offset |
|
2886 |
// where: k is a constant that maybe zero, and |
|
2887 |
// offset is (k2 [+/- invariant]) where k2 maybe zero and invariant is optional |
|
2888 |
bool SWPointer::scaled_iv_plus_offset(Node* n) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2889 |
NOT_PRODUCT(Tracer::Depth ddd;) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2890 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_1(n);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2891 |
|
1 | 2892 |
if (scaled_iv(n)) { |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2893 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_2(n);) |
1 | 2894 |
return true; |
2895 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2896 |
|
1 | 2897 |
if (offset_plus_k(n)) { |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2898 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_3(n);) |
1 | 2899 |
return true; |
2900 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2901 |
|
1 | 2902 |
int opc = n->Opcode(); |
2903 |
if (opc == Op_AddI) { |
|
2904 |
if (scaled_iv(n->in(1)) && offset_plus_k(n->in(2))) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2905 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_4(n);) |
1 | 2906 |
return true; |
2907 |
} |
|
2908 |
if (scaled_iv(n->in(2)) && offset_plus_k(n->in(1))) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2909 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_5(n);) |
1 | 2910 |
return true; |
2911 |
} |
|
2912 |
} else if (opc == Op_SubI) { |
|
2913 |
if (scaled_iv(n->in(1)) && offset_plus_k(n->in(2), true)) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2914 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_6(n);) |
1 | 2915 |
return true; |
2916 |
} |
|
2917 |
if (scaled_iv(n->in(2)) && offset_plus_k(n->in(1))) { |
|
2918 |
_scale *= -1; |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2919 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_7(n);) |
1 | 2920 |
return true; |
2921 |
} |
|
2922 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2923 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2924 |
NOT_PRODUCT(_tracer.scaled_iv_plus_offset_8(n);) |
1 | 2925 |
return false; |
2926 |
} |
|
2927 |
||
2928 |
//----------------------------scaled_iv------------------------ |
|
2929 |
// Match: k*iv where k is a constant that's not zero |
|
2930 |
bool SWPointer::scaled_iv(Node* n) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2931 |
NOT_PRODUCT(Tracer::Depth ddd;) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2932 |
NOT_PRODUCT(_tracer.scaled_iv_1(n);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2933 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2934 |
if (_scale != 0) { // already found a scale |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2935 |
NOT_PRODUCT(_tracer.scaled_iv_2(n, _scale);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2936 |
return false; |
1 | 2937 |
} |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2938 |
|
1 | 2939 |
if (n == iv()) { |
2940 |
_scale = 1; |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2941 |
NOT_PRODUCT(_tracer.scaled_iv_3(n, _scale);) |
1 | 2942 |
return true; |
2943 |
} |
|
31403 | 2944 |
if (_analyze_only && (invariant(n) == false)) { |
2945 |
_nstack->push(n, _stack_idx++); |
|
2946 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2947 |
|
1 | 2948 |
int opc = n->Opcode(); |
2949 |
if (opc == Op_MulI) { |
|
2950 |
if (n->in(1) == iv() && n->in(2)->is_Con()) { |
|
2951 |
_scale = n->in(2)->get_int(); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2952 |
NOT_PRODUCT(_tracer.scaled_iv_4(n, _scale);) |
1 | 2953 |
return true; |
2954 |
} else if (n->in(2) == iv() && n->in(1)->is_Con()) { |
|
2955 |
_scale = n->in(1)->get_int(); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2956 |
NOT_PRODUCT(_tracer.scaled_iv_5(n, _scale);) |
1 | 2957 |
return true; |
2958 |
} |
|
2959 |
} else if (opc == Op_LShiftI) { |
|
2960 |
if (n->in(1) == iv() && n->in(2)->is_Con()) { |
|
2961 |
_scale = 1 << n->in(2)->get_int(); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2962 |
NOT_PRODUCT(_tracer.scaled_iv_6(n, _scale);) |
1 | 2963 |
return true; |
2964 |
} |
|
2965 |
} else if (opc == Op_ConvI2L) { |
|
2966 |
if (scaled_iv_plus_offset(n->in(1))) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2967 |
NOT_PRODUCT(_tracer.scaled_iv_7(n);) |
1 | 2968 |
return true; |
2969 |
} |
|
2970 |
} else if (opc == Op_LShiftL) { |
|
2971 |
if (!has_iv() && _invar == NULL) { |
|
2972 |
// Need to preserve the current _offset value, so |
|
2973 |
// create a temporary object for this expression subtree. |
|
2974 |
// Hacky, so should re-engineer the address pattern match. |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2975 |
NOT_PRODUCT(Tracer::Depth dddd;) |
1 | 2976 |
SWPointer tmp(this); |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2977 |
NOT_PRODUCT(_tracer.scaled_iv_8(n, &tmp);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2978 |
|
1 | 2979 |
if (tmp.scaled_iv_plus_offset(n->in(1))) { |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2980 |
if (tmp._invar == NULL || _slp->do_vector_loop()) { |
1 | 2981 |
int mult = 1 << n->in(2)->get_int(); |
2982 |
_scale = tmp._scale * mult; |
|
2983 |
_offset += tmp._offset * mult; |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2984 |
NOT_PRODUCT(_tracer.scaled_iv_9(n, _scale, _offset, mult);) |
1 | 2985 |
return true; |
2986 |
} |
|
2987 |
} |
|
2988 |
} |
|
2989 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2990 |
NOT_PRODUCT(_tracer.scaled_iv_10(n);) |
1 | 2991 |
return false; |
2992 |
} |
|
2993 |
||
2994 |
//----------------------------offset_plus_k------------------------ |
|
2995 |
// Match: offset is (k [+/- invariant]) |
|
2996 |
// where k maybe zero and invariant is optional, but not both. |
|
2997 |
bool SWPointer::offset_plus_k(Node* n, bool negate) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2998 |
NOT_PRODUCT(Tracer::Depth ddd;) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
2999 |
NOT_PRODUCT(_tracer.offset_plus_k_1(n);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3000 |
|
1 | 3001 |
int opc = n->Opcode(); |
3002 |
if (opc == Op_ConI) { |
|
3003 |
_offset += negate ? -(n->get_int()) : n->get_int(); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3004 |
NOT_PRODUCT(_tracer.offset_plus_k_2(n, _offset);) |
1 | 3005 |
return true; |
3006 |
} else if (opc == Op_ConL) { |
|
3007 |
// Okay if value fits into an int |
|
3008 |
const TypeLong* t = n->find_long_type(); |
|
3009 |
if (t->higher_equal(TypeLong::INT)) { |
|
3010 |
jlong loff = n->get_long(); |
|
3011 |
jint off = (jint)loff; |
|
3012 |
_offset += negate ? -off : loff; |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3013 |
NOT_PRODUCT(_tracer.offset_plus_k_3(n, _offset);) |
1 | 3014 |
return true; |
3015 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3016 |
NOT_PRODUCT(_tracer.offset_plus_k_4(n);) |
1 | 3017 |
return false; |
3018 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3019 |
if (_invar != NULL) { // already has an invariant |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3020 |
NOT_PRODUCT(_tracer.offset_plus_k_5(n, _invar);) |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3021 |
return false; |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3022 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3023 |
|
31403 | 3024 |
if (_analyze_only && (invariant(n) == false)) { |
3025 |
_nstack->push(n, _stack_idx++); |
|
3026 |
} |
|
1 | 3027 |
if (opc == Op_AddI) { |
3028 |
if (n->in(2)->is_Con() && invariant(n->in(1))) { |
|
3029 |
_negate_invar = negate; |
|
3030 |
_invar = n->in(1); |
|
3031 |
_offset += negate ? -(n->in(2)->get_int()) : n->in(2)->get_int(); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3032 |
NOT_PRODUCT(_tracer.offset_plus_k_6(n, _invar, _negate_invar, _offset);) |
1 | 3033 |
return true; |
3034 |
} else if (n->in(1)->is_Con() && invariant(n->in(2))) { |
|
3035 |
_offset += negate ? -(n->in(1)->get_int()) : n->in(1)->get_int(); |
|
3036 |
_negate_invar = negate; |
|
3037 |
_invar = n->in(2); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3038 |
NOT_PRODUCT(_tracer.offset_plus_k_7(n, _invar, _negate_invar, _offset);) |
1 | 3039 |
return true; |
3040 |
} |
|
3041 |
} |
|
3042 |
if (opc == Op_SubI) { |
|
3043 |
if (n->in(2)->is_Con() && invariant(n->in(1))) { |
|
3044 |
_negate_invar = negate; |
|
3045 |
_invar = n->in(1); |
|
3046 |
_offset += !negate ? -(n->in(2)->get_int()) : n->in(2)->get_int(); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3047 |
NOT_PRODUCT(_tracer.offset_plus_k_8(n, _invar, _negate_invar, _offset);) |
1 | 3048 |
return true; |
3049 |
} else if (n->in(1)->is_Con() && invariant(n->in(2))) { |
|
3050 |
_offset += negate ? -(n->in(1)->get_int()) : n->in(1)->get_int(); |
|
3051 |
_negate_invar = !negate; |
|
3052 |
_invar = n->in(2); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3053 |
NOT_PRODUCT(_tracer.offset_plus_k_9(n, _invar, _negate_invar, _offset);) |
1 | 3054 |
return true; |
3055 |
} |
|
3056 |
} |
|
3057 |
if (invariant(n)) { |
|
33082
c3e302e8e429
8136820: Generate better code for some Unsafe addressing patterns
roland
parents:
33067
diff
changeset
|
3058 |
if (opc == Op_ConvI2L) { |
c3e302e8e429
8136820: Generate better code for some Unsafe addressing patterns
roland
parents:
33067
diff
changeset
|
3059 |
n = n->in(1); |
c3e302e8e429
8136820: Generate better code for some Unsafe addressing patterns
roland
parents:
33067
diff
changeset
|
3060 |
} |
1 | 3061 |
_negate_invar = negate; |
3062 |
_invar = n; |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3063 |
NOT_PRODUCT(_tracer.offset_plus_k_10(n, _invar, _negate_invar, _offset);) |
1 | 3064 |
return true; |
3065 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3066 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3067 |
NOT_PRODUCT(_tracer.offset_plus_k_11(n);) |
1 | 3068 |
return false; |
3069 |
} |
|
3070 |
||
3071 |
//----------------------------print------------------------ |
|
3072 |
void SWPointer::print() { |
|
3073 |
#ifndef PRODUCT |
|
3074 |
tty->print("base: %d adr: %d scale: %d offset: %d invar: %c%d\n", |
|
3075 |
_base != NULL ? _base->_idx : 0, |
|
3076 |
_adr != NULL ? _adr->_idx : 0, |
|
3077 |
_scale, _offset, |
|
3078 |
_negate_invar?'-':'+', |
|
3079 |
_invar != NULL ? _invar->_idx : 0); |
|
3080 |
#endif |
|
3081 |
} |
|
3082 |
||
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3083 |
//----------------------------tracing------------------------ |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3084 |
#ifndef PRODUCT |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3085 |
void SWPointer::Tracer::print_depth() { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3086 |
for (int ii = 0; ii<_depth; ++ii) tty->print(" "); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3087 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3088 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3089 |
void SWPointer::Tracer::ctor_1 (Node* mem) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3090 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3091 |
print_depth(); tty->print(" %d SWPointer::SWPointer: start alignment analysis", mem->_idx); mem->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3092 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3093 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3094 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3095 |
void SWPointer::Tracer::ctor_2(Node* adr) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3096 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3097 |
//store_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3098 |
inc_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3099 |
print_depth(); tty->print(" %d (adr) SWPointer::SWPointer: ", adr->_idx); adr->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3100 |
inc_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3101 |
print_depth(); tty->print(" %d (base) SWPointer::SWPointer: ", adr->in(AddPNode::Base)->_idx); adr->in(AddPNode::Base)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3102 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3103 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3104 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3105 |
void SWPointer::Tracer::ctor_3(Node* adr, int i) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3106 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3107 |
inc_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3108 |
Node* offset = adr->in(AddPNode::Offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3109 |
print_depth(); tty->print(" %d (offset) SWPointer::SWPointer: i = %d: ", offset->_idx, i); offset->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3110 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3111 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3112 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3113 |
void SWPointer::Tracer::ctor_4(Node* adr, int i) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3114 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3115 |
inc_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3116 |
print_depth(); tty->print(" %d (adr) SWPointer::SWPointer: i = %d: ", adr->_idx, i); adr->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3117 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3118 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3119 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3120 |
void SWPointer::Tracer::ctor_5(Node* adr, Node* base, int i) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3121 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3122 |
inc_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3123 |
if (base == adr) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3124 |
print_depth(); tty->print_cr(" \\ %d (adr) == %d (base) SWPointer::SWPointer: breaking analysis at i = %d", adr->_idx, base->_idx, i); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3125 |
} else if (!adr->is_AddP()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3126 |
print_depth(); tty->print_cr(" \\ %d (adr) is NOT Addp SWPointer::SWPointer: breaking analysis at i = %d", adr->_idx, i); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3127 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3128 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3129 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3130 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3131 |
void SWPointer::Tracer::ctor_6(Node* mem) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3132 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3133 |
//restore_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3134 |
print_depth(); tty->print_cr(" %d (adr) SWPointer::SWPointer: stop analysis", mem->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3135 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3136 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3137 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3138 |
void SWPointer::Tracer::invariant_1(Node *n, Node *n_c) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3139 |
if (_slp->do_vector_loop() && _slp->is_debug() && _slp->_lpt->is_member(_slp->_phase->get_loop(n_c)) != (int)_slp->in_bb(n)) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3140 |
int is_member = _slp->_lpt->is_member(_slp->_phase->get_loop(n_c)); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3141 |
int in_bb = _slp->in_bb(n); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3142 |
print_depth(); tty->print(" \\ "); tty->print_cr(" %d SWPointer::invariant conditions differ: n_c %d", n->_idx, n_c->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3143 |
print_depth(); tty->print(" \\ "); tty->print_cr("is_member %d, in_bb %d", is_member, in_bb); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3144 |
print_depth(); tty->print(" \\ "); n->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3145 |
print_depth(); tty->print(" \\ "); n_c->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3146 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3147 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3148 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3149 |
void SWPointer::Tracer::scaled_iv_plus_offset_1(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3150 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3151 |
print_depth(); tty->print(" %d SWPointer::scaled_iv_plus_offset testing node: ", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3152 |
n->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3153 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3154 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3155 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3156 |
void SWPointer::Tracer::scaled_iv_plus_offset_2(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3157 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3158 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv_plus_offset: PASSED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3159 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3160 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3161 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3162 |
void SWPointer::Tracer::scaled_iv_plus_offset_3(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3163 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3164 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv_plus_offset: PASSED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3165 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3166 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3167 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3168 |
void SWPointer::Tracer::scaled_iv_plus_offset_4(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3169 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3170 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv_plus_offset: Op_AddI PASSED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3171 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(1) is scaled_iv: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3172 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(2) is offset_plus_k: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3173 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3174 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3175 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3176 |
void SWPointer::Tracer::scaled_iv_plus_offset_5(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3177 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3178 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv_plus_offset: Op_AddI PASSED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3179 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(2) is scaled_iv: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3180 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(1) is offset_plus_k: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3181 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3182 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3183 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3184 |
void SWPointer::Tracer::scaled_iv_plus_offset_6(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3185 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3186 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv_plus_offset: Op_SubI PASSED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3187 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(1) is scaled_iv: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3188 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(2) is offset_plus_k: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3189 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3190 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3191 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3192 |
void SWPointer::Tracer::scaled_iv_plus_offset_7(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3193 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3194 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv_plus_offset: Op_SubI PASSED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3195 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(2) is scaled_iv: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3196 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv_plus_offset: in(1) is offset_plus_k: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3197 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3198 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3199 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3200 |
void SWPointer::Tracer::scaled_iv_plus_offset_8(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3201 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3202 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv_plus_offset: FAILED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3203 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3204 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3205 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3206 |
void SWPointer::Tracer::scaled_iv_1(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3207 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3208 |
print_depth(); tty->print(" %d SWPointer::scaled_iv: testing node: ", n->_idx); n->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3209 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3210 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3211 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3212 |
void SWPointer::Tracer::scaled_iv_2(Node* n, int scale) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3213 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3214 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: FAILED since another _scale has been detected before", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3215 |
print_depth(); tty->print_cr(" \\ SWPointer::scaled_iv: _scale (%d) != 0", scale); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3216 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3217 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3218 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3219 |
void SWPointer::Tracer::scaled_iv_3(Node* n, int scale) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3220 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3221 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: is iv, setting _scale = %d", n->_idx, scale); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3222 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3223 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3224 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3225 |
void SWPointer::Tracer::scaled_iv_4(Node* n, int scale) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3226 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3227 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: Op_MulI PASSED, setting _scale = %d", n->_idx, scale); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3228 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv: in(1) is iv: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3229 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv: in(2) is Con: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3230 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3231 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3232 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3233 |
void SWPointer::Tracer::scaled_iv_5(Node* n, int scale) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3234 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3235 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: Op_MulI PASSED, setting _scale = %d", n->_idx, scale); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3236 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv: in(2) is iv: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3237 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv: in(1) is Con: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3238 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3239 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3240 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3241 |
void SWPointer::Tracer::scaled_iv_6(Node* n, int scale) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3242 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3243 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: Op_LShiftI PASSED, setting _scale = %d", n->_idx, scale); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3244 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv: in(1) is iv: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3245 |
print_depth(); tty->print(" \\ %d SWPointer::scaled_iv: in(2) is Con: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3246 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3247 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3248 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3249 |
void SWPointer::Tracer::scaled_iv_7(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3250 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3251 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: Op_ConvI2L PASSED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3252 |
print_depth(); tty->print_cr(" \\ SWPointer::scaled_iv: in(1) %d is scaled_iv_plus_offset: ", n->in(1)->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3253 |
inc_depth(); inc_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3254 |
print_depth(); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3255 |
dec_depth(); dec_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3256 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3257 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3258 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3259 |
void SWPointer::Tracer::scaled_iv_8(Node* n, SWPointer* tmp) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3260 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3261 |
print_depth(); tty->print(" %d SWPointer::scaled_iv: Op_LShiftL, creating tmp SWPointer: ", n->_idx); tmp->print(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3262 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3263 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3264 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3265 |
void SWPointer::Tracer::scaled_iv_9(Node* n, int scale, int _offset, int mult) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3266 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3267 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: Op_LShiftL PASSED, setting _scale = %d, _offset = %d", n->_idx, scale, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3268 |
print_depth(); tty->print_cr(" \\ SWPointer::scaled_iv: in(1) %d is scaled_iv_plus_offset, in(2) %d used to get mult = %d: _scale = %d, _offset = %d", |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3269 |
n->in(1)->_idx, n->in(2)->_idx, mult, scale, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3270 |
inc_depth(); inc_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3271 |
print_depth(); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3272 |
print_depth(); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3273 |
dec_depth(); dec_depth(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3274 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3275 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3276 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3277 |
void SWPointer::Tracer::scaled_iv_10(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3278 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3279 |
print_depth(); tty->print_cr(" %d SWPointer::scaled_iv: FAILED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3280 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3281 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3282 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3283 |
void SWPointer::Tracer::offset_plus_k_1(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3284 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3285 |
print_depth(); tty->print(" %d SWPointer::offset_plus_k: testing node: ", n->_idx); n->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3286 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3287 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3288 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3289 |
void SWPointer::Tracer::offset_plus_k_2(Node* n, int _offset) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3290 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3291 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: Op_ConI PASSED, setting _offset = %d", n->_idx, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3292 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3293 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3294 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3295 |
void SWPointer::Tracer::offset_plus_k_3(Node* n, int _offset) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3296 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3297 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: Op_ConL PASSED, setting _offset = %d", n->_idx, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3298 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3299 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3300 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3301 |
void SWPointer::Tracer::offset_plus_k_4(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3302 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3303 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: FAILED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3304 |
print_depth(); tty->print_cr(" \\ " JLONG_FORMAT " SWPointer::offset_plus_k: Op_ConL FAILED, k is too big", n->get_long()); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3305 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3306 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3307 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3308 |
void SWPointer::Tracer::offset_plus_k_5(Node* n, Node* _invar) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3309 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3310 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: FAILED since another invariant has been detected before", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3311 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: _invar != NULL: ", _invar->_idx); _invar->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3312 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3313 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3314 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3315 |
void SWPointer::Tracer::offset_plus_k_6(Node* n, Node* _invar, bool _negate_invar, int _offset) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3316 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3317 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: Op_AddI PASSED, setting _negate_invar = %d, _invar = %d, _offset = %d", |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3318 |
n->_idx, _negate_invar, _invar->_idx, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3319 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(2) is Con: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3320 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(1) is invariant: ", _invar->_idx); _invar->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3321 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3322 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3323 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3324 |
void SWPointer::Tracer::offset_plus_k_7(Node* n, Node* _invar, bool _negate_invar, int _offset) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3325 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3326 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: Op_AddI PASSED, setting _negate_invar = %d, _invar = %d, _offset = %d", |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3327 |
n->_idx, _negate_invar, _invar->_idx, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3328 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(1) is Con: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3329 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(2) is invariant: ", _invar->_idx); _invar->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3330 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3331 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3332 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3333 |
void SWPointer::Tracer::offset_plus_k_8(Node* n, Node* _invar, bool _negate_invar, int _offset) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3334 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3335 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: Op_SubI is PASSED, setting _negate_invar = %d, _invar = %d, _offset = %d", |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3336 |
n->_idx, _negate_invar, _invar->_idx, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3337 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(2) is Con: ", n->in(2)->_idx); n->in(2)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3338 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(1) is invariant: ", _invar->_idx); _invar->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3339 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3340 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3341 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3342 |
void SWPointer::Tracer::offset_plus_k_9(Node* n, Node* _invar, bool _negate_invar, int _offset) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3343 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3344 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: Op_SubI PASSED, setting _negate_invar = %d, _invar = %d, _offset = %d", n->_idx, _negate_invar, _invar->_idx, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3345 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(1) is Con: ", n->in(1)->_idx); n->in(1)->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3346 |
print_depth(); tty->print(" \\ %d SWPointer::offset_plus_k: in(2) is invariant: ", _invar->_idx); _invar->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3347 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3348 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3349 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3350 |
void SWPointer::Tracer::offset_plus_k_10(Node* n, Node* _invar, bool _negate_invar, int _offset) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3351 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3352 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: PASSED, setting _negate_invar = %d, _invar = %d, _offset = %d", n->_idx, _negate_invar, _invar->_idx, _offset); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3353 |
print_depth(); tty->print_cr(" \\ %d SWPointer::offset_plus_k: is invariant", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3354 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3355 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3356 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3357 |
void SWPointer::Tracer::offset_plus_k_11(Node* n) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3358 |
if(_slp->is_trace_alignment()) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3359 |
print_depth(); tty->print_cr(" %d SWPointer::offset_plus_k: FAILED", n->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3360 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3361 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3362 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3363 |
#endif |
1 | 3364 |
// ========================= OrderedPair ===================== |
3365 |
||
3366 |
const OrderedPair OrderedPair::initial; |
|
3367 |
||
3368 |
// ========================= SWNodeInfo ===================== |
|
3369 |
||
3370 |
const SWNodeInfo SWNodeInfo::initial; |
|
3371 |
||
3372 |
||
3373 |
// ============================ DepGraph =========================== |
|
3374 |
||
3375 |
//------------------------------make_node--------------------------- |
|
3376 |
// Make a new dependence graph node for an ideal node. |
|
3377 |
DepMem* DepGraph::make_node(Node* node) { |
|
3378 |
DepMem* m = new (_arena) DepMem(node); |
|
3379 |
if (node != NULL) { |
|
3380 |
assert(_map.at_grow(node->_idx) == NULL, "one init only"); |
|
3381 |
_map.at_put_grow(node->_idx, m); |
|
3382 |
} |
|
3383 |
return m; |
|
3384 |
} |
|
3385 |
||
3386 |
//------------------------------make_edge--------------------------- |
|
3387 |
// Make a new dependence graph edge from dpred -> dsucc |
|
3388 |
DepEdge* DepGraph::make_edge(DepMem* dpred, DepMem* dsucc) { |
|
3389 |
DepEdge* e = new (_arena) DepEdge(dpred, dsucc, dsucc->in_head(), dpred->out_head()); |
|
3390 |
dpred->set_out_head(e); |
|
3391 |
dsucc->set_in_head(e); |
|
3392 |
return e; |
|
3393 |
} |
|
3394 |
||
3395 |
// ========================== DepMem ======================== |
|
3396 |
||
3397 |
//------------------------------in_cnt--------------------------- |
|
3398 |
int DepMem::in_cnt() { |
|
3399 |
int ct = 0; |
|
3400 |
for (DepEdge* e = _in_head; e != NULL; e = e->next_in()) ct++; |
|
3401 |
return ct; |
|
3402 |
} |
|
3403 |
||
3404 |
//------------------------------out_cnt--------------------------- |
|
3405 |
int DepMem::out_cnt() { |
|
3406 |
int ct = 0; |
|
3407 |
for (DepEdge* e = _out_head; e != NULL; e = e->next_out()) ct++; |
|
3408 |
return ct; |
|
3409 |
} |
|
3410 |
||
3411 |
//------------------------------print----------------------------- |
|
3412 |
void DepMem::print() { |
|
3413 |
#ifndef PRODUCT |
|
3414 |
tty->print(" DepNode %d (", _node->_idx); |
|
3415 |
for (DepEdge* p = _in_head; p != NULL; p = p->next_in()) { |
|
3416 |
Node* pred = p->pred()->node(); |
|
3417 |
tty->print(" %d", pred != NULL ? pred->_idx : 0); |
|
3418 |
} |
|
3419 |
tty->print(") ["); |
|
3420 |
for (DepEdge* s = _out_head; s != NULL; s = s->next_out()) { |
|
3421 |
Node* succ = s->succ()->node(); |
|
3422 |
tty->print(" %d", succ != NULL ? succ->_idx : 0); |
|
3423 |
} |
|
3424 |
tty->print_cr(" ]"); |
|
3425 |
#endif |
|
3426 |
} |
|
3427 |
||
3428 |
// =========================== DepEdge ========================= |
|
3429 |
||
3430 |
//------------------------------DepPreds--------------------------- |
|
3431 |
void DepEdge::print() { |
|
3432 |
#ifndef PRODUCT |
|
3433 |
tty->print_cr("DepEdge: %d [ %d ]", _pred->node()->_idx, _succ->node()->_idx); |
|
3434 |
#endif |
|
3435 |
} |
|
3436 |
||
3437 |
// =========================== DepPreds ========================= |
|
3438 |
// Iterator over predecessor edges in the dependence graph. |
|
3439 |
||
3440 |
//------------------------------DepPreds--------------------------- |
|
3441 |
DepPreds::DepPreds(Node* n, DepGraph& dg) { |
|
3442 |
_n = n; |
|
3443 |
_done = false; |
|
3444 |
if (_n->is_Store() || _n->is_Load()) { |
|
3445 |
_next_idx = MemNode::Address; |
|
3446 |
_end_idx = n->req(); |
|
3447 |
_dep_next = dg.dep(_n)->in_head(); |
|
3448 |
} else if (_n->is_Mem()) { |
|
3449 |
_next_idx = 0; |
|
3450 |
_end_idx = 0; |
|
3451 |
_dep_next = dg.dep(_n)->in_head(); |
|
3452 |
} else { |
|
3453 |
_next_idx = 1; |
|
3454 |
_end_idx = _n->req(); |
|
3455 |
_dep_next = NULL; |
|
3456 |
} |
|
3457 |
next(); |
|
3458 |
} |
|
3459 |
||
3460 |
//------------------------------next--------------------------- |
|
3461 |
void DepPreds::next() { |
|
3462 |
if (_dep_next != NULL) { |
|
3463 |
_current = _dep_next->pred()->node(); |
|
3464 |
_dep_next = _dep_next->next_in(); |
|
3465 |
} else if (_next_idx < _end_idx) { |
|
3466 |
_current = _n->in(_next_idx++); |
|
3467 |
} else { |
|
3468 |
_done = true; |
|
3469 |
} |
|
3470 |
} |
|
3471 |
||
3472 |
// =========================== DepSuccs ========================= |
|
3473 |
// Iterator over successor edges in the dependence graph. |
|
3474 |
||
3475 |
//------------------------------DepSuccs--------------------------- |
|
3476 |
DepSuccs::DepSuccs(Node* n, DepGraph& dg) { |
|
3477 |
_n = n; |
|
3478 |
_done = false; |
|
3479 |
if (_n->is_Load()) { |
|
3480 |
_next_idx = 0; |
|
3481 |
_end_idx = _n->outcnt(); |
|
3482 |
_dep_next = dg.dep(_n)->out_head(); |
|
3483 |
} else if (_n->is_Mem() || _n->is_Phi() && _n->bottom_type() == Type::MEMORY) { |
|
3484 |
_next_idx = 0; |
|
3485 |
_end_idx = 0; |
|
3486 |
_dep_next = dg.dep(_n)->out_head(); |
|
3487 |
} else { |
|
3488 |
_next_idx = 0; |
|
3489 |
_end_idx = _n->outcnt(); |
|
3490 |
_dep_next = NULL; |
|
3491 |
} |
|
3492 |
next(); |
|
3493 |
} |
|
3494 |
||
3495 |
//-------------------------------next--------------------------- |
|
3496 |
void DepSuccs::next() { |
|
3497 |
if (_dep_next != NULL) { |
|
3498 |
_current = _dep_next->succ()->node(); |
|
3499 |
_dep_next = _dep_next->next_out(); |
|
3500 |
} else if (_next_idx < _end_idx) { |
|
3501 |
_current = _n->raw_out(_next_idx++); |
|
3502 |
} else { |
|
3503 |
_done = true; |
|
3504 |
} |
|
3505 |
} |
|
30593 | 3506 |
|
3507 |
// |
|
3508 |
// --------------------------------- vectorization/simd ----------------------------------- |
|
3509 |
// |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3510 |
bool SuperWord::same_origin_idx(Node* a, Node* b) const { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3511 |
return a != NULL && b != NULL && _clone_map.same_idx(a->_idx, b->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3512 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3513 |
bool SuperWord::same_generation(Node* a, Node* b) const { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3514 |
return a != NULL && b != NULL && _clone_map.same_gen(a->_idx, b->_idx); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3515 |
} |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3516 |
|
30593 | 3517 |
Node* SuperWord::find_phi_for_mem_dep(LoadNode* ld) { |
3518 |
assert(in_bb(ld), "must be in block"); |
|
3519 |
if (_clone_map.gen(ld->_idx) == _ii_first) { |
|
3520 |
#ifndef PRODUCT |
|
3521 |
if (_vector_loop_debug) { |
|
3522 |
tty->print_cr("SuperWord::find_phi_for_mem_dep _clone_map.gen(ld->_idx)=%d", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3523 |
_clone_map.gen(ld->_idx)); |
30593 | 3524 |
} |
3525 |
#endif |
|
3526 |
return NULL; //we think that any ld in the first gen being vectorizable |
|
3527 |
} |
|
3528 |
||
3529 |
Node* mem = ld->in(MemNode::Memory); |
|
3530 |
if (mem->outcnt() <= 1) { |
|
3531 |
// we don't want to remove the only edge from mem node to load |
|
3532 |
#ifndef PRODUCT |
|
3533 |
if (_vector_loop_debug) { |
|
3534 |
tty->print_cr("SuperWord::find_phi_for_mem_dep input node %d to load %d has no other outputs and edge mem->load cannot be removed", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3535 |
mem->_idx, ld->_idx); |
30593 | 3536 |
ld->dump(); |
3537 |
mem->dump(); |
|
3538 |
} |
|
3539 |
#endif |
|
3540 |
return NULL; |
|
3541 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3542 |
if (!in_bb(mem) || same_generation(mem, ld)) { |
30593 | 3543 |
#ifndef PRODUCT |
3544 |
if (_vector_loop_debug) { |
|
3545 |
tty->print_cr("SuperWord::find_phi_for_mem_dep _clone_map.gen(mem->_idx)=%d", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3546 |
_clone_map.gen(mem->_idx)); |
30593 | 3547 |
} |
3548 |
#endif |
|
3549 |
return NULL; // does not depend on loop volatile node or depends on the same generation |
|
3550 |
} |
|
3551 |
||
3552 |
//otherwise first node should depend on mem-phi |
|
3553 |
Node* first = first_node(ld); |
|
3554 |
assert(first->is_Load(), "must be Load"); |
|
3555 |
Node* phi = first->as_Load()->in(MemNode::Memory); |
|
3556 |
if (!phi->is_Phi() || phi->bottom_type() != Type::MEMORY) { |
|
3557 |
#ifndef PRODUCT |
|
3558 |
if (_vector_loop_debug) { |
|
3559 |
tty->print_cr("SuperWord::find_phi_for_mem_dep load is not vectorizable node, since it's `first` does not take input from mem phi"); |
|
3560 |
ld->dump(); |
|
3561 |
first->dump(); |
|
3562 |
} |
|
3563 |
#endif |
|
3564 |
return NULL; |
|
3565 |
} |
|
3566 |
||
3567 |
Node* tail = 0; |
|
3568 |
for (int m = 0; m < _mem_slice_head.length(); m++) { |
|
3569 |
if (_mem_slice_head.at(m) == phi) { |
|
3570 |
tail = _mem_slice_tail.at(m); |
|
3571 |
} |
|
3572 |
} |
|
3573 |
if (tail == 0) { //test that found phi is in the list _mem_slice_head |
|
3574 |
#ifndef PRODUCT |
|
3575 |
if (_vector_loop_debug) { |
|
3576 |
tty->print_cr("SuperWord::find_phi_for_mem_dep load %d is not vectorizable node, its phi %d is not _mem_slice_head", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3577 |
ld->_idx, phi->_idx); |
30593 | 3578 |
ld->dump(); |
3579 |
phi->dump(); |
|
3580 |
} |
|
3581 |
#endif |
|
3582 |
return NULL; |
|
3583 |
} |
|
3584 |
||
3585 |
// now all conditions are met |
|
3586 |
return phi; |
|
3587 |
} |
|
3588 |
||
3589 |
Node* SuperWord::first_node(Node* nd) { |
|
3590 |
for (int ii = 0; ii < _iteration_first.length(); ii++) { |
|
3591 |
Node* nnn = _iteration_first.at(ii); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3592 |
if (same_origin_idx(nnn, nd)) { |
30593 | 3593 |
#ifndef PRODUCT |
3594 |
if (_vector_loop_debug) { |
|
3595 |
tty->print_cr("SuperWord::first_node: %d is the first iteration node for %d (_clone_map.idx(nnn->_idx) = %d)", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3596 |
nnn->_idx, nd->_idx, _clone_map.idx(nnn->_idx)); |
30593 | 3597 |
} |
3598 |
#endif |
|
3599 |
return nnn; |
|
3600 |
} |
|
3601 |
} |
|
3602 |
||
3603 |
#ifndef PRODUCT |
|
3604 |
if (_vector_loop_debug) { |
|
3605 |
tty->print_cr("SuperWord::first_node: did not find first iteration node for %d (_clone_map.idx(nd->_idx)=%d)", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3606 |
nd->_idx, _clone_map.idx(nd->_idx)); |
30593 | 3607 |
} |
3608 |
#endif |
|
3609 |
return 0; |
|
3610 |
} |
|
3611 |
||
3612 |
Node* SuperWord::last_node(Node* nd) { |
|
3613 |
for (int ii = 0; ii < _iteration_last.length(); ii++) { |
|
3614 |
Node* nnn = _iteration_last.at(ii); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3615 |
if (same_origin_idx(nnn, nd)) { |
30593 | 3616 |
#ifndef PRODUCT |
3617 |
if (_vector_loop_debug) { |
|
3618 |
tty->print_cr("SuperWord::last_node _clone_map.idx(nnn->_idx)=%d, _clone_map.idx(nd->_idx)=%d", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3619 |
_clone_map.idx(nnn->_idx), _clone_map.idx(nd->_idx)); |
30593 | 3620 |
} |
3621 |
#endif |
|
3622 |
return nnn; |
|
3623 |
} |
|
3624 |
} |
|
3625 |
return 0; |
|
3626 |
} |
|
3627 |
||
3628 |
int SuperWord::mark_generations() { |
|
3629 |
Node *ii_err = 0, *tail_err; |
|
3630 |
for (int i = 0; i < _mem_slice_head.length(); i++) { |
|
3631 |
Node* phi = _mem_slice_head.at(i); |
|
3632 |
assert(phi->is_Phi(), "must be phi"); |
|
3633 |
||
3634 |
Node* tail = _mem_slice_tail.at(i); |
|
3635 |
if (_ii_last == -1) { |
|
3636 |
tail_err = tail; |
|
3637 |
_ii_last = _clone_map.gen(tail->_idx); |
|
3638 |
} |
|
3639 |
else if (_ii_last != _clone_map.gen(tail->_idx)) { |
|
3640 |
#ifndef PRODUCT |
|
3641 |
if (TraceSuperWord && Verbose) { |
|
3642 |
tty->print_cr("SuperWord::mark_generations _ii_last error - found different generations in two tail nodes "); |
|
3643 |
tail->dump(); |
|
3644 |
tail_err->dump(); |
|
3645 |
} |
|
3646 |
#endif |
|
3647 |
return -1; |
|
3648 |
} |
|
3649 |
||
3650 |
// find first iteration in the loop |
|
3651 |
for (DUIterator_Fast imax, i = phi->fast_outs(imax); i < imax; i++) { |
|
3652 |
Node* ii = phi->fast_out(i); |
|
3653 |
if (in_bb(ii) && ii->is_Store()) { // we speculate that normally Stores of one and one only generation have deps from mem phi |
|
3654 |
if (_ii_first == -1) { |
|
3655 |
ii_err = ii; |
|
3656 |
_ii_first = _clone_map.gen(ii->_idx); |
|
3657 |
} else if (_ii_first != _clone_map.gen(ii->_idx)) { |
|
3658 |
#ifndef PRODUCT |
|
3659 |
if (TraceSuperWord && Verbose) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3660 |
tty->print_cr("SuperWord::mark_generations: _ii_first was found before and not equal to one in this node (%d)", _ii_first); |
30593 | 3661 |
ii->dump(); |
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3662 |
if (ii_err!= 0) { |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3663 |
ii_err->dump(); |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3664 |
} |
30593 | 3665 |
} |
3666 |
#endif |
|
3667 |
return -1; // this phi has Stores from different generations of unroll and cannot be simd/vectorized |
|
3668 |
} |
|
3669 |
} |
|
3670 |
}//for (DUIterator_Fast imax, |
|
3671 |
}//for (int i... |
|
3672 |
||
3673 |
if (_ii_first == -1 || _ii_last == -1) { |
|
3674 |
#ifndef PRODUCT |
|
3675 |
if (TraceSuperWord && Verbose) { |
|
3676 |
tty->print_cr("SuperWord::mark_generations unknown error, something vent wrong"); |
|
3677 |
} |
|
3678 |
#endif |
|
3679 |
return -1; // something vent wrong |
|
3680 |
} |
|
3681 |
// collect nodes in the first and last generations |
|
3682 |
assert(_iteration_first.length() == 0, "_iteration_first must be empty"); |
|
3683 |
assert(_iteration_last.length() == 0, "_iteration_last must be empty"); |
|
3684 |
for (int j = 0; j < _block.length(); j++) { |
|
3685 |
Node* n = _block.at(j); |
|
3686 |
node_idx_t gen = _clone_map.gen(n->_idx); |
|
3687 |
if ((signed)gen == _ii_first) { |
|
3688 |
_iteration_first.push(n); |
|
3689 |
} else if ((signed)gen == _ii_last) { |
|
3690 |
_iteration_last.push(n); |
|
3691 |
} |
|
3692 |
} |
|
3693 |
||
3694 |
// building order of iterations |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3695 |
if (_ii_order.length() == 0 && ii_err != 0) { |
30593 | 3696 |
assert(in_bb(ii_err) && ii_err->is_Store(), "should be Store in bb"); |
3697 |
Node* nd = ii_err; |
|
3698 |
while(_clone_map.gen(nd->_idx) != _ii_last) { |
|
3699 |
_ii_order.push(_clone_map.gen(nd->_idx)); |
|
3700 |
bool found = false; |
|
3701 |
for (DUIterator_Fast imax, i = nd->fast_outs(imax); i < imax; i++) { |
|
3702 |
Node* use = nd->fast_out(i); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3703 |
if (same_origin_idx(use, nd) && use->as_Store()->in(MemNode::Memory) == nd) { |
30593 | 3704 |
found = true; |
3705 |
nd = use; |
|
3706 |
break; |
|
3707 |
} |
|
3708 |
}//for |
|
3709 |
||
3710 |
if (found == false) { |
|
3711 |
#ifndef PRODUCT |
|
3712 |
if (TraceSuperWord && Verbose) { |
|
3713 |
tty->print_cr("SuperWord::mark_generations: Cannot build order of iterations - no dependent Store for %d", nd->_idx); |
|
3714 |
} |
|
3715 |
#endif |
|
3716 |
_ii_order.clear(); |
|
3717 |
return -1; |
|
3718 |
} |
|
3719 |
} //while |
|
3720 |
_ii_order.push(_clone_map.gen(nd->_idx)); |
|
3721 |
} |
|
3722 |
||
3723 |
#ifndef PRODUCT |
|
3724 |
if (_vector_loop_debug) { |
|
3725 |
tty->print_cr("SuperWord::mark_generations"); |
|
3726 |
tty->print_cr("First generation (%d) nodes:", _ii_first); |
|
3727 |
for (int ii = 0; ii < _iteration_first.length(); ii++) _iteration_first.at(ii)->dump(); |
|
3728 |
tty->print_cr("Last generation (%d) nodes:", _ii_last); |
|
3729 |
for (int ii = 0; ii < _iteration_last.length(); ii++) _iteration_last.at(ii)->dump(); |
|
3730 |
tty->print_cr(" "); |
|
3731 |
||
3732 |
tty->print("SuperWord::List of generations: "); |
|
3733 |
for (int jj = 0; jj < _ii_order.length(); ++jj) { |
|
3734 |
tty->print("%d:%d ", jj, _ii_order.at(jj)); |
|
3735 |
} |
|
3736 |
tty->print_cr(" "); |
|
3737 |
} |
|
3738 |
#endif |
|
3739 |
||
3740 |
return _ii_first; |
|
3741 |
} |
|
3742 |
||
3743 |
bool SuperWord::fix_commutative_inputs(Node* gold, Node* fix) { |
|
3744 |
assert(gold->is_Add() && fix->is_Add() || gold->is_Mul() && fix->is_Mul(), "should be only Add or Mul nodes"); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3745 |
assert(same_origin_idx(gold, fix), "should be clones of the same node"); |
30593 | 3746 |
Node* gin1 = gold->in(1); |
3747 |
Node* gin2 = gold->in(2); |
|
3748 |
Node* fin1 = fix->in(1); |
|
3749 |
Node* fin2 = fix->in(2); |
|
3750 |
bool swapped = false; |
|
3751 |
||
3752 |
if (in_bb(gin1) && in_bb(gin2) && in_bb(fin1) && in_bb(fin1)) { |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3753 |
if (same_origin_idx(gin1, fin1) && |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3754 |
same_origin_idx(gin2, fin2)) { |
30593 | 3755 |
return true; // nothing to fix |
3756 |
} |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3757 |
if (same_origin_idx(gin1, fin2) && |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3758 |
same_origin_idx(gin2, fin1)) { |
30593 | 3759 |
fix->swap_edges(1, 2); |
3760 |
swapped = true; |
|
3761 |
} |
|
3762 |
} |
|
3763 |
// at least one input comes from outside of bb |
|
3764 |
if (gin1->_idx == fin1->_idx) { |
|
3765 |
return true; // nothing to fix |
|
3766 |
} |
|
3767 |
if (!swapped && (gin1->_idx == fin2->_idx || gin2->_idx == fin1->_idx)) { //swapping is expensive, check condition first |
|
3768 |
fix->swap_edges(1, 2); |
|
3769 |
swapped = true; |
|
3770 |
} |
|
3771 |
||
3772 |
if (swapped) { |
|
3773 |
#ifndef PRODUCT |
|
3774 |
if (_vector_loop_debug) { |
|
3775 |
tty->print_cr("SuperWord::fix_commutative_inputs: fixed node %d", fix->_idx); |
|
3776 |
} |
|
3777 |
#endif |
|
3778 |
return true; |
|
3779 |
} |
|
3780 |
||
3781 |
#ifndef PRODUCT |
|
3782 |
if (TraceSuperWord && Verbose) { |
|
3783 |
tty->print_cr("SuperWord::fix_commutative_inputs: cannot fix node %d", fix->_idx); |
|
3784 |
} |
|
3785 |
#endif |
|
3786 |
return false; |
|
3787 |
} |
|
3788 |
||
3789 |
bool SuperWord::pack_parallel() { |
|
3790 |
#ifndef PRODUCT |
|
3791 |
if (_vector_loop_debug) { |
|
3792 |
tty->print_cr("SuperWord::pack_parallel: START"); |
|
3793 |
} |
|
3794 |
#endif |
|
3795 |
||
3796 |
_packset.clear(); |
|
3797 |
||
3798 |
for (int ii = 0; ii < _iteration_first.length(); ii++) { |
|
3799 |
Node* nd = _iteration_first.at(ii); |
|
3800 |
if (in_bb(nd) && (nd->is_Load() || nd->is_Store() || nd->is_Add() || nd->is_Mul())) { |
|
3801 |
Node_List* pk = new Node_List(); |
|
3802 |
pk->push(nd); |
|
3803 |
for (int gen = 1; gen < _ii_order.length(); ++gen) { |
|
3804 |
for (int kk = 0; kk < _block.length(); kk++) { |
|
3805 |
Node* clone = _block.at(kk); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3806 |
if (same_origin_idx(clone, nd) && |
30593 | 3807 |
_clone_map.gen(clone->_idx) == _ii_order.at(gen)) { |
3808 |
if (nd->is_Add() || nd->is_Mul()) { |
|
3809 |
fix_commutative_inputs(nd, clone); |
|
3810 |
} |
|
3811 |
pk->push(clone); |
|
3812 |
if (pk->size() == 4) { |
|
3813 |
_packset.append(pk); |
|
3814 |
#ifndef PRODUCT |
|
3815 |
if (_vector_loop_debug) { |
|
3816 |
tty->print_cr("SuperWord::pack_parallel: added pack "); |
|
3817 |
pk->dump(); |
|
3818 |
} |
|
3819 |
#endif |
|
3820 |
if (_clone_map.gen(clone->_idx) != _ii_last) { |
|
3821 |
pk = new Node_List(); |
|
3822 |
} |
|
3823 |
} |
|
3824 |
break; |
|
3825 |
} |
|
3826 |
} |
|
3827 |
}//for |
|
3828 |
}//if |
|
3829 |
}//for |
|
3830 |
||
3831 |
#ifndef PRODUCT |
|
3832 |
if (_vector_loop_debug) { |
|
3833 |
tty->print_cr("SuperWord::pack_parallel: END"); |
|
3834 |
} |
|
3835 |
#endif |
|
3836 |
||
3837 |
return true; |
|
3838 |
} |
|
3839 |
||
3840 |
bool SuperWord::hoist_loads_in_graph() { |
|
3841 |
GrowableArray<Node*> loads; |
|
3842 |
||
3843 |
#ifndef PRODUCT |
|
3844 |
if (_vector_loop_debug) { |
|
3845 |
tty->print_cr("SuperWord::hoist_loads_in_graph: total number _mem_slice_head.length() = %d", _mem_slice_head.length()); |
|
3846 |
} |
|
3847 |
#endif |
|
3848 |
||
3849 |
for (int i = 0; i < _mem_slice_head.length(); i++) { |
|
3850 |
Node* n = _mem_slice_head.at(i); |
|
3851 |
if ( !in_bb(n) || !n->is_Phi() || n->bottom_type() != Type::MEMORY) { |
|
3852 |
#ifndef PRODUCT |
|
3853 |
if (TraceSuperWord && Verbose) { |
|
3854 |
tty->print_cr("SuperWord::hoist_loads_in_graph: skipping unexpected node n=%d", n->_idx); |
|
3855 |
} |
|
3856 |
#endif |
|
3857 |
continue; |
|
3858 |
} |
|
3859 |
||
3860 |
#ifndef PRODUCT |
|
3861 |
if (_vector_loop_debug) { |
|
3862 |
tty->print_cr("SuperWord::hoist_loads_in_graph: processing phi %d = _mem_slice_head.at(%d);", n->_idx, i); |
|
3863 |
} |
|
3864 |
#endif |
|
3865 |
||
3866 |
for (DUIterator_Fast imax, i = n->fast_outs(imax); i < imax; i++) { |
|
3867 |
Node* ld = n->fast_out(i); |
|
3868 |
if (ld->is_Load() && ld->as_Load()->in(MemNode::Memory) == n && in_bb(ld)) { |
|
3869 |
for (int i = 0; i < _block.length(); i++) { |
|
3870 |
Node* ld2 = _block.at(i); |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3871 |
if (ld2->is_Load() && same_origin_idx(ld, ld2) && |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3872 |
!same_generation(ld, ld2)) { // <= do not collect the first generation ld |
30593 | 3873 |
#ifndef PRODUCT |
3874 |
if (_vector_loop_debug) { |
|
3875 |
tty->print_cr("SuperWord::hoist_loads_in_graph: will try to hoist load ld2->_idx=%d, cloned from %d (ld->_idx=%d)", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3876 |
ld2->_idx, _clone_map.idx(ld->_idx), ld->_idx); |
30593 | 3877 |
} |
3878 |
#endif |
|
3879 |
// could not do on-the-fly, since iterator is immutable |
|
3880 |
loads.push(ld2); |
|
3881 |
} |
|
3882 |
}// for |
|
3883 |
}//if |
|
3884 |
}//for (DUIterator_Fast imax, |
|
3885 |
}//for (int i = 0; i |
|
3886 |
||
3887 |
for (int i = 0; i < loads.length(); i++) { |
|
3888 |
LoadNode* ld = loads.at(i)->as_Load(); |
|
3889 |
Node* phi = find_phi_for_mem_dep(ld); |
|
3890 |
if (phi != NULL) { |
|
3891 |
#ifndef PRODUCT |
|
3892 |
if (_vector_loop_debug) { |
|
3893 |
tty->print_cr("SuperWord::hoist_loads_in_graph replacing MemNode::Memory(%d) edge in %d with one from %d", |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
31772
diff
changeset
|
3894 |
MemNode::Memory, ld->_idx, phi->_idx); |
30593 | 3895 |
} |
3896 |
#endif |
|
3897 |
_igvn.replace_input_of(ld, MemNode::Memory, phi); |
|
3898 |
} |
|
3899 |
}//for |
|
3900 |
||
3901 |
restart(); // invalidate all basic structures, since we rebuilt the graph |
|
3902 |
||
3903 |
#ifndef PRODUCT |
|
3904 |
if (TraceSuperWord && Verbose) { |
|
3905 |
tty->print_cr("\nSuperWord::hoist_loads_in_graph() the graph was rebuilt, all structures invalidated and need rebuild"); |
|
3906 |
} |
|
3907 |
#endif |
|
3908 |
return true; |
|
3909 |
} |
|
3910 |