blob: 3bfeb8e72d4519a4b6198070276eb3214834b2b3 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/* -*- 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_TemplateObject_inl_h
#define jit_TemplateObject_inl_h
#include "jit/TemplateObject.h"
#include "vm/EnvironmentObject.h"
#include "vm/PlainObject.h" // js::PlainObject
#include "vm/RegExpObject.h"
namespace js {
namespace jit {
inline gc::AllocKind TemplateObject::getAllocKind() const {
return obj_->asTenured().getAllocKind();
}
inline bool TemplateObject::isNativeObject() const {
return obj_->is<NativeObject>();
}
inline bool TemplateObject::isArrayObject() const {
return obj_->is<ArrayObject>();
}
inline bool TemplateObject::isArgumentsObject() const {
return obj_->is<ArgumentsObject>();
}
inline bool TemplateObject::isTypedArrayObject() const {
return obj_->is<TypedArrayObject>();
}
inline bool TemplateObject::isRegExpObject() const {
return obj_->is<RegExpObject>();
}
inline bool TemplateObject::isCallObject() const {
return obj_->is<CallObject>();
}
inline bool TemplateObject::isBlockLexicalEnvironmentObject() const {
return obj_->is<BlockLexicalEnvironmentObject>();
}
inline bool TemplateObject::isPlainObject() const {
return obj_->is<PlainObject>();
}
inline gc::Cell* TemplateObject::shape() const {
Shape* shape = obj_->shape();
MOZ_ASSERT(!shape->isDictionary());
return shape;
}
inline const TemplateNativeObject& TemplateObject::asTemplateNativeObject()
const {
MOZ_ASSERT(isNativeObject());
return *static_cast<const TemplateNativeObject*>(this);
}
inline bool TemplateNativeObject::hasDynamicSlots() const {
return asNativeObject().hasDynamicSlots();
}
inline uint32_t TemplateNativeObject::numDynamicSlots() const {
return asNativeObject().numDynamicSlots();
}
inline uint32_t TemplateNativeObject::numUsedFixedSlots() const {
return asNativeObject().numUsedFixedSlots();
}
inline uint32_t TemplateNativeObject::numFixedSlots() const {
return asNativeObject().numFixedSlots();
}
inline uint32_t TemplateNativeObject::slotSpan() const {
return asNativeObject().sharedShape()->slotSpan();
}
inline Value TemplateNativeObject::getSlot(uint32_t i) const {
return asNativeObject().getSlot(i);
}
inline const Value* TemplateNativeObject::getDenseElements() const {
return asNativeObject().getDenseElements();
}
#ifdef DEBUG
inline bool TemplateNativeObject::isSharedMemory() const {
return asNativeObject().isSharedMemory();
}
#endif
inline uint32_t TemplateNativeObject::getDenseCapacity() const {
return asNativeObject().getDenseCapacity();
}
inline uint32_t TemplateNativeObject::getDenseInitializedLength() const {
return asNativeObject().getDenseInitializedLength();
}
inline uint32_t TemplateNativeObject::getArrayLength() const {
return obj_->as<ArrayObject>().length();
}
inline bool TemplateNativeObject::hasDynamicElements() const {
return asNativeObject().hasDynamicElements();
}
inline gc::Cell* TemplateNativeObject::regExpShared() const {
RegExpObject* regexp = &obj_->as<RegExpObject>();
MOZ_ASSERT(regexp->hasShared());
return regexp->getShared();
}
} // namespace jit
} // namespace js
#endif /* jit_TemplateObject_inl_h */
|