mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +09:00
Merge remote-tracking branch 'origin/master' into custom
This commit is contained in:
commit
038ec9ba75
182 changed files with 104 additions and 3762 deletions
|
|
@ -568,97 +568,6 @@ obj_setPrototypeOf(JSContext* cx, unsigned argc, Value* vp)
|
|||
return true;
|
||||
}
|
||||
|
||||
#if JS_HAS_OBJ_WATCHPOINT
|
||||
|
||||
bool
|
||||
js::WatchHandler(JSContext* cx, JSObject* obj_, jsid id_, const JS::Value& old,
|
||||
JS::Value* nvp, void* closure)
|
||||
{
|
||||
RootedObject obj(cx, obj_);
|
||||
RootedId id(cx, id_);
|
||||
|
||||
/* Avoid recursion on (obj, id) already being watched on cx. */
|
||||
AutoResolving resolving(cx, obj, id, AutoResolving::WATCH);
|
||||
if (resolving.alreadyStarted())
|
||||
return true;
|
||||
|
||||
FixedInvokeArgs<3> args(cx);
|
||||
|
||||
args[0].set(IdToValue(id));
|
||||
args[1].set(old);
|
||||
args[2].set(*nvp);
|
||||
|
||||
RootedValue callable(cx, ObjectValue(*static_cast<JSObject*>(closure)));
|
||||
RootedValue thisv(cx, ObjectValue(*obj));
|
||||
RootedValue rv(cx);
|
||||
if (!Call(cx, callable, thisv, args, &rv))
|
||||
return false;
|
||||
|
||||
*nvp = rv;
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool
|
||||
obj_watch(JSContext* cx, unsigned argc, Value* vp)
|
||||
{
|
||||
CallArgs args = CallArgsFromVp(argc, vp);
|
||||
|
||||
RootedObject obj(cx, ToObject(cx, args.thisv()));
|
||||
if (!obj)
|
||||
return false;
|
||||
|
||||
if (!GlobalObject::warnOnceAboutWatch(cx, obj))
|
||||
return false;
|
||||
|
||||
if (args.length() <= 1) {
|
||||
ReportMissingArg(cx, args.calleev(), 1);
|
||||
return false;
|
||||
}
|
||||
|
||||
RootedObject callable(cx, ValueToCallable(cx, args[1], args.length() - 2));
|
||||
if (!callable)
|
||||
return false;
|
||||
|
||||
RootedId propid(cx);
|
||||
if (!ValueToId<CanGC>(cx, args[0], &propid))
|
||||
return false;
|
||||
|
||||
if (!WatchProperty(cx, obj, propid, callable))
|
||||
return false;
|
||||
|
||||
args.rval().setUndefined();
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool
|
||||
obj_unwatch(JSContext* cx, unsigned argc, Value* vp)
|
||||
{
|
||||
CallArgs args = CallArgsFromVp(argc, vp);
|
||||
|
||||
RootedObject obj(cx, ToObject(cx, args.thisv()));
|
||||
if (!obj)
|
||||
return false;
|
||||
|
||||
if (!GlobalObject::warnOnceAboutWatch(cx, obj))
|
||||
return false;
|
||||
|
||||
RootedId id(cx);
|
||||
if (args.length() != 0) {
|
||||
if (!ValueToId<CanGC>(cx, args[0], &id))
|
||||
return false;
|
||||
} else {
|
||||
id = JSID_VOID;
|
||||
}
|
||||
|
||||
if (!UnwatchProperty(cx, obj, id))
|
||||
return false;
|
||||
|
||||
args.rval().setUndefined();
|
||||
return true;
|
||||
}
|
||||
|
||||
#endif /* JS_HAS_OBJ_WATCHPOINT */
|
||||
|
||||
/* ECMA 15.2.4.5. */
|
||||
bool
|
||||
js::obj_hasOwnProperty(JSContext* cx, unsigned argc, Value* vp)
|
||||
|
|
@ -1290,10 +1199,6 @@ static const JSFunctionSpec object_methods[] = {
|
|||
JS_FN(js_toString_str, obj_toString, 0,0),
|
||||
JS_SELF_HOSTED_FN(js_toLocaleString_str, "Object_toLocaleString", 0, 0),
|
||||
JS_SELF_HOSTED_FN(js_valueOf_str, "Object_valueOf", 0,0),
|
||||
#if JS_HAS_OBJ_WATCHPOINT
|
||||
JS_FN(js_watch_str, obj_watch, 2,0),
|
||||
JS_FN(js_unwatch_str, obj_unwatch, 1,0),
|
||||
#endif
|
||||
JS_FN(js_hasOwnProperty_str, obj_hasOwnProperty, 1,0),
|
||||
JS_FN(js_isPrototypeOf_str, obj_isPrototypeOf, 1,0),
|
||||
JS_FN(js_propertyIsEnumerable_str, obj_propertyIsEnumerable, 1,0),
|
||||
|
|
|
|||
|
|
@ -2215,7 +2215,6 @@ const ObjectOps TypedObject::objectOps_ = {
|
|||
TypedObject::obj_setProperty,
|
||||
TypedObject::obj_getOwnPropertyDescriptor,
|
||||
TypedObject::obj_deleteProperty,
|
||||
nullptr, nullptr, /* watch/unwatch */
|
||||
nullptr, /* getElements */
|
||||
TypedObject::obj_enumerate,
|
||||
nullptr, /* thisValue */
|
||||
|
|
|
|||
|
|
@ -2846,10 +2846,9 @@ struct UnmarkGrayTracer : public JS::CallbackTracer
|
|||
*
|
||||
* There is an additional complication for certain kinds of edges that are not
|
||||
* contained explicitly in the source object itself, such as from a weakmap key
|
||||
* to its value, and from an object being watched by a watchpoint to the
|
||||
* watchpoint's closure. These "implicit edges" are represented in some other
|
||||
* container object, such as the weakmap or the watchpoint itself. In these
|
||||
* cases, calling unmark gray on an object won't find all of its children.
|
||||
* to its value. These "implicit edges" are represented in some other
|
||||
* container object, such as the weakmap itself. In these cases, calling unmark
|
||||
* gray on an object won't find all of its children.
|
||||
*
|
||||
* Handling these implicit edges has two parts:
|
||||
* - A special pass enumerating all of the containers that know about the
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@
|
|||
#include "jsgc.h"
|
||||
#include "jsprf.h"
|
||||
#include "jstypes.h"
|
||||
#include "jswatchpoint.h"
|
||||
|
||||
#include "builtin/MapObject.h"
|
||||
#include "frontend/BytecodeCompiler.h"
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
// |jit-test| error:TypeError
|
||||
|
||||
// Binary: cache/js-dbg-32-29add08d84ae-linux
|
||||
// Flags: -j
|
||||
//
|
||||
this.watch('y', /x/g );
|
||||
for each (y in ['q', 'q', 'q']) continue;
|
||||
gc();
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
// Binary: cache/js-dbg-64-38754465ffde-linux
|
||||
// Flags:
|
||||
//
|
||||
this.__defineSetter__("x", gc);
|
||||
this.watch("x",function(){return});
|
||||
x = 3;
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
// Binary: cache/js-dbg-64-9d51f2a931f7-linux
|
||||
// Flags:
|
||||
//
|
||||
({x:function(){}}).watch('x',function(){});
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
// Binary: cache/js-dbg-64-a6d7a5677b4c-linux
|
||||
// Flags:
|
||||
//
|
||||
this.__defineSetter__("x", function(){})
|
||||
this.watch("x", "".localeCompare)
|
||||
window = x
|
||||
Object.defineProperty(this, "x", ({
|
||||
set: window
|
||||
}))
|
||||
|
|
@ -4,7 +4,6 @@
|
|||
var o9 = Function.prototype;
|
||||
var o13 = Array;
|
||||
function f5(o) {
|
||||
o.watch('p3', function() {});
|
||||
ox1 = new Proxy(o, {});
|
||||
}
|
||||
f5(o9);
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
// |jit-test| error:TypeError
|
||||
|
||||
// Binary: cache/js-dbg-32-1c8e91b2e3a4-linux
|
||||
// Flags:
|
||||
//
|
||||
a = evalcx("lazy");
|
||||
a.watch("x", function() {});
|
||||
({}).watch("x", function() {});
|
||||
a.__defineGetter__("y", {});
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
// Binary: cache/js-dbg-32-f951e9151626-linux
|
||||
// Flags: -m -n
|
||||
//
|
||||
o = evalcx("lazy").__proto__
|
||||
gc()
|
||||
try {
|
||||
o.watch()
|
||||
} catch (e) {}
|
||||
o.constructor()
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
// |jit-test| error:ReferenceError
|
||||
|
||||
// Binary: cache/js-dbg-64-67bf9a4a1f77-linux
|
||||
// Flags: --ion-eager
|
||||
//
|
||||
|
||||
(function () {
|
||||
var a = ['x', 'y'];
|
||||
obj.watch(a[+("0")], counter);
|
||||
})();
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
// |jit-test| error:TypeError
|
||||
|
||||
// Binary: cache/js-dbg-64-bf8f2961d0cc-linux
|
||||
// Flags:
|
||||
//
|
||||
Object.watch.call(new Uint8ClampedArray, "length", function() {});
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
gczeal(8, 1)
|
||||
function recurse(x) {
|
||||
recurse;
|
||||
if (x < 20)
|
||||
recurse(x + 1);
|
||||
};
|
||||
this.watch(5, (function () {}))
|
||||
recurse(0)
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
// Don't crash or assert.
|
||||
|
||||
var d;
|
||||
this.watch("d", eval);
|
||||
(function () {
|
||||
(eval("\
|
||||
(function () {\
|
||||
for (let x = 0; x < 2; ++x) {\
|
||||
d = x\
|
||||
}\
|
||||
})\
|
||||
"))()
|
||||
})()
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
// |jit-test| error: TypeError
|
||||
// don't assert
|
||||
|
||||
print(this.watch("x",
|
||||
function() {
|
||||
Object.defineProperty(this, "x", ({
|
||||
get: (Int8Array)
|
||||
}))
|
||||
}))(x = /x/)
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
var n = 0;
|
||||
var a = [];
|
||||
for (var i = 0; i < 20; i++)
|
||||
a[i] = {};
|
||||
a[18].watch("p", function () { n++; });
|
||||
delete a[18].p;
|
||||
for (var i = 0; i < 20; i++)
|
||||
a[i].p = 0;
|
||||
assertEq(n, 1);
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
// |jit-test| error: TypeError
|
||||
function f(o) {
|
||||
o.watch("x", this);
|
||||
}
|
||||
var c = evalcx("");
|
||||
f(c);
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
|
||||
done = false;
|
||||
try {
|
||||
function x() {}
|
||||
print(this.watch("d", Object.create))
|
||||
var d = {}
|
||||
} catch (e) {}
|
||||
try {
|
||||
eval("d = ''")
|
||||
done = true;
|
||||
} catch (e) {}
|
||||
assertEq(done, false);
|
||||
|
|
@ -1,6 +1,3 @@
|
|||
try {
|
||||
this.watch("b", "".substring);
|
||||
} catch(exc1) {}
|
||||
eval("\
|
||||
var URI = '';\
|
||||
test();\
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
// |jit-test| error:TypeError
|
||||
|
||||
evalcx('').watch("", /()/);
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
var o = {};
|
||||
o.watch("p", function() { });
|
||||
|
||||
for (var i = 0; i < 10; i++) {
|
||||
o.p = 123;
|
||||
delete o.p;
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
var msg = "";
|
||||
try {
|
||||
this.__defineSetter__('x', Object.create);
|
||||
this.watch('x', function() {});
|
||||
x = 3;
|
||||
} catch (e) {
|
||||
msg = e.toString();
|
||||
}
|
||||
assertEq(msg, "TypeError: undefined is not an object or null");
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
this.watch("x", Object.create)
|
||||
try {
|
||||
(function() {
|
||||
this.__defineGetter__("x",
|
||||
function() {
|
||||
return this
|
||||
})
|
||||
})()
|
||||
} catch(e) {}
|
||||
Object.defineProperty(x, "x", ({
|
||||
set: Uint16Array
|
||||
}))
|
||||
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
if (typeof gczeal != "function")
|
||||
gczeal = function() {}
|
||||
|
||||
// don't crash
|
||||
x = (evalcx('lazy'))
|
||||
x.watch("", function () {})
|
||||
gczeal(1)
|
||||
for (w in x) {}
|
||||
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
s = newGlobal()
|
||||
try {
|
||||
evalcx("\
|
||||
Object.defineProperty(this,\"i\",{enumerable:true,get:function(){t}});\
|
||||
for each(y in this)true\
|
||||
", s)
|
||||
} catch (e) {}
|
||||
try {
|
||||
evalcx("\
|
||||
for(z=0,(7).watch(\"\",eval);;g){\
|
||||
if(z=1){({t:function(){}})\
|
||||
}\
|
||||
", s)
|
||||
} catch (e) {}
|
||||
try {
|
||||
evalcx("\
|
||||
Object.defineProperty(this,\"g2\",{get:function(){return this}});\
|
||||
g2.y()\
|
||||
", s)
|
||||
} catch (e) {}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
s = newGlobal()
|
||||
try {
|
||||
evalcx("\
|
||||
Object.defineProperty(this,\"i\",{enumerable:true,get:function(){t}});\
|
||||
for each(y in this)true\
|
||||
", s)
|
||||
} catch (e) {}
|
||||
try {
|
||||
evalcx("\
|
||||
for(z=0,(7).watch(\"\",eval);;g){\
|
||||
if(z=1){({t:function(){}})\
|
||||
}\
|
||||
", s)
|
||||
} catch (e) {}
|
||||
try {
|
||||
evalcx("\
|
||||
Object.defineProperty(this,\"g2\",{get:function(){return this}});\
|
||||
g2.y(\"\")\
|
||||
", s)
|
||||
} catch (e) {}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
this.__defineSetter__("x", function(){});
|
||||
this.watch("x", eval);
|
||||
x = 0;
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
function testNonStubGetter() {
|
||||
{ let [] = []; (this.watch("x", function(p, o, n) { return /a/g.exec(p, o, n); })); };
|
||||
(function () { (eval("(function(){for each (x in [1, 2, 2]);});"))(); })();
|
||||
this.unwatch("x");
|
||||
return "ok";
|
||||
}
|
||||
assertEq(testNonStubGetter(), "ok");
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
for (var i = 0; i < 5; ++i) {
|
||||
var o = {}
|
||||
Object.defineProperty(o, 'x', { value:"cow", writable:false });
|
||||
var r = o.watch('x', function() {});
|
||||
assertEq(r, undefined);
|
||||
o.x = 4;
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
// Test no assert or crash from outer recorders (bug 465145)
|
||||
function testBug465145() {
|
||||
this.__defineSetter__("x", function(){});
|
||||
this.watch("x", function(){});
|
||||
y = this;
|
||||
for (var z = 0; z < 2; ++z) { x = y };
|
||||
this.__defineSetter__("x", function(){});
|
||||
for (var z = 0; z < 2; ++z) { x = y };
|
||||
}
|
||||
|
||||
function testTrueShiftTrue() {
|
||||
var a = new Array(5);
|
||||
for (var i=0;i<5;++i) a[i] = "" + (true << true);
|
||||
return a.join(",");
|
||||
}
|
||||
assertEq(testTrueShiftTrue(), "2,2,2,2,2");
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
// Test that the watch handler is not called recursively for the same object
|
||||
// and property.
|
||||
(function() {
|
||||
var obj1 = {}, obj2 = {};
|
||||
var handler_entry_count = 0;
|
||||
var handler_exit_count = 0;
|
||||
|
||||
obj1.watch('x', handler);
|
||||
obj1.watch('y', handler);
|
||||
obj2.watch('x', handler);
|
||||
obj1.x = 1;
|
||||
assertEq(handler_entry_count, 3);
|
||||
assertEq(handler_exit_count, 3);
|
||||
|
||||
function handler(id) {
|
||||
handler_entry_count++;
|
||||
assertEq(handler_exit_count, 0);
|
||||
switch (true) {
|
||||
case this === obj1 && id === "x":
|
||||
assertEq(handler_entry_count, 1);
|
||||
obj2.x = 3;
|
||||
assertEq(handler_exit_count, 2);
|
||||
break;
|
||||
case this === obj2 && id === "x":
|
||||
assertEq(handler_entry_count, 2);
|
||||
obj1.y = 4;
|
||||
assertEq(handler_exit_count, 1);
|
||||
break;
|
||||
default:
|
||||
assertEq(this, obj1);
|
||||
assertEq(id, "y");
|
||||
assertEq(handler_entry_count, 3);
|
||||
|
||||
// We expect no more watch handler invocations
|
||||
obj1.x = 5;
|
||||
obj1.y = 6;
|
||||
obj2.x = 7;
|
||||
assertEq(handler_exit_count, 0);
|
||||
break;
|
||||
}
|
||||
++handler_exit_count;
|
||||
assertEq(handler_entry_count, 3);
|
||||
}
|
||||
})();
|
||||
|
||||
|
||||
// Test that run-away recursion in watch handlers is properly handled.
|
||||
(function() {
|
||||
var obj = {};
|
||||
var i = 0;
|
||||
try {
|
||||
handler();
|
||||
throw new Error("Unreachable");
|
||||
} catch(e) {
|
||||
assertEq(e instanceof InternalError, true);
|
||||
}
|
||||
|
||||
function handler() {
|
||||
var prop = "a" + ++i;
|
||||
obj.watch(prop, handler);
|
||||
obj[prop] = 2;
|
||||
}
|
||||
})();
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
(function() {
|
||||
[{ "9": [] }.watch([], function(){})]
|
||||
})()
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
// |jit-test| error: InternalError: too much recursion
|
||||
(function f() {
|
||||
"".watch(2, function() {});
|
||||
f();
|
||||
})()
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
// |jit-test| slow
|
||||
function x() {}
|
||||
for (var j = 0; j < 9999; ++j) {
|
||||
(function() {
|
||||
x += x.watch("endsWith", ArrayBuffer);
|
||||
return 0 >> Function(x)
|
||||
})()
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
// |jit-test| error: ReferenceError
|
||||
|
||||
eval("(function() { " + "\
|
||||
var o = {};\
|
||||
o.watch('p', function() { });\
|
||||
for (var i = 0; i < 10; \u5ede ++)\
|
||||
o.p = 123;\
|
||||
" + " })();");
|
||||
|
|
@ -4,4 +4,4 @@ function f(x) {
|
|||
delete ((x)++);
|
||||
arguments[0] !== undefined;
|
||||
}
|
||||
f(1, x = [f.ArrayBuffer,unwatch.Int32Array], this, this, this) ;
|
||||
f(1, x = [f.ArrayBuffer, undefined], this, this, this) ;
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
Object.defineProperty(Object.prototype, 'x', {
|
||||
set: function() { evalcx('lazy'); }
|
||||
});
|
||||
var obj = {};
|
||||
obj.watch("x", function (id, oldval, newval) {});
|
||||
for (var str in 'A') {
|
||||
obj.x = 1;
|
||||
}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
Object.defineProperty(Object.prototype, 'x', {
|
||||
set: function() { evalcx('lazy'); }
|
||||
});
|
||||
var obj = {};
|
||||
var prot = {};
|
||||
obj.__proto__ = prot;
|
||||
obj.watch("x", function (id, oldval, newval) {});
|
||||
for (var str in 'A') {
|
||||
obj.x = 1;
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
var flag = 0;
|
||||
var a = {};
|
||||
Object.defineProperty(a, "value", {set: function(x) {}});
|
||||
a.watch("value", function(){flag++;});
|
||||
|
||||
for(var i = 0; i < 100; i++) {
|
||||
a.value = i;
|
||||
assertEq(flag, i+1);
|
||||
}
|
||||
|
|
@ -7,7 +7,6 @@ Object.defineProperty(arr, 0, {
|
|||
glob.__proto__;
|
||||
})
|
||||
});
|
||||
this.watch("s", function() {});
|
||||
try {
|
||||
arr.pop();
|
||||
} catch (e) {}
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
(function () {
|
||||
var a;
|
||||
eval("for(w in ((function(x,y){b:0})())) ;");
|
||||
})();
|
||||
|
||||
this.__defineSetter__("l", function() { gc() });
|
||||
this.watch("l", function(x) { yield {} });
|
||||
l = true;
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
(function() {
|
||||
for (a = 0; a < 2; a++)
|
||||
''.watch("", function() {})
|
||||
})()
|
||||
|
||||
/* Don't crash or assert. */
|
||||
|
||||
|
|
@ -9,7 +9,6 @@ function f() {
|
|||
}
|
||||
}
|
||||
})(/x/)))
|
||||
for (z = 0; z < 100; x.unwatch(), z++)
|
||||
for (e in [0]) {
|
||||
gczeal(2)
|
||||
} ( [1,2,3])("")
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
// vim: set ts=8 sts=4 et sw=4 tw=99:
|
||||
|
||||
var count = 0;
|
||||
this.watch("x", function() {
|
||||
count++;
|
||||
});
|
||||
for(var i=0; i<10; i++) {
|
||||
x = 2;
|
||||
}
|
||||
assertEq(count, 10);
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
var o = {};
|
||||
for(var i=0; i<5; i++) {
|
||||
o.p = 2;
|
||||
o.watch("p", function() { });
|
||||
o.p = 2;
|
||||
delete o.p;
|
||||
}
|
||||
|
|
@ -118,7 +118,6 @@ for(var o2 in f5) {
|
|||
f2(o5);
|
||||
f2(o5);
|
||||
f0(o3);
|
||||
o9.watch('p3', function() {});
|
||||
o8[o8] = o8;
|
||||
f0(o5);
|
||||
f1(o6);
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
(function() {
|
||||
for (a = 0; a < 2; a++)
|
||||
''.watch("", function() {})
|
||||
})()
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
for each(let w in [[], 0, [], 0]) {
|
||||
w.unwatch()
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
// assignments to watched objects must not be cached
|
||||
var obj = {x: 0};
|
||||
var hits = 0;
|
||||
obj.watch("x", function (id, oldval, newval) { hits++; return newval; });
|
||||
for (var i = 0; i < 10; i++)
|
||||
obj.x = i;
|
||||
assertEq(hits, 10);
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
// assignments to watched objects must not be traced
|
||||
var hits = 0;
|
||||
function counter(id, oldval, newval) {
|
||||
hits++;
|
||||
return newval;
|
||||
}
|
||||
|
||||
(function () {
|
||||
var obj = {x: 0, y: 0};
|
||||
var a = ['x', 'y'];
|
||||
obj.watch('z', counter);
|
||||
for (var i = 0; i < 14; i++) {
|
||||
obj.watch(a[+(i > 8)], counter);
|
||||
obj.y = i;
|
||||
}
|
||||
})();
|
||||
assertEq(hits, 5);
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
// assignments to watched properties via ++ must not be cached
|
||||
var obj = {x: 0};
|
||||
var hits = 0;
|
||||
obj.watch("x", function (id, oldval, newval) { hits++; return newval; });
|
||||
for (var i = 0; i < 10; i++)
|
||||
obj.x++;
|
||||
assertEq(hits, 10);
|
||||
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
// assignments to watched properties via ++ must not be traced
|
||||
var hits = 0;
|
||||
function counter(id, oldval, newval) {
|
||||
hits++;
|
||||
return newval;
|
||||
}
|
||||
|
||||
(function () {
|
||||
var obj = {x: 0, y: 0};
|
||||
var a = ['x', 'y'];
|
||||
obj.watch('z', counter);
|
||||
for (var i = 0; i < 14; i++) {
|
||||
obj.watch(a[+(i > 8)], counter);
|
||||
obj.y++;
|
||||
}
|
||||
})();
|
||||
assertEq(hits, 5);
|
||||
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
// assignment to watched global properties must not be cached
|
||||
x = 0;
|
||||
var hits = 0;
|
||||
this.watch("x", function (id, oldval, newval) { hits++; return newval; });
|
||||
for (var i = 0; i < 10; i++)
|
||||
x = i;
|
||||
assertEq(hits, 10);
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
// assignment to watched global properties must not be traced
|
||||
var hits = 0;
|
||||
function counter(id, oldval, newval) {
|
||||
hits++;
|
||||
return newval;
|
||||
}
|
||||
|
||||
var x = 0;
|
||||
var y = 0;
|
||||
(function () {
|
||||
var a = ['x', 'y'];
|
||||
this.watch('z', counter);
|
||||
for (var i = 0; i < 14; i++) {
|
||||
this.watch(a[+(i > 8)], counter);
|
||||
y = 1;
|
||||
}
|
||||
})();
|
||||
assertEq(hits, 5);
|
||||
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
// assignment to watched global properties must not be traced
|
||||
var hits = 0;
|
||||
function counter(id, oldval, newval) {
|
||||
hits++;
|
||||
return newval;
|
||||
}
|
||||
|
||||
var x = 0;
|
||||
var y = 0;
|
||||
function f() {
|
||||
var a = [{}, this];
|
||||
for (var i = 0; i < 14; i++) {
|
||||
print(shapeOf(this));
|
||||
Object.prototype.watch.call(a[+(i > 8)], "y", counter);
|
||||
y++;
|
||||
}
|
||||
}
|
||||
f();
|
||||
assertEq(hits, 5);
|
||||
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
// adding assignment + watchpoint vs. caching
|
||||
var hits = 0;
|
||||
var obj = {};
|
||||
obj.watch("x", function (id, oldval, newval) { hits++; return newval; });
|
||||
for (var i = 0; i < 10; i++) {
|
||||
obj.x = 1;
|
||||
delete obj.x;
|
||||
}
|
||||
assertEq(hits, 10);
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
// test against future pic support for symbols
|
||||
|
||||
// assignments to watched objects must not be cached
|
||||
var obj = {};
|
||||
var x = Symbol.for("x");
|
||||
obj[x] = 0;
|
||||
var hits = 0;
|
||||
obj.watch(x, function (id, oldval, newval) { hits++; return newval; });
|
||||
for (var i = 0; i < 10; i++)
|
||||
obj[x] = i;
|
||||
assertEq(hits, 10);
|
||||
|
||||
// assignments to watched properties via ++ must not be cached
|
||||
hits = 0;
|
||||
for (var i = 0; i < 10; i++)
|
||||
obj[x]++;
|
||||
assertEq(hits, 10);
|
||||
|
||||
// adding assignment + watchpoint vs. caching
|
||||
hits = 0;
|
||||
obj = {};
|
||||
obj.watch(x, function (id, oldval, newval) { hits++; return newval; });
|
||||
for (var i = 0; i < 10; i++) {
|
||||
obj[x] = 1;
|
||||
delete obj[x];
|
||||
}
|
||||
assertEq(hits, 10);
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
// |jit-test| allow-oom
|
||||
enableSPSProfiling();
|
||||
loadFile('\
|
||||
for (var i = 0; i < 2; i++) {\
|
||||
obj = { m: function () {} };\
|
||||
obj.watch("m", function () { float32 = 0 + obj.foo; });\
|
||||
obj.m = 0;\
|
||||
}\
|
||||
');
|
||||
gcparam("maxBytes", gcparam("gcBytes") + (1)*1024);
|
||||
newGlobal("same-compartment");
|
||||
function loadFile(lfVarx) {
|
||||
evaluate(lfVarx, { noScriptRval : true, isRunOnce : true });
|
||||
}
|
||||
|
|
@ -4053,9 +4053,6 @@ TryAttachSetValuePropStub(JSContext* cx, HandleScript script, jsbytecode* pc, IC
|
|||
{
|
||||
MOZ_ASSERT(!*attached);
|
||||
|
||||
if (obj->watched())
|
||||
return true;
|
||||
|
||||
RootedShape shape(cx);
|
||||
RootedObject holder(cx);
|
||||
if (!EffectlesslyLookupProperty(cx, obj, id, &holder, &shape))
|
||||
|
|
@ -4151,9 +4148,6 @@ TryAttachSetAccessorPropStub(JSContext* cx, HandleScript script, jsbytecode* pc,
|
|||
MOZ_ASSERT(!*attached);
|
||||
MOZ_ASSERT(!*isTemporarilyUnoptimizable);
|
||||
|
||||
if (obj->watched())
|
||||
return true;
|
||||
|
||||
RootedShape shape(cx);
|
||||
RootedObject holder(cx);
|
||||
if (!EffectlesslyLookupProperty(cx, obj, id, &holder, &shape))
|
||||
|
|
|
|||
|
|
@ -3232,7 +3232,7 @@ SetPropertyIC::tryAttachStub(JSContext* cx, HandleScript outerScript, IonScript*
|
|||
MOZ_ASSERT(!*emitted);
|
||||
MOZ_ASSERT(!*tryNativeAddSlot);
|
||||
|
||||
if (!canAttachStub() || obj->watched())
|
||||
if (!canAttachStub())
|
||||
return true;
|
||||
|
||||
// Fail cache emission if the object is frozen
|
||||
|
|
@ -3897,9 +3897,6 @@ IsDenseElementSetInlineable(JSObject* obj, const Value& idval, const ConstantOrR
|
|||
if (!obj->is<ArrayObject>())
|
||||
return false;
|
||||
|
||||
if (obj->watched())
|
||||
return false;
|
||||
|
||||
if (!idval.isInt32())
|
||||
return false;
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,6 @@ MSG_DEF(JSMSG_MORE_ARGS_NEEDED, 3, JSEXN_TYPEERR, "{0} requires more than
|
|||
MSG_DEF(JSMSG_INCOMPATIBLE_PROTO, 3, JSEXN_TYPEERR, "{0}.prototype.{1} called on incompatible {2}")
|
||||
MSG_DEF(JSMSG_NO_CONSTRUCTOR, 1, JSEXN_TYPEERR, "{0} has no constructor")
|
||||
MSG_DEF(JSMSG_BAD_SORT_ARG, 0, JSEXN_TYPEERR, "invalid Array.prototype.sort argument")
|
||||
MSG_DEF(JSMSG_CANT_WATCH, 1, JSEXN_TYPEERR, "can't watch non-native objects of class {0}")
|
||||
MSG_DEF(JSMSG_READ_ONLY, 1, JSEXN_TYPEERR, "{0} is read-only")
|
||||
MSG_DEF(JSMSG_CANT_DELETE, 1, JSEXN_TYPEERR, "property {0} is non-configurable and can't be deleted")
|
||||
MSG_DEF(JSMSG_CANT_TRUNCATE_ARRAY, 0, JSEXN_TYPEERR, "can't delete non-configurable array element")
|
||||
|
|
@ -72,7 +71,6 @@ MSG_DEF(JSMSG_UNDEFINED_PROP, 1, JSEXN_REFERENCEERR, "reference to unde
|
|||
MSG_DEF(JSMSG_INVALID_MAP_ITERABLE, 1, JSEXN_TYPEERR, "iterable for {0} should have array-like objects")
|
||||
MSG_DEF(JSMSG_NESTING_GENERATOR, 0, JSEXN_TYPEERR, "already executing generator")
|
||||
MSG_DEF(JSMSG_INCOMPATIBLE_METHOD, 3, JSEXN_TYPEERR, "{0} {1} called on incompatible {2}")
|
||||
MSG_DEF(JSMSG_OBJECT_WATCH_DEPRECATED, 0, JSEXN_WARN, "Object.prototype.watch and unwatch are very slow, non-standard, and deprecated; use a getter/setter instead")
|
||||
MSG_DEF(JSMSG_ARRAYBUFFER_SLICE_DEPRECATED, 0, JSEXN_WARN, "ArrayBuffer.slice is deprecated; use ArrayBuffer.prototype.slice instead")
|
||||
MSG_DEF(JSMSG_BAD_SURROGATE_CHAR, 1, JSEXN_TYPEERR, "bad surrogate character {0}")
|
||||
MSG_DEF(JSMSG_UTF8_CHAR_TOO_LARGE, 1, JSEXN_TYPEERR, "UTF-8 character {0} too large")
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@
|
|||
#include "jsstr.h"
|
||||
#include "jstypes.h"
|
||||
#include "jsutil.h"
|
||||
#include "jswatchpoint.h"
|
||||
#include "jsweakmap.h"
|
||||
#include "jswrapper.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@
|
|||
#include "jsscript.h"
|
||||
#include "jsstr.h"
|
||||
#include "jstypes.h"
|
||||
#include "jswatchpoint.h"
|
||||
|
||||
#include "gc/Marking.h"
|
||||
#include "jit/Ion.h"
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@
|
|||
#include "jsfriendapi.h"
|
||||
#include "jsgc.h"
|
||||
#include "jsiter.h"
|
||||
#include "jswatchpoint.h"
|
||||
#include "jswrapper.h"
|
||||
|
||||
#include "gc/Marking.h"
|
||||
|
|
@ -76,7 +75,6 @@ JSCompartment::JSCompartment(Zone* zone, const JS::CompartmentOptions& options =
|
|||
gcIncomingGrayPointers(nullptr),
|
||||
debugModeBits(0),
|
||||
randomKeyGenerator_(runtime_->forkRandomKeyGenerator()),
|
||||
watchpointMap(nullptr),
|
||||
scriptCountsMap(nullptr),
|
||||
debugScriptMap(nullptr),
|
||||
debugEnvs(nullptr),
|
||||
|
|
@ -103,7 +101,6 @@ JSCompartment::~JSCompartment()
|
|||
rt->lcovOutput.writeLCovResult(lcovOutput);
|
||||
|
||||
js_delete(jitCompartment_);
|
||||
js_delete(watchpointMap);
|
||||
js_delete(scriptCountsMap);
|
||||
js_delete(debugScriptMap);
|
||||
js_delete(debugEnvs);
|
||||
|
|
@ -662,12 +659,6 @@ JSCompartment::traceRoots(JSTracer* trc, js::gc::GCRuntime::TraceOrMarkRuntime t
|
|||
if (traceOrMark == js::gc::GCRuntime::MarkRuntime && !zone()->isCollecting())
|
||||
return;
|
||||
|
||||
// During a GC, these are treated as weak pointers.
|
||||
if (traceOrMark == js::gc::GCRuntime::TraceRuntime) {
|
||||
if (watchpointMap)
|
||||
watchpointMap->markAll(trc);
|
||||
}
|
||||
|
||||
/* Mark debug scopes, if present */
|
||||
if (debugEnvs)
|
||||
debugEnvs->mark(trc);
|
||||
|
|
@ -712,9 +703,6 @@ JSCompartment::traceRoots(JSTracer* trc, js::gc::GCRuntime::TraceOrMarkRuntime t
|
|||
void
|
||||
JSCompartment::finishRoots()
|
||||
{
|
||||
if (watchpointMap)
|
||||
watchpointMap->clear();
|
||||
|
||||
if (debugEnvs)
|
||||
debugEnvs->finish();
|
||||
|
||||
|
|
|
|||
|
|
@ -282,7 +282,6 @@ class MOZ_RAII AutoSetNewObjectMetadata : private JS::CustomAutoRooter
|
|||
namespace js {
|
||||
class DebugEnvironments;
|
||||
class ObjectWeakMap;
|
||||
class WatchpointMap;
|
||||
class WeakMapBase;
|
||||
} // namespace js
|
||||
|
||||
|
|
@ -811,8 +810,6 @@ struct JSCompartment
|
|||
void sweepBreakpoints(js::FreeOp* fop);
|
||||
|
||||
public:
|
||||
js::WatchpointMap* watchpointMap;
|
||||
|
||||
js::ScriptCountsMap* scriptCountsMap;
|
||||
|
||||
js::DebugScriptMap* debugScriptMap;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
#include "jsgc.h"
|
||||
#include "jsobj.h"
|
||||
#include "jsprf.h"
|
||||
#include "jswatchpoint.h"
|
||||
#include "jsweakmap.h"
|
||||
#include "jswrapper.h"
|
||||
|
||||
|
|
@ -579,7 +578,6 @@ void
|
|||
js::TraceWeakMaps(WeakMapTracer* trc)
|
||||
{
|
||||
WeakMapBase::traceAllMappings(trc);
|
||||
WatchpointMap::traceAll(trc);
|
||||
}
|
||||
|
||||
extern JS_FRIEND_API(bool)
|
||||
|
|
|
|||
|
|
@ -2110,30 +2110,6 @@ JS_FRIEND_API(void*)
|
|||
JS_GetDataViewData(JSObject* obj, const JS::AutoCheckCannotGC&);
|
||||
|
||||
namespace js {
|
||||
|
||||
/**
|
||||
* Add a watchpoint -- in the Object.prototype.watch sense -- to |obj| for the
|
||||
* property |id|, using the callable object |callable| as the function to be
|
||||
* called for notifications.
|
||||
*
|
||||
* This is an internal function exposed -- temporarily -- only so that DOM
|
||||
* proxies can be watchable. Don't use it! We'll soon kill off the
|
||||
* Object.prototype.{,un}watch functions, at which point this will go too.
|
||||
*/
|
||||
extern JS_FRIEND_API(bool)
|
||||
WatchGuts(JSContext* cx, JS::HandleObject obj, JS::HandleId id, JS::HandleObject callable);
|
||||
|
||||
/**
|
||||
* Remove a watchpoint -- in the Object.prototype.watch sense -- from |obj| for
|
||||
* the property |id|.
|
||||
*
|
||||
* This is an internal function exposed -- temporarily -- only so that DOM
|
||||
* proxies can be watchable. Don't use it! We'll soon kill off the
|
||||
* Object.prototype.{,un}watch functions, at which point this will go too.
|
||||
*/
|
||||
extern JS_FRIEND_API(bool)
|
||||
UnwatchGuts(JSContext* cx, JS::HandleObject obj, JS::HandleId id);
|
||||
|
||||
namespace jit {
|
||||
|
||||
enum class InlinableNative : uint16_t;
|
||||
|
|
|
|||
|
|
@ -207,7 +207,6 @@
|
|||
#include "jsscript.h"
|
||||
#include "jstypes.h"
|
||||
#include "jsutil.h"
|
||||
#include "jswatchpoint.h"
|
||||
#include "jsweakmap.h"
|
||||
#ifdef XP_WIN
|
||||
# include "jswin.h"
|
||||
|
|
@ -2392,11 +2391,6 @@ GCRuntime::updatePointersToRelocatedCells(Zone* zone, AutoLockForExclusiveAccess
|
|||
Debugger::markIncomingCrossCompartmentEdges(&trc);
|
||||
|
||||
WeakMapBase::markAll(zone, &trc);
|
||||
for (CompartmentsInZoneIter c(zone); !c.done(); c.next()) {
|
||||
c->trace(&trc);
|
||||
if (c->watchpointMap)
|
||||
c->watchpointMap->markAll(&trc);
|
||||
}
|
||||
|
||||
// Mark all gray roots, making sure we call the trace callback to get the
|
||||
// current set.
|
||||
|
|
@ -2405,7 +2399,6 @@ GCRuntime::updatePointersToRelocatedCells(Zone* zone, AutoLockForExclusiveAccess
|
|||
}
|
||||
|
||||
// Sweep everything to fix up weak pointers
|
||||
WatchpointMap::sweepAll(rt);
|
||||
Debugger::sweepAll(rt->defaultFreeOp());
|
||||
jit::JitRuntime::SweepJitcodeGlobalTable(rt);
|
||||
rt->gc.sweepZoneAfterCompacting(zone);
|
||||
|
|
@ -3850,10 +3843,6 @@ GCRuntime::markWeakReferences(gcstats::Phase phase)
|
|||
for (ZoneIterT zone(rt); !zone.done(); zone.next())
|
||||
markedAny |= WeakMapBase::markZoneIteratively(zone, &marker);
|
||||
}
|
||||
for (CompartmentsIterT<ZoneIterT> c(rt); !c.done(); c.next()) {
|
||||
if (c->watchpointMap)
|
||||
markedAny |= c->watchpointMap->markIteratively(&marker);
|
||||
}
|
||||
markedAny |= Debugger::markAllIteratively(&marker);
|
||||
markedAny |= jit::JitRuntime::MarkJitcodeGlobalTableIteratively(&marker);
|
||||
|
||||
|
|
@ -4625,9 +4614,6 @@ GCRuntime::beginSweepingZoneGroup(AutoLockForExclusiveAccess& lock)
|
|||
// Bug 1071218: the following two methods have not yet been
|
||||
// refactored to work on a single zone-group at once.
|
||||
|
||||
// Collect watch points associated with unreachable objects.
|
||||
WatchpointMap::sweepAll(rt);
|
||||
|
||||
// Detach unreachable debuggers and global objects from each other.
|
||||
Debugger::sweepAll(&fop);
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@
|
|||
#include "jsstr.h"
|
||||
#include "jstypes.h"
|
||||
#include "jsutil.h"
|
||||
#include "jswatchpoint.h"
|
||||
#include "jswin.h"
|
||||
#include "jswrapper.h"
|
||||
|
||||
|
|
@ -1011,13 +1010,7 @@ js::CreateThisForFunction(JSContext* cx, HandleObject callee, HandleObject newTa
|
|||
JSObject::nonNativeSetProperty(JSContext* cx, HandleObject obj, HandleId id, HandleValue v,
|
||||
HandleValue receiver, ObjectOpResult& result)
|
||||
{
|
||||
RootedValue value(cx, v);
|
||||
if (MOZ_UNLIKELY(obj->watched())) {
|
||||
WatchpointMap* wpmap = cx->compartment()->watchpointMap;
|
||||
if (wpmap && !wpmap->triggerWatchpoint(cx, obj, id, &value))
|
||||
return false;
|
||||
}
|
||||
return obj->getOpsSetProperty()(cx, obj, id, value, receiver, result);
|
||||
return obj->getOpsSetProperty()(cx, obj, id, v, receiver, result);
|
||||
}
|
||||
|
||||
/* static */ bool
|
||||
|
|
@ -2795,68 +2788,6 @@ js::GetPropertyDescriptor(JSContext* cx, HandleObject obj, HandleId id,
|
|||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
js::WatchGuts(JSContext* cx, JS::HandleObject origObj, JS::HandleId id, JS::HandleObject callable)
|
||||
{
|
||||
RootedObject obj(cx, ToWindowIfWindowProxy(origObj));
|
||||
if (obj->isNative()) {
|
||||
// Use sparse indexes for watched objects, as dense elements can be
|
||||
// written to without checking the watchpoint map.
|
||||
if (!NativeObject::sparsifyDenseElements(cx, obj.as<NativeObject>()))
|
||||
return false;
|
||||
|
||||
MarkTypePropertyNonData(cx, obj, id);
|
||||
}
|
||||
|
||||
WatchpointMap* wpmap = cx->compartment()->watchpointMap;
|
||||
if (!wpmap) {
|
||||
wpmap = cx->runtime()->new_<WatchpointMap>();
|
||||
if (!wpmap || !wpmap->init()) {
|
||||
ReportOutOfMemory(cx);
|
||||
js_delete(wpmap);
|
||||
return false;
|
||||
}
|
||||
cx->compartment()->watchpointMap = wpmap;
|
||||
}
|
||||
|
||||
return wpmap->watch(cx, obj, id, js::WatchHandler, callable);
|
||||
}
|
||||
|
||||
bool
|
||||
js::UnwatchGuts(JSContext* cx, JS::HandleObject origObj, JS::HandleId id)
|
||||
{
|
||||
// Looking in the map for an unsupported object will never hit, so we don't
|
||||
// need to check for nativeness or watchable-ness here.
|
||||
RootedObject obj(cx, ToWindowIfWindowProxy(origObj));
|
||||
if (WatchpointMap* wpmap = cx->compartment()->watchpointMap)
|
||||
wpmap->unwatch(obj, id, nullptr, nullptr);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
js::WatchProperty(JSContext* cx, HandleObject obj, HandleId id, HandleObject callable)
|
||||
{
|
||||
if (WatchOp op = obj->getOpsWatch())
|
||||
return op(cx, obj, id, callable);
|
||||
|
||||
if (!obj->isNative() || obj->is<TypedArrayObject>()) {
|
||||
JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_CANT_WATCH,
|
||||
obj->getClass()->name);
|
||||
return false;
|
||||
}
|
||||
|
||||
return WatchGuts(cx, obj, id, callable);
|
||||
}
|
||||
|
||||
bool
|
||||
js::UnwatchProperty(JSContext* cx, HandleObject obj, HandleId id)
|
||||
{
|
||||
if (UnwatchOp op = obj->getOpsUnwatch())
|
||||
return op(cx, obj, id);
|
||||
|
||||
return UnwatchGuts(cx, obj, id);
|
||||
}
|
||||
|
||||
const char*
|
||||
js::GetObjectClassName(JSContext* cx, HandleObject obj)
|
||||
{
|
||||
|
|
@ -3416,7 +3347,6 @@ JSObject::dump(FILE* fp) const
|
|||
if (obj->isBoundFunction()) fprintf(fp, " bound_function");
|
||||
if (obj->isQualifiedVarObj()) fprintf(fp, " varobj");
|
||||
if (obj->isUnqualifiedVarObj()) fprintf(fp, " unqualified_varobj");
|
||||
if (obj->watched()) fprintf(fp, " watched");
|
||||
if (obj->isIteratedSingleton()) fprintf(fp, " iterated_singleton");
|
||||
if (obj->isNewGroupUnknown()) fprintf(fp, " new_type_unknown");
|
||||
if (obj->hasUncacheableProto()) fprintf(fp, " has_uncacheable_proto");
|
||||
|
|
|
|||
|
|
@ -141,8 +141,6 @@ class JSObject : public js::gc::Cell
|
|||
js::GetOwnPropertyOp getOpsGetOwnPropertyDescriptor()
|
||||
const { return getClass()->getOpsGetOwnPropertyDescriptor(); }
|
||||
js::DeletePropertyOp getOpsDeleteProperty() const { return getClass()->getOpsDeleteProperty(); }
|
||||
js::WatchOp getOpsWatch() const { return getClass()->getOpsWatch(); }
|
||||
js::UnwatchOp getOpsUnwatch() const { return getClass()->getOpsUnwatch(); }
|
||||
js::GetElementsOp getOpsGetElements() const { return getClass()->getOpsGetElements(); }
|
||||
JSNewEnumerateOp getOpsEnumerate() const { return getClass()->getOpsEnumerate(); }
|
||||
JSFunToStringOp getOpsFunToString() const { return getClass()->getOpsFunToString(); }
|
||||
|
|
@ -221,11 +219,6 @@ class JSObject : public js::gc::Cell
|
|||
inline bool isBoundFunction() const;
|
||||
inline bool hasSpecialEquality() const;
|
||||
|
||||
inline bool watched() const;
|
||||
static bool setWatched(js::ExclusiveContext* cx, JS::HandleObject obj) {
|
||||
return setFlags(cx, obj, js::BaseShape::WATCHED, GENERATE_SHAPE);
|
||||
}
|
||||
|
||||
// A "qualified" varobj is the object on which "qualified" variable
|
||||
// declarations (i.e., those defined with "var") are kept.
|
||||
//
|
||||
|
|
@ -1032,21 +1025,6 @@ extern bool
|
|||
DefineFunctions(JSContext* cx, HandleObject obj, const JSFunctionSpec* fs,
|
||||
DefineAsIntrinsic intrinsic);
|
||||
|
||||
/*
|
||||
* Set a watchpoint: a synchronous callback when the given property of the
|
||||
* given object is set.
|
||||
*
|
||||
* Watchpoints are nonstandard and do not fit in well with the way ES6
|
||||
* specifies [[Set]]. They are also insufficient for implementing
|
||||
* Object.observe.
|
||||
*/
|
||||
extern bool
|
||||
WatchProperty(JSContext* cx, HandleObject obj, HandleId id, HandleObject callable);
|
||||
|
||||
/* Clear a watchpoint. */
|
||||
extern bool
|
||||
UnwatchProperty(JSContext* cx, HandleObject obj, HandleId id);
|
||||
|
||||
/* ES6 draft rev 36 (2015 March 17) 7.1.1 ToPrimitive(vp[, preferredType]) */
|
||||
extern bool
|
||||
ToPrimitiveSlow(JSContext* cx, JSType hint, MutableHandleValue vp);
|
||||
|
|
|
|||
|
|
@ -463,12 +463,6 @@ JSObject::isBoundFunction() const
|
|||
return is<JSFunction>() && as<JSFunction>().isBoundFunction();
|
||||
}
|
||||
|
||||
inline bool
|
||||
JSObject::watched() const
|
||||
{
|
||||
return hasAllFlags(js::BaseShape::WATCHED);
|
||||
}
|
||||
|
||||
inline bool
|
||||
JSObject::isDelegate() const
|
||||
{
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
*/
|
||||
#define JS_HAS_STR_HTML_HELPERS 1 /* (no longer used) */
|
||||
#define JS_HAS_OBJ_PROTO_PROP 1 /* has o.__proto__ etc. */
|
||||
#define JS_HAS_OBJ_WATCHPOINT 1 /* has o.watch and o.unwatch */
|
||||
#define JS_HAS_TOSOURCE 1 /* has Object/Array toSource method */
|
||||
#define JS_HAS_CATCH_GUARD 1 /* has exception handling catch guard */
|
||||
#define JS_HAS_UNEVAL 1 /* has uneval() top-level function */
|
||||
|
|
|
|||
|
|
@ -1,246 +0,0 @@
|
|||
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
||||
* 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 "jswatchpoint.h"
|
||||
|
||||
#include "jsatom.h"
|
||||
#include "jscompartment.h"
|
||||
#include "jsfriendapi.h"
|
||||
|
||||
#include "gc/Marking.h"
|
||||
#include "vm/Shape.h"
|
||||
|
||||
#include "jsgcinlines.h"
|
||||
|
||||
using namespace js;
|
||||
using namespace js::gc;
|
||||
|
||||
inline HashNumber
|
||||
WatchKeyHasher::hash(const Lookup& key)
|
||||
{
|
||||
return MovableCellHasher<PreBarrieredObject>::hash(key.object) ^ HashId(key.id);
|
||||
}
|
||||
|
||||
namespace {
|
||||
|
||||
class AutoEntryHolder {
|
||||
typedef WatchpointMap::Map Map;
|
||||
Generation gen;
|
||||
Map& map;
|
||||
Map::Ptr p;
|
||||
RootedObject obj;
|
||||
RootedId id;
|
||||
|
||||
public:
|
||||
AutoEntryHolder(JSContext* cx, Map& map, Map::Ptr p)
|
||||
: gen(map.generation()), map(map), p(p), obj(cx, p->key().object), id(cx, p->key().id)
|
||||
{
|
||||
MOZ_ASSERT(!p->value().held);
|
||||
p->value().held = true;
|
||||
}
|
||||
|
||||
~AutoEntryHolder() {
|
||||
if (gen != map.generation())
|
||||
p = map.lookup(WatchKey(obj, id));
|
||||
if (p)
|
||||
p->value().held = false;
|
||||
}
|
||||
};
|
||||
|
||||
} /* anonymous namespace */
|
||||
|
||||
bool
|
||||
WatchpointMap::init()
|
||||
{
|
||||
return map.init();
|
||||
}
|
||||
|
||||
bool
|
||||
WatchpointMap::watch(JSContext* cx, HandleObject obj, HandleId id,
|
||||
JSWatchPointHandler handler, HandleObject closure)
|
||||
{
|
||||
MOZ_ASSERT(JSID_IS_STRING(id) || JSID_IS_INT(id) || JSID_IS_SYMBOL(id));
|
||||
|
||||
if (!JSObject::setWatched(cx, obj))
|
||||
return false;
|
||||
|
||||
Watchpoint w(handler, closure, false);
|
||||
if (!map.put(WatchKey(obj, id), w)) {
|
||||
ReportOutOfMemory(cx);
|
||||
return false;
|
||||
}
|
||||
/*
|
||||
* For generational GC, we don't need to post-barrier writes to the
|
||||
* hashtable here because we mark all watchpoints as part of root marking in
|
||||
* markAll().
|
||||
*/
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::unwatch(JSObject* obj, jsid id,
|
||||
JSWatchPointHandler* handlerp, JSObject** closurep)
|
||||
{
|
||||
if (Map::Ptr p = map.lookup(WatchKey(obj, id))) {
|
||||
if (handlerp)
|
||||
*handlerp = p->value().handler;
|
||||
if (closurep) {
|
||||
// Read barrier to prevent an incorrectly gray closure from escaping the
|
||||
// watchpoint. See the comment before UnmarkGrayChildren in gc/Marking.cpp
|
||||
JS::ExposeObjectToActiveJS(p->value().closure);
|
||||
*closurep = p->value().closure;
|
||||
}
|
||||
map.remove(p);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::unwatchObject(JSObject* obj)
|
||||
{
|
||||
for (Map::Enum e(map); !e.empty(); e.popFront()) {
|
||||
Map::Entry& entry = e.front();
|
||||
if (entry.key().object == obj)
|
||||
e.removeFront();
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::clear()
|
||||
{
|
||||
map.clear();
|
||||
}
|
||||
|
||||
bool
|
||||
WatchpointMap::triggerWatchpoint(JSContext* cx, HandleObject obj, HandleId id, MutableHandleValue vp)
|
||||
{
|
||||
Map::Ptr p = map.lookup(WatchKey(obj, id));
|
||||
if (!p || p->value().held)
|
||||
return true;
|
||||
|
||||
AutoEntryHolder holder(cx, map, p);
|
||||
|
||||
/* Copy the entry, since GC would invalidate p. */
|
||||
JSWatchPointHandler handler = p->value().handler;
|
||||
RootedObject closure(cx, p->value().closure);
|
||||
|
||||
/* Determine the property's old value. */
|
||||
Value old;
|
||||
old.setUndefined();
|
||||
if (obj->isNative()) {
|
||||
NativeObject* nobj = &obj->as<NativeObject>();
|
||||
if (Shape* shape = nobj->lookup(cx, id)) {
|
||||
if (shape->hasSlot())
|
||||
old = nobj->getSlot(shape->slot());
|
||||
}
|
||||
}
|
||||
|
||||
// Read barrier to prevent an incorrectly gray closure from escaping the
|
||||
// watchpoint. See the comment before UnmarkGrayChildren in gc/Marking.cpp
|
||||
JS::ExposeObjectToActiveJS(closure);
|
||||
|
||||
/* Call the handler. */
|
||||
return handler(cx, obj, id, old, vp.address(), closure);
|
||||
}
|
||||
|
||||
bool
|
||||
WatchpointMap::markIteratively(JSTracer* trc)
|
||||
{
|
||||
bool marked = false;
|
||||
for (Map::Enum e(map); !e.empty(); e.popFront()) {
|
||||
Map::Entry& entry = e.front();
|
||||
JSObject* priorKeyObj = entry.key().object;
|
||||
jsid priorKeyId(entry.key().id.get());
|
||||
bool objectIsLive =
|
||||
IsMarked(trc->runtime(), const_cast<PreBarrieredObject*>(&entry.key().object));
|
||||
if (objectIsLive || entry.value().held) {
|
||||
if (!objectIsLive) {
|
||||
TraceEdge(trc, const_cast<PreBarrieredObject*>(&entry.key().object),
|
||||
"held Watchpoint object");
|
||||
marked = true;
|
||||
}
|
||||
|
||||
MOZ_ASSERT(JSID_IS_STRING(priorKeyId) ||
|
||||
JSID_IS_INT(priorKeyId) ||
|
||||
JSID_IS_SYMBOL(priorKeyId));
|
||||
TraceEdge(trc, const_cast<PreBarrieredId*>(&entry.key().id), "WatchKey::id");
|
||||
|
||||
if (entry.value().closure && !IsMarked(trc->runtime(), &entry.value().closure)) {
|
||||
TraceEdge(trc, &entry.value().closure, "Watchpoint::closure");
|
||||
marked = true;
|
||||
}
|
||||
|
||||
/* We will sweep this entry in sweepAll if !objectIsLive. */
|
||||
if (priorKeyObj != entry.key().object || priorKeyId != entry.key().id)
|
||||
e.rekeyFront(WatchKey(entry.key().object, entry.key().id));
|
||||
}
|
||||
}
|
||||
return marked;
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::markAll(JSTracer* trc)
|
||||
{
|
||||
for (Map::Enum e(map); !e.empty(); e.popFront()) {
|
||||
Map::Entry& entry = e.front();
|
||||
JSObject* object = entry.key().object;
|
||||
jsid id = entry.key().id;
|
||||
JSObject* priorObject = object;
|
||||
jsid priorId = id;
|
||||
MOZ_ASSERT(JSID_IS_STRING(priorId) || JSID_IS_INT(priorId) || JSID_IS_SYMBOL(priorId));
|
||||
|
||||
TraceManuallyBarrieredEdge(trc, &object, "held Watchpoint object");
|
||||
TraceManuallyBarrieredEdge(trc, &id, "WatchKey::id");
|
||||
TraceEdge(trc, &entry.value().closure, "Watchpoint::closure");
|
||||
|
||||
if (priorObject != object || priorId != id)
|
||||
e.rekeyFront(WatchKey(object, id));
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::sweepAll(JSRuntime* rt)
|
||||
{
|
||||
for (GCCompartmentsIter c(rt); !c.done(); c.next()) {
|
||||
if (WatchpointMap* wpmap = c->watchpointMap)
|
||||
wpmap->sweep();
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::sweep()
|
||||
{
|
||||
for (Map::Enum e(map); !e.empty(); e.popFront()) {
|
||||
Map::Entry& entry = e.front();
|
||||
JSObject* obj(entry.key().object);
|
||||
if (IsAboutToBeFinalizedUnbarriered(&obj)) {
|
||||
MOZ_ASSERT(!entry.value().held);
|
||||
e.removeFront();
|
||||
} else if (obj != entry.key().object) {
|
||||
e.rekeyFront(WatchKey(obj, entry.key().id));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::traceAll(WeakMapTracer* trc)
|
||||
{
|
||||
JSRuntime* rt = trc->context;
|
||||
for (CompartmentsIter comp(rt, SkipAtoms); !comp.done(); comp.next()) {
|
||||
if (WatchpointMap* wpmap = comp->watchpointMap)
|
||||
wpmap->trace(trc);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
WatchpointMap::trace(WeakMapTracer* trc)
|
||||
{
|
||||
for (Map::Range r = map.all(); !r.empty(); r.popFront()) {
|
||||
Map::Entry& entry = r.front();
|
||||
trc->trace(nullptr,
|
||||
JS::GCCellPtr(entry.key().object.get()),
|
||||
JS::GCCellPtr(entry.value().closure.get()));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,90 +0,0 @@
|
|||
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
||||
* 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/. */
|
||||
|
||||
#ifndef jswatchpoint_h
|
||||
#define jswatchpoint_h
|
||||
|
||||
#include "jsalloc.h"
|
||||
|
||||
#include "gc/Barrier.h"
|
||||
#include "js/HashTable.h"
|
||||
|
||||
namespace js {
|
||||
|
||||
struct WeakMapTracer;
|
||||
|
||||
struct WatchKey {
|
||||
WatchKey() {}
|
||||
WatchKey(JSObject* obj, jsid id) : object(obj), id(id) {}
|
||||
WatchKey(const WatchKey& key) : object(key.object.get()), id(key.id.get()) {}
|
||||
|
||||
// These are traced unconditionally during minor GC, so do not require
|
||||
// post-barriers.
|
||||
PreBarrieredObject object;
|
||||
PreBarrieredId id;
|
||||
|
||||
bool operator!=(const WatchKey& other) const {
|
||||
return object != other.object || id != other.id;
|
||||
}
|
||||
};
|
||||
|
||||
typedef bool
|
||||
(* JSWatchPointHandler)(JSContext* cx, JSObject* obj, jsid id, const JS::Value& old,
|
||||
JS::Value* newp, void* closure);
|
||||
|
||||
struct Watchpoint {
|
||||
JSWatchPointHandler handler;
|
||||
PreBarrieredObject closure; /* This is always marked in minor GCs and so doesn't require a postbarrier. */
|
||||
bool held; /* true if currently running handler */
|
||||
Watchpoint(JSWatchPointHandler handler, JSObject* closure, bool held)
|
||||
: handler(handler), closure(closure), held(held) {}
|
||||
};
|
||||
|
||||
struct WatchKeyHasher
|
||||
{
|
||||
typedef WatchKey Lookup;
|
||||
static inline js::HashNumber hash(const Lookup& key);
|
||||
|
||||
static bool match(const WatchKey& k, const Lookup& l) {
|
||||
return MovableCellHasher<PreBarrieredObject>::match(k.object, l.object) &&
|
||||
DefaultHasher<PreBarrieredId>::match(k.id, l.id);
|
||||
}
|
||||
|
||||
static void rekey(WatchKey& k, const WatchKey& newKey) {
|
||||
k.object.unsafeSet(newKey.object);
|
||||
k.id.unsafeSet(newKey.id);
|
||||
}
|
||||
};
|
||||
|
||||
class WatchpointMap {
|
||||
public:
|
||||
typedef HashMap<WatchKey, Watchpoint, WatchKeyHasher, SystemAllocPolicy> Map;
|
||||
|
||||
bool init();
|
||||
bool watch(JSContext* cx, HandleObject obj, HandleId id,
|
||||
JSWatchPointHandler handler, HandleObject closure);
|
||||
void unwatch(JSObject* obj, jsid id,
|
||||
JSWatchPointHandler* handlerp, JSObject** closurep);
|
||||
void unwatchObject(JSObject* obj);
|
||||
void clear();
|
||||
|
||||
bool triggerWatchpoint(JSContext* cx, HandleObject obj, HandleId id, MutableHandleValue vp);
|
||||
|
||||
bool markIteratively(JSTracer* trc);
|
||||
void markAll(JSTracer* trc);
|
||||
static void sweepAll(JSRuntime* rt);
|
||||
void sweep();
|
||||
|
||||
static void traceAll(WeakMapTracer* trc);
|
||||
void trace(WeakMapTracer* trc);
|
||||
|
||||
private:
|
||||
Map map;
|
||||
};
|
||||
|
||||
} // namespace js
|
||||
|
||||
#endif /* jswatchpoint_h */
|
||||
|
|
@ -315,13 +315,6 @@ class JS_FRIEND_API(SecurityWrapper) : public Base
|
|||
virtual bool regexp_toShared(JSContext* cx, HandleObject proxy, RegExpGuard* g) const override;
|
||||
virtual bool boxedValue_unbox(JSContext* cx, HandleObject proxy, MutableHandleValue vp) const override;
|
||||
|
||||
// Allow isCallable and isConstructor. They used to be class-level, and so could not be guarded
|
||||
// against.
|
||||
|
||||
virtual bool watch(JSContext* cx, JS::HandleObject proxy, JS::HandleId id,
|
||||
JS::HandleObject callable) const override;
|
||||
virtual bool unwatch(JSContext* cx, JS::HandleObject proxy, JS::HandleId id) const override;
|
||||
|
||||
/*
|
||||
* Allow our subclasses to select the superclass behavior they want without
|
||||
* needing to specify an exact superclass.
|
||||
|
|
|
|||
|
|
@ -291,7 +291,6 @@ UNIFIED_SOURCES += [
|
|||
'jspropertytree.cpp',
|
||||
'jsscript.cpp',
|
||||
'jsstr.cpp',
|
||||
'jswatchpoint.cpp',
|
||||
'jsweakmap.cpp',
|
||||
'perf/jsperf.cpp',
|
||||
'proxy/BaseProxyHandler.cpp',
|
||||
|
|
|
|||
|
|
@ -418,20 +418,6 @@ BaseProxyHandler::setImmutablePrototype(JSContext* cx, HandleObject proxy, bool*
|
|||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
BaseProxyHandler::watch(JSContext* cx, HandleObject proxy, HandleId id, HandleObject callable) const
|
||||
{
|
||||
JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_CANT_WATCH,
|
||||
proxy->getClass()->name);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool
|
||||
BaseProxyHandler::unwatch(JSContext* cx, HandleObject proxy, HandleId id) const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
BaseProxyHandler::getElements(JSContext* cx, HandleObject proxy, uint32_t begin, uint32_t end,
|
||||
ElementAdder* adder) const
|
||||
|
|
|
|||
|
|
@ -504,20 +504,6 @@ Proxy::boxedValue_unbox(JSContext* cx, HandleObject proxy, MutableHandleValue vp
|
|||
|
||||
JSObject * const TaggedProto::LazyProto = reinterpret_cast<JSObject*>(0x1);
|
||||
|
||||
/* static */ bool
|
||||
Proxy::watch(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, JS::HandleObject callable)
|
||||
{
|
||||
JS_CHECK_RECURSION(cx, return false);
|
||||
return proxy->as<ProxyObject>().handler()->watch(cx, proxy, id, callable);
|
||||
}
|
||||
|
||||
/* static */ bool
|
||||
Proxy::unwatch(JSContext* cx, JS::HandleObject proxy, JS::HandleId id)
|
||||
{
|
||||
JS_CHECK_RECURSION(cx, return false);
|
||||
return proxy->as<ProxyObject>().handler()->unwatch(cx, proxy, id);
|
||||
}
|
||||
|
||||
/* static */ bool
|
||||
Proxy::getElements(JSContext* cx, HandleObject proxy, uint32_t begin, uint32_t end,
|
||||
ElementAdder* adder)
|
||||
|
|
@ -698,18 +684,6 @@ js::proxy_Construct(JSContext* cx, unsigned argc, Value* vp)
|
|||
return Proxy::construct(cx, proxy, args);
|
||||
}
|
||||
|
||||
bool
|
||||
js::proxy_Watch(JSContext* cx, HandleObject obj, HandleId id, HandleObject callable)
|
||||
{
|
||||
return Proxy::watch(cx, obj, id, callable);
|
||||
}
|
||||
|
||||
bool
|
||||
js::proxy_Unwatch(JSContext* cx, HandleObject obj, HandleId id)
|
||||
{
|
||||
return Proxy::unwatch(cx, obj, id);
|
||||
}
|
||||
|
||||
bool
|
||||
js::proxy_GetElements(JSContext* cx, HandleObject proxy, uint32_t begin, uint32_t end,
|
||||
ElementAdder* adder)
|
||||
|
|
@ -750,7 +724,6 @@ const ObjectOps js::ProxyObjectOps = {
|
|||
js::proxy_SetProperty,
|
||||
js::proxy_GetOwnPropertyDescriptor,
|
||||
js::proxy_DeleteProperty,
|
||||
js::proxy_Watch, js::proxy_Unwatch,
|
||||
js::proxy_GetElements,
|
||||
nullptr, /* enumerate */
|
||||
js::proxy_FunToString
|
||||
|
|
|
|||
|
|
@ -65,9 +65,6 @@ class Proxy
|
|||
static bool regexp_toShared(JSContext* cx, HandleObject proxy, RegExpGuard* g);
|
||||
static bool boxedValue_unbox(JSContext* cx, HandleObject proxy, MutableHandleValue vp);
|
||||
|
||||
static bool watch(JSContext* cx, HandleObject proxy, HandleId id, HandleObject callable);
|
||||
static bool unwatch(JSContext* cx, HandleObject proxy, HandleId id);
|
||||
|
||||
static bool getElements(JSContext* cx, HandleObject obj, uint32_t begin, uint32_t end,
|
||||
ElementAdder* adder);
|
||||
|
||||
|
|
|
|||
|
|
@ -130,24 +130,5 @@ SecurityWrapper<Base>::defineProperty(JSContext* cx, HandleObject wrapper, Handl
|
|||
return Base::defineProperty(cx, wrapper, id, desc, result);
|
||||
}
|
||||
|
||||
template <class Base>
|
||||
bool
|
||||
SecurityWrapper<Base>::watch(JSContext* cx, HandleObject proxy,
|
||||
HandleId id, HandleObject callable) const
|
||||
{
|
||||
ReportUnwrapDenied(cx);
|
||||
return false;
|
||||
}
|
||||
|
||||
template <class Base>
|
||||
bool
|
||||
SecurityWrapper<Base>::unwatch(JSContext* cx, HandleObject proxy,
|
||||
HandleId id) const
|
||||
{
|
||||
ReportUnwrapDenied(cx);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
template class js::SecurityWrapper<Wrapper>;
|
||||
template class js::SecurityWrapper<CrossCompartmentWrapper>;
|
||||
|
|
|
|||
|
|
@ -38,24 +38,5 @@ assertEq(delete a[0], false);
|
|||
|
||||
assertArrayIsExpected();
|
||||
|
||||
var watchpointCalled = false;
|
||||
// NOTE: Be careful with the position of this test, since this sparsifies the
|
||||
// elements and you might not test what you think you're testing otherwise.
|
||||
a.watch(2, function(prop, oldValue, newValue) {
|
||||
watchpointCalled = true;
|
||||
assertEq(prop, 2);
|
||||
assertEq(oldValue, 1);
|
||||
assertEq(newValue, "foo");
|
||||
});
|
||||
|
||||
assertArrayIsExpected();
|
||||
|
||||
a.length = 5;
|
||||
a[2] = "foo";
|
||||
assertEq(watchpointCalled, true);
|
||||
assertEq(delete a[0], false);
|
||||
|
||||
assertArrayIsExpected();
|
||||
|
||||
if (typeof reportCompare === "function")
|
||||
reportCompare(true, true);
|
||||
|
|
|
|||
|
|
@ -1,41 +0,0 @@
|
|||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
*/
|
||||
|
||||
var hitCount;
|
||||
function watcher(p,o,n) { hitCount++; return n; }
|
||||
|
||||
var a = [1];
|
||||
a.watch('length', watcher);
|
||||
hitCount = 0;
|
||||
a.length = 0;
|
||||
reportCompare(1, hitCount, "lenient; configurable: watchpoint hit");
|
||||
|
||||
var b = Object.defineProperty([1],'0',{configurable:false});
|
||||
b.watch('length', watcher);
|
||||
hitCount = 0;
|
||||
var result;
|
||||
try {
|
||||
b.length = 0;
|
||||
result = "no error";
|
||||
} catch (x) {
|
||||
result = x.toString();
|
||||
}
|
||||
reportCompare(1, hitCount, "lenient; non-configurable: watchpoint hit");
|
||||
reportCompare(1, b.length, "lenient; non-configurable: length unchanged");
|
||||
reportCompare("no error", result, "lenient; non-configurable: no error thrown");
|
||||
|
||||
var c = Object.defineProperty([1],'0',{configurable:false});
|
||||
c.watch('length', watcher);
|
||||
hitCount = 0;
|
||||
var threwTypeError;
|
||||
try {
|
||||
(function(){'use strict'; c.length = 0;})();
|
||||
threwTypeError = false;
|
||||
} catch (x) {
|
||||
threwTypeError = x instanceof TypeError;
|
||||
}
|
||||
reportCompare(1, hitCount, "strict; non-configurable: watchpoint hit");
|
||||
reportCompare(1, c.length, "strict; non-configurable: length unchanged");
|
||||
reportCompare(true, threwTypeError, "strict; non-configurable: TypeError thrown");
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
*/
|
||||
|
||||
/* Create a prototype object with a setter property. */
|
||||
var protoSetterCount;
|
||||
var proto = ({ set x(v) { protoSetterCount++; } });
|
||||
|
||||
/* Put a watchpoint on that setter. */
|
||||
var protoWatchCount;
|
||||
proto.watch('x', function() { protoWatchCount++; });
|
||||
|
||||
/* Make an object with the above as its prototype. */
|
||||
function C() { }
|
||||
C.prototype = proto;
|
||||
var o = new C();
|
||||
|
||||
/*
|
||||
* Set a watchpoint on the property in the inheriting object. We have
|
||||
* defined this to mean "duplicate the property, setter and all, in the
|
||||
* inheriting object." I don't think debugging observation mechanisms
|
||||
* should mutate the program being run, but that's what we've got.
|
||||
*/
|
||||
var oWatchCount;
|
||||
o.watch('x', function() { oWatchCount++; });
|
||||
|
||||
/*
|
||||
* Assign to the property. This should trip the watchpoint on the inheriting object and
|
||||
* the setter.
|
||||
*/
|
||||
protoSetterCount = protoWatchCount = oWatchCount = 0;
|
||||
o.x = 1;
|
||||
assertEq(protoWatchCount, 0);
|
||||
assertEq(oWatchCount, 1);
|
||||
assertEq(protoSetterCount, 1);
|
||||
|
||||
reportCompare(true, true);
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
*/
|
||||
|
||||
/* A stock watcher function. */
|
||||
var watcherCount;
|
||||
function watcher(id, oldval, newval) { watcherCount++; return newval; }
|
||||
|
||||
/* Create an object with a JavaScript setter. */
|
||||
var setterCount;
|
||||
var o = { w:2, set x(v) { setterCount++; } };
|
||||
|
||||
/*
|
||||
* Put the object in dictionary mode, so that JSObject::putProperty will
|
||||
* mutate its shapes instead of creating new ones.
|
||||
*/
|
||||
delete o.w;
|
||||
|
||||
/*
|
||||
* Place a watchpoint on the property. The watchpoint structure holds the
|
||||
* original JavaScript setter, and a pointer to the shape.
|
||||
*/
|
||||
o.watch('x', watcher);
|
||||
|
||||
/*
|
||||
* Replace the accessor property with a value property. The shape's setter
|
||||
* should become a non-JS setter, js_watch_set, and the watchpoint
|
||||
* structure's saved setter should be updated (in this case, cleared).
|
||||
*/
|
||||
Object.defineProperty(o, 'x', { value:3,
|
||||
writable:true,
|
||||
enumerable:true,
|
||||
configurable:true });
|
||||
|
||||
/*
|
||||
* Assign to the property. This should trigger js_watch_set, which should
|
||||
* call the handler, and then see that there is no JS-level setter to pass
|
||||
* control on to, and return.
|
||||
*/
|
||||
watcherCount = setterCount = 0;
|
||||
o.x = 3;
|
||||
assertEq(watcherCount, 1);
|
||||
assertEq(setterCount, 0);
|
||||
|
||||
reportCompare(true, true);
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
*/
|
||||
|
||||
/* Create an object with a JavaScript setter. */
|
||||
var firstSetterCount;
|
||||
var o = { w:2, set x(v) { firstSetterCount++; } };
|
||||
|
||||
/*
|
||||
* Put the object in dictionary mode, so that JSObject::putProperty will
|
||||
* mutate its shapes instead of creating new ones.
|
||||
*/
|
||||
delete o.w;
|
||||
|
||||
/* A stock watcher function. */
|
||||
var watcherCount;
|
||||
function watcher(id, oldval, newval) { watcherCount++; return newval; }
|
||||
|
||||
/*
|
||||
* Place a watchpoint on the property. The property's shape now has the
|
||||
* watchpoint setter, with the original setter saved in the watchpoint
|
||||
* structure.
|
||||
*/
|
||||
o.watch('x', watcher);
|
||||
|
||||
/*
|
||||
* Replace the setter with a new setter. The shape should get updated to
|
||||
* refer to the new setter, and then the watchpoint setter should be
|
||||
* re-established.
|
||||
*/
|
||||
var secondSetterCount;
|
||||
Object.defineProperty(o, 'x', { set: function () { secondSetterCount++ } });
|
||||
|
||||
/*
|
||||
* Assign to the property. This should trigger the watchpoint and the new setter.
|
||||
*/
|
||||
watcherCount = firstSetterCount = secondSetterCount = 0;
|
||||
o.x = 3;
|
||||
assertEq(watcherCount, 1);
|
||||
assertEq(firstSetterCount, 0);
|
||||
assertEq(secondSetterCount, 1);
|
||||
|
||||
reportCompare(true, true);
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
*/
|
||||
|
||||
/* A stock watcher function. */
|
||||
var watcherCount;
|
||||
function watcher(id, old, newval) {
|
||||
watcherCount++;
|
||||
return newval;
|
||||
}
|
||||
|
||||
/* Create an object with a value property. */
|
||||
var o = { w:2, x:3 };
|
||||
|
||||
/*
|
||||
* Place a watchpoint on the value property. The watchpoint structure holds
|
||||
* the original JavaScript setter, and a pointer to the shape.
|
||||
*/
|
||||
o.watch('x', watcher);
|
||||
|
||||
/*
|
||||
* Put the object in dictionary mode, so that JSObject::putProperty will
|
||||
* mutate its shapes instead of creating new ones.
|
||||
*/
|
||||
delete o.w;
|
||||
|
||||
/*
|
||||
* Replace the value property with a setter.
|
||||
*/
|
||||
var setterCount;
|
||||
o.__defineSetter__('x', function() { setterCount++; });
|
||||
|
||||
/*
|
||||
* Trigger the watchpoint. The watchpoint handler should run, and then the
|
||||
* setter should run.
|
||||
*/
|
||||
watcherCount = setterCount = 0;
|
||||
o.x = 4;
|
||||
assertEq(watcherCount, 1);
|
||||
assertEq(setterCount, 1);
|
||||
|
||||
reportCompare(true, true);
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
*/
|
||||
|
||||
function make_watcher(name) {
|
||||
return function (id, oldv, newv) {
|
||||
print("watched " + name + "[0]");
|
||||
};
|
||||
}
|
||||
|
||||
var o, p;
|
||||
function f(flag) {
|
||||
if (flag) {
|
||||
o = arguments;
|
||||
} else {
|
||||
p = arguments;
|
||||
o.watch(0, make_watcher('o'));
|
||||
p.watch(0, make_watcher('p'));
|
||||
|
||||
/*
|
||||
* Previously, the watchpoint implementation actually substituted its magic setter
|
||||
* functions for the setters of shared shapes, and then 1) carefully ignored calls
|
||||
* to its magic setter from unrelated objects, and 2) avoided restoring the
|
||||
* original setter until all watchpoints on that shape had been removed.
|
||||
*
|
||||
* However, when the watchpoint code began using JSObject::changeProperty and
|
||||
* js_ChangeNativePropertyAttrs to change shapes' setters, the shape tree code
|
||||
* became conscious of the presence of watchpoints, and shared shapes between
|
||||
* objects only when their watchpoint nature coincided. Clearing the magic setter
|
||||
* from one object's shape would not affect other objects, because the
|
||||
* watchpointed and non-watchpointed shapes were distinct if they were shared.
|
||||
*
|
||||
* Thus, the first unwatch call must go ahead and fix p's shape, even though a
|
||||
* watchpoint exists on the same shape in o. o's watchpoint's presence shouldn't
|
||||
* cause 'unwatch' to leave p's magic setter in place.
|
||||
*/
|
||||
|
||||
/* DropWatchPointAndUnlock would see o's watchpoint, and not change p's property. */
|
||||
p.unwatch(0);
|
||||
|
||||
/* DropWatchPointAndUnlock would fix o's property, but not p's; p's setter would be gone. */
|
||||
o.unwatch(0);
|
||||
|
||||
/* This would fail to invoke the arguments object's setter. */
|
||||
p[0] = 4;
|
||||
|
||||
/* And the formal parameter would not get updated. */
|
||||
assertEq(flag, 4);
|
||||
}
|
||||
}
|
||||
|
||||
f(true);
|
||||
f(false);
|
||||
|
||||
reportCompare(true, true);
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
/* -*- tab-width: 2; indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 362872;
|
||||
var summary = 'script should not drop watchpoint that is in use';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
function exploit() {
|
||||
var rooter = {}, object = {}, filler1 = "", filler2 = "\u5555";
|
||||
for(var i = 0; i < 32/2-2; i++) { filler1 += "\u5050"; }
|
||||
object.watch("foo", function(){
|
||||
object.unwatch("foo");
|
||||
object.unwatch("foo");
|
||||
for(var i = 0; i < 8 * 1024; i++) {
|
||||
rooter[i] = filler1 + filler2;
|
||||
}
|
||||
});
|
||||
object.foo = "bar";
|
||||
}
|
||||
exploit();
|
||||
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
* Contributor: Blake Kaplan
|
||||
*/
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 362872;
|
||||
var summary = 'script should not drop watchpoint that is in use';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
this.watch('x', function f() {
|
||||
print("before");
|
||||
x = 3;
|
||||
print("after");
|
||||
});
|
||||
x = 3;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
// |reftest| skip-if(xulRuntime.OS=="WINNT"&&isDebugBuild) slow
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 127243;
|
||||
var summary = 'Do not crash on watch';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
if (typeof window != 'undefined' && typeof document != 'undefined')
|
||||
{
|
||||
// delay test driver end
|
||||
gDelayTestDriverEnd = true;
|
||||
window.addEventListener('load', handleLoad, false);
|
||||
}
|
||||
else
|
||||
{
|
||||
printStatus('This test must be run in the browser');
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
}
|
||||
|
||||
var div;
|
||||
|
||||
function handleLoad()
|
||||
{
|
||||
div = document.createElement('div');
|
||||
document.body.appendChild(div);
|
||||
div.setAttribute('id', 'id1');
|
||||
div.style.width = '50px';
|
||||
div.style.height = '100px';
|
||||
div.style.overflow = 'auto';
|
||||
|
||||
for (var i = 0; i < 5; i++)
|
||||
{
|
||||
var p = document.createElement('p');
|
||||
var t = document.createTextNode('blah');
|
||||
p.appendChild(t);
|
||||
div.appendChild(p);
|
||||
}
|
||||
|
||||
div.watch('scrollTop', wee);
|
||||
|
||||
setTimeout('setScrollTop()', 1000);
|
||||
}
|
||||
|
||||
function wee(id, oldval, newval)
|
||||
{
|
||||
var t = document.createTextNode('setting ' + id +
|
||||
' value ' + div.scrollTop +
|
||||
' oldval ' + oldval +
|
||||
' newval ' + newval);
|
||||
var p = document.createElement('p');
|
||||
p.appendChild(t);
|
||||
document.body.appendChild(p);
|
||||
|
||||
return newval;
|
||||
}
|
||||
|
||||
function setScrollTop()
|
||||
{
|
||||
div.scrollTop = 42;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
gDelayTestDriverEnd = false;
|
||||
jsTestDriverEnd();
|
||||
|
||||
}
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 213482;
|
||||
var summary = 'Do not crash watching property when watcher sets property';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
var testobj = {value: 'foo'};
|
||||
|
||||
function watched (a, b, c) {
|
||||
testobj.value = (new Date()).getTime();
|
||||
}
|
||||
|
||||
function setTest() {
|
||||
testobj.value = 'b';
|
||||
}
|
||||
|
||||
testobj.watch("value", watched);
|
||||
|
||||
setTest();
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/*
|
||||
* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/licenses/publicdomain/
|
||||
* Contributor: Bob Clary
|
||||
*/
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// originally reported by Jens Thiele <karme@unforgettable.com> in
|
||||
var BUGNUMBER = 240577;
|
||||
var summary = 'object.watch execution context';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
var createWatcher = function ( watchlabel )
|
||||
{
|
||||
var watcher = function (property, oldvalue, newvalue)
|
||||
{
|
||||
actual += watchlabel; return newvalue;
|
||||
};
|
||||
return watcher;
|
||||
};
|
||||
|
||||
var watcher1 = createWatcher('watcher1');
|
||||
|
||||
var object = {property: 'value'};
|
||||
|
||||
object.watch('property', watcher1);
|
||||
|
||||
object.property = 'newvalue';
|
||||
|
||||
expect = 'watcher1';
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 355341;
|
||||
var summary = 'Do not crash with watch and setter';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
Object.defineProperty(this, "x", { set: Function, enumerable: true, configurable: true });
|
||||
this.watch('x', function () { }); x = 3;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 355344;
|
||||
var summary = 'Exceptions thrown by watch point';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
var o = {};
|
||||
|
||||
expect = 'setter: yikes';
|
||||
|
||||
o.watch('x', function(){throw 'yikes'});
|
||||
try
|
||||
{
|
||||
o.x = 3;
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
actual = "setter: " + ex;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
eval("") ;
|
||||
}
|
||||
catch(e)
|
||||
{
|
||||
actual = "eval: " + e;
|
||||
}
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 361467;
|
||||
var summary = 'Do not crash with certain watchers';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
expect = actual = 'No Crash';
|
||||
|
||||
var x;
|
||||
this.watch('x', print);
|
||||
x = 5;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 361617;
|
||||
var summary = 'Do not crash with getter, watch and gc';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
(function() {
|
||||
Object.defineProperty(this, "x", { get: function(){}, enumerable: true, configurable: true });
|
||||
})();
|
||||
this.watch('x', print);
|
||||
Object.defineProperty(this, "x", { get: function(){}, enumerable: true, configurable: true });
|
||||
gc();
|
||||
this.unwatch('x');
|
||||
x;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 385393;
|
||||
var summary = 'Regression test for bug 385393';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
true.watch("x", function(){});
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 506567;
|
||||
var summary = 'Do not crash with watched variables';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
if (typeof clearInterval == 'undefined')
|
||||
{
|
||||
clearInterval = (function () {});
|
||||
}
|
||||
|
||||
var obj = new Object();
|
||||
obj.test = null;
|
||||
obj.watch("test", (function(prop, oldval, newval)
|
||||
{
|
||||
if(false)
|
||||
{
|
||||
var test = newval % oldval;
|
||||
var func = (function(){clearInterval(myInterval);});
|
||||
}
|
||||
}));
|
||||
|
||||
obj.test = 'null';
|
||||
print(obj.test);
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||||
/* 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/. */
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 303277;
|
||||
var summary = 'Do not crash with crash with a watchpoint for __proto__ property ';
|
||||
var actual = 'No Crash';
|
||||
var expect = 'No Crash';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
var o = {};
|
||||
o.watch("__proto__", function(){return null;});
|
||||
o.__proto__ = null;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue