OLD | NEW |
---|---|
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
11 // with the distribution. | 11 // with the distribution. |
12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
15 // | 15 // |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 // See: http://code.google.com/p/v8/issues/detail?id=491 | 28 table = []; |
ulan
2015/03/20 10:56:54
Can we get faster test by setting max_old_space_si
Erik Corry
2015/03/20 11:39:23
Good idea. Reducing by a factor of 20 with a max
| |
29 // This should not hit any asserts in debug mode on ARM. | |
30 | 29 |
31 function function_with_n_strings(n) { | 30 for (var i = 0; i < 32; i++) { |
32 var source = '(function f(){'; | 31 table[i] = String.fromCharCode(i + 0x410); |
33 for (var i = 0; i < n; i++) { | |
34 if (i != 0) source += ';'; | |
35 source += '"x"'; | |
36 } | |
37 source += '})()'; | |
38 eval(source); | |
39 } | 32 } |
40 | 33 |
41 var i; | 34 |
42 for (i = 500; i < 600; i++) { | 35 var random = (function() { |
43 function_with_n_strings(i); | 36 var seed = 10; |
37 return function() { | |
38 seed = (seed * 1009) % 8831; | |
39 return seed; | |
40 }; | |
41 })(); | |
42 | |
43 | |
44 function key(length) { | |
45 var s = ""; | |
46 for (var i = 0; i < length; i++) { | |
47 s += table[random() % 32]; | |
48 } | |
49 return '"' + s + '"'; | |
44 } | 50 } |
45 for (i = 1100; i < 1200; i++) { | 51 |
46 function_with_n_strings(i); | 52 |
53 function value() { | |
54 return '[{' + '"field1" : ' + random() + ', "field2" : ' + random() + '}]'; | |
47 } | 55 } |
56 | |
57 | |
58 function generate(n) { | |
59 var s = '{'; | |
60 for (var i = 0; i < n; i++) { | |
61 if (i > 0) s += ', '; | |
62 s += key(random() % 10 + 7); | |
63 s += ':'; | |
64 s += value(); | |
65 } | |
66 s += '}'; | |
67 return s; | |
68 } | |
69 | |
70 | |
71 print("generating"); | |
72 | |
73 var str = generate(1000000); | |
74 | |
75 print("parsing " + str.length); | |
76 JSON.parse(str); | |
77 | |
78 print("done"); | |
OLD | NEW |