Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Side by Side Diff: test/mjsunit/regress/string-set-char-deopt.js

Issue 908863002: Remove some busy-OSR loops from tests using %OptimizeOsr(). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/mjsunit/regress/regress-crbug-150545.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 })();
OLDNEW
« no previous file with comments | « test/mjsunit/regress/regress-crbug-150545.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698