diff options
author | Michaël Zasso <targos@protonmail.com> | 2017-02-14 11:27:26 +0100 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2017-02-22 15:55:42 +0100 |
commit | 7a77daf24344db7942e34c962b0f1ee729ab7af5 (patch) | |
tree | e7cbe7bf4e2f4b802a8f5bc18336c546cd6a0d7f /deps/v8/src/compiler/js-frame-specialization.h | |
parent | 5f08871ee93ea739148cc49e0f7679e33c70295a (diff) | |
download | node-new-7a77daf24344db7942e34c962b0f1ee729ab7af5.tar.gz |
deps: update V8 to 5.6.326.55
PR-URL: https://github.com/nodejs/node/pull/10992
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'deps/v8/src/compiler/js-frame-specialization.h')
-rw-r--r-- | deps/v8/src/compiler/js-frame-specialization.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/deps/v8/src/compiler/js-frame-specialization.h b/deps/v8/src/compiler/js-frame-specialization.h index 90b3ca5e39..daf699265c 100644 --- a/deps/v8/src/compiler/js-frame-specialization.h +++ b/deps/v8/src/compiler/js-frame-specialization.h @@ -18,17 +18,18 @@ namespace compiler { // Forward declarations. class JSGraph; - -class JSFrameSpecialization final : public Reducer { +class JSFrameSpecialization final : public AdvancedReducer { public: - JSFrameSpecialization(JavaScriptFrame const* frame, JSGraph* jsgraph) - : frame_(frame), jsgraph_(jsgraph) {} + JSFrameSpecialization(Editor* editor, JavaScriptFrame const* frame, + JSGraph* jsgraph) + : AdvancedReducer(editor), frame_(frame), jsgraph_(jsgraph) {} ~JSFrameSpecialization() final {} Reduction Reduce(Node* node) final; private: Reduction ReduceOsrValue(Node* node); + Reduction ReduceOsrGuard(Node* node); Reduction ReduceParameter(Node* node); Isolate* isolate() const; |