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

Unified Diff: pkg/analyzer/lib/src/context/cache.dart

Issue 2172973002: Invalidate results, which compound results of other targets. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/task/dart.dart » ('j') | pkg/analyzer/lib/src/task/dart.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/context/cache.dart
diff --git a/pkg/analyzer/lib/src/context/cache.dart b/pkg/analyzer/lib/src/context/cache.dart
index 38d7d1c372bd18959f309585693d6eb65b8dff48..b6a69feef8add75a1c13af2a3510b34d0b9156ba 100644
--- a/pkg/analyzer/lib/src/context/cache.dart
+++ b/pkg/analyzer/lib/src/context/cache.dart
@@ -8,8 +8,6 @@ import 'dart:async';
import 'dart:collection';
import 'package:analyzer/file_system/file_system.dart';
-import 'package:analyzer/src/dart/element/element.dart'
- show ElementImpl, Modifier;
import 'package:analyzer/src/generated/engine.dart';
import 'package:analyzer/src/generated/java_engine.dart';
import 'package:analyzer/src/generated/source.dart';
@@ -559,7 +557,7 @@ class CacheEntry {
// }
// valueStr = valueStr.replaceAll('\n', '\\n');
// print(
-// 'setValue $descriptor for $target value=$valueStr $dependedOn=$dependedOn');
+// 'setValue $descriptor for $target value=$valueStr dependedOn=$dependedOn');
// }
_validateStateChange(descriptor, CacheState.VALID);
TargetedResult thisResult = new TargetedResult(target, descriptor);
@@ -659,7 +657,7 @@ class CacheEntry {
return;
}
}
-// if (deltaResult != null && deltaResult != DeltaResult.KEEP_CONTINUE) {
+// if (deltaResult != null) {
// String indent = ' ' * level;
// String deltaResultName = deltaResult.toString().split('.').last;
// print('[$id]$indent$deltaResultName $descriptor for $target');
@@ -669,34 +667,44 @@ class CacheEntry {
}
if (deltaResult == null ||
deltaResult == DeltaResult.INVALIDATE ||
+ deltaResult == DeltaResult.INVALIDATE_KEEP_DEPENDENCIES ||
deltaResult == DeltaResult.INVALIDATE_NO_DELTA) {
- _resultMap.remove(descriptor);
-// {
-// String indent = ' ' * level;
-// print('[$id]$indent invalidate $descriptor for $target');
-// }
- }
- // Stop depending on other results.
- if (deltaResult != DeltaResult.KEEP_CONTINUE) {
- TargetedResult thisResult = new TargetedResult(target, descriptor);
- List<AnalysisCache> caches = _partition.containingCaches;
- int cacheLength = caches.length;
- List<TargetedResult> results = thisData.dependedOnResults;
- int resultLength = results.length;
- for (int i = 0; i < resultLength; i++) {
- TargetedResult dependedOnResult = results[i];
- for (int j = 0; j < cacheLength; j++) {
- AnalysisCache cache = caches[j];
- CacheEntry entry = cache.get(dependedOnResult.target);
- if (entry != null) {
- ResultData data =
- entry.getResultDataOrNull(dependedOnResult.result);
- if (data != null) {
- data.dependentResults.remove(thisResult);
+ if (deltaResult == DeltaResult.INVALIDATE_KEEP_DEPENDENCIES) {
Brian Wilkerson 2016/07/27 18:47:37 Seem kind of strange to nest this. Why not make it
scheglov 2016/07/27 19:48:44 Done.
+ thisData.value = descriptor.defaultValue;
+ thisData.state = CacheState.INVALID;
+ } else {
+ _resultMap.remove(descriptor);
+ // Stop depending on other results.
+ if (deltaResult != DeltaResult.KEEP_CONTINUE) {
+ TargetedResult thisResult = new TargetedResult(target, descriptor);
+ List<AnalysisCache> caches = _partition.containingCaches;
+ int cacheLength = caches.length;
+ List<TargetedResult> results = thisData.dependedOnResults;
+ int resultLength = results.length;
+ for (int i = 0; i < resultLength; i++) {
+ TargetedResult dependedOnResult = results[i];
+ for (int j = 0; j < cacheLength; j++) {
+ AnalysisCache cache = caches[j];
+ CacheEntry entry = cache.get(dependedOnResult.target);
+ if (entry != null) {
+ ResultData data =
+ entry.getResultDataOrNull(dependedOnResult.result);
+ if (data != null) {
+ data.dependentResults.remove(thisResult);
+ }
+ }
}
}
}
}
+// if (deltaResult == null) {
+// String indent = ' ' * level;
+// print('[$id]$indent invalidate $descriptor for $target');
+// if ('$descriptor for $target' ==
+// 'READY_LIBRARY_ELEMENT2 for /Users/scheglov/tmp/limited-invalidation/async/lib/async.dart') {
+// print('interesting');
+// }
+// }
}
// Invalidate results that depend on this result.
_invalidateDependentResults(id, thisData, delta, level + 1);
@@ -779,10 +787,8 @@ class CacheEntry {
AnalysisCache cache = caches[j];
CacheEntry entry = cache.get(dependedOnResult.target);
if (entry != null) {
- ResultData data = entry.getResultDataOrNull(dependedOnResult.result);
- if (data != null) {
- data.dependentResults.add(thisResult);
- }
+ ResultData data = entry.getResultData(dependedOnResult.result);
+ data.dependentResults.add(thisResult);
}
}
}
@@ -1271,11 +1277,17 @@ class Delta {
enum DeltaResult {
/**
* Invalidate this result and continue visiting dependent results
- * with this [Delta].
+ * with this [Delta]. Remove the result and all its dependencies.
*/
INVALIDATE,
/**
+ * Invalidate this result and continue visiting dependent results
+ * with this [Delta]. Keep the dependencies of this result.
+ */
+ INVALIDATE_KEEP_DEPENDENCIES,
+
+ /**
* Invalidate this result and stop using this [Delta], so unconditionally
* invalidate all the dependent results.
*/
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/task/dart.dart » ('j') | pkg/analyzer/lib/src/task/dart.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698