| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 7891dc6fe6cd07e1914a97a7653cac719a1329f9..ee9e5353fa09a190039fae6b093124720b8e7241 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -4430,8 +4430,8 @@ bool CEntryStub::NeedsImmovableCode() {
|
| }
|
|
|
|
|
| -bool CEntryStub::IsPregenerated() {
|
| - return (!save_doubles_ || ISOLATE->fp_stubs_generated()) &&
|
| +bool CEntryStub::IsPregenerated(Isolate* isolate) {
|
| + return (!save_doubles_ || isolate->fp_stubs_generated()) &&
|
| result_size_ == 1;
|
| }
|
|
|
| @@ -6812,8 +6812,6 @@ static const AheadOfTimeWriteBarrierStubList kAheadOfTime[] = {
|
| // Used in CompileArrayPushCall.
|
| { REG(ebx), REG(ecx), REG(edx), EMIT_REMEMBERED_SET },
|
| { REG(ebx), REG(edi), REG(edx), OMIT_REMEMBERED_SET },
|
| - // Used in CompileStoreGlobal and CallFunctionStub.
|
| - { REG(ebx), REG(ecx), REG(edx), OMIT_REMEMBERED_SET },
|
| // Used in StoreStubCompiler::CompileStoreField and
|
| // KeyedStoreStubCompiler::CompileStoreField via GenerateStoreField.
|
| { REG(edx), REG(ecx), REG(ebx), EMIT_REMEMBERED_SET },
|
| @@ -6847,7 +6845,7 @@ static const AheadOfTimeWriteBarrierStubList kAheadOfTime[] = {
|
|
|
| #undef REG
|
|
|
| -bool RecordWriteStub::IsPregenerated() {
|
| +bool RecordWriteStub::IsPregenerated(Isolate* isolate) {
|
| for (const AheadOfTimeWriteBarrierStubList* entry = kAheadOfTime;
|
| !entry->object.is(no_reg);
|
| entry++) {
|
|
|