| Index: src/ia32/macro-assembler-ia32.cc
|
| diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc
|
| index 3b2e039c4b05b8f361a8ddf1abb42e50c3e8c16a..c222452a6da5813a255765049619565052228435 100644
|
| --- a/src/ia32/macro-assembler-ia32.cc
|
| +++ b/src/ia32/macro-assembler-ia32.cc
|
| @@ -248,7 +248,7 @@ void MacroAssembler::SlowTruncateToI(Register result_reg,
|
| Register input_reg,
|
| int offset) {
|
| DoubleToIStub stub(isolate(), input_reg, result_reg, offset, true);
|
| - call(stub.GetCode(isolate()), RelocInfo::CODE_TARGET);
|
| + call(stub.GetCode(), RelocInfo::CODE_TARGET);
|
| }
|
|
|
|
|
| @@ -720,7 +720,7 @@ void MacroAssembler::DebugBreak() {
|
| Move(eax, Immediate(0));
|
| mov(ebx, Immediate(ExternalReference(Runtime::kDebugBreak, isolate())));
|
| CEntryStub ces(isolate(), 1);
|
| - call(ces.GetCode(isolate()), RelocInfo::DEBUG_BREAK);
|
| + call(ces.GetCode(), RelocInfo::DEBUG_BREAK);
|
| }
|
| #endif
|
|
|
| @@ -2184,12 +2184,12 @@ void MacroAssembler::TryGetFunctionPrototype(Register function,
|
|
|
| void MacroAssembler::CallStub(CodeStub* stub, TypeFeedbackId ast_id) {
|
| ASSERT(AllowThisStubCall(stub)); // Calls are not allowed in some stubs.
|
| - call(stub->GetCode(isolate()), RelocInfo::CODE_TARGET, ast_id);
|
| + call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id);
|
| }
|
|
|
|
|
| void MacroAssembler::TailCallStub(CodeStub* stub) {
|
| - jmp(stub->GetCode(isolate()), RelocInfo::CODE_TARGET);
|
| + jmp(stub->GetCode(), RelocInfo::CODE_TARGET);
|
| }
|
|
|
|
|
| @@ -2456,7 +2456,7 @@ void MacroAssembler::JumpToExternalReference(const ExternalReference& ext) {
|
| // Set the entry point and jump to the C entry runtime stub.
|
| mov(ebx, Immediate(ext));
|
| CEntryStub ces(isolate(), 1);
|
| - jmp(ces.GetCode(isolate()), RelocInfo::CODE_TARGET);
|
| + jmp(ces.GetCode(), RelocInfo::CODE_TARGET);
|
| }
|
|
|
|
|
|
|