| Index: src/ia32/virtual-frame-ia32.cc
|
| ===================================================================
|
| --- src/ia32/virtual-frame-ia32.cc (revision 5810)
|
| +++ src/ia32/virtual-frame-ia32.cc (working copy)
|
| @@ -33,6 +33,7 @@
|
| #include "register-allocator-inl.h"
|
| #include "scopes.h"
|
| #include "virtual-frame-inl.h"
|
| +#include "stub-cache.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
| @@ -1108,7 +1109,7 @@
|
| // The IC expects the name in ecx and the rest on the stack and
|
| // drops them all.
|
| InLoopFlag in_loop = loop_nesting > 0 ? IN_LOOP : NOT_IN_LOOP;
|
| - Handle<Code> ic = cgen()->ComputeCallInitialize(arg_count, in_loop);
|
| + Handle<Code> ic = StubCache::ComputeCallInitialize(arg_count, in_loop);
|
| // Spill args, receiver, and function. The call will drop args and
|
| // receiver.
|
| Result name = Pop();
|
| @@ -1126,7 +1127,7 @@
|
| // The IC expects the name in ecx and the rest on the stack and
|
| // drops them all.
|
| InLoopFlag in_loop = loop_nesting > 0 ? IN_LOOP : NOT_IN_LOOP;
|
| - Handle<Code> ic = cgen()->ComputeKeyedCallInitialize(arg_count, in_loop);
|
| + Handle<Code> ic = StubCache::ComputeKeyedCallInitialize(arg_count, in_loop);
|
| // Spill args, receiver, and function. The call will drop args and
|
| // receiver.
|
| Result name = Pop();
|
|
|