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