8035271: Incorrect indentation of LineNumberTable/LocalVariableTable/Exception table/LocalVariableTypeTable/StackMapTable/RuntimeVisibleTypeAnnotations in verbose mode

Reviewed-by: liach, jvernee
This commit is contained in:
Jonathan Lampérth 2024-11-27 17:31:39 +00:00 committed by Vicente Romero
parent 0312694c46
commit 1e3a0fdb5d
3 changed files with 154 additions and 19 deletions

View File

@ -575,16 +575,9 @@ public class ClassWriter extends BasicWriter {
if (options.showAllAttrs) { if (options.showAllAttrs) {
attrWriter.write(m.attributes()); attrWriter.write(m.attributes());
} else if (code != null) { } else if (code != null) {
if (options.showDisassembled) { if (options.showDisassembled || options.showLineAndLocalVariableTables) {
codeWriter.writeMinimal(code); codeWriter.writeMinimal(code);
} }
if (options.showLineAndLocalVariableTables) {
code.findAttribute(Attributes.lineNumberTable())
.ifPresent(a -> attrWriter.write(a, code));
code.findAttribute(Attributes.localVariableTable())
.ifPresent(a -> attrWriter.write(a, code));
}
} }
indent(-1); indent(-1);

View File

@ -25,16 +25,13 @@
package com.sun.tools.javap; package com.sun.tools.javap;
import java.lang.classfile.*;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.Locale; import java.util.Locale;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import java.lang.classfile.ClassFile;
import java.lang.classfile.Opcode;
import java.lang.classfile.constantpool.*; import java.lang.classfile.constantpool.*;
import java.lang.classfile.Instruction;
import java.lang.classfile.MethodModel;
import java.lang.classfile.attribute.CodeAttribute; import java.lang.classfile.attribute.CodeAttribute;
import java.lang.classfile.instruction.*; import java.lang.classfile.instruction.*;
@ -260,17 +257,39 @@ public class CodeWriter extends BasicWriter {
private void writeInternal(CodeAttribute attr, boolean minimal) { private void writeInternal(CodeAttribute attr, boolean minimal) {
println("Code:"); println("Code:");
indent(+1); indent(+1);
if (!minimal) { if (minimal) {
writeVerboseHeader(attr); writeMinimalMode(attr);
} } else {
writeInstrs(attr); writeVerboseMode(attr);
writeExceptionTable(attr);
if (!minimal) {
attrWriter.write(attr.attributes(), attr);
} }
indent(-1); indent(-1);
} }
private void writeMinimalMode(CodeAttribute attr) {
if (options.showDisassembled) {
writeInstrs(attr);
writeExceptionTable(attr);
}
if (options.showLineAndLocalVariableTables) {
writeLineAndLocalVariableTables(attr);
}
}
private void writeVerboseMode(CodeAttribute attr) {
writeVerboseHeader(attr);
writeInstrs(attr);
writeExceptionTable(attr);
attrWriter.write(attr.attributes(), attr);
}
private void writeLineAndLocalVariableTables(CodeAttribute attr) {
attr.findAttribute(Attributes.lineNumberTable())
.ifPresent(a -> attrWriter.write(a, attr));
attr.findAttribute(Attributes.localVariableTable())
.ifPresent(a -> attrWriter.write(a, attr));
}
private AttributeWriter attrWriter; private AttributeWriter attrWriter;
private ClassWriter classWriter; private ClassWriter classWriter;
private ConstantWriter constantWriter; private ConstantWriter constantWriter;

View File

@ -0,0 +1,123 @@
/*
* Copyright (c) 2024, 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 8035271
* @summary javap incorrect indentation when LineNumberTable and LocalVariableTable written via ClassWriter
* @run main ClassWriterTableIndentTest
* @modules jdk.jdeps/com.sun.tools.javap
*/
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.Arrays;
import java.util.List;
public class ClassWriterTableIndentTest {
public static void main(String[] args) {
new ClassWriterTableIndentTest().run();
}
public void run() {
/*
* Partial expected output within a larger file. There exists another "Code: " section above, and thus we
* select the second occurrence in `findNthMatchPrecedingSpaces(output, "Code:", 1);`
* ...
* public void emptyLoop();
* Code:
* ...
* LineNumberTable:
* line 143: 0
* line 145: 14
* ...
*/
List<String[]> runArgsList = List.of(new String[]{"-c", "-l"}, new String[]{"-v"}, new String[]{"-l"});
for (String[] runArgs : runArgsList) {
String output = javap(runArgs);
int methodIntent = findNthMatchPrecedingSpaces(output, "public void emptyLoop();", 0);
int codeHeaderIndent = findNthMatchPrecedingSpaces(output, "Code:", 1);
int detailIndent = findNthMatchPrecedingSpaces(output, "LineNumberTable:", 1);
if (codeHeaderIndent - methodIntent != 2) {
indentError(2, codeHeaderIndent - methodIntent, "Code block", "method header", runArgs);
}
if (detailIndent - codeHeaderIndent != 2) {
indentError(2, detailIndent - codeHeaderIndent, "LineNumberTable", "code header", runArgs);
}
if (detailIndent - methodIntent != 4) {
indentError(4, detailIndent - methodIntent, "LineNumberTable", "method header");
}
}
if (errors > 0) {
throw new Error(errors + " found.");
}
}
private String javap(String... args) {
StringWriter sw = new StringWriter();
PrintWriter out = new PrintWriter(sw);
String[] fullArgs = new String[args.length + 1];
System.arraycopy(args, 0, fullArgs, 0, args.length);
fullArgs[args.length] = System.getProperty("test.classes") + "/EmptyLoop8035271.class";
int rc = com.sun.tools.javap.Main.run(fullArgs, out);
if (rc != 0)
throw new Error("javap failed. rc=" + rc);
out.close();
System.out.println(sw);
return sw.toString();
}
public static int findNthMatchPrecedingSpaces(String inputString, String searchString, int occurrence) {
String[] lines = inputString.split(System.lineSeparator());
int count = 0;
for (String line : lines) {
if (line.trim().startsWith(searchString)) {
if (count == occurrence) {
return line.indexOf(searchString);
}
count++;
}
}
throw new IllegalArgumentException("Could not find " + searchString + " in " + inputString);
}
void indentError(int expected, int actual, String toCompare, String referencePoint, String... args) {
System.err.println(toCompare + " is not indented correctly with respect to " + referencePoint + ". Expected "
+ expected + " but got " + actual + " for args: " + Arrays.toString(args));
errors++;
}
int errors;
}
class EmptyLoop8035271 {
public void emptyLoop() {
for (int i = 0; i < 10; i++) {
}
}
}