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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 // Flags: --allow-natives-syntax | 28 // Flags: --allow-natives-syntax |
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(string, 0, (deopt(), 0x48)); | 37 %_OneByteSeqStringSetChar(0, (deopt(), 0x48), string); |
38 | 38 |
39 if (osr) while (%GetOptimizationStatus(f) == 2) {} | 39 if (osr) while (%GetOptimizationStatus(f) == 2) {} |
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 |
50 (function OneByteSeqStringSetCharDeopt() { | 50 (function OneByteSeqStringSetCharDeopt() { |
51 function deopt() { | 51 function deopt() { |
52 %DeoptimizeFunction(f); | 52 %DeoptimizeFunction(f); |
53 } | 53 } |
54 | 54 |
55 function g(x) { | 55 function g(x) { |
56 } | 56 } |
57 | 57 |
58 function f(string) { | 58 function f(string) { |
59 g(%_OneByteSeqStringSetChar(string, 0, (deopt(), 0x48))); | 59 g(%_OneByteSeqStringSetChar(0, (deopt(), 0x48), string)); |
60 return string; | 60 return string; |
61 } | 61 } |
62 | 62 |
63 assertEquals("Hell" + "o", f("hello")); | 63 assertEquals("Hell" + "o", f("hello")); |
64 %OptimizeFunctionOnNextCall(f); | 64 %OptimizeFunctionOnNextCall(f); |
65 assertEquals("Hell" + "o", f("hello")); | 65 assertEquals("Hell" + "o", f("hello")); |
66 })(); | 66 })(); |
67 | 67 |
68 | 68 |
69 (function TwoByteSeqStringSetCharDeopt() { | 69 (function TwoByteSeqStringSetCharDeopt() { |
70 function deopt() { | 70 function deopt() { |
71 %DeoptimizeFunction(f); | 71 %DeoptimizeFunction(f); |
72 } | 72 } |
73 | 73 |
74 function g(x) { | 74 function g(x) { |
75 } | 75 } |
76 | 76 |
77 function f(string) { | 77 function f(string) { |
78 g(%_TwoByteSeqStringSetChar(string, 0, (deopt(), 0x48))); | 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 |