mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-11 02:48:20 +00:00
8182729: [AOT] remove UseConcMarkSweepGC check when loading libraries
Reviewed-by: kvn
This commit is contained in:
parent
c0a589deba
commit
ec241eb2a4
@ -308,7 +308,6 @@ public class BinaryContainer implements SymbolTable {
|
||||
graalHotSpotVMConfig.useCompressedClassPointers,
|
||||
graalHotSpotVMConfig.compactFields,
|
||||
graalHotSpotVMConfig.useG1GC,
|
||||
graalHotSpotVMConfig.useCMSGC,
|
||||
graalHotSpotVMConfig.useTLAB,
|
||||
graalHotSpotVMConfig.useBiasedLocking,
|
||||
TieredAOT.getValue(graalOptions),
|
||||
|
||||
@ -212,7 +212,6 @@ public class GraalHotSpotVMConfig extends HotSpotVMConfigAccess {
|
||||
}
|
||||
|
||||
public final boolean useG1GC = getFlag("UseG1GC", Boolean.class);
|
||||
public final boolean useCMSGC = getFlag("UseConcMarkSweepGC", Boolean.class);
|
||||
|
||||
public final int allocatePrefetchStyle = getFlag("AllocatePrefetchStyle", Integer.class);
|
||||
public final int allocatePrefetchInstr = getFlag("AllocatePrefetchInstr", Integer.class);
|
||||
|
||||
@ -152,7 +152,6 @@ void AOTLib::verify_config() {
|
||||
verify_flag(_config->_useCompressedOops, UseCompressedOops, "UseCompressedOops");
|
||||
verify_flag(_config->_useCompressedClassPointers, UseCompressedClassPointers, "UseCompressedClassPointers");
|
||||
verify_flag(_config->_useG1GC, UseG1GC, "UseG1GC");
|
||||
verify_flag(_config->_useCMSGC, UseConcMarkSweepGC, "UseConcMarkSweepGC");
|
||||
verify_flag(_config->_useTLAB, UseTLAB, "UseTLAB");
|
||||
verify_flag(_config->_useBiasedLocking, UseBiasedLocking, "UseBiasedLocking");
|
||||
verify_flag(_config->_objectAlignment, ObjectAlignmentInBytes, "ObjectAlignmentInBytes");
|
||||
|
||||
@ -88,7 +88,8 @@ typedef struct {
|
||||
} AOTHeader;
|
||||
|
||||
typedef struct {
|
||||
enum { CONFIG_SIZE = 12 + 7 * 4 };
|
||||
enum { CONFIG_SIZE = 7 * jintSize + 11 };
|
||||
// 7 int values
|
||||
int _config_size;
|
||||
int _narrowOopShift;
|
||||
int _narrowKlassShift;
|
||||
@ -102,7 +103,6 @@ typedef struct {
|
||||
bool _useCompressedClassPointers;
|
||||
bool _compactFields;
|
||||
bool _useG1GC;
|
||||
bool _useCMSGC;
|
||||
bool _useTLAB;
|
||||
bool _useBiasedLocking;
|
||||
bool _tieredAOT;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user