summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/gcparam.js
blob: a1584fc39b8f522fe4fcd5084ba7cc7ccf5443c0 (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
gczeal(0);

function testGetParam(key) {
  gcparam(key);
}

function testChangeParam(key, diff) {
  if (!diff) {
    diff = 1;
  }
  
  let prev = gcparam(key);

  let newValue = prev > 0 ? prev - diff : prev + diff;
  gcparam(key, newValue);
  assertEq(gcparam(key), newValue);

  gcparam(key, prev);
  assertEq(gcparam(key), prev);
}

testGetParam("gcBytes");
testGetParam("gcNumber");
testGetParam("unusedChunks");
testGetParam("totalChunks");
testGetParam("nurseryBytes");
testGetParam("majorGCNumber");
testGetParam("minorGCNumber");
testGetParam("chunkBytes");
testGetParam("helperThreadCount");

testChangeParam("maxBytes");
testChangeParam("minNurseryBytes", 16 * 1024);
testChangeParam("maxNurseryBytes", 1024 * 1024);
testChangeParam("incrementalGCEnabled");
testChangeParam("perZoneGCEnabled");
testChangeParam("sliceTimeBudgetMS");
testChangeParam("highFrequencyTimeLimit");
testChangeParam("smallHeapSizeMax");
testChangeParam("largeHeapSizeMin");
testChangeParam("highFrequencySmallHeapGrowth");
testChangeParam("highFrequencyLargeHeapGrowth");
testChangeParam("lowFrequencyHeapGrowth");
testChangeParam("balancedHeapLimitsEnabled");
testChangeParam("heapGrowthFactor");
testChangeParam("allocationThreshold");
testChangeParam("smallHeapIncrementalLimit");
testChangeParam("largeHeapIncrementalLimit");
testChangeParam("minEmptyChunkCount");
testChangeParam("maxEmptyChunkCount");
testChangeParam("compactingEnabled");
testChangeParam("parallelMarkingEnabled");
testChangeParam("parallelMarkingThresholdKB");
testChangeParam("minLastDitchGCPeriod");
testChangeParam("nurseryFreeThresholdForIdleCollection");
testChangeParam("nurseryFreeThresholdForIdleCollectionPercent");
testChangeParam("nurseryTimeoutForIdleCollectionMS");
testChangeParam("pretenureThreshold");
testChangeParam("zoneAllocDelayKB");
testChangeParam("mallocThresholdBase");
testChangeParam("urgentThreshold");
testChangeParam("nurseryTimeoutForIdleCollectionMS");
testChangeParam("helperThreadRatio");
testChangeParam("maxHelperThreads");