Skip to content

Commit dbb0738

Browse files
author
Vicente Romero
committedJan 26, 2024
8324784: [lworld] remove constant propagation code and tests
1 parent a15bd85 commit dbb0738

File tree

8 files changed

+3
-198
lines changed

8 files changed

+3
-198
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Attr.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -1300,11 +1300,8 @@ public void visitVarDef(JCVariableDecl tree) {
13001300
deferredLintHandler.flush(tree.pos());
13011301
chk.checkDeprecatedAnnotation(tree.pos(), v);
13021302

1303-
/* Don't want constant propagation/folding for instance fields of primitive classes,
1304-
as these can undergo updates via copy on write.
1305-
*/
13061303
if (tree.init != null) {
1307-
if ((v.flags_field & FINAL) == 0 || ((v.flags_field & STATIC) == 0 && v.owner.isValueClass()) ||
1304+
if ((v.flags_field & FINAL) == 0 ||
13081305
!memberEnter.needsLazyConstValue(tree.init)) {
13091306
// Not a compile-time constant
13101307
// Attribute initializer in a new environment

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Lower.java

-3
Original file line numberDiff line numberDiff line change
@@ -1887,7 +1887,6 @@ JCExpression makeOwnerThisN(DiagnosticPosition pos, Symbol sym, boolean preciseM
18871887
List<VarSymbol> ots = outerThisStack;
18881888
if (ots.isEmpty()) {
18891889
log.error(pos, Errors.NoEnclInstanceOfTypeInScope(c));
1890-
Assert.error();
18911890
return makeNull();
18921891
}
18931892
VarSymbol ot = ots.head;
@@ -1899,7 +1898,6 @@ JCExpression makeOwnerThisN(DiagnosticPosition pos, Symbol sym, boolean preciseM
18991898
ots = ots.tail;
19001899
if (ots.isEmpty()) {
19011900
log.error(pos, Errors.NoEnclInstanceOfTypeInScope(c));
1902-
Assert.error();
19031901
return tree;
19041902
}
19051903
ot = ots.head;
@@ -2738,7 +2736,6 @@ JCFieldAccess makeIndyQualifier(
27382736
}
27392737

27402738
public void visitMethodDef(JCMethodDecl tree) {
2741-
// TODO - enum so is always <init>
27422739
if (tree.name == names.init && (currentClass.flags_field&ENUM) != 0) {
27432740
// Add "String $enum$name, int $enum$ordinal" to the beginning of the
27442741
// argument list for each constructor of an enum.

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/MemberEnter.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -319,12 +319,9 @@ public void visitVarDef(JCVariableDecl tree) {
319319
VarSymbol v = new VarSymbol(0, name, vartype, enclScope.owner);
320320
v.flags_field = chk.checkFlags(tree.pos(), tree.mods.flags, v, tree);
321321
tree.sym = v;
322-
/* Don't want constant propagation/folding for instance fields of primitive classes,
323-
as these can undergo updates via copy on write.
324-
*/
325322
if (tree.init != null) {
326323
v.flags_field |= HASINIT;
327-
if ((v.flags_field & FINAL) != 0 && ((v.flags_field & STATIC) != 0 || !v.owner.isValueClass()) &&
324+
if ((v.flags_field & FINAL) != 0 &&
328325
needsLazyConstValue(tree.init)) {
329326
Env<AttrContext> initEnv = getInitEnv(tree, env);
330327
initEnv.info.enclVar = v;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Resolve.java

-1
Original file line numberDiff line numberDiff line change
@@ -3675,7 +3675,6 @@ class ArrayConstructorReferenceLookupHelper extends ReferenceLookupHelper {
36753675

36763676
ArrayConstructorReferenceLookupHelper(JCMemberReference referenceTree, Type site, List<Type> argtypes,
36773677
List<Type> typeargtypes, MethodResolutionPhase maxPhase) {
3678-
// TODO - array constructor will be <init>
36793678
super(referenceTree, names.init, site, argtypes, typeargtypes, maxPhase);
36803679
}
36813680

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/TransTypes.java

-1
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,6 @@ public void visitApply(JCMethodInvocation tree) {
669669
List<Type> argtypes = useInstantiatedPtArgs ?
670670
tree.meth.type.getParameterTypes() :
671671
mt.getParameterTypes();
672-
// TODO - is enum so <init>
673672
if (meth.name == names.init && meth.owner == syms.enumSym)
674673
argtypes = argtypes.tail.tail;
675674
if (tree.varargsElement != null)

‎src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1596,8 +1596,7 @@ protected JCExpression term3() {
15961596
case LT:
15971597
if (!isMode(TYPE) && isParameterizedTypePrefix()) {
15981598
//this is either an unbound method reference whose qualifier
1599-
//is a generic type i.e. A<S>::m or a default value creation of
1600-
//the form ValueType<S>.default
1599+
//is a generic type i.e. A<S>::m
16011600
int pos1 = token.pos;
16021601
accept(LT);
16031602
ListBuffer<JCExpression> args = new ListBuffer<>();

‎test/langtools/tools/javac/valhalla/primitive-classes/ConstantPropagationTest.java

-92
This file was deleted.

‎test/langtools/tools/javac/valhalla/value-objects/ConstantPropagationTest.java

-91
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.