| Index: src/arm64/full-codegen-arm64.cc
|
| diff --git a/src/arm64/full-codegen-arm64.cc b/src/arm64/full-codegen-arm64.cc
|
| index 1316a8193e21b4106d26ab267067faa7c89660e3..97e80676f28725377f436ce1fca13a5364975773 100644
|
| --- a/src/arm64/full-codegen-arm64.cc
|
| +++ b/src/arm64/full-codegen-arm64.cc
|
| @@ -2043,7 +2043,7 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr,
|
| BinaryOpICStub stub(isolate(), op, mode);
|
| {
|
| Assembler::BlockPoolsScope scope(masm_);
|
| - CallIC(stub.GetCode(isolate()), expr->BinaryOperationFeedbackId());
|
| + CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId());
|
| patch_site.EmitPatchInfo();
|
| }
|
| __ B(&done);
|
| @@ -2129,7 +2129,7 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr,
|
| JumpPatchSite patch_site(masm_); // Unbound, signals no inlined smi code.
|
| {
|
| Assembler::BlockPoolsScope scope(masm_);
|
| - CallIC(stub.GetCode(isolate()), expr->BinaryOperationFeedbackId());
|
| + CallIC(stub.GetCode(), expr->BinaryOperationFeedbackId());
|
| patch_site.EmitPatchInfo();
|
| }
|
| context()->Plug(x0);
|
| @@ -2660,7 +2660,7 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
|
| __ Mov(x3, Smi::FromInt(expr->CallNewFeedbackSlot()));
|
|
|
| CallConstructStub stub(isolate(), RECORD_CALL_TARGET);
|
| - __ Call(stub.GetCode(isolate()), RelocInfo::CONSTRUCT_CALL);
|
| + __ Call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
|
| PrepareForBailoutForId(expr->ReturnId(), TOS_REG);
|
| context()->Plug(x0);
|
| }
|
| @@ -4130,7 +4130,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
| {
|
| Assembler::BlockPoolsScope scope(masm_);
|
| BinaryOpICStub stub(isolate(), Token::ADD, NO_OVERWRITE);
|
| - CallIC(stub.GetCode(isolate()), expr->CountBinOpFeedbackId());
|
| + CallIC(stub.GetCode(), expr->CountBinOpFeedbackId());
|
| patch_site.EmitPatchInfo();
|
| }
|
| __ Bind(&done);
|
|
|