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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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