-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathNursery.cpp
1490 lines (1264 loc) · 44.7 KB
/
Nursery.cpp
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sw=2 et 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 "gc/Nursery-inl.h"
#include "mozilla/DebugOnly.h"
#include "mozilla/IntegerPrintfMacros.h"
#include "mozilla/Move.h"
#include "mozilla/Unused.h"
#include "jsutil.h"
#include "builtin/MapObject.h"
#include "gc/FreeOp.h"
#include "gc/GCInternals.h"
#include "gc/Memory.h"
#include "gc/PublicIterators.h"
#include "jit/JitFrames.h"
#include "jit/JitRealm.h"
#include "vm/ArrayObject.h"
#include "vm/Debugger.h"
#if defined(DEBUG)
# include "vm/EnvironmentObject.h"
#endif
#include "vm/JSONPrinter.h"
#include "vm/Realm.h"
#include "vm/Time.h"
#include "vm/TypedArrayObject.h"
#include "vm/TypeInference.h"
#include "gc/Marking-inl.h"
#include "gc/Zone-inl.h"
#include "vm/NativeObject-inl.h"
using namespace js;
using namespace gc;
using mozilla::DebugOnly;
using mozilla::PodCopy;
using mozilla::TimeDuration;
using mozilla::TimeStamp;
constexpr uintptr_t CanaryMagicValue = 0xDEADB15D;
#ifdef JS_GC_ZEAL
struct js::Nursery::Canary {
uintptr_t magicValue;
Canary* next;
};
#endif
namespace js {
struct NurseryChunk {
char data[Nursery::NurseryChunkUsableSize];
gc::ChunkTrailer trailer;
static NurseryChunk* fromChunk(gc::Chunk* chunk);
void poisonAndInit(JSRuntime* rt, size_t extent = ChunkSize);
void poisonAfterEvict(size_t extent = ChunkSize);
uintptr_t start() const { return uintptr_t(&data); }
uintptr_t end() const { return uintptr_t(&trailer); }
gc::Chunk* toChunk(JSRuntime* rt);
};
static_assert(sizeof(js::NurseryChunk) == gc::ChunkSize,
"Nursery chunk size must match gc::Chunk size.");
} /* namespace js */
inline void js::NurseryChunk::poisonAndInit(JSRuntime* rt, size_t extent) {
MOZ_ASSERT(extent <= ChunkSize);
MOZ_MAKE_MEM_UNDEFINED(this, extent);
MOZ_MAKE_MEM_UNDEFINED(&trailer, sizeof(trailer));
Poison(this, JS_FRESH_NURSERY_PATTERN, extent, MemCheckKind::MakeUndefined);
new (&trailer) gc::ChunkTrailer(rt, &rt->gc.storeBuffer());
}
inline void js::NurseryChunk::poisonAfterEvict(size_t extent) {
MOZ_ASSERT(extent <= ChunkSize);
// We can poison the same chunk more than once, so first make sure memory
// sanitizers will let us poison it.
MOZ_MAKE_MEM_UNDEFINED(this, extent);
Poison(this, JS_SWEPT_NURSERY_PATTERN, extent, MemCheckKind::MakeNoAccess);
}
/* static */
inline js::NurseryChunk* js::NurseryChunk::fromChunk(Chunk* chunk) {
return reinterpret_cast<NurseryChunk*>(chunk);
}
inline Chunk* js::NurseryChunk::toChunk(JSRuntime* rt) {
auto chunk = reinterpret_cast<Chunk*>(this);
chunk->init(rt);
return chunk;
}
void js::NurseryDecommitChunksTask::queueChunk(
NurseryChunk* nchunk, const AutoLockHelperThreadState& lock) {
// Using the chunk pointers is infalliable.
Chunk* chunk = nchunk->toChunk(runtime());
chunk->info.prev = nullptr;
chunk->info.next = queue;
queue = chunk;
}
Chunk* js::NurseryDecommitChunksTask::popChunk() {
AutoLockHelperThreadState lock;
if (!queue) {
// We call setFinishing here while we have the lock that checks for work,
// rather than in run's loop.
setFinishing(lock);
return nullptr;
}
Chunk* chunk = queue;
queue = chunk->info.next;
chunk->info.next = nullptr;
MOZ_ASSERT(chunk->info.prev == nullptr);
return chunk;
}
void js::NurseryDecommitChunksTask::run() {
Chunk* chunk;
while ((chunk = popChunk())) {
decommitChunk(chunk);
}
}
void js::NurseryDecommitChunksTask::decommitChunk(Chunk* chunk) {
chunk->decommitAllArenas();
{
AutoLockGC lock(runtime());
runtime()->gc.recycleChunk(chunk, lock);
}
}
js::Nursery::Nursery(JSRuntime* rt)
: runtime_(rt),
position_(0),
currentStartChunk_(0),
currentStartPosition_(0),
currentEnd_(0),
currentStringEnd_(0),
currentChunk_(0),
capacity_(0),
chunkCountLimit_(0),
timeInChunkAlloc_(0),
profileThreshold_(0),
enableProfiling_(false),
canAllocateStrings_(true),
reportTenurings_(0),
minorGCTriggerReason_(JS::GCReason::NO_REASON),
decommitChunksTask(rt)
#ifdef JS_GC_ZEAL
,
lastCanary_(nullptr)
#endif
{
const char* env = getenv("MOZ_NURSERY_STRINGS");
if (env && *env) {
canAllocateStrings_ = (*env == '1');
}
}
bool js::Nursery::init(uint32_t maxNurseryBytes, AutoLockGCBgAlloc& lock) {
// The nursery is permanently disabled when recording or replaying. Nursery
// collections may occur at non-deterministic points in execution.
if (mozilla::recordreplay::IsRecordingOrReplaying()) {
maxNurseryBytes = 0;
}
/* maxNurseryBytes parameter is rounded down to a multiple of chunk size. */
chunkCountLimit_ = maxNurseryBytes >> ChunkShift;
/* If no chunks are specified then the nursery is permanently disabled. */
if (chunkCountLimit_ == 0) {
return true;
}
if (!allocateNextChunk(0, lock)) {
return false;
}
capacity_ = roundSize(tunables().gcMinNurseryBytes());
MOZ_ASSERT(capacity_ >= ArenaSize);
/* After this point the Nursery has been enabled */
setCurrentChunk(0);
setStartPosition();
poisonAndInitCurrentChunk(true);
char* env = getenv("JS_GC_PROFILE_NURSERY");
if (env) {
if (0 == strcmp(env, "help")) {
fprintf(stderr,
"JS_GC_PROFILE_NURSERY=N\n"
"\tReport minor GC's taking at least N microseconds.\n");
exit(0);
}
enableProfiling_ = true;
profileThreshold_ = TimeDuration::FromMicroseconds(atoi(env));
}
env = getenv("JS_GC_REPORT_TENURING");
if (env) {
if (0 == strcmp(env, "help")) {
fprintf(stderr,
"JS_GC_REPORT_TENURING=N\n"
"\tAfter a minor GC, report any ObjectGroups with at least N "
"instances tenured.\n");
exit(0);
}
reportTenurings_ = atoi(env);
}
if (!runtime()->gc.storeBuffer().enable()) {
return false;
}
MOZ_ASSERT(isEnabled());
return true;
}
js::Nursery::~Nursery() { disable(); }
void js::Nursery::enable() {
MOZ_ASSERT(isEmpty());
MOZ_ASSERT(!runtime()->gc.isVerifyPreBarriersEnabled());
if (isEnabled() || !chunkCountLimit()) {
return;
}
{
AutoLockGCBgAlloc lock(runtime());
if (!allocateNextChunk(0, lock)) {
return;
}
capacity_ = roundSize(tunables().gcMinNurseryBytes());
MOZ_ASSERT(capacity_ >= ArenaSize);
}
setCurrentChunk(0);
setStartPosition();
poisonAndInitCurrentChunk(true);
#ifdef JS_GC_ZEAL
if (runtime()->hasZealMode(ZealMode::GenerationalGC)) {
enterZealMode();
}
#endif
MOZ_ALWAYS_TRUE(runtime()->gc.storeBuffer().enable());
}
void js::Nursery::disable() {
MOZ_ASSERT(isEmpty());
if (!isEnabled()) {
return;
}
freeChunksFrom(0);
capacity_ = 0;
// We must reset currentEnd_ so that there is no space for anything in the
// nursery. JIT'd code uses this even if the nursery is disabled.
currentEnd_ = 0;
currentStringEnd_ = 0;
position_ = 0;
runtime()->gc.storeBuffer().disable();
decommitChunksTask.join();
}
void js::Nursery::enableStrings() {
MOZ_ASSERT(isEmpty());
canAllocateStrings_ = true;
currentStringEnd_ = currentEnd_;
}
void js::Nursery::disableStrings() {
MOZ_ASSERT(isEmpty());
canAllocateStrings_ = false;
currentStringEnd_ = 0;
}
bool js::Nursery::isEmpty() const {
if (!isEnabled()) {
return true;
}
if (!runtime()->hasZealMode(ZealMode::GenerationalGC)) {
MOZ_ASSERT(currentStartChunk_ == 0);
MOZ_ASSERT(currentStartPosition_ == chunk(0).start());
}
return position() == currentStartPosition_;
}
#ifdef JS_GC_ZEAL
void js::Nursery::enterZealMode() {
if (isEnabled()) {
capacity_ = chunkCountLimit() * ChunkSize;
setCurrentEnd();
}
}
void js::Nursery::leaveZealMode() {
if (isEnabled()) {
MOZ_ASSERT(isEmpty());
setCurrentChunk(0);
setStartPosition();
poisonAndInitCurrentChunk(true);
}
}
#endif // JS_GC_ZEAL
JSObject* js::Nursery::allocateObject(JSContext* cx, size_t size,
size_t nDynamicSlots,
const js::Class* clasp) {
// Ensure there's enough space to replace the contents with a
// RelocationOverlay.
MOZ_ASSERT(size >= sizeof(RelocationOverlay));
// Sanity check the finalizer.
MOZ_ASSERT_IF(clasp->hasFinalize(),
CanNurseryAllocateFinalizedClass(clasp) || clasp->isProxy());
// Make the object allocation.
JSObject* obj = static_cast<JSObject*>(allocate(size));
if (!obj) {
return nullptr;
}
// If we want external slots, add them.
HeapSlot* slots = nullptr;
if (nDynamicSlots) {
MOZ_ASSERT(clasp->isNative());
slots = static_cast<HeapSlot*>(
allocateBuffer(cx->zone(), nDynamicSlots * sizeof(HeapSlot)));
if (!slots) {
// It is safe to leave the allocated object uninitialized, since we
// do not visit unallocated things in the nursery.
return nullptr;
}
}
// Store slots pointer directly in new object. If no dynamic slots were
// requested, caller must initialize slots_ field itself as needed. We
// don't know if the caller was a native object or not.
if (nDynamicSlots) {
static_cast<NativeObject*>(obj)->initSlots(slots);
}
gcTracer.traceNurseryAlloc(obj, size);
return obj;
}
Cell* js::Nursery::allocateString(Zone* zone, size_t size, AllocKind kind) {
// Ensure there's enough space to replace the contents with a
// RelocationOverlay.
MOZ_ASSERT(size >= sizeof(RelocationOverlay));
size_t allocSize =
JS_ROUNDUP(sizeof(StringLayout) - 1 + size, CellAlignBytes);
auto header = static_cast<StringLayout*>(allocate(allocSize));
if (!header) {
return nullptr;
}
header->zone = zone;
auto cell = reinterpret_cast<Cell*>(&header->cell);
gcTracer.traceNurseryAlloc(cell, kind);
return cell;
}
void* js::Nursery::allocate(size_t size) {
MOZ_ASSERT(isEnabled());
MOZ_ASSERT(!JS::RuntimeHeapIsBusy());
MOZ_ASSERT(CurrentThreadCanAccessRuntime(runtime()));
MOZ_ASSERT_IF(currentChunk_ == currentStartChunk_,
position() >= currentStartPosition_);
MOZ_ASSERT(position() % CellAlignBytes == 0);
MOZ_ASSERT(size % CellAlignBytes == 0);
#ifdef JS_GC_ZEAL
static const size_t CanarySize =
(sizeof(Nursery::Canary) + CellAlignBytes - 1) & ~CellAlignMask;
if (runtime()->gc.hasZealMode(ZealMode::CheckNursery)) {
size += CanarySize;
}
#endif
if (currentEnd() < position() + size) {
unsigned chunkno = currentChunk_ + 1;
MOZ_ASSERT(chunkno <= chunkCountLimit());
MOZ_ASSERT(chunkno <= maxChunkCount());
MOZ_ASSERT(chunkno <= allocatedChunkCount());
if (chunkno == maxChunkCount()) {
return nullptr;
}
if (MOZ_UNLIKELY(chunkno == allocatedChunkCount())) {
mozilla::TimeStamp start = ReallyNow();
{
AutoLockGCBgAlloc lock(runtime());
if (!allocateNextChunk(chunkno, lock)) {
return nullptr;
}
}
timeInChunkAlloc_ += ReallyNow() - start;
MOZ_ASSERT(chunkno < allocatedChunkCount());
}
setCurrentChunk(chunkno);
poisonAndInitCurrentChunk();
}
void* thing = (void*)position();
position_ = position() + size;
// We count this regardless of the profiler's state, assuming that it costs
// just as much to count it, as to check the profiler's state and decide not
// to count it.
stats().noteNurseryAlloc();
DebugOnlyPoison(thing, JS_ALLOCATED_NURSERY_PATTERN, size,
MemCheckKind::MakeUndefined);
#ifdef JS_GC_ZEAL
if (runtime()->gc.hasZealMode(ZealMode::CheckNursery)) {
auto canary = reinterpret_cast<Canary*>(position() - CanarySize);
canary->magicValue = CanaryMagicValue;
canary->next = nullptr;
if (lastCanary_) {
MOZ_ASSERT(!lastCanary_->next);
lastCanary_->next = canary;
}
lastCanary_ = canary;
}
#endif
return thing;
}
void* js::Nursery::allocateBuffer(Zone* zone, size_t nbytes) {
MOZ_ASSERT(nbytes > 0);
if (nbytes <= MaxNurseryBufferSize) {
void* buffer = allocate(nbytes);
if (buffer) {
return buffer;
}
}
void* buffer = zone->pod_malloc<uint8_t>(nbytes);
if (buffer && !registerMallocedBuffer(buffer)) {
js_free(buffer);
return nullptr;
}
return buffer;
}
void* js::Nursery::allocateBuffer(JSObject* obj, size_t nbytes) {
MOZ_ASSERT(obj);
MOZ_ASSERT(nbytes > 0);
if (!IsInsideNursery(obj)) {
return obj->zone()->pod_malloc<uint8_t>(nbytes);
}
return allocateBuffer(obj->zone(), nbytes);
}
void* js::Nursery::allocateBufferSameLocation(JSObject* obj, size_t nbytes) {
MOZ_ASSERT(obj);
MOZ_ASSERT(nbytes > 0);
MOZ_ASSERT(nbytes <= MaxNurseryBufferSize);
if (!IsInsideNursery(obj)) {
return obj->zone()->pod_malloc<uint8_t>(nbytes);
}
return allocate(nbytes);
}
void* js::Nursery::allocateZeroedBuffer(
Zone* zone, size_t nbytes, arena_id_t arena /*= js::MallocArena*/) {
MOZ_ASSERT(nbytes > 0);
if (nbytes <= MaxNurseryBufferSize) {
void* buffer = allocate(nbytes);
if (buffer) {
memset(buffer, 0, nbytes);
return buffer;
}
}
void* buffer = zone->pod_calloc<uint8_t>(nbytes, arena);
if (buffer && !registerMallocedBuffer(buffer)) {
js_free(buffer);
return nullptr;
}
return buffer;
}
void* js::Nursery::allocateZeroedBuffer(
JSObject* obj, size_t nbytes, arena_id_t arena /*= js::MallocArena*/) {
MOZ_ASSERT(obj);
MOZ_ASSERT(nbytes > 0);
if (!IsInsideNursery(obj)) {
return obj->zone()->pod_calloc<uint8_t>(nbytes, arena);
}
return allocateZeroedBuffer(obj->zone(), nbytes, arena);
}
void* js::Nursery::reallocateBuffer(JSObject* obj, void* oldBuffer,
size_t oldBytes, size_t newBytes) {
if (!IsInsideNursery(obj)) {
return obj->zone()->pod_realloc<uint8_t>((uint8_t*)oldBuffer, oldBytes,
newBytes);
}
if (!isInside(oldBuffer)) {
void* newBuffer = obj->zone()->pod_realloc<uint8_t>((uint8_t*)oldBuffer,
oldBytes, newBytes);
if (newBuffer && oldBuffer != newBuffer) {
MOZ_ALWAYS_TRUE(mallocedBuffers.rekeyAs(oldBuffer, newBuffer, newBuffer));
}
return newBuffer;
}
/* The nursery cannot make use of the returned slots data. */
if (newBytes < oldBytes) {
return oldBuffer;
}
void* newBuffer = allocateBuffer(obj->zone(), newBytes);
if (newBuffer) {
PodCopy((uint8_t*)newBuffer, (uint8_t*)oldBuffer, oldBytes);
}
return newBuffer;
}
void js::Nursery::freeBuffer(void* buffer) {
if (!isInside(buffer)) {
removeMallocedBuffer(buffer);
js_free(buffer);
}
}
void Nursery::setIndirectForwardingPointer(void* oldData, void* newData) {
MOZ_ASSERT(isInside(oldData));
// Bug 1196210: If a zero-capacity header lands in the last 2 words of a
// jemalloc chunk abutting the start of a nursery chunk, the (invalid)
// newData pointer will appear to be "inside" the nursery.
MOZ_ASSERT(!isInside(newData) || (uintptr_t(newData) & ChunkMask) == 0);
AutoEnterOOMUnsafeRegion oomUnsafe;
#ifdef DEBUG
if (ForwardedBufferMap::Ptr p = forwardedBuffers.lookup(oldData)) {
MOZ_ASSERT(p->value() == newData);
}
#endif
if (!forwardedBuffers.put(oldData, newData)) {
oomUnsafe.crash("Nursery::setForwardingPointer");
}
}
#ifdef DEBUG
static bool IsWriteableAddress(void* ptr) {
volatile uint64_t* vPtr = reinterpret_cast<volatile uint64_t*>(ptr);
*vPtr = *vPtr;
return true;
}
#endif
void js::Nursery::forwardBufferPointer(HeapSlot** pSlotsElems) {
HeapSlot* old = *pSlotsElems;
if (!isInside(old)) {
return;
}
// The new location for this buffer is either stored inline with it or in
// the forwardedBuffers table.
do {
if (ForwardedBufferMap::Ptr p = forwardedBuffers.lookup(old)) {
*pSlotsElems = reinterpret_cast<HeapSlot*>(p->value());
break;
}
*pSlotsElems = *reinterpret_cast<HeapSlot**>(old);
} while (false);
MOZ_ASSERT(!isInside(*pSlotsElems));
MOZ_ASSERT(IsWriteableAddress(*pSlotsElems));
}
js::TenuringTracer::TenuringTracer(JSRuntime* rt, Nursery* nursery)
: JSTracer(rt, JSTracer::TracerKindTag::Tenuring, TraceWeakMapKeysValues),
nursery_(*nursery),
tenuredSize(0),
tenuredCells(0),
objHead(nullptr),
objTail(&objHead),
stringHead(nullptr),
stringTail(&stringHead) {}
inline float js::Nursery::calcPromotionRate(bool* validForTenuring) const {
float used = float(previousGC.nurseryUsedBytes);
float capacity = float(previousGC.nurseryCapacity);
float tenured = float(previousGC.tenuredBytes);
float rate;
if (previousGC.nurseryUsedBytes > 0) {
if (validForTenuring) {
/*
* We can only use promotion rates if they're likely to be valid,
* they're only valid if the nursury was at least 90% full.
*/
*validForTenuring = used > capacity * 0.9f;
}
rate = tenured / used;
} else {
if (validForTenuring) {
*validForTenuring = false;
}
rate = 0.0f;
}
return rate;
}
void js::Nursery::renderProfileJSON(JSONPrinter& json) const {
if (!isEnabled()) {
json.beginObject();
json.property("status", "nursery disabled");
json.endObject();
return;
}
if (previousGC.reason == JS::GCReason::NO_REASON) {
// If the nursery was empty when the last minorGC was requested, then
// no nursery collection will have been performed but JSON may still be
// requested. (And as a public API, this function should not crash in
// such a case.)
json.beginObject();
json.property("status", "nursery empty");
json.endObject();
return;
}
json.beginObject();
json.property("status", "complete");
json.property("reason", JS::ExplainGCReason(previousGC.reason));
json.property("bytes_tenured", previousGC.tenuredBytes);
json.property("cells_tenured", previousGC.tenuredCells);
json.property("strings_tenured",
stats().getStat(gcstats::STAT_STRINGS_TENURED));
json.property("bytes_used", previousGC.nurseryUsedBytes);
json.property("cur_capacity", previousGC.nurseryCapacity);
const size_t newCapacity = capacity();
if (newCapacity != previousGC.nurseryCapacity) {
json.property("new_capacity", newCapacity);
}
if (previousGC.nurseryCommitted != previousGC.nurseryCapacity) {
json.property("lazy_capacity", previousGC.nurseryCommitted);
}
if (!timeInChunkAlloc_.IsZero()) {
json.property("chunk_alloc_us", timeInChunkAlloc_, json.MICROSECONDS);
}
// These counters only contain consistent data if the profiler is enabled,
// and then there's no guarentee.
if (runtime()->geckoProfiler().enabled()) {
json.property("cells_allocated_nursery",
stats().allocsSinceMinorGCNursery());
json.property("cells_allocated_tenured",
stats().allocsSinceMinorGCTenured());
}
if (stats().getStat(gcstats::STAT_OBJECT_GROUPS_PRETENURED)) {
json.property("groups_pretenured",
stats().getStat(gcstats::STAT_OBJECT_GROUPS_PRETENURED));
}
if (stats().getStat(gcstats::STAT_NURSERY_STRING_REALMS_DISABLED)) {
json.property(
"nursery_string_realms_disabled",
stats().getStat(gcstats::STAT_NURSERY_STRING_REALMS_DISABLED));
}
json.beginObjectProperty("phase_times");
#define EXTRACT_NAME(name, text) #name,
static const char* const names[] = {
FOR_EACH_NURSERY_PROFILE_TIME(EXTRACT_NAME)
#undef EXTRACT_NAME
""};
size_t i = 0;
for (auto time : profileDurations_) {
json.property(names[i++], time, json.MICROSECONDS);
}
json.endObject(); // timings value
json.endObject();
}
/* static */
void js::Nursery::printProfileHeader() {
fprintf(stderr, "MinorGC: Reason PRate Size ");
#define PRINT_HEADER(name, text) fprintf(stderr, " %6s", text);
FOR_EACH_NURSERY_PROFILE_TIME(PRINT_HEADER)
#undef PRINT_HEADER
fprintf(stderr, "\n");
}
/* static */
void js::Nursery::printProfileDurations(const ProfileDurations& times) {
for (auto time : times) {
fprintf(stderr, " %6" PRIi64, static_cast<int64_t>(time.ToMicroseconds()));
}
fprintf(stderr, "\n");
}
void js::Nursery::printTotalProfileTimes() {
if (enableProfiling_) {
fprintf(stderr, "MinorGC TOTALS: %7" PRIu64 " collections: ",
runtime()->gc.minorGCCount());
printProfileDurations(totalDurations_);
}
}
void js::Nursery::maybeClearProfileDurations() {
for (auto& duration : profileDurations_) {
duration = mozilla::TimeDuration();
}
}
inline void js::Nursery::startProfile(ProfileKey key) {
startTimes_[key] = ReallyNow();
}
inline void js::Nursery::endProfile(ProfileKey key) {
profileDurations_[key] = ReallyNow() - startTimes_[key];
totalDurations_[key] += profileDurations_[key];
}
bool js::Nursery::shouldCollect() const {
if (minorGCRequested()) {
return true;
}
bool belowBytesThreshold =
freeSpace() < tunables().nurseryFreeThresholdForIdleCollection();
bool belowFractionThreshold =
float(freeSpace()) / float(capacity()) <
tunables().nurseryFreeThresholdForIdleCollectionFraction();
// We want to use belowBytesThreshold when the nursery is sufficiently large,
// and belowFractionThreshold when it's small.
//
// When the nursery is small then belowBytesThreshold is a lower threshold
// (triggered earlier) than belowFractionThreshold. So if the fraction
// threshold is true, the bytes one will be true also. The opposite is true
// when the nursery is large.
//
// Therefore, by the time we cross the threshold we care about, we've already
// crossed the other one, and we can boolean AND to use either condition
// without encoding any "is the nursery big/small" test/threshold. The point
// at which they cross is when the nursery is: BytesThreshold /
// FractionThreshold large.
//
// With defaults that's:
//
// 1MB = 256KB / 0.25
//
return belowBytesThreshold && belowFractionThreshold;
}
// typeReason is the gcReason for specified type, for example,
// FULL_CELL_PTR_OBJ_BUFFER is the gcReason for JSObject.
static inline bool IsFullStoreBufferReason(JS::GCReason reason,
JS::GCReason typeReason) {
return reason == typeReason ||
reason == JS::GCReason::FULL_WHOLE_CELL_BUFFER ||
reason == JS::GCReason::FULL_GENERIC_BUFFER ||
reason == JS::GCReason::FULL_VALUE_BUFFER ||
reason == JS::GCReason::FULL_SLOT_BUFFER ||
reason == JS::GCReason::FULL_SHAPE_BUFFER;
}
void js::Nursery::collect(JS::GCReason reason) {
JSRuntime* rt = runtime();
MOZ_ASSERT(!rt->mainContextFromOwnThread()->suppressGC);
mozilla::recordreplay::AutoDisallowThreadEvents disallow;
if (!isEnabled() || isEmpty()) {
// Our barriers are not always exact, and there may be entries in the
// storebuffer even when the nursery is disabled or empty. It's not safe
// to keep these entries as they may refer to tenured cells which may be
// freed after this point.
rt->gc.storeBuffer().clear();
}
if (!isEnabled()) {
return;
}
#ifdef JS_GC_ZEAL
if (rt->gc.hasZealMode(ZealMode::CheckNursery)) {
for (auto canary = lastCanary_; canary; canary = canary->next) {
MOZ_ASSERT(canary->magicValue == CanaryMagicValue);
}
}
lastCanary_ = nullptr;
#endif
stats().beginNurseryCollection(reason);
gcTracer.traceMinorGCStart();
maybeClearProfileDurations();
startProfile(ProfileKey::Total);
// The analysis marks TenureCount as not problematic for GC hazards because
// it is only used here, and ObjectGroup pointers are never
// nursery-allocated.
MOZ_ASSERT(!IsNurseryAllocable(AllocKind::OBJECT_GROUP));
TenureCountCache tenureCounts;
previousGC.reason = JS::GCReason::NO_REASON;
if (!isEmpty()) {
doCollection(reason, tenureCounts);
poisonAndInitCurrentChunk();
} else {
previousGC.nurseryUsedBytes = 0;
previousGC.nurseryCapacity = capacity();
previousGC.nurseryCommitted = committed();
previousGC.tenuredBytes = 0;
previousGC.tenuredCells = 0;
}
// Resize the nursery.
maybeResizeNursery(reason);
const float promotionRate = doPretenuring(rt, reason, tenureCounts);
// We ignore gcMaxBytes when allocating for minor collection. However, if we
// overflowed, we disable the nursery. The next time we allocate, we'll fail
// because gcBytes >= gcMaxBytes.
if (rt->gc.heapSize.gcBytes() >= tunables().gcMaxBytes()) {
disable();
}
endProfile(ProfileKey::Total);
rt->gc.incMinorGcNumber();
TimeDuration totalTime = profileDurations_[ProfileKey::Total];
rt->addTelemetry(JS_TELEMETRY_GC_MINOR_US, totalTime.ToMicroseconds());
rt->addTelemetry(JS_TELEMETRY_GC_MINOR_REASON, uint32_t(reason));
if (totalTime.ToMilliseconds() > 1.0) {
rt->addTelemetry(JS_TELEMETRY_GC_MINOR_REASON_LONG, uint32_t(reason));
}
rt->addTelemetry(JS_TELEMETRY_GC_NURSERY_BYTES, committed());
stats().endNurseryCollection(reason);
gcTracer.traceMinorGCEnd();
timeInChunkAlloc_ = mozilla::TimeDuration();
if (enableProfiling_ && totalTime >= profileThreshold_) {
stats().maybePrintProfileHeaders();
fprintf(stderr, "MinorGC: %20s %5.1f%% %5zu ",
JS::ExplainGCReason(reason), promotionRate * 100,
capacity() / 1024);
printProfileDurations(profileDurations_);
if (reportTenurings_) {
for (auto& entry : tenureCounts.entries) {
if (entry.count >= reportTenurings_) {
fprintf(stderr, " %d x ", entry.count);
AutoSweepObjectGroup sweep(entry.group);
entry.group->print(sweep);
}
}
}
}
}
void js::Nursery::doCollection(JS::GCReason reason,
TenureCountCache& tenureCounts) {
JSRuntime* rt = runtime();
AutoGCSession session(rt, JS::HeapState::MinorCollecting);
AutoSetThreadIsPerformingGC performingGC;
AutoStopVerifyingBarriers av(rt, false);
AutoDisableProxyCheck disableStrictProxyChecking;
mozilla::DebugOnly<AutoEnterOOMUnsafeRegion> oomUnsafeRegion;
const size_t initialNurseryCapacity = capacity();
const size_t initialNurseryUsedBytes = usedSpace();
// Move objects pointed to by roots from the nursery to the major heap.
TenuringTracer mover(rt, this);
// Mark the store buffer. This must happen first.
StoreBuffer& sb = runtime()->gc.storeBuffer();
// The MIR graph only contains nursery pointers if cancelIonCompilations()
// is set on the store buffer, in which case we cancel all compilations
// of such graphs.
startProfile(ProfileKey::CancelIonCompilations);
if (sb.cancelIonCompilations()) {
js::CancelOffThreadIonCompilesUsingNurseryPointers(rt);
}
endProfile(ProfileKey::CancelIonCompilations);
startProfile(ProfileKey::TraceValues);
sb.traceValues(mover);
endProfile(ProfileKey::TraceValues);
startProfile(ProfileKey::TraceCells);
sb.traceCells(mover);
endProfile(ProfileKey::TraceCells);
startProfile(ProfileKey::TraceSlots);
sb.traceSlots(mover);
endProfile(ProfileKey::TraceSlots);
startProfile(ProfileKey::TraceWholeCells);
sb.traceWholeCells(mover);
endProfile(ProfileKey::TraceWholeCells);
startProfile(ProfileKey::TraceGenericEntries);
sb.traceGenericEntries(&mover);
endProfile(ProfileKey::TraceGenericEntries);
startProfile(ProfileKey::MarkRuntime);
rt->gc.traceRuntimeForMinorGC(&mover, session);
endProfile(ProfileKey::MarkRuntime);
startProfile(ProfileKey::MarkDebugger);
{
gcstats::AutoPhase ap(stats(), gcstats::PhaseKind::MARK_ROOTS);
Debugger::traceAllForMovingGC(&mover);
}
endProfile(ProfileKey::MarkDebugger);
startProfile(ProfileKey::SweepCaches);
rt->gc.purgeRuntimeForMinorGC();
endProfile(ProfileKey::SweepCaches);
// Most of the work is done here. This loop iterates over objects that have
// been moved to the major heap. If these objects have any outgoing pointers
// to the nursery, then those nursery objects get moved as well, until no
// objects are left to move. That is, we iterate to a fixed point.
startProfile(ProfileKey::CollectToFP);
collectToFixedPoint(mover, tenureCounts);
endProfile(ProfileKey::CollectToFP);
// Sweep to update any pointers to nursery objects that have now been
// tenured.
startProfile(ProfileKey::Sweep);
sweep(&mover);
endProfile(ProfileKey::Sweep);
// Update any slot or element pointers whose destination has been tenured.
startProfile(ProfileKey::UpdateJitActivations);
js::jit::UpdateJitActivationsForMinorGC(rt);
forwardedBuffers.clearAndCompact();
endProfile(ProfileKey::UpdateJitActivations);
startProfile(ProfileKey::ObjectsTenuredCallback);
rt->gc.callObjectsTenuredCallback();
endProfile(ProfileKey::ObjectsTenuredCallback);
// Sweep.
startProfile(ProfileKey::FreeMallocedBuffers);
rt->gc.queueBuffersForFreeAfterMinorGC(mallocedBuffers);
endProfile(ProfileKey::FreeMallocedBuffers);
startProfile(ProfileKey::ClearNursery);
clear();
endProfile(ProfileKey::ClearNursery);
startProfile(ProfileKey::ClearStoreBuffer);
runtime()->gc.storeBuffer().clear();
endProfile(ProfileKey::ClearStoreBuffer);
// Make sure hashtables have been updated after the collection.
startProfile(ProfileKey::CheckHashTables);
#ifdef JS_GC_ZEAL
if (rt->hasZealMode(ZealMode::CheckHashTablesOnMinorGC)) {
CheckHashTablesAfterMovingGC(rt);
}