Chromium Code Reviews| Index: src/objects.cc |
| diff --git a/src/objects.cc b/src/objects.cc |
| index a1e37b11e0b3b92226d36e47b921c38f89ea8614..43c193c1bc331d0c79f33201fbd2bdb5d792b6e2 100644 |
| --- a/src/objects.cc |
| +++ b/src/objects.cc |
| @@ -8225,9 +8225,15 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) { |
| break; |
| } |
| - case Translation::ARGUMENTS_ADAPTOR_FRAME: { |
| + case Translation::ARGUMENTS_ADAPTOR_FRAME: |
| + case Translation::CONSTRUCT_STUB_FRAME: { |
| + int function_id = iterator.Next(); |
| + JSFunction* function = |
| + JSFunction::cast(LiteralArray()->get(function_id)); |
| unsigned height = iterator.Next(); |
| - PrintF(out, "{arguments adaptor, height=%d}", height); |
| + PrintF(out, "{function="); |
|
Vyacheslav Egorov (Chromium)
2012/02/13 15:01:39
It would be still good to see type of the frame in
Michael Starzinger
2012/02/27 14:16:32
You will see the type, because it is printed using
|
| + function->PrintName(out); |
| + PrintF(out, ", height=%u}", height); |
| break; |
| } |