| Index: src/arm/interface-descriptors-arm.h
|
| diff --git a/src/arm/interface-descriptors-arm.h b/src/arm/interface-descriptors-arm.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6201adc685192fc6d64b651c6c30dd0214a57ecb
|
| --- /dev/null
|
| +++ b/src/arm/interface-descriptors-arm.h
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| +
|
| +#ifndef V8_ARM_INTERFACE_DESCRIPTORS_ARM_H_
|
| +#define V8_ARM_INTERFACE_DESCRIPTORS_ARM_H_
|
| +
|
| +#include "src/interface-descriptors.h"
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +
|
| +class PlatformInterfaceDescriptor {
|
| + public:
|
| + explicit PlatformInterfaceDescriptor(TargetAddressStorageMode storage_mode)
|
| + : storage_mode_(storage_mode) {}
|
| +
|
| + TargetAddressStorageMode storage_mode() { return storage_mode_; }
|
| +
|
| + private:
|
| + TargetAddressStorageMode storage_mode_;
|
| +};
|
| +}
|
| +} // namespace v8::internal
|
| +
|
| +#endif // V8_ARM_INTERFACE_DESCRIPTORS_ARM_H_
|
|
|