Skip to content

Commit d7b5cb6

Browse files
author
Vladimir Kozlov
committedJul 28, 2021
8271368: [BACKOUT] JDK-8266054 VectorAPI rotate operation optimization
Reviewed-by: dholmes, iklam
1 parent ecd4455 commit d7b5cb6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+219
-4380
lines changed
 

‎src/hotspot/cpu/aarch64/matcher_aarch64.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,6 @@
138138
return false;
139139
}
140140

141-
// Does the CPU supports vector constant rotate instructions?
142-
static constexpr bool supports_vector_constant_rotates(int shift) {
143-
return false;
144-
}
145-
146141
// Does the CPU supports vector unsigned comparison instructions?
147142
static const bool supports_vector_comparison_unsigned(int vlen, BasicType bt) {
148143
// Not supported on SVE yet.

‎src/hotspot/cpu/arm/matcher_arm.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,6 @@
131131
return false; // not supported
132132
}
133133

134-
// Does the CPU supports vector constant rotate instructions?
135-
static constexpr bool supports_vector_constant_rotates(int shift) {
136-
return false;
137-
}
138-
139134
// Does the CPU supports vector unsigned comparison instructions?
140135
static constexpr bool supports_vector_comparison_unsigned(int vlen, BasicType bt) {
141136
return false;

0 commit comments

Comments
 (0)