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

Unified Diff: src/compiler/js-global-specialization.h

Issue 1409993002: [turbofan] Move SimplifiedOperatorBuilder into JSGraph. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | src/compiler/js-global-specialization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-global-specialization.h
diff --git a/src/compiler/js-global-specialization.h b/src/compiler/js-global-specialization.h
index 8454bd0e6b6def8c71e1ba0855dc431c7cb586be..a040e9bdbfcb345e41ce7eaa51a866f8d305d5f0 100644
--- a/src/compiler/js-global-specialization.h
+++ b/src/compiler/js-global-specialization.h
@@ -62,7 +62,7 @@ class JSGlobalSpecialization final : public AdvancedReducer {
Isolate* isolate() const;
CommonOperatorBuilder* common() const;
JSOperatorBuilder* javascript() const;
- SimplifiedOperatorBuilder* simplified() { return &simplified_; }
+ SimplifiedOperatorBuilder* simplified() const;
Flags flags() const { return flags_; }
Handle<GlobalObject> global_object() const { return global_object_; }
CompilationDependencies* dependencies() const { return dependencies_; }
@@ -71,7 +71,6 @@ class JSGlobalSpecialization final : public AdvancedReducer {
Flags const flags_;
Handle<GlobalObject> global_object_;
CompilationDependencies* const dependencies_;
- SimplifiedOperatorBuilder simplified_;
DISALLOW_COPY_AND_ASSIGN(JSGlobalSpecialization);
};
« no previous file with comments | « no previous file | src/compiler/js-global-specialization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698