comparison: js/src/jit-test/tests/profiler/enterjit-osr-disabling-earlyret.js
js/src/jit-test/tests/profiler/enterjit-osr-disabling-earlyret.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 setJitCompilerOption("baseline.usecount.trigger", 10); |
|
2 setJitCompilerOption("ion.usecount.trigger", 20); |
|
3 |
|
4 enableSPSProfilingAssertions(true); |
|
5 (function() { |
|
6 var n = 50; |
|
7 while (n--) { |
|
8 disableSPSProfiling(); |
|
9 if (!n) |
|
10 return; |
|
11 enableSPSProfilingAssertions(true); |
|
12 } |
|
13 })(); |