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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
|
/* -*- 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/. */
#include "vm/ObjectGroup.h"
#include "mozilla/Maybe.h"
#include "mozilla/Unused.h"
#include "jsexn.h"
#include "builtin/DataViewObject.h"
#include "gc/FreeOp.h"
#include "gc/HashUtil.h"
#include "gc/Policy.h"
#include "gc/StoreBuffer.h"
#include "js/CharacterEncoding.h"
#include "js/friend/WindowProxy.h" // js::IsWindow
#include "js/UniquePtr.h"
#include "vm/ArrayObject.h"
#include "vm/ErrorObject.h"
#include "vm/GlobalObject.h"
#include "vm/JSObject.h"
#include "vm/PlainObject.h" // js::PlainObject
#include "vm/RegExpObject.h"
#include "vm/Shape.h"
#include "vm/TaggedProto.h"
#include "gc/Marking-inl.h"
#include "gc/ObjectKind-inl.h"
#include "vm/JSObject-inl.h"
#include "vm/NativeObject-inl.h"
using namespace js;
/////////////////////////////////////////////////////////////////////
// ObjectGroup
/////////////////////////////////////////////////////////////////////
static ObjectGroup* MakeGroup(JSContext* cx, const JSClass* clasp,
Handle<TaggedProto> proto,
HandleTypeDescr descr) {
MOZ_ASSERT_IF(proto.isObject(),
cx->isInsideCurrentCompartment(proto.toObject()));
ObjectGroup* group = Allocate<ObjectGroup>(cx);
if (!group) {
return nullptr;
}
new (group) ObjectGroup(clasp, proto, cx->realm(), descr);
return group;
}
ObjectGroup::ObjectGroup(const JSClass* clasp, TaggedProto proto,
JS::Realm* realm, TypeDescr* descr)
: TenuredCellWithNonGCPointer(clasp),
proto_(proto),
realm_(realm),
typeDescr_(descr) {
/* Windows may not appear on prototype chains. */
MOZ_ASSERT_IF(proto.isObject(), !IsWindow(proto.toObject()));
MOZ_ASSERT(JS::StringIsASCII(clasp->name));
#ifdef DEBUG
GlobalObject* global = realm->unsafeUnbarrieredMaybeGlobal();
if (global) {
AssertTargetIsNotGray(global);
}
#endif
}
void ObjectGroup::setProtoUnchecked(TaggedProto proto) {
proto_ = proto;
MOZ_ASSERT_IF(proto_.isObject() && proto_.toObject()->isNative(),
proto_.toObject()->isDelegate());
}
/////////////////////////////////////////////////////////////////////
// GlobalObject
/////////////////////////////////////////////////////////////////////
bool GlobalObject::shouldSplicePrototype() {
// During bootstrapping, we need to make sure not to splice a new prototype in
// for the global object if its __proto__ had previously been set to non-null,
// as this will change the prototype for all other objects with the same type.
return staticPrototype() == nullptr;
}
/* static */
bool GlobalObject::splicePrototype(JSContext* cx, Handle<GlobalObject*> global,
Handle<TaggedProto> proto) {
MOZ_ASSERT(cx->realm() == global->realm());
// Windows may not appear on prototype chains.
MOZ_ASSERT_IF(proto.isObject(), !IsWindow(proto.toObject()));
if (proto.isObject()) {
RootedObject protoObj(cx, proto.toObject());
if (!JSObject::setDelegate(cx, protoObj)) {
return false;
}
}
ObjectGroup* group = MakeGroup(cx, global->getClass(), proto,
/* descr = */ nullptr);
if (!group) {
return false;
}
global->setGroupRaw(group);
return true;
}
/////////////////////////////////////////////////////////////////////
// ObjectGroupRealm NewTable
/////////////////////////////////////////////////////////////////////
/*
* Entries for the per-realm set of groups based on prototype and class. An
* optional associated object is used which allows multiple groups to be
* created with the same prototype. The associated object is a type descriptor
* (for typed objects).
*/
struct ObjectGroupRealm::NewEntry {
WeakHeapPtrObjectGroup group;
// Note: This pointer is only used for equality and does not need a read
// barrier.
TypeDescr* associated;
NewEntry(ObjectGroup* group, TypeDescr* associated)
: group(group), associated(associated) {}
struct Lookup {
const JSClass* clasp;
TaggedProto proto;
TypeDescr* associated;
Lookup(const JSClass* clasp, TaggedProto proto, TypeDescr* associated)
: clasp(clasp), proto(proto), associated(associated) {
MOZ_ASSERT(clasp);
}
explicit Lookup(const NewEntry& entry)
: clasp(entry.group.unbarrieredGet()->clasp()),
proto(entry.group.unbarrieredGet()->proto()),
associated(entry.associated) {}
};
bool needsSweep() {
return IsAboutToBeFinalized(&group) ||
(associated && IsAboutToBeFinalizedUnbarriered(&associated));
}
bool operator==(const NewEntry& other) const {
return group == other.group && associated == other.associated;
}
};
namespace js {
template <>
struct MovableCellHasher<ObjectGroupRealm::NewEntry> {
using Key = ObjectGroupRealm::NewEntry;
using Lookup = ObjectGroupRealm::NewEntry::Lookup;
static bool hasHash(const Lookup& l) {
return MovableCellHasher<TaggedProto>::hasHash(l.proto) &&
MovableCellHasher<JSObject*>::hasHash(l.associated);
}
static bool ensureHash(const Lookup& l) {
return MovableCellHasher<TaggedProto>::ensureHash(l.proto) &&
MovableCellHasher<JSObject*>::ensureHash(l.associated);
}
static inline HashNumber hash(const Lookup& lookup) {
HashNumber hash = MovableCellHasher<TaggedProto>::hash(lookup.proto);
hash = mozilla::AddToHash(
hash, MovableCellHasher<JSObject*>::hash(lookup.associated));
return mozilla::AddToHash(hash, mozilla::HashGeneric(lookup.clasp));
}
static inline bool match(const ObjectGroupRealm::NewEntry& key,
const Lookup& lookup) {
if (key.group.unbarrieredGet()->clasp() != lookup.clasp) {
return false;
}
TaggedProto proto = key.group.unbarrieredGet()->proto();
if (!MovableCellHasher<TaggedProto>::match(proto, lookup.proto)) {
return false;
}
return MovableCellHasher<JSObject*>::match(key.associated,
lookup.associated);
}
};
} // namespace js
class ObjectGroupRealm::NewTable
: public JS::WeakCache<js::GCHashSet<NewEntry, MovableCellHasher<NewEntry>,
SystemAllocPolicy>> {
using Table =
js::GCHashSet<NewEntry, MovableCellHasher<NewEntry>, SystemAllocPolicy>;
using Base = JS::WeakCache<Table>;
public:
explicit NewTable(Zone* zone) : Base(zone) {}
};
/* static*/ ObjectGroupRealm& ObjectGroupRealm::getForNewObject(JSContext* cx) {
return cx->realm()->objectGroups_;
}
MOZ_ALWAYS_INLINE ObjectGroup* ObjectGroupRealm::DefaultNewGroupCache::lookup(
const JSClass* clasp, TaggedProto proto, TypeDescr* associated) {
if (group_ && associated_ == associated && group_->proto() == proto &&
group_->clasp() == clasp) {
return group_;
}
return nullptr;
}
/* static */
ObjectGroup* ObjectGroup::defaultNewGroup(JSContext* cx, const JSClass* clasp,
TaggedProto proto,
Handle<TypeDescr*> descr) {
MOZ_ASSERT(clasp);
MOZ_ASSERT_IF(descr, proto.isObject());
MOZ_ASSERT_IF(proto.isObject(),
cx->isInsideCurrentCompartment(proto.toObject()));
ObjectGroupRealm& groups = ObjectGroupRealm::getForNewObject(cx);
if (ObjectGroup* group =
groups.defaultNewGroupCache.lookup(clasp, proto, descr)) {
return group;
}
gc::AutoSuppressGC suppressGC(cx);
ObjectGroupRealm::NewTable*& table = groups.defaultNewTable;
if (!table) {
table = cx->new_<ObjectGroupRealm::NewTable>(cx->zone());
if (!table) {
return nullptr;
}
}
if (proto.isObject() && !proto.toObject()->isDelegate()) {
RootedObject protoObj(cx, proto.toObject());
if (!JSObject::setDelegate(cx, protoObj)) {
return nullptr;
}
}
ObjectGroupRealm::NewTable::AddPtr p = table->lookupForAdd(
ObjectGroupRealm::NewEntry::Lookup(clasp, proto, descr));
if (p) {
ObjectGroup* group = p->group;
MOZ_ASSERT(group->clasp() == clasp);
MOZ_ASSERT(group->proto() == proto);
groups.defaultNewGroupCache.put(group, descr);
return group;
}
Rooted<TaggedProto> protoRoot(cx, proto);
ObjectGroup* group = MakeGroup(cx, clasp, protoRoot, descr);
if (!group) {
return nullptr;
}
if (!table->add(p, ObjectGroupRealm::NewEntry(group, descr))) {
ReportOutOfMemory(cx);
return nullptr;
}
groups.defaultNewGroupCache.put(group, descr);
return group;
}
static bool AddPlainObjectProperties(JSContext* cx, HandlePlainObject obj,
IdValuePair* properties,
size_t nproperties) {
RootedId propid(cx);
RootedValue value(cx);
for (size_t i = 0; i < nproperties; i++) {
propid = properties[i].id;
value = properties[i].value;
if (!NativeDefineDataProperty(cx, obj, propid, value, JSPROP_ENUMERATE)) {
return false;
}
}
return true;
}
PlainObject* js::NewPlainObjectWithProperties(JSContext* cx,
IdValuePair* properties,
size_t nproperties,
NewObjectKind newKind) {
gc::AllocKind allocKind = gc::GetGCObjectKind(nproperties);
RootedPlainObject obj(
cx, NewBuiltinClassInstance<PlainObject>(cx, allocKind, newKind));
if (!obj || !AddPlainObjectProperties(cx, obj, properties, nproperties)) {
return nullptr;
}
return obj;
}
/////////////////////////////////////////////////////////////////////
// ObjectGroupRealm
/////////////////////////////////////////////////////////////////////
ObjectGroupRealm::~ObjectGroupRealm() { js_delete(defaultNewTable); }
void ObjectGroupRealm::addSizeOfExcludingThis(
mozilla::MallocSizeOf mallocSizeOf, size_t* realmTables) {
if (defaultNewTable) {
*realmTables += defaultNewTable->sizeOfIncludingThis(mallocSizeOf);
}
}
void ObjectGroupRealm::clearTables() {
if (defaultNewTable) {
defaultNewTable->clear();
}
defaultNewGroupCache.purge();
}
void ObjectGroupRealm::fixupNewTableAfterMovingGC(NewTable* table) {
/*
* Each entry's hash depends on the object's prototype and we can't tell
* whether that has been moved or not in sweepNewObjectGroupTable().
*/
if (table) {
for (NewTable::Enum e(*table); !e.empty(); e.popFront()) {
NewEntry& entry = e.mutableFront();
ObjectGroup* group = entry.group.unbarrieredGet();
if (IsForwarded(group)) {
group = Forwarded(group);
entry.group.set(group);
}
TaggedProto proto = group->proto();
if (proto.isObject() && IsForwarded(proto.toObject())) {
proto = TaggedProto(Forwarded(proto.toObject()));
// Update the group's proto here so that we are able to lookup
// entries in this table before all object pointers are updated.
group->proto() = proto;
}
if (entry.associated && IsForwarded(entry.associated)) {
entry.associated = Forwarded(entry.associated);
}
}
}
}
#ifdef JSGC_HASH_TABLE_CHECKS
void ObjectGroupRealm::checkNewTableAfterMovingGC(NewTable* table) {
/*
* Assert that nothing points into the nursery or needs to be relocated, and
* that the hash table entries are discoverable.
*/
if (!table) {
return;
}
for (auto r = table->all(); !r.empty(); r.popFront()) {
NewEntry entry = r.front();
CheckGCThingAfterMovingGC(entry.group.unbarrieredGet());
TaggedProto proto = entry.group.unbarrieredGet()->proto();
if (proto.isObject()) {
CheckGCThingAfterMovingGC(proto.toObject());
}
CheckGCThingAfterMovingGC(entry.associated);
auto ptr = table->lookup(NewEntry::Lookup(entry));
MOZ_RELEASE_ASSERT(ptr.found() && &*ptr == &r.front());
}
}
#endif // JSGC_HASH_TABLE_CHECKS
JS::ubi::Node::Size JS::ubi::Concrete<js::ObjectGroup>::size(
mozilla::MallocSizeOf mallocSizeOf) const {
Size size = js::gc::Arena::thingSize(get().asTenured().getAllocKind());
return size;
}
|