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

Unified Diff: src/compiler/js-generic-lowering.h

Issue 981243002: [turbofan] Introduce JSStackCheck operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE Created 5 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
Index: src/compiler/js-generic-lowering.h
diff --git a/src/compiler/js-generic-lowering.h b/src/compiler/js-generic-lowering.h
index 10057eb9e11207203931822b9f1f85cca676731c..30e8cf66559ea2984d5db335913fc26f61bbd94a 100644
--- a/src/compiler/js-generic-lowering.h
+++ b/src/compiler/js-generic-lowering.h
@@ -51,11 +51,12 @@ class JSGenericLowering FINAL : public Reducer {
JSGraph* jsgraph() const { return jsgraph_; }
Graph* graph() const { return jsgraph()->graph(); }
CommonOperatorBuilder* common() const { return jsgraph()->common(); }
+ JSOperatorBuilder* javascript() const { return jsgraph()->javascript(); }
Michael Starzinger 2015/03/06 14:06:39 Is this used anywhere? If it is then that's actual
Benedikt Meurer 2015/03/09 05:01:45 That was leftover from a previous attempt. Removed
MachineOperatorBuilder* machine() const { return jsgraph()->machine(); }
private:
bool is_typing_enabled_;
- JSGraph* jsgraph_;
+ JSGraph* const jsgraph_;
};
} // namespace compiler

Powered by Google App Engine
This is Rietveld 408576698