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

Unified Diff: runtime/vm/pages.h

Issue 2771013002: Add more safe points in compiler (Closed)
Patch Set: Fix test that 'parses' verbose GC output Created 3 years, 9 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/jit_optimizer.cc ('k') | runtime/vm/pages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/pages.h
diff --git a/runtime/vm/pages.h b/runtime/vm/pages.h
index 0cf4388cbfdbf85948a701780af447b7df8ebdff..7699625cc978d36801011d479bbccd7d3c89504a 100644
--- a/runtime/vm/pages.h
+++ b/runtime/vm/pages.h
@@ -324,10 +324,12 @@ class PageSpace {
// Ids for time and data records in Heap::GCStats.
enum {
// Time
- kMarkObjects = 0,
- kResetFreeLists = 1,
- kSweepPages = 2,
- kSweepLargePages = 3,
+ kConcurrentSweep = 0,
+ kSafePoint = 1,
+ kMarkObjects = 2,
+ kResetFreeLists = 3,
+ kSweepPages = 4,
+ kSweepLargePages = 5,
// Data
kGarbageRatio = 0,
kGCTimeFraction = 1,
« no previous file with comments | « runtime/vm/jit_optimizer.cc ('k') | runtime/vm/pages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698