| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 1067691335b9727e37aa6b1b9bdd4d54dc058c45..e8590b20be2e29e63c09744059d870b496140ed8 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -8329,6 +8329,14 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
|
| break;
|
| }
|
|
|
| + case Translation::UINT32_REGISTER: {
|
| + int reg_code = iterator.Next();
|
| + PrintF(out,
|
| + "{input=%s (unsigned)}",
|
| + converter.NameOfCPURegister(reg_code));
|
| + break;
|
| + }
|
| +
|
| case Translation::DOUBLE_REGISTER: {
|
| int reg_code = iterator.Next();
|
| PrintF(out, "{input=%s}",
|
| @@ -8348,6 +8356,12 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
|
| break;
|
| }
|
|
|
| + case Translation::UINT32_STACK_SLOT: {
|
| + int input_slot_index = iterator.Next();
|
| + PrintF(out, "{input=%d (unsigned)}", input_slot_index);
|
| + break;
|
| + }
|
| +
|
| case Translation::DOUBLE_STACK_SLOT: {
|
| int input_slot_index = iterator.Next();
|
| PrintF(out, "{input=%d}", input_slot_index);
|
|
|