@@ -2285,7 +2285,7 @@ int HandlerImpl::emit_deopt_handler(CodeBuffer& cbuf)
2285
2285
2286
2286
//=============================================================================
2287
2287
2288
- const bool Matcher::match_rule_supported(int opcode) {
2288
+ bool Matcher::match_rule_supported(int opcode) {
2289
2289
if (!has_match_rule(opcode))
2290
2290
return false;
2291
2291
@@ -2320,7 +2320,7 @@ const TypeVectMask* Matcher::predicate_reg_type(const Type* elemTy, int length)
2320
2320
}
2321
2321
2322
2322
// Vector calling convention not yet implemented.
2323
- const bool Matcher::supports_vector_calling_convention(void) {
2323
+ bool Matcher::supports_vector_calling_convention(void) {
2324
2324
return false;
2325
2325
}
2326
2326
@@ -2340,7 +2340,7 @@ bool Matcher::is_short_branch_offset(int rule, int br_size, int offset) {
2340
2340
}
2341
2341
2342
2342
// Vector width in bytes.
2343
- const int Matcher::vector_width_in_bytes(BasicType bt) {
2343
+ int Matcher::vector_width_in_bytes(BasicType bt) {
2344
2344
// The MaxVectorSize should have been set by detecting SVE max vector register size.
2345
2345
int size = MIN2((UseSVE > 0) ? 256 : 16, (int)MaxVectorSize);
2346
2346
// Minimum 2 values in vector
@@ -2351,11 +2351,11 @@ const int Matcher::vector_width_in_bytes(BasicType bt) {
2351
2351
}
2352
2352
2353
2353
// Limits on vector size (number of elements) loaded into vector.
2354
- const int Matcher::max_vector_size(const BasicType bt) {
2354
+ int Matcher::max_vector_size(const BasicType bt) {
2355
2355
return vector_width_in_bytes(bt)/type2aelembytes(bt);
2356
2356
}
2357
2357
2358
- const int Matcher::min_vector_size(const BasicType bt) {
2358
+ int Matcher::min_vector_size(const BasicType bt) {
2359
2359
int max_size = max_vector_size(bt);
2360
2360
// Limit the min vector size to 8 bytes.
2361
2361
int size = 8 / type2aelembytes(bt);
@@ -2370,17 +2370,17 @@ const int Matcher::min_vector_size(const BasicType bt) {
2370
2370
return MIN2(size, max_size);
2371
2371
}
2372
2372
2373
- const int Matcher::superword_max_vector_size(const BasicType bt) {
2373
+ int Matcher::superword_max_vector_size(const BasicType bt) {
2374
2374
return Matcher::max_vector_size(bt);
2375
2375
}
2376
2376
2377
2377
// Actual max scalable vector register length.
2378
- const int Matcher::scalable_vector_reg_size(const BasicType bt) {
2378
+ int Matcher::scalable_vector_reg_size(const BasicType bt) {
2379
2379
return Matcher::max_vector_size(bt);
2380
2380
}
2381
2381
2382
2382
// Vector ideal reg.
2383
- const uint Matcher::vector_ideal_reg(int len) {
2383
+ uint Matcher::vector_ideal_reg(int len) {
2384
2384
if (UseSVE > 0 && 16 < len && len <= 256) {
2385
2385
return Op_VecA;
2386
2386
}
1 commit comments
openjdk-notifier[bot] commentedon Jul 3, 2023
Review
Issues