Skip to content

Commit baeb3d9

Browse files
committedDec 17, 2024
8346304: SA doesn't need a copy of getModifierFlags
Reviewed-by: sspitsyn, cjplummer
1 parent 99af595 commit baeb3d9

File tree

5 files changed

+2
-78
lines changed

5 files changed

+2
-78
lines changed
 

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

-2
Original file line numberDiff line numberDiff line change
@@ -2029,8 +2029,6 @@
20292029
/* HotSpot specific JVM_ACC constants from global anon enum */ \
20302030
/************************************************************/ \
20312031
\
2032-
declare_constant(JVM_ACC_WRITTEN_FLAGS) \
2033-
\
20342032
declare_constant(JVM_CONSTANT_Utf8) \
20352033
declare_constant(JVM_CONSTANT_Unicode) \
20362034
declare_constant(JVM_CONSTANT_Integer) \

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/ArrayKlass.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2024, 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
@@ -103,10 +103,6 @@ public int getClassStatus() {
103103
return JVMDIClassStatus.VERIFIED | JVMDIClassStatus.PREPARED | JVMDIClassStatus.INITIALIZED;
104104
}
105105

106-
public long computeModifierFlags() {
107-
return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
108-
}
109-
110106
public long getArrayHeaderInBytes() {
111107
return Bits.maskBits(getLayoutHelper() >> LH_HEADER_SIZE_SHIFT, 0xFF);
112108
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/InstanceKlass.java

-40
Original file line numberDiff line numberDiff line change
@@ -434,46 +434,6 @@ private static synchronized void initialize(TypeDataBase db) {
434434
}
435435
}
436436

437-
// refer to compute_modifier_flags in VM code.
438-
public long computeModifierFlags() {
439-
long access = getAccessFlags();
440-
// But check if it happens to be member class.
441-
U2Array innerClassList = getInnerClasses();
442-
int length = (innerClassList == null)? 0 : innerClassList.length();
443-
if (length > 0) {
444-
if (Assert.ASSERTS_ENABLED) {
445-
Assert.that(length % InnerClassAttributeOffset.innerClassNextOffset == 0 ||
446-
length % InnerClassAttributeOffset.innerClassNextOffset == EnclosingMethodAttributeOffset.enclosingMethodAttributeSize,
447-
"just checking");
448-
}
449-
for (int i = 0; i < length; i += InnerClassAttributeOffset.innerClassNextOffset) {
450-
if (i == length - EnclosingMethodAttributeOffset.enclosingMethodAttributeSize) {
451-
break;
452-
}
453-
int ioff = innerClassList.at(i +
454-
InnerClassAttributeOffset.innerClassInnerClassInfoOffset);
455-
// 'ioff' can be zero.
456-
// refer to JVM spec. section 4.7.5.
457-
if (ioff != 0) {
458-
// only look at classes that are already loaded
459-
// since we are looking for the flags for our self.
460-
Symbol name = getConstants().getKlassNameAt(ioff);
461-
462-
if (name.equals(getName())) {
463-
// This is really a member class
464-
access = innerClassList.at(i +
465-
InnerClassAttributeOffset.innerClassAccessFlagsOffset);
466-
break;
467-
}
468-
}
469-
} // for inner classes
470-
}
471-
472-
// Remember to strip ACC_SUPER bit
473-
return (access & (~JVM_ACC_SUPER)) & JVM_ACC_WRITTEN_FLAGS;
474-
}
475-
476-
477437
// whether given Symbol is name of an inner/nested Klass of this Klass?
478438
// anonymous and local classes are excluded.
479439
public boolean isInnerClassName(Symbol sym) {

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/Klass.java

-17
Original file line numberDiff line numberDiff line change
@@ -133,23 +133,6 @@ public long traceID() {
133133
return traceIDField.getJLong(addr);
134134
}
135135

136-
// computed access flags - takes care of inner classes etc.
137-
// This is closer to actual source level than getAccessFlags() etc.
138-
public long computeModifierFlags() {
139-
return 0L; // Unless overridden, modifier_flags is 0.
140-
}
141-
142-
// same as JVM_GetClassModifiers
143-
public final long getClassModifiers() {
144-
// unlike the VM counterpart we never have to deal with primitive type,
145-
// because we operator on Klass and not an instance of java.lang.Class.
146-
long flags = computeModifierFlags();
147-
if (isSuper()) {
148-
flags |= JVM_ACC_SUPER;
149-
}
150-
return flags;
151-
}
152-
153136
// subclass check
154137
public boolean isSubclassOf(Klass k) {
155138
if (k != null) {

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/ObjArrayKlass.java

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2024, 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
@@ -60,19 +60,6 @@ public ObjArrayKlass(Address addr) {
6060
public Klass getElementKlass() { return (Klass) elementKlass.getValue(this); }
6161
public Klass getBottomKlass() { return (Klass) bottomKlass.getValue(this); }
6262

63-
public long computeModifierFlags() {
64-
long elementFlags = getElementKlass().computeModifierFlags();
65-
long arrayFlags = 0L;
66-
if ((elementFlags & (JVM_ACC_PUBLIC | JVM_ACC_PROTECTED)) != 0) {
67-
// The array type is public if the component type is public or protected
68-
arrayFlags = JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
69-
} else {
70-
// The array type is private if the component type is private
71-
arrayFlags = JVM_ACC_ABSTRACT | JVM_ACC_FINAL;
72-
}
73-
return arrayFlags;
74-
}
75-
7663
public void iterateFields(MetadataVisitor visitor) {
7764
super.iterateFields(visitor);
7865
visitor.doMetadata(elementKlass, true);

0 commit comments

Comments
 (0)
Please sign in to comment.