| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 } while (--count > 0); | 112 } while (--count > 0); |
| 113 } | 113 } |
| 114 | 114 |
| 115 testExactMapHoisting2(new Array(5)); | 115 testExactMapHoisting2(new Array(5)); |
| 116 testExactMapHoisting2(new Array(5)); // Call twice to make sure that second | 116 testExactMapHoisting2(new Array(5)); // Call twice to make sure that second |
| 117 // store is a transition and not | 117 // store is a transition and not |
| 118 // optimistically MONOMORPHIC | 118 // optimistically MONOMORPHIC |
| 119 %OptimizeFunctionOnNextCall(testExactMapHoisting2); | 119 %OptimizeFunctionOnNextCall(testExactMapHoisting2); |
| 120 testExactMapHoisting2(new Array(5)); | 120 testExactMapHoisting2(new Array(5)); |
| 121 testExactMapHoisting2(new Array(5)); | 121 testExactMapHoisting2(new Array(5)); |
| 122 assertTrue(2 != %GetOptimizationStatus(testExactMapHoisting2)); | 122 // Temporarily disabled - see bug 2176. |
| 123 // assertTrue(2 != %GetOptimizationStatus(testExactMapHoisting2)); |
| 123 | 124 |
| 124 // Make sure that non-element related map checks do get hoisted if they use | 125 // Make sure that non-element related map checks do get hoisted if they use |
| 125 // the transitioned map for the check and all transitions that they depend | 126 // the transitioned map for the check and all transitions that they depend |
| 126 // upon can hoisted, too. | 127 // upon can hoisted, too. |
| 127 function testExactMapHoisting3(a) { | 128 function testExactMapHoisting3(a) { |
| 128 var object = new Object(); | 129 var object = new Object(); |
| 129 a.foo = 0; | 130 a.foo = 0; |
| 130 a[0] = 0; | 131 a[0] = 0; |
| 131 a[1] = 1; | 132 a[1] = 1; |
| 132 var count = 3; | 133 var count = 3; |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 testStraightLineDupeElinination(new Array(5),.5,0,0,0,0); | 222 testStraightLineDupeElinination(new Array(5),.5,0,0,0,0); |
| 222 testStraightLineDupeElinination(new Array(5),0,.5,0,0,0); | 223 testStraightLineDupeElinination(new Array(5),0,.5,0,0,0); |
| 223 testStraightLineDupeElinination(new Array(5),0,0,.5,0,0); | 224 testStraightLineDupeElinination(new Array(5),0,0,.5,0,0); |
| 224 testStraightLineDupeElinination(new Array(5),0,0,0,.5,0); | 225 testStraightLineDupeElinination(new Array(5),0,0,0,.5,0); |
| 225 testStraightLineDupeElinination(new Array(5),0,0,0,0,.5); | 226 testStraightLineDupeElinination(new Array(5),0,0,0,0,.5); |
| 226 %OptimizeFunctionOnNextCall(testStraightLineDupeElinination); | 227 %OptimizeFunctionOnNextCall(testStraightLineDupeElinination); |
| 227 testStraightLineDupeElinination(new Array(5)); | 228 testStraightLineDupeElinination(new Array(5)); |
| 228 testStraightLineDupeElinination(new Array(5)); | 229 testStraightLineDupeElinination(new Array(5)); |
| 229 assertTrue(2 != %GetOptimizationStatus(testStraightLineDupeElinination)); | 230 assertTrue(2 != %GetOptimizationStatus(testStraightLineDupeElinination)); |
| 230 } | 231 } |
| OLD | NEW |