diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /js/src/jit-test/tests/gc/incremental-state.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/jit-test/tests/gc/incremental-state.js')
-rw-r--r-- | js/src/jit-test/tests/gc/incremental-state.js | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/incremental-state.js b/js/src/jit-test/tests/gc/incremental-state.js new file mode 100644 index 000000000..0d6566d0e --- /dev/null +++ b/js/src/jit-test/tests/gc/incremental-state.js @@ -0,0 +1,63 @@ +// Test expected state changes during collection. +if (!("gcstate" in this)) + quit(); + +gczeal(0); + +// Non-incremental GC. +gc(); +assertEq(gcstate(), "NotActive"); + +// Incremental GC in minimal slice. Note that finalization always uses zero- +// sized slices while background finalization is on-going, so we need to loop. +gcslice(1000000); +while (gcstate() == "Finalize") { gcslice(1); } +while (gcstate() == "Decommit") { gcslice(1); } +assertEq(gcstate(), "NotActive"); + +// Incremental GC in multiple slices: if marking takes more than one slice, +// we yield before we start sweeping. +gczeal(0); +gcslice(1); +assertEq(gcstate(), "Mark"); +gcslice(1000000); +assertEq(gcstate(), "Mark"); +gcslice(1000000); +while (gcstate() == "Finalize") { gcslice(1); } +while (gcstate() == "Decommit") { gcslice(1); } +assertEq(gcstate(), "NotActive"); + +// Zeal mode 8: Incremental GC in two main slices: +// 1) mark roots +// 2) mark and sweep +// *) finalize. +gczeal(8, 0); +gcslice(1); +assertEq(gcstate(), "Mark"); +gcslice(1); +while (gcstate() == "Finalize") { gcslice(1); } +while (gcstate() == "Decommit") { gcslice(1); } +assertEq(gcstate(), "NotActive"); + +// Zeal mode 9: Incremental GC in two main slices: +// 1) mark roots and marking +// 2) new marking and sweeping +// *) finalize. +gczeal(9, 0); +gcslice(1); +assertEq(gcstate(), "Mark"); +gcslice(1); +while (gcstate() == "Finalize") { gcslice(1); } +while (gcstate() == "Decommit") { gcslice(1); } +assertEq(gcstate(), "NotActive"); + +// Zeal mode 10: Incremental GC in multiple slices (always yeilds before +// sweeping). This test uses long slices to prove that this zeal mode yields +// in sweeping, where normal IGC (above) does not. +gczeal(10, 0); +gcslice(1000000); +assertEq(gcstate(), "Sweep"); +gcslice(1000000); +while (gcstate() == "Finalize") { gcslice(1); } +while (gcstate() == "Decommit") { gcslice(1); } +assertEq(gcstate(), "NotActive"); |