| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 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 // Flags: --expose-gc --noopt | 28 // Flags: --expose-gc --noopt |
| 29 | 29 |
| 30 var gTestcases = new Array(); | 30 var gTestcases = new Array(); |
| 31 | 31 |
| 32 function TestCase(n, d, e, a) { | 32 function TestCase(n, d, e, a) { |
| 33 gTestcases[gTc++] = this; | 33 gTestcases[gTc++] = this; |
| 34 for ( gTc=0; gTc < gTestcases.length; gTc++ ); | 34 for ( gTc=0; gTc < gTestcases.length; gTc++ ) { } |
| 35 } | 35 } |
| 36 | 36 |
| 37 for ( var i = 0x0530; i <= 0x058F; i++ ) { | 37 for ( var i = 0x0530; i <= 0x058F; i++ ) { |
| 38 new TestCase("15.5.4.11-6", | 38 new TestCase("15.5.4.11-6", |
| 39 eval("var s = new String(String.fromCharCode(i)); s.toLowerCase()
.charCodeAt(0)")); | 39 eval("var s = new String(String.fromCharCode(i)); s.toLowerCase()
.charCodeAt(0)")); |
| 40 } | 40 } |
| 41 var gTc= 0; | 41 var gTc= 0; |
| 42 | 42 |
| 43 | 43 |
| 44 for (var j = 0; j < 10; j++) { | 44 for (var j = 0; j < 10; j++) { |
| 45 test(); | 45 test(); |
| 46 function test() { | 46 function test() { |
| 47 for ( 0; gTc < gTestcases.length; gTc++ ) { | 47 for ( 0; gTc < gTestcases.length; gTc++ ) { |
| 48 var MYOBJECT = new MyObject(); | 48 var MYOBJECT = new MyObject(); |
| 49 } | 49 } |
| 50 gc(); | 50 gc(); |
| 51 } | 51 } |
| 52 function MyObject( n ) { | 52 function MyObject( n ) { |
| 53 this.__proto__ = Number.prototype; | 53 this.__proto__ = Number.prototype; |
| 54 } | 54 } |
| 55 } | 55 } |
| OLD | NEW |