Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone have experience in using ProGuard and are there already measurements about application performance beyond the class loading time?

I have a fairly complex application that could need a boost, but preparing it for ProGuard would take a few days, so I would like to hear some opinions before.

share|improve this question
9  
If the performance of your software is a problem, profiling and then optimizing bottlenecks will provide a much larger performance increase than Proguard can. – Rich Jun 9 '11 at 13:11
OK, thanks for all answers. Then I won't spend any time with that tool for now. – Daniel Jun 10 '11 at 5:00

3 Answers

up vote 3 down vote accepted

The main benefit, from our experience, is that it can protect your intellectual rights. In terms of class loading time, we are not necessarily seeing any benefit and if so is negligible.

One other thing is we have seen issues where it can affect your code negatively. Certainly, retest your application after using ProGuard.

share|improve this answer

Most of the bytecode optimizations that ProGuard does are done just as well or better by any mainstream JVM's JIT, so for those you shouldn't expect significant improvements (except for class loading).

share|improve this answer

I can only make a wild guess. Pro: obfuscated and shorter method names / field names make it slightly faster in byte code validation, class loading and interpreted mode. Cons: as soon as it is running a while it will be more or less jit compiled and at that point it won't matter any more.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.