js/src/jit-test/tests/ion/bug789420.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 function g1(x, y) {
michael@0 2 return 0 & y;
michael@0 3 }
michael@0 4 var c1 = 0;
michael@0 5 function f1() {
michael@0 6 for (var i=0; i<100; i++) {
michael@0 7 g1(i, i);
michael@0 8 g1(i, {valueOf: function() { c1++; return 0; }});
michael@0 9 }
michael@0 10 }
michael@0 11 f1();
michael@0 12 assertEq(c1, 100);
michael@0 13
michael@0 14 function g2(x, y) {
michael@0 15 ~y;
michael@0 16 }
michael@0 17 var c2 = 0;
michael@0 18 function f2() {
michael@0 19 for (var i=0; i<100; i++) {
michael@0 20 g2(i, i);
michael@0 21 g2(i, {valueOf: function() { c2++; return 0; }});
michael@0 22 }
michael@0 23 }
michael@0 24 f2();
michael@0 25 assertEq(c2, 100);
michael@0 26
michael@0 27 function g3(x, y) {
michael@0 28 return 0 >>> y;
michael@0 29 }
michael@0 30 var c3 = 0;
michael@0 31 function f3() {
michael@0 32 for (var i=0; i<100; i++) {
michael@0 33 g3(i, i);
michael@0 34 g3(i, {valueOf: function() { c3++; return 0; }});
michael@0 35 }
michael@0 36 }
michael@0 37 f3();
michael@0 38 assertEq(c3, 100);

mercurial