| Index: src/mips64/full-codegen-mips64.cc
|
| diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc
|
| index 5c26f163911cc726c8bb074a609f7d4e7a127174..bd74b448315e6f4b7bbabae98c95bed6c43f925b 100644
|
| --- a/src/mips64/full-codegen-mips64.cc
|
| +++ b/src/mips64/full-codegen-mips64.cc
|
| @@ -2831,6 +2831,8 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
| // v1 (receiver). Touch up the stack with the right values.
|
| __ sd(v0, MemOperand(sp, (arg_count + 1) * kPointerSize));
|
| __ sd(v1, MemOperand(sp, arg_count * kPointerSize));
|
| +
|
| + PrepareForBailoutForId(expr->EvalOrLookupId(), NO_REGISTERS);
|
| }
|
| // Record source position for debugger.
|
| SetSourcePosition(expr->position());
|
| @@ -2862,6 +2864,7 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
| __ Push(context_register(), a2);
|
| __ CallRuntime(Runtime::kLoadLookupSlot, 2);
|
| __ Push(v0, v1); // Function, receiver.
|
| + PrepareForBailoutForId(expr->EvalOrLookupId(), NO_REGISTERS);
|
|
|
| // If fast case code has been generated, emit code to push the
|
| // function and receiver and have the slow path jump around this
|
|
|