Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8334340: [lworld] javac code clean-up #1139

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1687,9 +1687,6 @@ private boolean areDisjoint(ClassSymbol ts, ClassSymbol ss) {
if (isSubtype(erasure(ts.type), erasure(ss.type))) {
return false;
}
if (isSubtype(erasure(ts.type), erasure(ss.type))) {
return false;
}
// if both are classes or both are interfaces, shortcut
if (ts.isInterface() == ss.isInterface() && isSubtype(erasure(ss.type), erasure(ts.type))) {
return false;
Original file line number Diff line number Diff line change
@@ -1346,8 +1346,7 @@ private boolean isNonArgsMethodInObject(Name name) {
return true;
}
}
// isValueObject is not included in Object yet so we need a work around
return name == names.isValueObject;
return false;
}

Fragment canInferLocalVarType(JCVariableDecl tree) {
Original file line number Diff line number Diff line change
@@ -1355,9 +1355,6 @@ else if ((sym.owner.flags_field & INTERFACE) != 0)
if ((flags & (ABSTRACT | INTERFACE | VALUE_CLASS)) == VALUE_CLASS) {
implicit |= FINAL;
}

// TYPs can't be declared synchronized
mask &= ~SYNCHRONIZED;
break;
default:
throw new AssertionError();
@@ -1388,10 +1385,6 @@ else if ((sym.kind == TYP ||
ABSTRACT | INTERFACE,
FINAL | NATIVE | SYNCHRONIZED)
&&
checkDisjoint(pos, flags,
INTERFACE,
VALUE_CLASS)
&&
checkDisjoint(pos, flags,
PUBLIC,
PRIVATE | PROTECTED)
@@ -1400,7 +1393,7 @@ else if ((sym.kind == TYP ||
PRIVATE,
PUBLIC | PROTECTED)
&&
checkDisjoint(pos, (flags | implicit), // complain against volatile & implcitly final entities too.
checkDisjoint(pos, flags,
FINAL,
VOLATILE)
&&
Original file line number Diff line number Diff line change
@@ -2382,7 +2382,7 @@ public void visitClassDef(JCClassDecl tree) {
clearPendingExits(false);
});

// verify all static final fields got initailized
// verify all static final fields got initialized
for (int i = firstadr; i < nextadr; i++) {
JCVariableDecl vardecl = vardecls[i];
VarSymbol var = vardecl.sym;
Original file line number Diff line number Diff line change
@@ -103,6 +103,7 @@ public static Lower instance(Context context) {
private final boolean optimizeOuterThis;
private final boolean useMatchException;
private final HashMap<TypePairs, String> typePairToName;
private final boolean allowValueClasses;

@SuppressWarnings("this-escape")
protected Lower(Context context) {
@@ -135,6 +136,8 @@ protected Lower(Context context) {
useMatchException = Feature.PATTERN_SWITCH.allowedInSource(source) &&
(preview.isEnabled() || !preview.isPreview(Feature.PATTERN_SWITCH));
typePairToName = TypePairs.initialize(syms);
this.allowValueClasses = (!preview.isPreview(Feature.VALUE_CLASSES) || preview.isEnabled()) &&
Feature.VALUE_CLASSES.allowedInSource(source);
}

/** The currently enclosing class.
@@ -912,6 +915,7 @@ private void checkAccessConstructorTags() {
if (isTranslatedClassAvailable(c))
continue;
// Create class definition tree.
// IDENTITY_TYPE will be interpreted as ACC_SUPER for older class files so we are fine
JCClassDecl cdec = makeEmptyClass(STATIC | SYNTHETIC | IDENTITY_TYPE,
c.outermostClass(), c.flatname, false);
swapAccessConstructorTag(c, cdec.sym);
@@ -1396,6 +1400,7 @@ ClassSymbol accessConstructorTag() {
i);
ClassSymbol ctag = chk.getCompiled(topModle, flatname);
if (ctag == null)
// IDENTITY_TYPE will be interpreted as ACC_SUPER for older class files so we are fine
ctag = makeEmptyClass(STATIC | SYNTHETIC | IDENTITY_TYPE, topClass).sym;
else if (!ctag.isAnonymous())
continue;
@@ -1637,7 +1642,7 @@ JCVariableDecl outerThisDef(int pos, MethodSymbol owner) {
* @param owner The class in which the definition goes.
*/
JCVariableDecl outerThisDef(int pos, ClassSymbol owner) {
VarSymbol outerThis = makeOuterThisVarSymbol(owner, FINAL | SYNTHETIC | (owner.isValueClass() ? STRICT : 0));
VarSymbol outerThis = makeOuterThisVarSymbol(owner, FINAL | SYNTHETIC | (allowValueClasses && owner.isValueClass() ? STRICT : 0));
return makeOuterThisVarDecl(pos, outerThis);
}

@@ -1844,7 +1849,6 @@ JCExpression makeOuterThis(DiagnosticPosition pos, TypeSymbol c) {
List<VarSymbol> ots = outerThisStack;
if (ots.isEmpty()) {
log.error(pos, Errors.NoEnclInstanceOfTypeInScope(c));
Assert.error();
return makeNull();
}
VarSymbol ot = ots.head;
@@ -1970,6 +1974,7 @@ private ClassSymbol outerCacheClass() {
if (sym.kind == TYP &&
sym.name == names.empty &&
(sym.flags() & INTERFACE) == 0) return (ClassSymbol) sym;
// IDENTITY_TYPE will be interpreted as ACC_SUPER for older class files so we are fine
return makeEmptyClass(STATIC | SYNTHETIC | IDENTITY_TYPE, clazz).sym;
}

@@ -2022,6 +2027,7 @@ private JCExpression classOfType(Type type, DiagnosticPosition pos) {
private ClassSymbol assertionsDisabledClass() {
if (assertionsDisabledClassCache != null) return assertionsDisabledClassCache;

// IDENTITY_TYPE will be interpreted as ACC_SUPER for older class files so we are fine
assertionsDisabledClassCache = makeEmptyClass(STATIC | SYNTHETIC | IDENTITY_TYPE, outermostClassDef.sym).sym;

return assertionsDisabledClassCache;
@@ -2310,7 +2316,7 @@ public void visitClassDef(JCClassDecl tree) {

// If this is a local class, define proxies for all its free variables.
List<JCVariableDecl> fvdefs = freevarDefs(
tree.pos, freevars(currentClass), currentClass, currentClass.isValueClass() ? STRICT : 0);
tree.pos, freevars(currentClass), currentClass, allowValueClasses && currentClass.isValueClass() ? STRICT : 0);

// Recursively translate superclass, interfaces.
tree.extending = translate(tree.extending);
Original file line number Diff line number Diff line change
@@ -575,7 +575,6 @@ Type classSigToType() {
throw badClassFile("bad.class.signature", quoteBadSignature());
sigp++;
Type outer = Type.noType;
Name name;
int startSbp = sbp;

while (true) {
Original file line number Diff line number Diff line change
@@ -217,7 +217,7 @@ public boolean hasSealedClasses() {
/** Does the target VM support value classes
*/
public boolean hasValueClasses() {
return compareTo(JDK1_19) >= 0;
return compareTo(JDK1_23) >= 0;
}

/** Is the ACC_STRICT bit redundant and obsolete
Original file line number Diff line number Diff line change
@@ -220,7 +220,8 @@ protected JavacParser(JavacParser parser,
this.allowYieldStatement = Feature.SWITCH_EXPRESSION.allowedInSource(source);
this.allowRecords = Feature.RECORDS.allowedInSource(source);
this.allowSealedTypes = Feature.SEALED_CLASSES.allowedInSource(source);
this.allowValueClasses = parser.allowValueClasses;
this.allowValueClasses = (!preview.isPreview(Feature.VALUE_CLASSES) || preview.isEnabled()) &&
Feature.VALUE_CLASSES.allowedInSource(source);
}

protected AbstractEndPosTable newEndPosTable(boolean keepEndPositions) {
@@ -3828,9 +3829,9 @@ Source restrictedTypeNameStartingAtSource(Name name, int pos, boolean shouldWarn
}
if (name == names.value) {
if (allowValueClasses) {
return Source.JDK22;
return Source.JDK23;
} else if (shouldWarn) {
log.warning(pos, Warnings.RestrictedTypeNotAllowedPreview(name, Source.JDK22));
log.warning(pos, Warnings.RestrictedTypeNotAllowedPreview(name, Source.JDK23));
}
}
if (name == names.sealed) {
Original file line number Diff line number Diff line change
@@ -107,7 +107,6 @@ public static Names instance(Context context) {
public final Name values;
public final Name readResolve;
public final Name readObject;
public final Name isValueObject;

// class names
public final Name java_io_Serializable;
@@ -309,7 +308,6 @@ public Names(Context context) {
values = fromString("values");
readResolve = fromString("readResolve");
readObject = fromString("readObject");
isValueObject = fromString("isValueObject");
dollarThis = fromString("$this");

// class names
Original file line number Diff line number Diff line change
@@ -98,7 +98,7 @@ class RecordCompilationTests extends CompilationTestCase {
private static String[] OPTIONS_WITH_AP = {"-processor", SimplestAP.class.getName()};

private static final List<String> BAD_COMPONENT_NAMES = List.of(
"clone", "finalize", "getClass", "hashCode", "isValueObject",
"clone", "finalize", "getClass", "hashCode",
"notify", "notifyAll", "toString", "wait");

/* simplest annotation processor just to force a round of annotation processing for all tests