-
Bug
-
Resolution: Fixed
-
P2
-
26
-
master
After JDK-8360707 builds which omit C1 or C2 can generate an exploded jdk which fails on startup with an assert:
assert(idx2 >= 0 && idx2 >= idx1) failed: bad blob ids first -1 and second -1
The problem is that the blob and stub id verification expects the blob, stub and entry ranges in the C1 and C2 stub groups to be positive. However, when C1 or C2 is omitted the associated range starts and ends are NO_BLOBID, NO_STUBID and NO_ENTRYID (all -1) and this breaks some of the internal consistency checks that test the span of blob, stub and entry ranges.
assert(idx2 >= 0 && idx2 >= idx1) failed: bad blob ids first -1 and second -1
The problem is that the blob and stub id verification expects the blob, stub and entry ranges in the C1 and C2 stub groups to be positive. However, when C1 or C2 is omitted the associated range starts and ends are NO_BLOBID, NO_STUBID and NO_ENTRYID (all -1) and this breaks some of the internal consistency checks that test the span of blob, stub and entry ranges.
- caused by
-
JDK-8360707 Globally enumerate all blobs, stubs and entries
-
- Resolved
-
- duplicates
-
JDK-8361745 Assertion failed: assert(idx2 >= 0 && idx2 >= idx1) failed: bad blob ids first -1 and second -1
-
- Closed
-
- links to
-
Commit(master) openjdk/jdk/3d74cbe0
-
Review(master) openjdk/jdk/26242