vote up 1 vote down star

Hello,

I would like to run some tests on v8 with and without JIT to compare performances. I know JIT will improve my average speed performance, but it would be nice for me to have some actual more detailed tests results as I want to work with mobile platforms.

I haven't found how to enable or disable JIT like it exists on Squirrelfish (cf. ENABLE_JIT in JavaScriptCore/wtf/Platform.h).

Does somebody knows how to do that with v8?

Thanks.

Alexandre

flag

1 Answer

vote up 2 vote down

For those who may be interested I got the following answer from Søren Gjesse on v8-users google groups.


Hi, It is not possible to disable dynamically generated code in V8. Unlike other JavaScript engines V8 does not have an interpreter mode - it always generates native code.

One exception is the RegExp engine which have an interpreter and native code version. The compile time define V8_NATIVE_REGEXP enables generating native code for RegExp processing.

Regards, Søren


link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.