diff -r 000000000000 -r 6474c204b198 js/src/jsapi-tests/testConservativeGC.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/js/src/jsapi-tests/testConservativeGC.cpp Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,88 @@ +/* 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/. */ + +#if !defined(JSGC_USE_EXACT_ROOTING) + +#include "jsobj.h" + +#include "jsapi-tests/tests.h" +#include "vm/String.h" + +BEGIN_TEST(testConservativeGC) +{ + JS::RootedValue v2(cx); + EVAL("({foo: 'bar'});", &v2); + CHECK(v2.isObject()); + char objCopy[sizeof(JSObject)]; + js_memcpy(&objCopy, JSVAL_TO_OBJECT(v2), sizeof(JSObject)); + + JS::RootedValue v3(cx); + EVAL("String(Math.PI);", &v3); + CHECK(JSVAL_IS_STRING(v3)); + char strCopy[sizeof(JSString)]; + js_memcpy(&strCopy, JSVAL_TO_STRING(v3), sizeof(JSString)); + + JS::RootedValue tmp(cx); + EVAL("({foo2: 'bar2'});", &tmp); + CHECK(tmp.isObject()); + JS::RootedObject obj2(cx, JSVAL_TO_OBJECT(tmp)); + char obj2Copy[sizeof(JSObject)]; + js_memcpy(&obj2Copy, obj2, sizeof(JSObject)); + + EVAL("String(Math.sqrt(3));", &tmp); + CHECK(JSVAL_IS_STRING(tmp)); + JS::RootedString str2(cx, JSVAL_TO_STRING(tmp)); + char str2Copy[sizeof(JSString)]; + js_memcpy(&str2Copy, str2, sizeof(JSString)); + + tmp = JSVAL_NULL; + + JS_GC(rt); + + EVAL("var a = [];\n" + "for (var i = 0; i != 10000; ++i) {\n" + "a.push(i + 0.1, [1, 2], String(Math.sqrt(i)), {a: i});\n" + "}", &tmp); + + JS_GC(rt); + + checkObjectFields((JSObject *)objCopy, JSVAL_TO_OBJECT(v2)); + CHECK(!memcmp(strCopy, JSVAL_TO_STRING(v3), sizeof(strCopy))); + + checkObjectFields((JSObject *)obj2Copy, obj2); + CHECK(!memcmp(str2Copy, str2, sizeof(str2Copy))); + + return true; +} + +bool checkObjectFields(JSObject *savedCopy, JSObject *obj) +{ + /* Ignore fields which are unstable across GCs. */ + CHECK(savedCopy->lastProperty() == obj->lastProperty()); + return true; +} + +END_TEST(testConservativeGC) + +BEGIN_TEST(testDerivedValues) +{ + JSString *str = JS_NewStringCopyZ(cx, "once upon a midnight dreary"); + JS::Anchor str_anchor(str); + static const jschar expected[] = { 'o', 'n', 'c', 'e' }; + const jschar *ch = JS_GetStringCharsZ(cx, str); + str = nullptr; + + /* Do a lot of allocation and collection. */ + for (int i = 0; i < 3; i++) { + for (int j = 0; j < 1000; j++) + JS_NewStringCopyZ(cx, "as I pondered weak and weary"); + JS_GC(rt); + } + + CHECK(!memcmp(ch, expected, sizeof(expected))); + return true; +} +END_TEST(testDerivedValues) + +#endif /* !defined(JSGC_USE_EXACT_ROOTING) */