I want to compare the memory footprint of LLVM JIT vs the Interpreter on
Darwin.
I am currently doing this by running lli, on a simple but long running
program, with and without the "-force-interpreter option", and then I look
at the Real Memory used by lli in the Activity Monitor. I currently observe
that the JIT takes 4.0MB and the Interpreter takes 1.7MB.
Are these values close to what one would expect ?
Is there a better way to do this comparison ?
Thank,
KM