I am looking at the JVM configuration options for running Alfresco, mainly this document on the Alfresco Wiki. One of the recommendations is to use the JVM flags -Xcom
Alfresco is an Enterprise Content Management. I am not sure how the flags affects its performance. Then a note in the same page said..
-- This will, however, significantly increase the server startup time, but will highlight missing dependencies that can be hit later. ...
IMHO, The author did not really mean a performance gain. He/she wrote it as means to check all dependencies are in place.
Generally speaking, it's always preferable to let HotSpot compiler tune itself. Even using Server VM (-server) is default for 64bits and some 'server-class' machines.
-Xbatch was intended mostly for debugging as described in Steve Goldman's blog you pointed:
So the -Xbatch switch is not a particularly useful switch even in the pre-mustang days. It is somewhat useful for jvm developers since it tends to make a run more predictable and reproducible.
-Xcomp removes the ability to gather information for efficient compilation. From an Alex Turner's post:
One might think that -Xcomp would be a good idea from a performance point of view. However, it is not! The JIT compiler uses those 1000 iterations before compilation to gather information on how the method should be compiled for optimal efficiency. -Xcomp removes its ability to do so and thus we can actually see performance slip.
Without performance in mind, I've never seen using those flags to detect missing dependencies (and it may not work if some code is still interpreted) so IMHO, I would get rid of both.