Just reading some stuff over at TopCoder…
http://www.topcoder.com/rtables/viewThread.jsp?forum=64101&thread=232826&mc=27
and came across this statement:
[quote]From the conversations I’ve read on -Xcomp - it’s pretty much like running a C++ program - you have a static compile up front and run the resulting code (it will NOT attempt any further enhancements nor back-out of bad guesses).
[/quote]
Which led me to ponder… Does -Xcomp inline anything? Can methods be inlined later during the run if you use -Xcomp.
Which comes down to: Is -Xcomp a valid way to benchmark or is it going to give you something too different from what you would get with a ‘warmed up’ mixed mode run?