| Index: src/ia32/interface-descriptors-ia32.cc
|
| diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3d3b7a0fcb3f46fd2f63ca638606eb97837bc46d
|
| --- /dev/null
|
| +++ b/src/ia32/interface-descriptors-ia32.cc
|
| @@ -0,0 +1,97 @@
|
| +// Copyright 2012 the V8 project authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "src/v8.h"
|
| +
|
| +#if V8_TARGET_ARCH_IA32
|
| +
|
| +#include "src/interface-descriptors.h"
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +
|
| +const Register InterfaceDescriptor::ContextRegister() { return esi; }
|
| +
|
| +
|
| +void CallDescriptors::InitializeForIsolate(Isolate* isolate) {
|
| + {
|
| + CallInterfaceDescriptor* descriptor =
|
| + isolate->call_descriptor(CallDescriptorKey::ArgumentAdaptorCall);
|
| + Register registers[] = {
|
| + esi, // context
|
| + edi, // JSFunction
|
| + eax, // actual number of arguments
|
| + ebx, // expected number of arguments
|
| + };
|
| + Representation representations[] = {
|
| + Representation::Tagged(), // context
|
| + Representation::Tagged(), // JSFunction
|
| + Representation::Integer32(), // actual number of arguments
|
| + Representation::Integer32(), // expected number of arguments
|
| + };
|
| + descriptor->Initialize(arraysize(registers), registers, representations);
|
| + }
|
| + {
|
| + CallInterfaceDescriptor* descriptor =
|
| + isolate->call_descriptor(CallDescriptorKey::KeyedCall);
|
| + Register registers[] = {
|
| + esi, // context
|
| + ecx, // key
|
| + };
|
| + Representation representations[] = {
|
| + Representation::Tagged(), // context
|
| + Representation::Tagged(), // key
|
| + };
|
| + descriptor->Initialize(arraysize(registers), registers, representations);
|
| + }
|
| + {
|
| + CallInterfaceDescriptor* descriptor =
|
| + isolate->call_descriptor(CallDescriptorKey::NamedCall);
|
| + Register registers[] = {
|
| + esi, // context
|
| + ecx, // name
|
| + };
|
| + Representation representations[] = {
|
| + Representation::Tagged(), // context
|
| + Representation::Tagged(), // name
|
| + };
|
| + descriptor->Initialize(arraysize(registers), registers, representations);
|
| + }
|
| + {
|
| + CallInterfaceDescriptor* descriptor =
|
| + isolate->call_descriptor(CallDescriptorKey::CallHandler);
|
| + Register registers[] = {
|
| + esi, // context
|
| + edx, // name
|
| + };
|
| + Representation representations[] = {
|
| + Representation::Tagged(), // context
|
| + Representation::Tagged(), // receiver
|
| + };
|
| + descriptor->Initialize(arraysize(registers), registers, representations);
|
| + }
|
| + {
|
| + CallInterfaceDescriptor* descriptor =
|
| + isolate->call_descriptor(CallDescriptorKey::ApiFunctionCall);
|
| + Register registers[] = {
|
| + esi, // context
|
| + eax, // callee
|
| + ebx, // call_data
|
| + ecx, // holder
|
| + edx, // api_function_address
|
| + };
|
| + Representation representations[] = {
|
| + Representation::Tagged(), // context
|
| + Representation::Tagged(), // callee
|
| + Representation::Tagged(), // call_data
|
| + Representation::Tagged(), // holder
|
| + Representation::External(), // api_function_address
|
| + };
|
| + descriptor->Initialize(arraysize(registers), registers, representations);
|
| + }
|
| +}
|
| +}
|
| +} // namespace v8::internal
|
| +
|
| +#endif // V8_TARGET_ARCH_IA32
|
|
|