JDK-8328364 : Remove redundant fields in 'BOTConstants'
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 23
  • Priority: P5
  • Status: New
  • Resolution: Unresolved
  • Submitted: 2024-03-18
  • Updated: 2024-03-19
Description
Several fields in class `BOTConstants`, which are related to card table, are redundant. The related fields should be placed at `CardTable` solely.

The redundant fields are shown below.
```
  static uint _log_card_size;
  static uint _log_card_size_in_words;
  static uint _card_size;
  static uint _card_size_in_words;
```
Comments
A pull request was submitted for review. URL: https://git.openjdk.org/jdk/pull/18371 Date: 2024-03-19 05:51:51 +0000
19-03-2024