summaryrefslogtreecommitdiffstats
path: root/js/src/jit/TemplateObject-inl.h
blob: 1fe5c1eafd0e8f11460c7be2771d4dc77ee794ae (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
127
128
129
130
131
/* -*- 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/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::isNative() const { return obj_->isNative(); }

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::isPlainObject() const {
  return obj_->is<PlainObject>();
}

inline gc::Cell* TemplateObject::group() const { return obj_->group(); }

inline gc::Cell* TemplateObject::shape() const {
  Shape* shape = obj_->shape();
  MOZ_ASSERT(!shape->inDictionary());
  return shape;
}

inline const NativeTemplateObject& TemplateObject::asNativeTemplateObject()
    const {
  MOZ_ASSERT(isNative());
  return *static_cast<const NativeTemplateObject*>(this);
}

inline bool NativeTemplateObject::hasDynamicSlots() const {
  return asNative().hasDynamicSlots();
}

inline uint32_t NativeTemplateObject::numDynamicSlots() const {
  return asNative().numDynamicSlots();
}

inline uint32_t NativeTemplateObject::numUsedFixedSlots() const {
  return asNative().numUsedFixedSlots();
}

inline uint32_t NativeTemplateObject::numFixedSlots() const {
  return asNative().numFixedSlots();
}

inline uint32_t NativeTemplateObject::slotSpan() const {
  // Don't call NativeObject::slotSpan, it uses shape->base->clasp and the
  // shape's BaseShape can change when we create a ShapeTable for it.
  return asNative().shape()->slotSpan(obj_->getClass());
}

inline Value NativeTemplateObject::getSlot(uint32_t i) const {
  return asNative().getSlot(i);
}

inline const Value* NativeTemplateObject::getDenseElements() const {
  return asNative().getDenseElements();
}

#ifdef DEBUG
inline bool NativeTemplateObject::isSharedMemory() const {
  return asNative().isSharedMemory();
}
#endif

inline uint32_t NativeTemplateObject::getDenseCapacity() const {
  return asNative().getDenseCapacity();
}

inline uint32_t NativeTemplateObject::getDenseInitializedLength() const {
  return asNative().getDenseInitializedLength();
}

inline uint32_t NativeTemplateObject::getArrayLength() const {
  return obj_->as<ArrayObject>().length();
}

inline bool NativeTemplateObject::hasDynamicElements() const {
  return asNative().hasDynamicElements();
}

inline bool NativeTemplateObject::hasPrivate() const {
  return asNative().hasPrivate();
}

inline gc::Cell* NativeTemplateObject::regExpShared() const {
  RegExpObject* regexp = &obj_->as<RegExpObject>();
  MOZ_ASSERT(regexp->hasShared());
  return regexp->getShared();
}

inline void* NativeTemplateObject::getPrivate() const {
  return asNative().getPrivate();
}

}  // namespace jit
}  // namespace js

#endif /* jit_TemplateObject_inl_h */