Index: src/stub-cache-ia32.cc |
=================================================================== |
--- src/stub-cache-ia32.cc (revision 288) |
+++ src/stub-cache-ia32.cc (working copy) |
@@ -467,7 +467,7 @@ |
HandleScope scope; |
// Enter an internal frame. |
- __ EnterFrame(StackFrame::INTERNAL); |
+ __ EnterInternalFrame(); |
// Push a copy of the function onto the stack. |
__ push(edi); |
@@ -476,7 +476,7 @@ |
__ CallRuntime(Runtime::kLazyCompile, 1); |
__ pop(edi); |
- __ ExitFrame(StackFrame::INTERNAL); |
+ __ ExitInternalFrame(); |
// Do a tail-call of the compiled function. |
__ lea(ecx, FieldOperand(eax, Code::kHeaderSize)); |
@@ -666,7 +666,7 @@ |
__ CheckMaps(JSObject::cast(object), edx, holder, ebx, ecx, &miss); |
// Enter an internal frame. |
- __ EnterFrame(StackFrame::INTERNAL); |
+ __ EnterInternalFrame(); |
// Push arguments on the expression stack. |
__ push(edx); // receiver |
@@ -687,7 +687,7 @@ |
__ mov(edx, Operand(ebp, (argc + 2) * kPointerSize)); // receiver |
// Exit frame. |
- __ ExitFrame(StackFrame::INTERNAL); |
+ __ ExitInternalFrame(); |
// Check that the function really is a function. |
__ test(edi, Immediate(kSmiTagMask)); |