@@ -198,16 +198,6 @@ bool SuperWord::transform_loop(IdealLoopTree* lpt, bool do_optimization) {
198
198
return success;
199
199
}
200
200
201
- // ------------------------------max vector size------------------------------
202
- int SuperWord::max_vector_size (BasicType bt) {
203
- int max_vector = Matcher::max_vector_size (bt);
204
- int sw_max_vector_limit = SuperWordMaxVectorSize / type2aelembytes (bt);
205
- if (max_vector > sw_max_vector_limit) {
206
- max_vector = sw_max_vector_limit;
207
- }
208
- return max_vector;
209
- }
210
-
211
201
// ------------------------------early unrolling analysis------------------------------
212
202
void SuperWord::unrolling_analysis (int &local_loop_unroll_factor) {
213
203
bool is_slp = true ;
@@ -226,7 +216,7 @@ void SuperWord::unrolling_analysis(int &local_loop_unroll_factor) {
226
216
ignored_loop_nodes[i] = -1 ;
227
217
}
228
218
229
- int max_vector = max_vector_size (T_BYTE);
219
+ int max_vector = Matcher::superword_max_vector_size (T_BYTE);
230
220
231
221
// Process the loop, some/all of the stack entries will not be in order, ergo
232
222
// need to preprocess the ignored initial state before we process the loop
@@ -361,7 +351,7 @@ void SuperWord::unrolling_analysis(int &local_loop_unroll_factor) {
361
351
362
352
if (is_java_primitive (bt) == false ) continue ;
363
353
364
- int cur_max_vector = max_vector_size (bt);
354
+ int cur_max_vector = Matcher::superword_max_vector_size (bt);
365
355
366
356
// If a max vector exists which is not larger than _local_loop_unroll_factor
367
357
// stop looking, we already have the max vector to map to.
@@ -1054,13 +1044,13 @@ int SuperWord::get_vw_bytes_special(MemNode* s) {
1054
1044
}
1055
1045
}
1056
1046
if (should_combine_adjacent) {
1057
- vw = MIN2 (max_vector_size (btype)*type2aelembytes (btype), vw * 2 );
1047
+ vw = MIN2 (Matcher::superword_max_vector_size (btype)*type2aelembytes (btype), vw * 2 );
1058
1048
}
1059
1049
}
1060
1050
1061
1051
// Check for special case where there is a type conversion between different data size.
1062
1052
int vectsize = max_vector_size_in_def_use_chain (s);
1063
- if (vectsize < max_vector_size (btype)) {
1053
+ if (vectsize < Matcher::superword_max_vector_size (btype)) {
1064
1054
vw = MIN2 (vectsize * type2aelembytes (btype), vw);
1065
1055
}
1066
1056
@@ -1254,8 +1244,8 @@ bool SuperWord::stmts_can_pack(Node* s1, Node* s2, int align) {
1254
1244
if (!is_java_primitive (bt1) || !is_java_primitive (bt2))
1255
1245
return false ;
1256
1246
BasicType longer_bt = longer_type_for_conversion (s1);
1257
- if (max_vector_size (bt1) < 2 ||
1258
- (longer_bt != T_ILLEGAL && max_vector_size (longer_bt) < 2 )) {
1247
+ if (Matcher::superword_max_vector_size (bt1) < 2 ||
1248
+ (longer_bt != T_ILLEGAL && Matcher::superword_max_vector_size (longer_bt) < 2 )) {
1259
1249
return false ; // No vectors for this type
1260
1250
}
1261
1251
@@ -3669,10 +3659,10 @@ int SuperWord::max_vector_size_in_def_use_chain(Node* n) {
3669
3659
vt = (newt == T_ILLEGAL) ? vt : newt;
3670
3660
}
3671
3661
3672
- int max = max_vector_size (vt);
3662
+ int max = Matcher::superword_max_vector_size (vt);
3673
3663
// If now there is no vectors for the longest type, the nodes with the longest
3674
3664
// type in the def-use chain are not packed in SuperWord::stmts_can_pack.
3675
- return max < 2 ? max_vector_size (bt) : max;
3665
+ return max < 2 ? Matcher::superword_max_vector_size (bt) : max;
3676
3666
}
3677
3667
3678
3668
// -------------------------compute_vector_element_type-----------------------
0 commit comments