Chromium Code Reviews| Index: src/arm/macro-assembler-arm.cc |
| diff --git a/src/arm/macro-assembler-arm.cc b/src/arm/macro-assembler-arm.cc |
| index 0234e48ad60f552a6b3fbbf89cdf420daac72aaa..436140db923317fa9e8ec899fdb075804992806e 100644 |
| --- a/src/arm/macro-assembler-arm.cc |
| +++ b/src/arm/macro-assembler-arm.cc |
| @@ -110,7 +110,7 @@ int MacroAssembler::CallSize( |
| int MacroAssembler::CallStubSize( |
| CodeStub* stub, TypeFeedbackId ast_id, Condition cond) { |
| return CallSize( |
| - stub->GetCode(isolate()), RelocInfo::CODE_TARGET, ast_id, cond); |
| + stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); |
|
Michael Starzinger
2014/04/24 11:48:13
nit: Should fit into one line now.
Sven Panne
2014/04/24 12:02:21
Done.
|
| } |
| @@ -1342,7 +1342,7 @@ void MacroAssembler::DebugBreak() { |
| mov(r1, Operand(ExternalReference(Runtime::kDebugBreak, isolate()))); |
| CEntryStub ces(isolate(), 1); |
| ASSERT(AllowThisStubCall(&ces)); |
| - Call(ces.GetCode(isolate()), RelocInfo::DEBUG_BREAK); |
| + Call(ces.GetCode(), RelocInfo::DEBUG_BREAK); |
| } |
| #endif |
| @@ -2320,12 +2320,12 @@ void MacroAssembler::CallStub(CodeStub* stub, |
| TypeFeedbackId ast_id, |
| Condition cond) { |
| ASSERT(AllowThisStubCall(stub)); // Stub calls are not allowed in some stubs. |
| - Call(stub->GetCode(isolate()), RelocInfo::CODE_TARGET, ast_id, cond); |
| + Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); |
| } |
| void MacroAssembler::TailCallStub(CodeStub* stub, Condition cond) { |
| - Jump(stub->GetCode(isolate()), RelocInfo::CODE_TARGET, cond); |
| + Jump(stub->GetCode(), RelocInfo::CODE_TARGET, cond); |
| } |
| @@ -2727,7 +2727,7 @@ void MacroAssembler::JumpToExternalReference(const ExternalReference& builtin) { |
| #endif |
| mov(r1, Operand(builtin)); |
| CEntryStub stub(isolate(), 1); |
| - Jump(stub.GetCode(isolate()), RelocInfo::CODE_TARGET); |
| + Jump(stub.GetCode(), RelocInfo::CODE_TARGET); |
| } |