The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / deps / v8 / test / mjsunit / fast-prototype.js @ f230a1cf

History | View | Annotate | Download (3.54 KB)

1
// Copyright 2012 the V8 project authors. All rights reserved.
2
// Redistribution and use in source and binary forms, with or without
3
// modification, are permitted provided that the following conditions are
4
// met:
5
//
6
//     * Redistributions of source code must retain the above copyright
7
//       notice, this list of conditions and the following disclaimer.
8
//     * Redistributions in binary form must reproduce the above
9
//       copyright notice, this list of conditions and the following
10
//       disclaimer in the documentation and/or other materials provided
11
//       with the distribution.
12
//     * Neither the name of Google Inc. nor the names of its
13
//       contributors may be used to endorse or promote products derived
14
//       from this software without specific prior written permission.
15
//
16
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27

    
28
// Flags: --allow-natives-syntax --expose-gc
29

    
30
// TODO(mstarzinger): This test does not succeed when GCs happen in
31
// between prototype transitions, we disable GC stress for now.
32
// Flags: --noincremental-marking
33

    
34
// Check that objects that are used for prototypes are in the fast mode.
35

    
36
function Super() {
37
}
38

    
39

    
40
function Sub() {
41
}
42

    
43

    
44
function AddProps(obj) {
45
  for (var i = 0; i < 26; i++) {
46
    obj["x" + i] = 0;
47
  }
48
}
49

    
50

    
51
function DoProtoMagic(proto, set__proto__) {
52
  if (set__proto__) {
53
    (new Sub()).__proto__ = proto;
54
  } else {
55
    Sub.prototype = proto;
56
  }
57
}
58

    
59

    
60
function test(use_new, add_first, set__proto__, same_map_as) {
61
  var proto = use_new ? new Super() : {};
62

    
63
  // New object is fast.
64
  assertTrue(%HasFastProperties(proto));
65

    
66
  if (add_first) {
67
    AddProps(proto);
68
    // Adding this many properties makes it slow.
69
    assertFalse(%HasFastProperties(proto));
70
    DoProtoMagic(proto, set__proto__);
71
    // Making it a prototype makes it fast again.
72
    assertTrue(%HasFastProperties(proto));
73
  } else {
74
    DoProtoMagic(proto, set__proto__);
75
    // Still fast
76
    assertTrue(%HasFastProperties(proto));
77
    AddProps(proto);
78
    // After we add all those properties it went slow mode again :-(
79
    assertFalse(%HasFastProperties(proto));
80
  }
81
  if (same_map_as && !add_first) {
82
    assertTrue(%HaveSameMap(same_map_as, proto));
83
  }
84
  return proto;
85
}
86

    
87
// TODO(mstarzinger): This test fails easily if gc happens at the wrong time.
88
gc();
89

    
90
for (var i = 0; i < 4; i++) {
91
  var set__proto__ = ((i & 1) != 0);
92
  var use_new = ((i & 2) != 0);
93

    
94
  test(use_new, true, set__proto__);
95

    
96
  var last = test(use_new, false, set__proto__);
97
  test(use_new, false, set__proto__, last);
98
}
99

    
100

    
101
var x = {a: 1, b: 2, c: 3};
102
var o = { __proto__: x };
103
assertTrue(%HasFastProperties(x));
104
for (key in x) {
105
  assertTrue(key == 'a');
106
  break;
107
}
108
delete x.b;
109
for (key in x) {
110
  assertTrue(key == 'a');
111
  break;
112
}
113
assertFalse(%HasFastProperties(x));
114
x.d = 4;
115
assertFalse(%HasFastProperties(x));
116
for (key in x) {
117
  assertTrue(key == 'a');
118
  break;
119
}