| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 22 matching lines...) Expand all Loading... |
| 33 // end up going generic. | 33 // end up going generic. |
| 34 // Flags: --stress-runs=2 | 34 // Flags: --stress-runs=2 |
| 35 | 35 |
| 36 // Test element kind of objects. | 36 // Test element kind of objects. |
| 37 // Since --smi-only-arrays affects builtins, its default setting at compile | 37 // Since --smi-only-arrays affects builtins, its default setting at compile |
| 38 // time sticks if built with snapshot. If --smi-only-arrays is deactivated | 38 // time sticks if built with snapshot. If --smi-only-arrays is deactivated |
| 39 // by default, only a no-snapshot build actually has smi-only arrays enabled | 39 // by default, only a no-snapshot build actually has smi-only arrays enabled |
| 40 // in this test case. Depending on whether smi-only arrays are actually | 40 // in this test case. Depending on whether smi-only arrays are actually |
| 41 // enabled, this test takes the appropriate code path to check smi-only arrays. | 41 // enabled, this test takes the appropriate code path to check smi-only arrays. |
| 42 | 42 |
| 43 // Reset the GC stress mode to be off. Needed because AllocationMementos only |
| 44 // live for one gc, so a gc that happens in certain fragile areas of the test |
| 45 // can break assumptions. |
| 46 %SetFlags("--gc-interval=-1") |
| 47 |
| 43 support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6,7,8)); | 48 support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6,7,8)); |
| 44 | 49 |
| 45 if (support_smi_only_arrays) { | 50 if (support_smi_only_arrays) { |
| 46 print("Tests include smi-only arrays."); | 51 print("Tests include smi-only arrays."); |
| 47 } else { | 52 } else { |
| 48 print("Tests do NOT include smi-only arrays."); | 53 print("Tests do NOT include smi-only arrays."); |
| 49 } | 54 } |
| 50 | 55 |
| 51 var elements_kind = { | 56 var elements_kind = { |
| 52 fast_smi_only : 'fast smi only elements', | 57 fast_smi_only : 'fast smi only elements', |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 assertTrue(%HaveSameMap(smis, doubles)); | 157 assertTrue(%HaveSameMap(smis, doubles)); |
| 153 } | 158 } |
| 154 | 159 |
| 155 test1(); | 160 test1(); |
| 156 gc(); // clear IC state | 161 gc(); // clear IC state |
| 157 test1(); | 162 test1(); |
| 158 gc(); // clear IC state | 163 gc(); // clear IC state |
| 159 %OptimizeFunctionOnNextCall(test1); | 164 %OptimizeFunctionOnNextCall(test1); |
| 160 test1(); | 165 test1(); |
| 161 gc(); // clear IC state | 166 gc(); // clear IC state |
| OLD | NEW |