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

Unified Diff: runtime/vm/scavenger.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/redundancy_elimination.cc ('k') | runtime/vm/scavenger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/scavenger.h
diff --git a/runtime/vm/scavenger.h b/runtime/vm/scavenger.h
index 9bffb215b806dac03928c360b5f1712b9532d839..7fa3950f701eb2847e9356e43f952552e8f01699 100644
--- a/runtime/vm/scavenger.h
+++ b/runtime/vm/scavenger.h
@@ -198,10 +198,12 @@ class Scavenger {
// Ids for time and data records in Heap::GCStats.
enum {
// Time
- kVisitIsolateRoots = 0,
- kIterateStoreBuffers = 1,
- kProcessToSpace = 2,
- kIterateWeaks = 3,
+ kDummyScavengeTime = 0,
+ kSafePoint = 1,
+ kVisitIsolateRoots = 2,
+ kIterateStoreBuffers = 3,
+ kProcessToSpace = 4,
+ kIterateWeaks = 5,
// Data
kStoreBufferEntries = 0,
kDataUnused1 = 1,
« no previous file with comments | « runtime/vm/redundancy_elimination.cc ('k') | runtime/vm/scavenger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698