Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: pkg/compiler/lib/src/constants/expressions.dart

Issue 1955403002: Skip spurious constants in deferred computation. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/constants/expressions.dart
diff --git a/pkg/compiler/lib/src/constants/expressions.dart b/pkg/compiler/lib/src/constants/expressions.dart
index 4019e166e31127b251dbc72e6b9e4641150deda2..ec3d3658425e5aae78ae6f09d6e4f92c158a7a97 100644
--- a/pkg/compiler/lib/src/constants/expressions.dart
+++ b/pkg/compiler/lib/src/constants/expressions.dart
@@ -124,6 +124,20 @@ abstract class ConstantExpression {
'ConstantExpression.toString()');
return toDartText();
}
+
+ /// Returns `true` if this expression is implicitly constant, that is, that
+ /// it doesn't declare its constness with the 'const' keyword.
+ ///
+ /// Implicit constants are simple literals, like bool, int and string
+ /// literals, constant references and compositions of implicit constants.
+ /// Explicit constants are constructor constants, and constant map and list
+ /// literals.
+ bool get isImplicit => true;
+
+ /// Returns `true` if this expression is only potentially constant, that is,
+ /// if it contains positional or named references, used to defined constant
Siggi Cherem (dart-lang) 2016/05/09 20:03:04 to defined => to define?
Johnni Winther 2016/05/10 09:26:16 Done.
+ /// constructors.
+ bool get isPotential => true;
Siggi Cherem (dart-lang) 2016/05/09 20:03:04 should we make this a final field instead? In all
Johnni Winther 2016/05/10 09:26:15 I think it'll only be need for asserts, in which c
}
/// A synthetic constant used to recover from errors.
@@ -183,6 +197,12 @@ class SyntheticConstantExpression extends ConstantExpression {
}
ConstantExpressionKind get kind => ConstantExpressionKind.SYNTHETIC;
+
+ @override
+ bool get isPotential => false;
+
+ @override
+ bool get isImplicit => false;
}
/// A boolean, int, double, string, or null constant.
@@ -422,6 +442,12 @@ class ListConstantExpression extends ConstantExpression {
@override
DartType getKnownType(CoreTypes coreTypes) => type;
+
+ @override
+ bool get isImplicit => false;
+
+ @override
+ bool get isPotential => values.any((e) => e.isPotential);
}
/// Literal map constant.
@@ -491,6 +517,14 @@ class MapConstantExpression extends ConstantExpression {
@override
DartType getKnownType(CoreTypes coreTypes) => type;
+
+ @override
+ bool get isImplicit => false;
+
+ @override
+ bool get isPotential {
+ return keys.any((e) => e.isPotential) || values.any((e) => e.isPotential);
+ }
}
/// Invocation of a const constructor.
@@ -571,6 +605,14 @@ class ConstructedConstantExpression extends ConstantExpression {
}
return true;
}
+
+ @override
+ bool get isImplicit => false;
+
+ @override
+ bool get isPotential {
+ return arguments.any((e) => e.isPotential);
+ }
}
/// String literal with juxtaposition and/or interpolations.
@@ -650,6 +692,11 @@ class ConcatenateConstantExpression extends ConstantExpression {
@override
DartType getKnownType(CoreTypes coreTypes) => coreTypes.stringType;
+
+ @override
+ bool get isPotential {
+ return expressions.any((e) => e.isPotential);
+ }
}
/// Symbol literal.
@@ -895,6 +942,11 @@ class BinaryConstantExpression extends ConstantExpression {
right == other.right;
}
+ @override
+ bool get isPotential {
+ return left.isPotential || right.isPotential;
+ }
+
static const Map<BinaryOperatorKind, int> PRECEDENCE_MAP = const {
BinaryOperatorKind.EQ: 6,
BinaryOperatorKind.NOT_EQ: 6,
@@ -968,6 +1020,11 @@ class IdenticalConstantExpression extends ConstantExpression {
@override
DartType getKnownType(CoreTypes coreTypes) => coreTypes.boolType;
+
+ @override
+ bool get isPotential {
+ return left.isPotential || right.isPotential;
+ }
}
/// A unary constant expression like `-a`.
@@ -1021,6 +1078,11 @@ class UnaryConstantExpression extends ConstantExpression {
return expression.getKnownType(coreTypes);
}
+ @override
+ bool get isPotential {
+ return expression.isPotential;
+ }
+
static const Map<UnaryOperatorKind, int> PRECEDENCE_MAP = const {
UnaryOperatorKind.NOT: 14,
UnaryOperatorKind.COMPLEMENT: 14,
@@ -1076,6 +1138,11 @@ class StringLengthConstantExpression extends ConstantExpression {
@override
DartType getKnownType(CoreTypes coreTypes) => coreTypes.intType;
+
+ @override
+ bool get isPotential {
+ return expression.isPotential;
+ }
}
/// A constant conditional expression like `a ? b : c`.
@@ -1149,6 +1216,11 @@ class ConditionalConstantExpression extends ConstantExpression {
}
return null;
}
+
+ @override
+ bool get isPotential {
+ return condition.isPotential || trueExp.isPotential || falseExp.isPotential;
+ }
}
/// A reference to a position parameter.
@@ -1185,6 +1257,11 @@ class PositionalArgumentReference extends ConstantExpression {
Environment environment, ConstantSystem constantSystem) {
throw new UnsupportedError('PositionalArgumentReference.evaluate');
}
+
+ @override
+ bool get isPotential {
+ return true;
+ }
}
/// A reference to a named parameter.
@@ -1221,6 +1298,11 @@ class NamedArgumentReference extends ConstantExpression {
Environment environment, ConstantSystem constantSystem) {
throw new UnsupportedError('NamedArgumentReference.evaluate');
}
+
+ @override
+ bool get isPotential {
+ return true;
+ }
}
abstract class FromEnvironmentConstantExpression extends ConstantExpression {
@@ -1238,6 +1320,17 @@ abstract class FromEnvironmentConstantExpression extends ConstantExpression {
bool _equals(FromEnvironmentConstantExpression other) {
return name == other.name && defaultValue == other.defaultValue;
}
+
+ @override
+ bool get isImplicit {
+ return false;
+ }
+
+ @override
+ bool get isPotential {
+ return name.isPotential ||
+ (defaultValue != null && defaultValue.isPotential);
+ }
}
/// A `const bool.fromEnvironment` constant.
@@ -1471,6 +1564,11 @@ class DeferredConstantExpression extends ConstantExpression {
accept(ConstantExpressionVisitor visitor, [context]) {
return visitor.visitDeferred(this, context);
}
+
+ @override
+ bool get isPotential {
+ return expression.isPotential;
+ }
}
abstract class ConstantExpressionVisitor<R, A> {

Powered by Google App Engine
This is Rietveld 408576698