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

Unified Diff: src/compiler/node-marker.h

Issue 1188433010: [turbofan] Move graph trimming functionality to dedicated GraphTrimmer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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 | « src/compiler/graph-trimmer.cc ('k') | src/compiler/node-marker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/node-marker.h
diff --git a/src/compiler/node-marker.h b/src/compiler/node-marker.h
index 9ce03b054b48a4167ca54e79ef9f03c96cf42cdf..5ef2063f18715cc5c59ddb9816f1de37c5ae2f1e 100644
--- a/src/compiler/node-marker.h
+++ b/src/compiler/node-marker.h
@@ -34,11 +34,10 @@ class NodeMarkerBase {
DCHECK_LT(node->mark(), mark_max_);
node->set_mark(mark + mark_min_);
}
- void Reset(Graph* graph);
private:
- Mark mark_min_;
- Mark mark_max_;
+ Mark const mark_min_;
+ Mark const mark_max_;
DISALLOW_COPY_AND_ASSIGN(NodeMarkerBase);
};
« no previous file with comments | « src/compiler/graph-trimmer.cc ('k') | src/compiler/node-marker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698