Skip to content

Commit e0c26b3

Browse files
committedJul 3, 2020
8248348: Regression caused by the update to BCEL 6.0
Reviewed-by: smarks, plevart
1 parent 6b8bf62 commit e0c26b3

File tree

4 files changed

+2238
-3
lines changed

4 files changed

+2238
-3
lines changed
 

‎src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/BranchInstruction.java

+18-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* LOOKUPSWITCH and TABLESWITCH.
3131
*
3232
* @see InstructionList
33-
* @LastModified: Jan 2020
33+
* @LastModified: July 2020
3434
*/
3535
public abstract class BranchInstruction extends Instruction implements InstructionTargeter {
3636

@@ -230,6 +230,23 @@ public boolean containsTarget( final InstructionHandle ih ) {
230230
return target == ih;
231231
}
232232

233+
/**
234+
* Updates the opcode. Before changing the opcode, reset the target so that
235+
* the old instruction is removed from the HashSet and the new one then added.
236+
* @param opcode the opcode
237+
*/
238+
@Override
239+
void setOpcode( final short opcode ) {
240+
if (target == null) {
241+
super.setOpcode(opcode);
242+
} else {
243+
// reset target before changing the opcode
244+
InstructionHandle t = target;
245+
setTarget(null);
246+
super.setOpcode(opcode);
247+
setTarget(t);
248+
}
249+
}
233250

234251
/**
235252
* Inform target that it's not targeted anymore.

‎src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/Instruction.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Abstract super class for all Java byte codes.
3131
*
32-
* @LastModified: Jan 2020
32+
* @LastModified: July 2020
3333
*/
3434
public abstract class Instruction implements Cloneable {
3535

@@ -511,7 +511,7 @@ public int getLength() {
511511
/**
512512
* Needed in readInstruction and subclasses in this package
513513
*/
514-
final void setOpcode( final short opcode ) {
514+
void setOpcode( final short opcode ) {
515515
this.opcode = opcode;
516516
}
517517

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/*
2+
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
package transform;
25+
26+
import javax.xml.transform.Transformer;
27+
import javax.xml.transform.TransformerConfigurationException;
28+
import javax.xml.transform.TransformerFactory;
29+
import javax.xml.transform.stream.StreamSource;
30+
import org.testng.annotations.Test;
31+
32+
/*
33+
* @test
34+
* @bug 8248348
35+
* @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest
36+
* @run testng transform.BCELHashCodeTest
37+
* @summary The addition of the hashCode() method to Instruction.java in BCEL 6.0
38+
* caused a regression. This test verifies that the issue has been fixed.
39+
*/
40+
public class BCELHashCodeTest {
41+
/**
42+
* Verifies the patch by attempting to create a transformer from the stylesheet.
43+
* The stylesheet contains an extra table-row with element-id="17921" that
44+
* causes the generated bytecode to exceed the 64Kbyte method size limit.
45+
* Splitting it into multiple methods requires mutating the instructions that
46+
* results in an Exception without the fix. The stylesheet would pass with
47+
* or without the fix if the extra table-row is removed.
48+
*
49+
* @throws TransformerConfigurationException if the test fails
50+
*/
51+
@Test
52+
public void test() throws TransformerConfigurationException {
53+
StreamSource stylesheet = new StreamSource(this.getClass()
54+
.getResourceAsStream("BCELHashCodeTest.xsl"));
55+
TransformerFactory tFactory =TransformerFactory.newInstance();
56+
Transformer transformer = tFactory.newTransformer(stylesheet);
57+
}
58+
}

‎test/jaxp/javax/xml/jaxp/unittest/transform/BCELHashCodeTest.xsl

+2,160
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.