Revision: 24713
Author:   [email protected]
Date:     Mon Oct 20 04:06:06 2014 UTC
Log:      X87: Tick processor: Print C++ entry points.

port r24700.

original commit message:

  Tick processor: Print C++ entry points

BUG=
[email protected]

Review URL: https://codereview.chromium.org/662323002

Patch from Chunyang Dai <[email protected]>.
https://code.google.com/p/v8/source/detail?r=24713

Modified:
 /branches/bleeding_edge/src/x87/macro-assembler-x87.cc

=======================================
--- /branches/bleeding_edge/src/x87/macro-assembler-x87.cc Mon Oct 13 14:41:33 2014 UTC +++ /branches/bleeding_edge/src/x87/macro-assembler-x87.cc Mon Oct 20 04:06:06 2014 UTC
@@ -906,8 +906,10 @@
   // Save the frame pointer and the context in top.
ExternalReference c_entry_fp_address(Isolate::kCEntryFPAddress, isolate());
   ExternalReference context_address(Isolate::kContextAddress, isolate());
+ ExternalReference c_function_address(Isolate::kCFunctionAddress, isolate());
   mov(Operand::StaticVariable(c_entry_fp_address), ebp);
   mov(Operand::StaticVariable(context_address), esi);
+  mov(Operand::StaticVariable(c_function_address), ebx);
 }


--
--
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