From 236f5bc2a7277a7bb85a3c4f6d5d12051dc78854 Mon Sep 17 00:00:00 2001 From: mcimadamore Date: Fri, 30 May 2008 11:08:40 +0100 Subject: [PATCH] 6677785: REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors Summary: This regression has been caused by previous fix of 6660289 Reviewed-by: jjg --- .../com/sun/tools/javac/comp/Attr.java | 13 ++++--- .../com/sun/tools/javac/comp/Check.java | 2 ++ .../javac/generics/6677785/T6677785.java | 35 +++++++++++++++++++ .../tools/javac/generics/6677785/T6677785.out | 2 ++ 4 files changed, 47 insertions(+), 5 deletions(-) create mode 100644 test/tools/javac/generics/6677785/T6677785.java create mode 100644 test/tools/javac/generics/6677785/T6677785.out diff --git a/src/share/classes/com/sun/tools/javac/comp/Attr.java b/src/share/classes/com/sun/tools/javac/comp/Attr.java index bc75ab8b..925f00f9 100644 --- a/src/share/classes/com/sun/tools/javac/comp/Attr.java +++ b/src/share/classes/com/sun/tools/javac/comp/Attr.java @@ -454,6 +454,8 @@ public class Attr extends JCTree.Visitor { void attribTypeVariables(List typarams, Env env) { for (JCTypeParameter tvar : typarams) { TypeVar a = (TypeVar)tvar.type; + a.tsym.flags_field |= UNATTRIBUTED; + a.bound = Type.noType; if (!tvar.bounds.isEmpty()) { List bounds = List.of(attribType(tvar.bounds.head, env)); for (JCExpression bound : tvar.bounds.tail) @@ -464,13 +466,14 @@ public class Attr extends JCTree.Visitor { // java.lang.Object. types.setBounds(a, List.of(syms.objectType)); } + a.tsym.flags_field &= ~UNATTRIBUTED; } - } - - void attribBounds(List typarams, Env env) { for (JCTypeParameter tvar : typarams) chk.checkNonCyclic(tvar.pos(), (TypeVar)tvar.type); attribStats(typarams, env); + } + + void attribBounds(List typarams) { for (JCTypeParameter typaram : typarams) { Type bound = typaram.type.getUpperBound(); if (bound != null && bound.tsym instanceof ClassSymbol) { @@ -581,7 +584,7 @@ public class Attr extends JCTree.Visitor { try { chk.checkDeprecatedAnnotation(tree.pos(), m); - attribBounds(tree.typarams, env); + attribBounds(tree.typarams); // If we override any other methods, check that we do so properly. // JLS ??? @@ -2689,7 +2692,7 @@ public class Attr extends JCTree.Visitor { chk.validateAnnotations(tree.mods.annotations, c); // Validate type parameters, supertype and interfaces. - attribBounds(tree.typarams, env); + attribBounds(tree.typarams); chk.validateTypeParams(tree.typarams); chk.validate(tree.extending); chk.validate(tree.implementing); diff --git a/src/share/classes/com/sun/tools/javac/comp/Check.java b/src/share/classes/com/sun/tools/javac/comp/Check.java index 36188b6f..c242ec43 100644 --- a/src/share/classes/com/sun/tools/javac/comp/Check.java +++ b/src/share/classes/com/sun/tools/javac/comp/Check.java @@ -1486,6 +1486,8 @@ public class Check { private void checkNonCyclic1(DiagnosticPosition pos, Type t, Set seen) { final TypeVar tv; + if (t.tag == TYPEVAR && (t.tsym.flags() & UNATTRIBUTED) != 0) + return; if (seen.contains(t)) { tv = (TypeVar)t; tv.bound = new ErrorType(); diff --git a/test/tools/javac/generics/6677785/T6677785.java b/test/tools/javac/generics/6677785/T6677785.java new file mode 100644 index 00000000..d744580c --- /dev/null +++ b/test/tools/javac/generics/6677785/T6677785.java @@ -0,0 +1,35 @@ +/* + * Copyright 2008 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, + * CA 95054 USA or visit www.sun.com if you need additional information or + * have any questions. + */ + +/* + * @test + * @bug 6677785 + * @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors + * @author Maurizio Cimadamore + * @compile/fail/ref=T6677785.out -XDstdout -XDrawDiagnostics T6677785.java + */ +public class T6677785 { + T6677785() {} + T6677785(E e) {} + T6677785(E e, T t) {} +} diff --git a/test/tools/javac/generics/6677785/T6677785.out b/test/tools/javac/generics/6677785/T6677785.out new file mode 100644 index 00000000..e9873573 --- /dev/null +++ b/test/tools/javac/generics/6677785/T6677785.out @@ -0,0 +1,2 @@ +T6677785.java:31:23: compiler.err.cyclic.inheritance: E +1 error -- GitLab