Skip to content

Commit 026b09c

Browse files
Dong BoRealFYang
Dong Bo
authored andcommittedDec 10, 2020
8257483: C2: Split immediate vector rotate from RotateLeftV and RotateRightV nodes
Reviewed-by: vlivanov
1 parent 0a0691e commit 026b09c

File tree

7 files changed

+27
-2
lines changed

7 files changed

+27
-2
lines changed
 

‎src/hotspot/cpu/aarch64/aarch64.ad

+4
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,10 @@ bool Matcher::supports_vector_variable_shifts(void) {
24372437
return true;
24382438
}
24392439

2440+
bool Matcher::supports_vector_variable_rotates(void) {
2441+
return false; // not supported
2442+
}
2443+
24402444
const int Matcher::float_pressure(int default_pressure_threshold) {
24412445
return default_pressure_threshold;
24422446
}

‎src/hotspot/cpu/arm/arm.ad

+4
Original file line numberDiff line numberDiff line change
@@ -997,6 +997,10 @@ bool Matcher::supports_vector_variable_shifts(void) {
997997
return VM_Version::has_simd();
998998
}
999999

1000+
bool Matcher::supports_vector_variable_rotates(void) {
1001+
return false; // not supported
1002+
}
1003+
10001004
const int Matcher::float_pressure(int default_pressure_threshold) {
10011005
return default_pressure_threshold;
10021006
}

‎src/hotspot/cpu/ppc/ppc.ad

+4
Original file line numberDiff line numberDiff line change
@@ -2155,6 +2155,10 @@ bool Matcher::supports_vector_variable_shifts(void) {
21552155
return false; // not supported
21562156
}
21572157

2158+
bool Matcher::supports_vector_variable_rotates(void) {
2159+
return false; // not supported
2160+
}
2161+
21582162
const int Matcher::float_pressure(int default_pressure_threshold) {
21592163
return default_pressure_threshold;
21602164
}

‎src/hotspot/cpu/s390/s390.ad

+4
Original file line numberDiff line numberDiff line change
@@ -1550,6 +1550,10 @@ bool Matcher::supports_vector_variable_shifts(void) {
15501550
return false; // not supported
15511551
}
15521552

1553+
bool Matcher::supports_vector_variable_rotates(void) {
1554+
return false; // not supported
1555+
}
1556+
15531557
const int Matcher::float_pressure(int default_pressure_threshold) {
15541558
return default_pressure_threshold;
15551559
}

‎src/hotspot/cpu/x86/x86.ad

+4
Original file line numberDiff line numberDiff line change
@@ -1814,6 +1814,10 @@ bool Matcher::supports_vector_variable_shifts(void) {
18141814
return (UseAVX >= 2);
18151815
}
18161816

1817+
bool Matcher::supports_vector_variable_rotates(void) {
1818+
return true;
1819+
}
1820+
18171821
const bool Matcher::has_predicated_vectors(void) {
18181822
bool ret_value = false;
18191823
if (UseAVX > 2) {

‎src/hotspot/share/opto/matcher.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,9 @@ class Matcher : public PhaseTransform {
348348
// Does the CPU supports vector variable shift instructions?
349349
static bool supports_vector_variable_shifts(void);
350350

351+
// Does the CPU supports vector vairable rotate instructions?
352+
static bool supports_vector_variable_rotates(void);
353+
351354
// CPU supports misaligned vectors store/load.
352355
static const bool misaligned_vectors_ok();
353356

‎src/hotspot/share/opto/vectornode.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,8 @@ Node* VectorNode::degenerate_vector_rotate(Node* src, Node* cnt, bool is_rotate_
11721172
Node* RotateLeftVNode::Ideal(PhaseGVN* phase, bool can_reshape) {
11731173
int vlen = length();
11741174
BasicType bt = vect_type()->element_basic_type();
1175-
if (!Matcher::match_rule_supported_vector(Op_RotateLeftV, vlen, bt)) {
1175+
if ((!in(2)->is_Con() && !Matcher::supports_vector_variable_rotates()) ||
1176+
!Matcher::match_rule_supported_vector(Op_RotateLeftV, vlen, bt)) {
11761177
return VectorNode::degenerate_vector_rotate(in(1), in(2), true, vlen, bt, phase);
11771178
}
11781179
return NULL;
@@ -1181,7 +1182,8 @@ Node* RotateLeftVNode::Ideal(PhaseGVN* phase, bool can_reshape) {
11811182
Node* RotateRightVNode::Ideal(PhaseGVN* phase, bool can_reshape) {
11821183
int vlen = length();
11831184
BasicType bt = vect_type()->element_basic_type();
1184-
if (!Matcher::match_rule_supported_vector(Op_RotateRightV, vlen, bt)) {
1185+
if ((!in(2)->is_Con() && !Matcher::supports_vector_variable_rotates()) ||
1186+
!Matcher::match_rule_supported_vector(Op_RotateRightV, vlen, bt)) {
11851187
return VectorNode::degenerate_vector_rotate(in(1), in(2), false, vlen, bt, phase);
11861188
}
11871189
return NULL;

0 commit comments

Comments
 (0)
Please sign in to comment.