Revision: 25256
Author:   [email protected]
Date:     Tue Nov 11 08:32:13 2014 UTC
Log:      Version 3.30.33.3 (merged r25124)

X87:  [turbofan] Add AllocateHeapNumberStub to avoid runtime call.

[email protected]
BUG=

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

Modified:
 /branches/3.30/src/version.cc
 /branches/3.30/src/x87/interface-descriptors-x87.cc

=======================================
--- /branches/3.30/src/version.cc       Mon Nov 10 15:24:31 2014 UTC
+++ /branches/3.30/src/version.cc       Tue Nov 11 08:32:13 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     30
 #define BUILD_NUMBER      33
-#define PATCH_LEVEL       2
+#define PATCH_LEVEL       3
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0
=======================================
--- /branches/3.30/src/x87/interface-descriptors-x87.cc Thu Nov 6 13:23:40 2014 UTC +++ /branches/3.30/src/x87/interface-descriptors-x87.cc Tue Nov 11 08:32:13 2014 UTC
@@ -153,6 +153,15 @@
   Register registers[] = {esi, eax, ebx};
   data->Initialize(arraysize(registers), registers, NULL);
 }
+
+
+void AllocateHeapNumberDescriptor::Initialize(
+    CallInterfaceDescriptorData* data) {
+  // register state
+  // esi -- context
+  Register registers[] = {esi};
+  data->Initialize(arraysize(registers), registers, nullptr);
+}


 void ArrayConstructorConstantArgCountDescriptor::Initialize(

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