aboutsummaryrefslogtreecommitdiff
path: root/src/ic/access-compiler-data.h
blob: dffcac7d055458997fb4e708e0a4d1d186c7849a (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright 2016 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_IC_ACCESS_COMPILER_DATA_H_
#define V8_IC_ACCESS_COMPILER_DATA_H_

#include <memory>

#include "src/allocation.h"
#include "src/base/macros.h"

namespace v8 {
namespace internal {

class AccessCompilerData {
 public:
  AccessCompilerData() {}

  bool IsInitialized() const { return load_calling_convention_ != nullptr; }
  void Initialize(int load_register_count, const Register* load_registers,
                  int store_register_count, const Register* store_registers) {
    load_calling_convention_.reset(NewArray<Register>(load_register_count));
    for (int i = 0; i < load_register_count; ++i) {
      load_calling_convention_[i] = load_registers[i];
    }
    store_calling_convention_.reset(NewArray<Register>(store_register_count));
    for (int i = 0; i < store_register_count; ++i) {
      store_calling_convention_[i] = store_registers[i];
    }
  }

  Register* load_calling_convention() { return load_calling_convention_.get(); }
  Register* store_calling_convention() {
    return store_calling_convention_.get();
  }

 private:
  std::unique_ptr<Register[]> load_calling_convention_;
  std::unique_ptr<Register[]> store_calling_convention_;

  DISALLOW_COPY_AND_ASSIGN(AccessCompilerData);
};

}  // namespace internal
}  // namespace v8

#endif  // V8_IC_ACCESS_COMPILER_DATA_H_