Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8286115

G1: G1RemSetArrayOfCardsEntriesBase off-by-one error

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 19
    • 19
    • hotspot
    • gc
    • b22

      `G1RemSetArrayOfCardsEntriesBase` controls the max number of array entries based on the region size. For example, `G1RemSetArrayOfCardsEntries` should be `128 (32 * 4)` when region size == 32M.

      However, `java -XX:+UnlockExperimentalVMOptions -XX:G1HeapRegionSize=32M -XX:+PrintFlagsFinal --version | grep -i -e regionsize -e G1RemSetArrayOfCardsEntries` prints:

      ```
         size_t G1HeapRegionSize = 33554432 {product} {command line}
           uint G1RemSetArrayOfCardsEntries = 256 {experimental} {ergonomic}
      ```


      The bug is in `G1Arguments::initialize_card_set_configuration`:

      ```
        G1RemSetArrayOfCardsEntriesBase * (1u << (region_size_log_mb + 1))
      ```

      should be

      ```
        G1RemSetArrayOfCardsEntriesBase << region_size_log_mb
      ```

      The `+ 1` is incorrect and should be removed.

            ayang Albert Yang
            ayang Albert Yang
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved: