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

Unified Diff: runtime/vm/heap.h

Issue 1584443002: VM: Precompiled rodata snapshot. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: win32, android build Created 4 years, 11 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/heap.h
diff --git a/runtime/vm/heap.h b/runtime/vm/heap.h
index 4a8ae93afaacae64b41fc6437de10ee313139bac..2bec224194063bf6876a16849961be0857c702bf 100644
--- a/runtime/vm/heap.h
+++ b/runtime/vm/heap.h
@@ -251,8 +251,10 @@ class Heap {
bool ShouldPretenure(intptr_t class_id) const;
- void SetupInstructionsSnapshotPage(void* pointer, uword size) {
- old_space_.SetupInstructionsSnapshotPage(pointer, size);
+ void SetupInstructionsSnapshotPage(void* pointer,
rmacnak 2016/01/15 00:57:01 SetupExternalPage
Florian Schneider 2016/01/15 15:56:01 Done.
+ uword size,
+ bool is_executable) {
+ old_space_.SetupInstructionsSnapshotPage(pointer, size, is_executable);
}
private:
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/isolate.h » ('j') | runtime/vm/pages.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698