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

Unified Diff: runtime/vm/object.cc

Issue 1834763004: Track loading happening in parallel with background compilation and abort compilation if necessary. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: d Created 4 years, 9 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: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index b0b4f4f57626a1215ed5c10b2efe8bfe7834c7d5..aaf9d480cfabb2dce3414313486be15efb140584 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -2733,9 +2733,7 @@ class CHACodeArray : public WeakCodeReferences {
}
}
- virtual void IncrementInvalidationGen() {
- Isolate::Current()->IncrCHAInvalidationGen();
- }
+ virtual void IncrementInvalidationGen() {}
private:
const Class& cls_;
@@ -10515,7 +10513,6 @@ RawClass* LibraryPrefix::LookupClass(const String& class_name) const {
void LibraryPrefix::set_is_loaded() const {
- Isolate::Current()->IncrPrefixInvalidationGen();
StoreNonPointer(&raw_ptr()->is_loaded_, true);
}
@@ -10608,9 +10605,7 @@ class PrefixDependentArray : public WeakCodeReferences {
}
}
- virtual void IncrementInvalidationGen() {
- Isolate::Current()->IncrPrefixInvalidationGen();
- }
+ virtual void IncrementInvalidationGen() {}
private:
const LibraryPrefix& prefix_;

Powered by Google App Engine
This is Rietveld 408576698