blob: 4a05895e878a6cf3f577dcc381e59940d86e382c (
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
49
50
51
52
53
54
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef jit_TypeData_h
#define jit_TypeData_h
#include "js/Value.h"
namespace js {
namespace jit {
class TypeData {
JSValueType type_;
public:
TypeData() : type_(JSVAL_TYPE_UNKNOWN) {}
explicit TypeData(JSValueType type) : type_(type) {}
JSValueType type() const { return type_; }
bool hasData() const { return type_ != JSVAL_TYPE_UNKNOWN; }
};
class TypeDataList {
const static size_t MaxLength = 6;
uint8_t count_ = 0;
TypeData typeData_[MaxLength];
public:
TypeDataList() {}
uint8_t count() const { return count_; }
void addTypeData(TypeData data) {
MOZ_ASSERT(count_ < MaxLength);
MOZ_ASSERT(!typeData_[count_].hasData());
typeData_[count_++] = data;
}
TypeData get(uint32_t idx) const {
MOZ_ASSERT(idx < count_);
return typeData_[idx];
}
const TypeData* begin() const { return &typeData_[0]; }
const TypeData* end() const { return begin() + count_; }
};
} // namespace jit
} // namespace js
#endif /* jit_TypeData_h */
|