Commit 906152b8 authored by chunyang.dai's avatar chunyang.dai Committed by Commit bot

X87: Use a stub in crankshaft for grow store arrays.

port fb8e6136 (r28163).

original commit message:

 We were deopting without learning anything.

 This is a rebase/reland of https://codereview.chromium.org/368263003

BUG=

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

Cr-Commit-Position: refs/heads/master@{#28188}
parent 8e3d776d
...@@ -56,6 +56,11 @@ const Register MathPowIntegerDescriptor::exponent() { ...@@ -56,6 +56,11 @@ const Register MathPowIntegerDescriptor::exponent() {
} }
const Register GrowArrayElementsDescriptor::ObjectRegister() { return eax; }
const Register GrowArrayElementsDescriptor::KeyRegister() { return ebx; }
const Register GrowArrayElementsDescriptor::CapacityRegister() { return ecx; }
void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
Register registers[] = {esi, ebx}; Register registers[] = {esi, ebx};
data->Initialize(arraysize(registers), registers, NULL); data->Initialize(arraysize(registers), registers, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment