summaryrefslogtreecommitdiff
path: root/chromium/v8/src/arm64/interface-descriptors-arm64.h
blob: 76def88326a0bbcf3bd753654156dbd0a9ed6e52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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_ARM64_INTERFACE_DESCRIPTORS_ARM64_H_
#define V8_ARM64_INTERFACE_DESCRIPTORS_ARM64_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_ARM64_INTERFACE_DESCRIPTORS_ARM64_H_