Revision: 13192 Author: [email protected] Date: Tue Dec 11 04:19:19 2012 Log: Fix missing printing of deoptimizer input data.
[email protected] TEST=mjsunit/compiler/inline-arguments --print-all-code Review URL: https://codereview.chromium.org/11537005 http://code.google.com/p/v8/source/detail?r=13192 Modified: /branches/bleeding_edge/src/objects.cc ======================================= --- /branches/bleeding_edge/src/objects.cc Tue Dec 11 02:22:15 2012 +++ /branches/bleeding_edge/src/objects.cc Tue Dec 11 04:19:19 2012 @@ -9217,8 +9217,12 @@ break; } - case Translation::ARGUMENTS_OBJECT: + case Translation::ARGUMENTS_OBJECT: { + int args_index = iterator.Next(); + int args_length = iterator.Next(); + PrintF(out, "{index=%d, length=%d}", args_index, args_length); break; + } } PrintF(out, "\n"); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
