| Index: src/a64/code-stubs-a64.cc
|
| diff --git a/src/a64/code-stubs-a64.cc b/src/a64/code-stubs-a64.cc
|
| index 9e5b5a5e1e245d38aebe1366a47df702ab702f63..81f4a5657d19c5db35cbb2588c0467330168036d 100644
|
| --- a/src/a64/code-stubs-a64.cc
|
| +++ b/src/a64/code-stubs-a64.cc
|
| @@ -276,6 +276,25 @@ void StoreGlobalStub::InitializeInterfaceDescriptor(
|
| }
|
|
|
|
|
| +#if 0
|
| +// TODO(jbramley): This was added in r15635, then reverted in r15674, but it
|
| +// will come back again in r15713.
|
| +void ElementsTransitionAndStoreStub::InitializeInterfaceDescriptor(
|
| + Isolate* isolate,
|
| + CodeStubInterfaceDescriptor* descriptor) {
|
| + // x0: value
|
| + // x3: target map
|
| + // x1: key
|
| + // x2: receiver
|
| + static Register registers[] = { x0, x3, x1, x2 };
|
| + descriptor->register_param_count_ = sizeof(registers) / sizeof(registers[0]);
|
| + descriptor->register_params_ = registers;
|
| + descriptor->deoptimization_handler_ =
|
| + FUNCTION_ADDR(ElementsTransitionAndStoreIC_Miss);
|
| +}
|
| +#endif
|
| +
|
| +
|
| #define __ ACCESS_MASM(masm)
|
|
|
|
|
|
|