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

Unified Diff: runtime/vm/heap.h

Issue 1883053002: Shuffle fields to make simarm and arm agree on the offset of Heap::new_space_.to_. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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/dart.cc ('k') | runtime/vm/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/heap.h
diff --git a/runtime/vm/heap.h b/runtime/vm/heap.h
index 287cbdca14242cbe353792ed7a02897539f0b122..1526424a91cccf1a3b5c5f07a55607caa1a0d3ac 100644
--- a/runtime/vm/heap.h
+++ b/runtime/vm/heap.h
@@ -340,16 +340,17 @@ class Heap {
void GetMergedAddressRange(uword* start, uword* end) const;
Isolate* isolate_;
- Monitor* barrier_;
- Monitor* barrier_done_;
// The different spaces used for allocation.
- Scavenger new_space_;
+ ALIGN8 Scavenger new_space_;
PageSpace old_space_;
WeakTable* new_weak_tables_[kNumWeakSelectors];
WeakTable* old_weak_tables_[kNumWeakSelectors];
+ Monitor* barrier_;
+ Monitor* barrier_done_;
+
// GC stats collection.
GCStats stats_;
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698