Reviewers: Rico, Description: Pregenerate a RecordWrite stub that we need in the new CallFunctionStub so that we don't try to generate a stub while we are generating a stub.
Please review this at http://codereview.chromium.org/8052029/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ia32/code-stubs-ia32.cc Index: src/ia32/code-stubs-ia32.cc =================================================================== --- src/ia32/code-stubs-ia32.cc (revision 9457) +++ src/ia32/code-stubs-ia32.cc (working copy) @@ -6681,6 +6681,8 @@ { ebx, edx, ecx, EMIT_REMEMBERED_SET}, // KeyedStoreStubCompiler::GenerateStoreFastElement. { edi, edx, ecx, EMIT_REMEMBERED_SET}, + // CallFunctionStub. + { ebx, ecx, edx, OMIT_REMEMBERED_SET}, // Null termination. { no_reg, no_reg, no_reg, EMIT_REMEMBERED_SET} }; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
