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

Unified Diff: runtime/vm/isolate.h

Issue 2699853002: Sort class IDs before training AppJIT snapshots (Closed)
Patch Set: Add DeleteAllCode Created 3 years, 10 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 | « runtime/vm/heap.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 72abde65431233bce4151e4e900a48e00864b96a..115a3a9d6ab7a998565c936479bd94e8f3cc2357 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -559,6 +559,8 @@ class Isolate : public BaseIsolate {
bool all_classes_finalized() const { return all_classes_finalized_; }
void set_all_classes_finalized(bool value) { all_classes_finalized_ = value; }
+ void set_remapping_cids(bool value) { remapping_cids_ = value; }
+
// True during top level parsing.
bool IsTopLevelParsing() {
const intptr_t value =
@@ -806,6 +808,7 @@ class Isolate : public BaseIsolate {
bool compilation_allowed_;
bool all_classes_finalized_;
+ bool remapping_cids_;
// Isolate list next pointer.
Isolate* next_;
« no previous file with comments | « runtime/vm/heap.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698