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

Unified Diff: src/compiler/js-native-context-specialization.h

Issue 1406113007: Merge GlobalObject with JSGlobalObject. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/ast-graph-builder.cc ('k') | src/compiler/js-native-context-specialization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-native-context-specialization.h
diff --git a/src/compiler/js-native-context-specialization.h b/src/compiler/js-native-context-specialization.h
index e2ba62441dd53860fdbcd1bafb1c3718e252a4f9..81decae6d22c188bf0943e1195f1d3d9934009b1 100644
--- a/src/compiler/js-native-context-specialization.h
+++ b/src/compiler/js-native-context-specialization.h
@@ -43,7 +43,7 @@ class JSNativeContextSpecialization final : public AdvancedReducer {
typedef base::Flags<Flag> Flags;
JSNativeContextSpecialization(Editor* editor, JSGraph* jsgraph, Flags flags,
- Handle<GlobalObject> global_object,
+ Handle<JSGlobalObject> global_object,
CompilationDependencies* dependencies,
Zone* zone);
@@ -92,7 +92,7 @@ class JSNativeContextSpecialization final : public AdvancedReducer {
SimplifiedOperatorBuilder* simplified() const;
MachineOperatorBuilder* machine() const;
Flags flags() const { return flags_; }
- Handle<GlobalObject> global_object() const { return global_object_; }
+ Handle<JSGlobalObject> global_object() const { return global_object_; }
Handle<Context> native_context() const { return native_context_; }
CompilationDependencies* dependencies() const { return dependencies_; }
Zone* zone() const { return zone_; }
@@ -102,7 +102,7 @@ class JSNativeContextSpecialization final : public AdvancedReducer {
JSGraph* const jsgraph_;
Flags const flags_;
- Handle<GlobalObject> global_object_;
+ Handle<JSGlobalObject> global_object_;
Handle<Context> native_context_;
CompilationDependencies* const dependencies_;
Zone* const zone_;
« no previous file with comments | « src/compiler/ast-graph-builder.cc ('k') | src/compiler/js-native-context-specialization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698