| Index: src/deoptimizer.cc
|
| ===================================================================
|
| --- src/deoptimizer.cc (revision 7031)
|
| +++ src/deoptimizer.cc (working copy)
|
| @@ -673,7 +673,7 @@
|
| case Translation::REGISTER: {
|
| int output_reg = iterator->Next();
|
| if (FLAG_trace_osr) {
|
| - PrintF(" %s <- 0x%08" V8PRIxPTR " ; [esp + %d]\n",
|
| + PrintF(" %s <- 0x%08" V8PRIxPTR " ; [sp + %d]\n",
|
| converter.NameOfCPURegister(output_reg),
|
| input_value,
|
| *input_offset);
|
| @@ -700,7 +700,7 @@
|
| return false;
|
| }
|
| if (FLAG_trace_osr) {
|
| - PrintF(" %s <- %d (int32) ; [esp + %d]\n",
|
| + PrintF(" %s <- %d (int32) ; [sp + %d]\n",
|
| converter.NameOfCPURegister(output_reg),
|
| int32_value,
|
| *input_offset);
|
| @@ -716,7 +716,7 @@
|
| int output_reg = iterator->Next();
|
| double double_value = input_object->Number();
|
| if (FLAG_trace_osr) {
|
| - PrintF(" %s <- %g (double) ; [esp + %d]\n",
|
| + PrintF(" %s <- %g (double) ; [sp + %d]\n",
|
| DoubleRegister::AllocationIndexToString(output_reg),
|
| double_value,
|
| *input_offset);
|
| @@ -730,7 +730,7 @@
|
| unsigned output_offset =
|
| output->GetOffsetFromSlotIndex(this, output_index);
|
| if (FLAG_trace_osr) {
|
| - PrintF(" [esp + %d] <- 0x%08" V8PRIxPTR " ; [esp + %d]\n",
|
| + PrintF(" [sp + %d] <- 0x%08" V8PRIxPTR " ; [sp + %d]\n",
|
| output_offset,
|
| input_value,
|
| *input_offset);
|
| @@ -759,7 +759,7 @@
|
| return false;
|
| }
|
| if (FLAG_trace_osr) {
|
| - PrintF(" [esp + %d] <- %d (int32) ; [esp + %d]\n",
|
| + PrintF(" [sp + %d] <- %d (int32) ; [sp + %d]\n",
|
| output_offset,
|
| int32_value,
|
| *input_offset);
|
| @@ -783,12 +783,12 @@
|
| int32_t lower = static_cast<int32_t>(int_value);
|
| int32_t upper = static_cast<int32_t>(int_value >> kBitsPerInt);
|
| if (FLAG_trace_osr) {
|
| - PrintF(" [esp + %d] <- 0x%08x (upper bits of %g) ; [esp + %d]\n",
|
| + PrintF(" [sp + %d] <- 0x%08x (upper bits of %g) ; [sp + %d]\n",
|
| output_offset + kUpperOffset,
|
| upper,
|
| double_value,
|
| *input_offset);
|
| - PrintF(" [esp + %d] <- 0x%08x (lower bits of %g) ; [esp + %d]\n",
|
| + PrintF(" [sp + %d] <- 0x%08x (lower bits of %g) ; [sp + %d]\n",
|
| output_offset + kLowerOffset,
|
| lower,
|
| double_value,
|
|
|