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

Unified Diff: src/compiler/operator-properties.cc

Issue 1467173002: [turbofan] Allow to consume feedback on CallConstruct. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments. 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
« src/compiler/js-call-reducer.cc ('K') | « src/compiler/js-inlining.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/operator-properties.cc
diff --git a/src/compiler/operator-properties.cc b/src/compiler/operator-properties.cc
index e066481c2157f5423a5730538a89a9c17a14ce12..d0ad330fcca93c19f101f2115dc47583d3e905fa 100644
--- a/src/compiler/operator-properties.cc
+++ b/src/compiler/operator-properties.cc
@@ -35,13 +35,11 @@ int OperatorProperties::GetFrameStateInputCount(const Operator* op) {
return 0;
// We record the frame state immediately before and immediately after every
- // function call.
+ // construct/function call.
+ case IrOpcode::kJSCallConstruct:
case IrOpcode::kJSCallFunction:
return 2;
- // Construct calls
- case IrOpcode::kJSCallConstruct:
-
// Compare operations
case IrOpcode::kJSEqual:
case IrOpcode::kJSNotEqual:
« src/compiler/js-call-reducer.cc ('K') | « src/compiler/js-inlining.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698