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

Unified Diff: src/objects.cc

Issue 2729163002: [turbofan] compute arguments length in deoptimizer (Closed)
Patch Set: fix comment Created 3 years, 10 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/deoptimizer.cc ('k') | test/mjsunit/arguments-deopt.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 5bff37a654d2b31722f508f53722c364b0951ae9..9883fc0ca1936b2d78df04a8614fa7b1549fb308 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -14496,7 +14496,8 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(
break;
}
- case Translation::ARGUMENTS_ELEMENTS: {
+ case Translation::ARGUMENTS_ELEMENTS:
+ case Translation::ARGUMENTS_LENGTH: {
bool is_rest = iterator.Next();
os << "{is_rest=" << (is_rest ? "true" : "false") << "}";
break;
« no previous file with comments | « src/deoptimizer.cc ('k') | test/mjsunit/arguments-deopt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698