mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8253500: [REDO] JDK-8253208 Move CDS related code to a separate class
Reviewed-by: mchung, iklam
This commit is contained in:
parent
bf442c5b9e
commit
89c5e49ba2
22 changed files with 103 additions and 99 deletions
|
@ -33,6 +33,7 @@ import java.util.Objects;
|
|||
import java.util.Optional;
|
||||
|
||||
import jdk.internal.HotSpotIntrinsicCandidate;
|
||||
import jdk.internal.misc.CDS;
|
||||
import jdk.internal.misc.VM;
|
||||
|
||||
import static java.lang.String.COMPACT_STRINGS;
|
||||
|
@ -1023,7 +1024,7 @@ public final class Integer extends Number
|
|||
high = h;
|
||||
|
||||
// Load IntegerCache.archivedCache from archive, if possible
|
||||
VM.initializeFromArchive(IntegerCache.class);
|
||||
CDS.initializeFromArchive(IntegerCache.class);
|
||||
int size = (high - low) + 1;
|
||||
|
||||
// Use the archived cache if it exists and is large enough
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue