Revision: 23371
Author:   [email protected]
Date:     Mon Aug 25 18:07:09 2014 UTC
Log:      MIPS: Encode CEntryStub properties in the minor key.

Port r23355 (1be1443)

Original commit message:
Eventually, all stubs should encode its properties in the minor key
so that stubs can be restored directly from the stub key.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/505823003
https://code.google.com/p/v8/source/detail?r=23371

Modified:
 /branches/bleeding_edge/src/mips64/code-stubs-mips64.cc

=======================================
--- /branches/bleeding_edge/src/mips64/code-stubs-mips64.cc Mon Aug 25 15:15:26 2014 UTC +++ /branches/bleeding_edge/src/mips64/code-stubs-mips64.cc Mon Aug 25 18:07:09 2014 UTC
@@ -1480,7 +1480,7 @@

   // Enter the exit frame that transitions from JavaScript to C++.
   FrameScope scope(masm, StackFrame::MANUAL);
-  __ EnterExitFrame(save_doubles_);
+  __ EnterExitFrame(save_doubles());

   // s0: number of arguments  including receiver (C callee-saved)
   // s1: pointer to first argument (C callee-saved)
@@ -1567,7 +1567,7 @@
   // sp: stack pointer
   // fp: frame pointer
   // s0: still holds argc (callee-saved).
-  __ LeaveExitFrame(save_doubles_, s0, true, EMIT_RETURN);
+  __ LeaveExitFrame(save_doubles(), s0, true, EMIT_RETURN);

   // Handling of exception.
   __ bind(&exception_returned);

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to