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

Unified Diff: runtime/vm/intermediate_language.h

Issue 1410363005: Make ICData changes thread safe (first compute array, then set it). Install code in the main thread… (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Make it build 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/intermediate_language.h
diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
index 40eaa0adc25d6fdb9caa34e46d27f651f29cb9f2..fbd405122c91180033136e47251ecbc3970f6abe 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -1329,7 +1329,7 @@ class GraphEntryInstr : public BlockEntryInstr {
}
ConstantInstr* constant_null();
- bool IsCompiledForOsr() const { return osr_id_ != Thread::kNoDeoptId; }
+ bool IsCompiledForOsr() const;
intptr_t entry_count() const { return entry_count_; }
void set_entry_count(intptr_t count) { entry_count_ = count; }

Powered by Google App Engine
This is Rietveld 408576698