How to Enable TraceMonkey JavaScript Engine in Firefox 3.1 to Speed Up Web Browsing Response Time
Previously we mentioned about Firefox 3.1 Beta Smart Location Bar new feature enhancement, there is another good improvement known as TraceMonkey that is worth to be mentioned here. Most software we run in computer is already compiled into binary code in advance in order to make the programs execute faster. However, JavaScript usually is interpreted line by line during running has caused longer time needed for responding. TaceMonkey or known as just-in-time compiler, is designed to only concentrate on translating selected high-priority portion of software. It finds loop of repeated activity where program often spend lot of time, then compile into native instructions the computer can understand, eventually improves the web browsing performance significantly. Although TraceMonkey is off in Firefox 3.1 by default as it is not entirely bug-free, but you can turn this feature on to have a try and to make web browsing faster by changing the value in the configuration settings with only a few simple steps.
Follow below steps to enable TraceMonkey in Firefox 3.1 beta version:
1) Launch Firefox browser
2) In the location bar, type about:config then press enter
3) A warning page “This might void your warranty!” will be displayed. Click “I’II be careful, I promise!” button to proceed.
4) In the Filter textbox, type javascript.options.jit.chrome.
5) Double click javascript.options.jit.chrome under Preference Name to change the value from false to true.
Hopefully this will help you enable TraceMonkey and eventually make your net surfing a more pleasurable one with the improvement .
Related Articles
- Disable or Enable Backspace as ‘Go Back’ Page Browsing Function in Firefox
- Disable (or Enable) Tabbed Browsing in Internet Explorer 7 (IE7)
- Apple Safari 4 – World’s Fastest Web Browser Free Download With New Nitro JavaScript Engine
- Download Firefox 3.5.1 To Fix JavaScript Vulnerability in Firefox 3.5
- Firefox Add-on: Mouseless Browsing to Allows Web Browsing using Keyboard
- Firefox Unresponsive Script: Increase JavaScript Execution Waiting Time
- Firefox Add-on: HistoryBlock to Block Browsing History
- New Private Browsing Feature In Firefox Browser Remove Traceable Tracks
- Disable FireFox Tabbed Browsing Scroll Arrows and Scrolling Tabs Feature
- Firefox Add-ons About:Me to Track and Display Web Browsing Activities










































December 23rd, 2008 19:20
Recently, I tried to build the tracemonkey JavaScript engine in Firefox instead of the whole browser. I compiled tracemonkey-debe29698839\js\src like this:
Disable JIT:
make -f Makefile.ref NANOJIT_ARCH=i386 DISABLE_JIT=1
Enable JIT:
make -f Makefile.ref NANOJIT_ARCH=i386 ENABLE_JIT=1
(it’s ENABLE_JIT not DISABLE_JIT in this case, sorry for the mistake before)
I used V8 and SunSpider benchmarks for tests. But it seemed that there was no difference between JIT ‘on’ and ‘off’ from the results. I guess maybe JIT could not be turned on in the above way. Do you know how to enable it?
Thank you very much.
December 23rd, 2008 19:09
Dear Sir,
Recently, I tried to build the tracemonkey JavaScript engine in Firefox instead of the whole browser. I compiled tracemonkey-debe29698839\js\src like this:
Disable JIT:
make -f Makefile.ref NANOJIT_ARCH=i386 DISABLE_JIT=1
Enable JIT:
make -f Makefile.ref NANOJIT_ARCH=i386 DISABLE_JIT=1
I used V8 and SunSpider benchmarks for tests. But it seemed that there was no difference between JIT ‘on’ and ‘off’ from the results. I guess maybe JIT could not be turned on in the above way. Do you know how to enable it?
Thanks very much.
Best wishes,
Butai.
October 26th, 2008 19:48
also set
javascript.options.jit.content
to true