RFR: 8346916: [REDO] align_up has potential overflow [v5]

Casper Norrbin cnorrbin at openjdk.org
Mon Mar 3 16:57:13 UTC 2025


> Hi everyone,
> 
> The `align_up` function can potentially overflow, resulting in undefined behavior. Most use cases rely on the assumption that aligned_result >= original. To address this, I've added an assertion to verify this condition.
> 
> The original PR (#20808) missed cases where overflow checks already existed, so I've now went through usages of `align_up` and found the places with explicit checks. Most notably, #23168 added `align_up_or_null` to metaspace, but this function is also useful elsewhere. Given this, I relocated it to `align.hpp`, alongside the rest of the alignment functions.

Casper Norrbin has updated the pull request incrementally with two additional commits since the last revision:

 - removed align_up_or_min test from test_align
 - psoldgen check + removed align_up_or_min

-------------

Changes:
  - all: https://git.openjdk.org/jdk/pull/23711/files
  - new: https://git.openjdk.org/jdk/pull/23711/files/3068917b..dd319893

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=jdk&pr=23711&range=04
 - incr: https://webrevs.openjdk.org/?repo=jdk&pr=23711&range=03-04

  Stats: 22 lines in 3 files changed: 4 ins; 15 del; 3 mod
  Patch: https://git.openjdk.org/jdk/pull/23711.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/23711/head:pull/23711

PR: https://git.openjdk.org/jdk/pull/23711


More information about the hotspot-dev mailing list