Chen Liang 3248aaf3c4 8356548: Use ClassFile API instead of ASM to transform classes in tests
Reviewed-by: sspitsyn, lmesnik, coleenp, iklam
2025-10-16 19:45:57 +00:00

112 lines
4.1 KiB
Java

/*
* Copyright (c) 2023, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
*
* @bug 8228604
*
* @requires vm.jvmti
* @library /test/lib
*
* @run main/othervm/native -agentlib:MissedStackMapFrames MissedStackMapFrames
*/
import java.lang.classfile.Attributes;
import java.lang.classfile.ClassFile;
import java.lang.classfile.ClassModel;
import java.lang.classfile.MethodModel;
public class MissedStackMapFrames {
static {
System.loadLibrary("MissedStackMapFrames");
}
/* For each test class:
* - loads class (JNIEnv::FindClass);
* - retransforms class (jvmtiEnv::RetransformClasses).
* Saves class bytes passed to ClassFileLoadHook.
*/
private static native boolean doTest();
/* methods to analyze doTest results */
private static native int testCount();
private static native Class testClass(int idx);
private static native byte[] loadBytes(int idx);
private static native byte[] retransformBytes(int idx);
private static int getStackMapFrameCount(byte[] classfileBuffer) {
ClassModel clazz = ClassFile.of().parse(classfileBuffer);
int count = 0;
for (MethodModel method : clazz.methods()) {
var foundStackMapTable = method.code().flatMap(code -> code.findAttribute(Attributes.stackMapTable()));
if (foundStackMapTable.isPresent()) {
int methodFrames = foundStackMapTable.get().entries().size();
log(" method " + method.methodName() + " - " + methodFrames + " frames");
count += methodFrames;
} else {
log(" method " + method.methodName() + " - No StackMapTable");
}
}
return count;
}
private static int checkStackMapFrames(String mode, byte[] classfileBuffer) {
log(mode + ", len = " + classfileBuffer.length);
int frameCount = getStackMapFrameCount(classfileBuffer);
log(" Has stack map frames: " + frameCount);
if (frameCount == 0) {
throw new RuntimeException(mode + " - no stack frames");
}
return frameCount;
}
private static void checkStackMapFrames(String mode, byte[] classfileBuffer, int expectedCount) {
int actualCount = checkStackMapFrames(mode, classfileBuffer);
if (actualCount != expectedCount) {
throw new RuntimeException(mode + " - unexpected stack frames count: " + actualCount
+ " (expected " + expectedCount + ")");
}
}
public static void main(String[] args) throws Exception {
if (!doTest()) {
throw new RuntimeException("Test failed");
}
// verify results
for (int i = 0; i < testCount(); i++) {
Class cls = testClass(i);
byte[] loadBytes = loadBytes(i);
byte[] retransformBytes = retransformBytes(i);
int loadCount = checkStackMapFrames(cls + "(load)", loadBytes);
checkStackMapFrames(cls + "(retransform)", retransformBytes, loadCount);
}
}
private static void log(Object msg) {
System.out.println(msg);
}
}