Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Eliminating aspect .class files

> Is there any published material comparing the performance of Soot and
> AspectJ tools?

Hi Saurabh.

I think that there is no general way of comparing the performance of
the code that both tools generate because the performance of this code
depends heavily on the aspects, respectively on the program
transformations that you instrument with Soot. Usually ajc does quite
a good job of generating fast code but tools like Soot obviously give
you more control.

Have you tried out the AspectBench Compiler (abc)? Using abc you can
use convenient AspectJ syntax but you can still fine-tune the
generated code if necessary, simply by extending the compiler itself.

Eric
-- 
Eric Bodden
Sable Research Group, McGill University
Montréal, Québec, Canada


Back to the top