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

Unified Diff: runtime/vm/isolate.h

Issue 1409173002: More work for background compilation; move pending_functions_ from ObjectStore to Thread. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Cleanup Created 5 years, 2 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/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 08c783bb66a5f1919f397efc31377d5aa2a651d5..d5ba6a15014678ff6c658be138042448b750edfb 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -754,7 +754,6 @@ class Isolate : public BaseIsolate {
uword stack_limit_;
StoreBuffer* store_buffer_;
Heap* heap_;
- uword vm_tag_;
uword user_tag_;
RawUserTag* current_tag_;
RawUserTag* default_tag_;
@@ -784,7 +783,7 @@ class Isolate : public BaseIsolate {
Flags flags_;
Random random_;
Simulator* simulator_;
- Mutex* mutex_; // protects stack_limit_ and saved_stack_limit_.
+ Mutex* mutex_; // protects stack_limit_, saved_stack_limit_, compiler stats.
uword saved_stack_limit_;
uword stack_base_;
uword stack_overflow_flags_;
@@ -796,7 +795,6 @@ class Isolate : public BaseIsolate {
Dart_GcEpilogueCallback gc_epilogue_callback_;
intptr_t defer_finalization_count_;
DeoptContext* deopt_context_;
- BackgroundCompiler* background_compiler_;
CompilerStats* compiler_stats_;
@@ -822,8 +820,10 @@ class Isolate : public BaseIsolate {
VMTagCounters vm_tag_counters_;
RawGrowableObjectArray* tag_table_;
-
RawGrowableObjectArray* deoptimized_code_array_;
+
+ // Background compilation.
+ BackgroundCompiler* background_compiler_;
RawGrowableObjectArray* background_compilation_queue_;
// We use 6 list entries for each pending service extension calls.
« runtime/vm/compiler.cc ('K') | « runtime/vm/compiler_stats.h ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698