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

Unified Diff: src/compiler/js-typed-lowering.cc

Issue 1169103004: [deoptimizer] Basic support inlining based on SharedFunctionInfo. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Jaros comment. 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/js-inlining.cc ('k') | src/deoptimizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-typed-lowering.cc
diff --git a/src/compiler/js-typed-lowering.cc b/src/compiler/js-typed-lowering.cc
index ad03b10e14a1894e567f1f6a46c4e13fbac342e1..602b6333a3d32207628d24495f68f350c45c19a2 100644
--- a/src/compiler/js-typed-lowering.cc
+++ b/src/compiler/js-typed-lowering.cc
@@ -262,7 +262,7 @@ class JSBinopReduction final {
// left operand.
const Operator* op = jsgraph()->common()->FrameState(
state_info.type(), state_info.bailout_id(),
- OutputFrameStateCombine::PokeAt(1));
+ OutputFrameStateCombine::PokeAt(1), state_info.shared_info());
return graph()->NewNode(op,
frame_state->InputAt(kFrameStateParametersInput),
@@ -286,7 +286,7 @@ class JSBinopReduction final {
// top of the stack (i.e., the slot used for the right operand).
const Operator* op = jsgraph()->common()->FrameState(
state_info.type(), state_info.bailout_id(),
- OutputFrameStateCombine::PokeAt(0));
+ OutputFrameStateCombine::PokeAt(0), state_info.shared_info());
// Change the left operand {converted_left} on the expression stack.
Node* stack = frame_state->InputAt(2);
« no previous file with comments | « src/compiler/js-inlining.cc ('k') | src/deoptimizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698