Misinformation and the The Prefetch Flag
Hello! I haven't updated this blog in a
while; work and other events have conspired to keep me from
writing. Also, blogs.msdn.com moved internally from .Text to
Telligent Community Server, and my CSS markup was an unfortunate
casualty of the move, so I'm working on redesigning the blog's visual
appearance. More entries will be coming eventually. :)
In the meantime, I want to defuse a long-standing controversy -- the /prefetch flag.
With modern computing, the absolute worst thing
you can ever do for performance is having to touch the hard drive -- or
any non-memory storage for that matter. The fastest hard drives
on earth are still horridly slow compared to a PC's main memory; even
with solid state drives, in order to access the drive, one has to
jump into system code and drivers, and this will push your own
program's code out of the CPU's L2 cache. (This is called a
locality loss.) There's two typical reasons one has to touch the
disk -- the first is when the application requests it explicitly
(Word asks the OS to load blog.doc into memory), and the other is a
"hard fault" -- when the application tries to use memory that has been
paged out to disk via "virtual memory" and needs to be paged back in.
Now, imagine that a DVD player program always
starts playback by loading a DLL to decode MPEG-2 video. Wouldn't
it be nice if we could attempt to pre-load the MPEG-2 DLL whenever we
loaded the DVD player's EXE? That way, when it tries to run code
on that DLL, one doesn't have to hard fault and go to disk for
it! This is what a prefetcher does: it tracks what
code pages are used by an application, and the next time that
application loads, it loads those pages in advance as soon as it's got
some idle time. A prefetcher was added to Windows in XP, and is
vastly improved in Windows Longhorn.
XP systems have a Prefetch directory underneath
the windows root directory, full of .pf files -- these are lists
of pages to load. The file names are generated from hashing the
EXE to load -- whenever you load the EXE, we hash, see if there's a
matching (exename) -(hash).pf
file in the prefetch directory, and if so we load those pages.
(If it doesn't exist, we track what pages it loads, create that file,
and pick a handful of them to save to it.) So, first off, it is a bad idea to periodically clean out that folder
as some tech sites suggest. For one thing, XP will just re-create
that data anyways; secondly, it trims the files anyways if there's ever
more than 128 of them so that it doesn't needlessly consume space. So not only is deleting the directory
totally unnecessary, but you're also putting a temporary dent in your
PC's performance.
Secondly, one can specify a /prefetch:#
flag when launching an app. Many people have noticed that
auto-generated shortcuts to Windows Media Player do this, and the
number varies depending on what it does. For example, the
shortcut used by the shell when you double-click a WMV file to play it
has one prefetch number; the auto-run shortcut to play or rip music
that appears when you insert a music CD have other numbers. Some
sites have guessed that this switch turns on prefetching, and suggest
that you add that to every executable you care about -- this has
appeared on so many, many, many sites to be urban legend. Other sites
write this off as garbage and guess that it's a switch specific to
Media Player, guessing from references to prefetching in the Windows
driver subsystem. Both guesses are incorrect.
The /prefetch:# flag is looked at
by the OS when we create the process -- however, it has one (and only
one) purpose. We add the passed number to the hash.
Why? WMP is a multipurpose application and may do many different
things. The DLLs and code that it touches will be very different
when playing a WMV than when playing a DVD, or when ripping a CD,
or when listening to a Shoutcast stream, or any of the other things
that WMP can do. If we only had one hash for WMP, then the
prefetch would only be correct for one such use. Having incorrect
prefetch data would not be a fatal error -- it'd just load pages into
memory that'd never get used, and then get swapped back out to disk as
soon as possible. Still, it's counterproductive. By
specifying a /prefetch:# flag with a different number
for each "mode" that WMP can do, each mode gets its own separate hash
file, and thus we properly prefetch. (This behavior isn't specific to WMP -- it does the same for any app.)
This flag is looked at when we create the first thread in the process, but it is not
removed by CreateProcess from the command line, so any app that chokes
on unrecognized command line parameters will not work with it.
This is why so many people notice that Kazaa and other apps crash or
otherwise refuse to start when it's added. Of course, WMP knows
that it may be there, and just silently ignores its existence.
I suspect that the "add /prefetch:1 to make rocket
go now" urban legend will never die, though. I know that at least
one major company ships products with it in their shortcuts, without
ever asking us... just for good measure, I guess. :-P All
it does is change your hash number -- the OS is doing exactly the same
thing it did before, and just saving the prefetch pages to a different
file.
(ATTENTION: This is merely an informative
article; this information is completely unsupported, and the
functionality may change or disappear entirely in future versions of
Windows or service packs. Furthermore, it is merely a hint for
the XP prefetcher, and it may choose to ignore it if it wishes.)
Comments
Anonymous
May 25, 2005
Thank you, thank you, thank you! It's great to finally have some details on this issue, even if it is informal, unsupported, and undocumented. :-P I've revised my post to incorporate your input.Anonymous
May 26, 2005
This question appeared on a bulletin board recently: Someone suggested deleting the contents of the Prefetch directory in Windows XP on a weekly basis, to speed up the boot process. Is that good advice? The Internet has a way of taking questionable facts and giving them a life of their...Anonymous
June 01, 2005
Yet another Web site posted yet another "tip" today recommending that you clean out your Prefetch folder to improve performance of Windows. Arrrggghhh! I've written about this repeatedly (here and here and here, for instance), but the message doesn't seem to be spreading very fast. Maybe this quote from "Misinformation...Anonymous
July 20, 2005
Ahhh thank you ! ... it is so refreshing to find accurate information backed up by technical detail for a change.
Perhaps you could also dispel/confirm/explain the EnableSuperfetch in XP Longhorn functionality tip that is starting to appear (eg. http://www.theinquirer.net/?article=24749)Anonymous
July 22, 2005
I ran some tests on two machines, rebooting twice after removing the prefetch files. On one machine with only 256 MB of ram and few startup programs, it made only 4 seconds difference on any of the boots, but it was 4 seconds slower on the second reboot than before deleting the prefetch files.
On another machine with 752 MB of ram, and more startup programs, the second reboot after deleting was about 15 seconds slower (and the first reboot very slow).
Thus, it appears to be that deleting prefetch files is a way to slow down your computer!Anonymous
August 22, 2005
You say it deletes files over time and retains only 128 .pf files, how does the OS decide which files need to be deleted? Does it use date stamp for qualifying these files?Anonymous
August 27, 2005
The comment has been removedAnonymous
March 29, 2006
PingBack from https://vishalshah.wordpress.com/2006/03/30/windows-xp-myths/Anonymous
September 10, 2006
PingBack from http://artbird309.org/blog/2006/09/10/links-for-2006-09-11/Anonymous
September 22, 2006
PingBack from http://ctrinity.wordpress.com/2006/09/09/decrease-your-applications-startup-time/Anonymous
April 03, 2007
PingBack from http://www.edbott.com/weblog/?p=743Anonymous
October 27, 2007
PingBack from http://ghillie-suits.info/?p=37524Anonymous
February 02, 2008
PingBack from http://evbin.wordpress.com/2008/02/02/memory-tweaks-part-2/Anonymous
February 13, 2008
PingBack from http://www.bigblueball.com/forums/computer-support-discussion/41454-slow-start-up.html#post226565Anonymous
May 24, 2008
PingBack from http://unkwndesign.com/blog/?p=3Anonymous
June 15, 2008
PingBack from http://www.e-jasmine.net/?p=334Anonymous
October 30, 2008
PingBack from http://kkomp.com/archives/2388Anonymous
February 02, 2009
PingBack from http://www.instant-registry-fixes.org/the-prefetch-myth/Anonymous
February 25, 2009
PingBack from http://www.download-archive.net/windows-vista-memory-tweak-guide-boost.phpAnonymous
March 29, 2009
PingBack from http://www.withinwindows.com/2009/03/29/ie-8-slow-this-tweak-wont-help/Anonymous
May 12, 2009
PingBack from http://blog.planet-kristen.com/2009/05/13/firefox-beim-start-beschleunigen/Anonymous
June 04, 2009
PingBack from http://www.p30life.com/?p=11Anonymous
June 14, 2009
PingBack from http://p30life.com/?p=6Anonymous
June 19, 2009
PingBack from http://mydebtconsolidator.info/story.php?id=930