Skip to content

Commit 6dffcf7

Browse files
committedMar 20, 2020
8241320: The ClassLoaderData::_is_unsafe_anonymous field is unused in the SA
Remove unused code that is changing in Hotspot for hidden classes. Reviewed-by: lfoltan, dholmes, sspitsyn
1 parent 95d2830 commit 6dffcf7

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed
 

‎src/hotspot/share/runtime/vmStructs.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,6 @@ typedef HashtableEntry<InstanceKlass*, mtClass> KlassHashtableEntry;
522522
nonstatic_field(ClassLoaderData, _class_loader, OopHandle) \
523523
nonstatic_field(ClassLoaderData, _next, ClassLoaderData*) \
524524
volatile_nonstatic_field(ClassLoaderData, _klasses, Klass*) \
525-
nonstatic_field(ClassLoaderData, _is_unsafe_anonymous, bool) \
526525
volatile_nonstatic_field(ClassLoaderData, _dictionary, Dictionary*) \
527526
\
528527
static_ptr_volatile_field(ClassLoaderDataGraph, _head, ClassLoaderData*) \

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/classfile/ClassLoaderData.java

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -44,14 +44,12 @@ private static synchronized void initialize(TypeDataBase db) throws WrongTypeExc
4444
classLoaderFieldOffset = type.getAddressField("_class_loader").getOffset();
4545
nextField = type.getAddressField("_next");
4646
klassesField = new MetadataField(type.getAddressField("_klasses"), 0);
47-
isUnsafeAnonymousField = new CIntField(type.getCIntegerField("_is_unsafe_anonymous"), 0);
4847
dictionaryField = type.getAddressField("_dictionary");
4948
}
5049

5150
private static long classLoaderFieldOffset;
5251
private static AddressField nextField;
5352
private static MetadataField klassesField;
54-
private static CIntField isUnsafeAnonymousField;
5553
private static AddressField dictionaryField;
5654

5755
public ClassLoaderData(Address addr) {
@@ -76,10 +74,6 @@ public Oop getClassLoader() {
7674
return vmOopHandle.resolve();
7775
}
7876

79-
public boolean getisUnsafeAnonymous() {
80-
return isUnsafeAnonymousField.getValue(this) != 0;
81-
}
82-
8377
public ClassLoaderData next() {
8478
return instantiateWrapperFor(nextField.getValue(getAddress()));
8579
}

0 commit comments

Comments
 (0)
Please sign in to comment.