| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 (function OneByteSeqStringSetCharDeoptOsr() { | 30 (function OneByteSeqStringSetCharDeoptOsr() { |
| 31 function deopt() { | 31 function deopt() { |
| 32 %DeoptimizeFunction(f); | 32 %DeoptimizeFunction(f); |
| 33 } | 33 } |
| 34 | 34 |
| 35 function f(string, osr) { | 35 function f(string, osr) { |
| 36 var world = " world"; | 36 var world = " world"; |
| 37 %_OneByteSeqStringSetChar(0, (deopt(), 0x48), string); | 37 %_OneByteSeqStringSetChar(0, (deopt(), 0x48), string); |
| 38 | 38 |
| 39 if (osr) while (%GetOptimizationStatus(f) == 2) {} | 39 for (var i = 0; osr && i < 2; i++) %OptimizeOsr(); |
| 40 | 40 |
| 41 return string + world; | 41 return string + world; |
| 42 } | 42 } |
| 43 | 43 |
| 44 assertEquals("Hello " + "world", f("hello", false)); | 44 assertEquals("Hello " + "world", f("hello", false)); |
| 45 %OptimizeFunctionOnNextCall(f); | 45 %OptimizeFunctionOnNextCall(f); |
| 46 assertEquals("Hello " + "world", f("hello", true)); | 46 assertEquals("Hello " + "world", f("hello", true)); |
| 47 })(); | 47 })(); |
| 48 | 48 |
| 49 | 49 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 76 | 76 |
| 77 function f(string) { | 77 function f(string) { |
| 78 g(%_TwoByteSeqStringSetChar(0, (deopt(), 0x48), string)); | 78 g(%_TwoByteSeqStringSetChar(0, (deopt(), 0x48), string)); |
| 79 return string; | 79 return string; |
| 80 } | 80 } |
| 81 | 81 |
| 82 assertEquals("Hell" + "o", f("\u20ACello")); | 82 assertEquals("Hell" + "o", f("\u20ACello")); |
| 83 %OptimizeFunctionOnNextCall(f); | 83 %OptimizeFunctionOnNextCall(f); |
| 84 assertEquals("Hell" + "o", f("\u20ACello")); | 84 assertEquals("Hell" + "o", f("\u20ACello")); |
| 85 })(); | 85 })(); |
| OLD | NEW |