Hey guys, I've been messing around with V8 for a few weeks now. Its
pretty cool.

I just noticed that the speed I'm getting out of it is significantly
slower then the speed in Chromium.

For instance:

var ary = new Array(10000000);
var start = +new Date();
for(var i=0, l=ary.length; i < l; i++){
   ary[i] = 32;
}
alert( "Write: " + ( + new Date() - start ) );

in a copy of chrome on my machine takes 716ms.
but on my embedded engine it take 8940ms.

That just seems crazy. Its a simple test with no custom code in it at
all...
You don't even want to know what the speed is when I build it in
debug...

I'm just curious if anyone else has experienced similar, and if they
have what might be the source.

I'm using VS2010 express.
Is it my compiler? or perhaps some options that disable checks or
something make it run faster? Any ideas?

-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users

Reply via email to