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
|
/* -*- 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 vm_List_inl_h
#define vm_List_inl_h
#include "vm/List.h"
#include "mozilla/Assertions.h" // MOZ_ASSERT
#include "mozilla/Attributes.h" // MOZ_MUST_USE
#include <stdint.h> // uint32_t
#include "js/RootingAPI.h" // JS::Handle, JS::Rooted
#include "js/Value.h" // JS::Value, JS::ObjectValue
#include "vm/JSContext.h" // JSContext
#include "vm/NativeObject.h" // js::NativeObject
#include "vm/Compartment-inl.h" // JS::Compartment::wrap
#include "vm/JSObject-inl.h" // js::NewObjectWithGivenProto
#include "vm/NativeObject-inl.h" // js::NativeObject::*
#include "vm/Realm-inl.h" // js::AutoRealm
inline /* static */ js::ListObject* js::ListObject::create(JSContext* cx) {
return NewObjectWithGivenProto<ListObject>(cx, nullptr);
}
inline bool js::ListObject::append(JSContext* cx, JS::Handle<JS::Value> value) {
uint32_t len = length();
if (!ensureElements(cx, len + 1)) {
return false;
}
ensureDenseInitializedLength(len, 1);
setDenseElement(len, value);
return true;
}
inline bool js::ListObject::appendValueAndSize(JSContext* cx,
JS::Handle<JS::Value> value,
double size) {
uint32_t len = length();
if (!ensureElements(cx, len + 2)) {
return false;
}
ensureDenseInitializedLength(len, 2);
setDenseElement(len, value);
setDenseElement(len + 1, JS::DoubleValue(size));
return true;
}
inline JS::Value js::ListObject::popFirst(JSContext* cx) {
uint32_t len = length();
MOZ_ASSERT(len > 0);
JS::Value entry = get(0);
if (!tryShiftDenseElements(1)) {
moveDenseElements(0, 1, len - 1);
setDenseInitializedLength(len - 1);
shrinkElements(cx, len - 1);
}
MOZ_ASSERT(length() == len - 1);
return entry;
}
inline void js::ListObject::popFirstPair(JSContext* cx) {
uint32_t len = length();
MOZ_ASSERT(len > 0);
MOZ_ASSERT((len % 2) == 0);
if (!tryShiftDenseElements(2)) {
moveDenseElements(0, 2, len - 2);
setDenseInitializedLength(len - 2);
shrinkElements(cx, len - 2);
}
MOZ_ASSERT(length() == len - 2);
}
template <class T>
inline T& js::ListObject::popFirstAs(JSContext* cx) {
return popFirst(cx).toObject().as<T>();
}
namespace js {
/**
* Stores an empty ListObject in the given fixed slot of |obj|.
*/
inline MOZ_MUST_USE bool StoreNewListInFixedSlot(JSContext* cx,
JS::Handle<NativeObject*> obj,
uint32_t slot) {
AutoRealm ar(cx, obj);
ListObject* list = ListObject::create(cx);
if (!list) {
return false;
}
obj->setFixedSlot(slot, JS::ObjectValue(*list));
return true;
}
/**
* Given an object |obj| whose fixed slot |slot| contains a ListObject, append
* |toAppend| to that list.
*/
inline MOZ_MUST_USE bool AppendToListInFixedSlot(
JSContext* cx, JS::Handle<NativeObject*> obj, uint32_t slot,
JS::Handle<JSObject*> toAppend) {
JS::Rooted<ListObject*> list(
cx, &obj->getFixedSlot(slot).toObject().as<ListObject>());
AutoRealm ar(cx, list);
JS::Rooted<JS::Value> val(cx, JS::ObjectValue(*toAppend));
if (!cx->compartment()->wrap(cx, &val)) {
return false;
}
return list->append(cx, val);
}
} // namespace js
#endif // vm_List_inl_h
|