summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/accessor-ic-shape-replacement.js
blob: 7ddf007858e1f502ca3fc93180e0899a59c5b061 (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
// Make sure we properly update the getter when we update the holder
// shape in the getter IC.
function f(obj) {
    var x;
    for (var i = 0; i < 20; ++i) {
	x = obj.foo;
    }
    return x;
}

var proto = {};
var obj1 = Object.create(proto);
var obj2 = Object.create(proto);
obj2.bar = "5";
Object.defineProperty(proto, "foo",
		      { get: function() { return 1; }, configurable: true });
assertEq(f(obj1), 1);
assertEq(f(obj2), 1);

Object.defineProperty(proto, "foo",
		      { get: function() { return 2; }, configurable: true });
assertEq(f(obj1), 2);
assertEq(f(obj2), 2);

// Make sure we properly update the setter when we update the holder
// shape in the setter IC.
function g(obj) {
    var x;
    for (var i = 0; i < 20; ++i) {
	obj.foo = i;
    }
    return x;
}

var proto = {};
var obj1 = Object.create(proto);
var obj2 = Object.create(proto);
var sideEffect;
obj2.bar = "5";
Object.defineProperty(proto, "foo",
		      { set: function() { sideEffect = 1; }, configurable: true });
g(obj1);
assertEq(sideEffect, 1);
sideEffect = undefined;
g(obj2);
assertEq(sideEffect, 1);
sideEffect = undefined;

Object.defineProperty(proto, "foo",
		      { set: function() { sideEffect = 2; }, configurable: true });
g(obj1);
assertEq(sideEffect, 2);
sideEffect = undefined;
g(obj2);
assertEq(sideEffect, 2);