| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2010 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 function f(x) { |
| 29 return ~x; |
| 30 } |
| 31 |
| 32 f(42); |
| 33 assertEquals(~12, f(12.45)); |
| 34 assertEquals(~42, f(42.87)); |
| 35 |
| 36 |
| 37 var a = 1, b = 2, c = 4, d = 8; |
| 38 function g() { |
| 39 return a | (b | (c | d)); |
| 40 } |
| 41 |
| 42 g(); |
| 43 c = "16"; |
| 44 assertEquals(1 | 2 | 16 | 8, g()); |
| 45 |
| 46 |
| 47 // Test deopt when global function changes. |
| 48 function h() { |
| 49 return g(); |
| 50 } |
| 51 assertEquals(1 | 2 | 16 | 8, h()); |
| 52 g = function() { return 42; }; |
| 53 assertEquals(42, h()); |
| 54 |
| 55 |
| 56 // Test deopt when map changes. |
| 57 var obj = {}; |
| 58 obj.g = g; |
| 59 function k(o) { |
| 60 return o.g(); |
| 61 } |
| 62 for (var i = 0; i < 1000000; i++) k(obj); |
| 63 assertEquals(42, k(obj)); |
| 64 assertEquals(87, k({g: function() { return 87; }})); |
| 65 |
| 66 |
| 67 // Test deopt with assignments to parameters. |
| 68 function p(x,y) { |
| 69 x = 42; |
| 70 y = 1; |
| 71 y = y << "0"; |
| 72 return x | y; |
| 73 } |
| 74 assertEquals(43, p(0,0)); |
| 75 |
| 76 |
| 77 // Test deopt with literals on the expression stack. |
| 78 function LiteralToStack(x) { |
| 79 return 'lit[' + (x + ']'); |
| 80 } |
| 81 |
| 82 assertEquals('lit[-87]', LiteralToStack(-87)); |
| 83 assertEquals('lit[0]', LiteralToStack(0)); |
| 84 assertEquals('lit[42]', LiteralToStack(42)); |
| 85 |
| 86 |
| 87 // Test deopt before call. |
| 88 var str = "abc"; |
| 89 var r; |
| 90 function CallCharAt(n) { return str.charAt(n); } |
| 91 for (var i = 0; i < 1000000; i++) { |
| 92 r = CallCharAt(0); |
| 93 } |
| 94 assertEquals("a", r); |
| 95 |
| 96 |
| 97 // Test of deopt in presence of spilling. |
| 98 function add4(a,b,c,d) { |
| 99 return a+b+c+d; |
| 100 } |
| 101 assertEquals(0x40000003, add4(1,1,2,0x3fffffff)); |
| OLD | NEW |