Hi all, This adds issues to all the TODOs in HotSpot code.
I also evaluated whether `bool is_visited(const JvmtiHeapwalkObject& obj)` can become `const`. The blocker is `_bitset.is_marked()`, which cannot be made `const` since it calls an internal method that modifies fields. It does not seem worth to work around this limitation, especially given that `is_visited` does not exist in mainline. Testing: tier1, GHA. --------- - [x] I confirm that I make this contribution in accordance with the [OpenJDK Interim AI Policy](https://openjdk.org/legal/ai). ------------- Commit messages: - Add issues to TODOs. Changes: https://git.openjdk.org/valhalla/pull/2368/files Webrev: https://webrevs.openjdk.org/?repo=valhalla&pr=2368&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8383387 Stats: 8 lines in 6 files changed: 3 ins; 0 del; 5 mod Patch: https://git.openjdk.org/valhalla/pull/2368.diff Fetch: git fetch https://git.openjdk.org/valhalla.git pull/2368/head:pull/2368 PR: https://git.openjdk.org/valhalla/pull/2368
