js/src/jit-test/tests/jaeger/bug832670.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 enableOsiPointRegisterChecks();
michael@0 2
michael@0 3 gczeal(4);
michael@0 4 eval("(function() { " + "\
michael@0 5 for ( var CHARCODE = 1024; CHARCODE < 65536; CHARCODE+= 1234 ) {\
michael@0 6 unescape( '%u'+(ToUnicodeString(CHARCODE)).substring(0,3) )\
michael@0 7 }\
michael@0 8 function ToUnicodeString( n ) {\
michael@0 9 var string = ToHexString(n);\
michael@0 10 return string;\
michael@0 11 }\
michael@0 12 function ToHexString( n ) {\
michael@0 13 var hex = new Array();\
michael@0 14 for ( var mag = 1; Math.pow(16,mag) <= n ; mag++ ) {}\
michael@0 15 for ( index = 0, mag -= 1; mag > 0; index++, mag-- ) {\
michael@0 16 hex[index] = Math.floor( n / Math.pow(16,mag) );\
michael@0 17 var string ='';\
michael@0 18 string <<= 'A';\
michael@0 19 string += hex[index];\
michael@0 20 }\
michael@0 21 if ( 'var MYVAR=Number.NEGATIVE_INFINITY;MYVAR++;MYVAR' )\
michael@0 22 string = '0' + string;\
michael@0 23 return string;\
michael@0 24 }\
michael@0 25 " + " })();");

mercurial