Skip to content

Commit 961374e

Browse files
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 git-svn-id: https://v8.googlecode.com/svn/branches/3.30@25256 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
1 parent 1bb490e commit 961374e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/version.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#define MAJOR_VERSION 3
3636
#define MINOR_VERSION 30
3737
#define BUILD_NUMBER 33
38-
#define PATCH_LEVEL 2
38+
#define PATCH_LEVEL 3
3939
// Use 1 for candidates and 0 otherwise.
4040
// (Boolean macro values are not supported by all preprocessors.)
4141
#define IS_CANDIDATE_VERSION 0

src/x87/interface-descriptors-x87.cc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,15 @@ void TransitionElementsKindDescriptor::Initialize(
155155
}
156156

157157

158+
void AllocateHeapNumberDescriptor::Initialize(
159+
CallInterfaceDescriptorData* data) {
160+
// register state
161+
// esi -- context
162+
Register registers[] = {esi};
163+
data->Initialize(arraysize(registers), registers, nullptr);
164+
}
165+
166+
158167
void ArrayConstructorConstantArgCountDescriptor::Initialize(
159168
CallInterfaceDescriptorData* data) {
160169
// register state

0 commit comments

Comments
 (0)