vote up 7 vote down star
3

Are there good tools to detect dead code in DELPHI2007 or above? That can integrate with the IDE? The option to look at blue dots is just time consuming, so it’s ruled out.

flag

50% accept rate
But how do you determine if code is dead or just unused by the current project? I don't think any tool can detect the difference between dead code and unused code. Problem is, in another project that unused code might suddenly end up being used. – Workshop Alex Sep 18 at 8:39

5 Answers

vote up 5 vote down

I don't know a better way to detect dead code (Delphi does a fairly good job itself?!). But if you want to optimize functions and procedures and look for bottlenecks and leaks, then AQtime may be a good tool or the less complex and free SamplingProfiler and GpProfile can give you some kind of help.

Sorry, this is not a answer on code cleanup. But it maybe can be of some help anyway!

link|flag
vote up 6 vote down

Peganza's Pascal Analyzer has a code reduction report that might help.

link|flag
vote up 8 vote down

Not only is looking at the blue dots time-consuming, it doesn't work very well. The blue dots disappear only next to code which definitely cannot be invoked. They don't disappear next to code which is not, in fact, invoked, but could be invoked, perhaps in some non-obvious way. Virtual methods can be invoked by indirect references in code; the compiler doesn't see the address of the jump.

AQtime does have a code coverage profiler. It works well, but only in the context of a particular application session. However, you could combine AQtime's coverage analysis with TestComplete's automated test execution to get coverage analysis over the execution of your entire regression series.

Even then, however, some human intelligence is going to be required. There is simply not a foolproof and entirely automated way to do this, and, given that published methods can be invoked via reflection (you could store the name of the class and method as strings in the database, and no compiler/static analyzer would ever see it), there can never be such a way.

link|flag
To invoke a method by name, a method needs to be published, not necessarily virtual. Most event handlers are non-virtual, and yet they're the primary use case for fetching methods' addresses by name (loading a DFM and hooking up event properties). – Rob Kennedy Mar 3 at 15:10
Yes, Rob, I agree. The virtual part is important WRT the question insofar as the compiler can't directly look at jump addresses to find covered code. I'll clarify the reply. – Craig Stuntz Mar 3 at 15:16
vote up 5 vote down

It doesn't integrate into the IDE, but CodeHealer warns you about unreachable code.

link|flag
vote up 2 vote down

cnWizards (a free Delphi IDE Expert collection) contains a tool which removes unused units in the uses list. I used it on a large project and it boosted the compile/link time almost by 10%.

http://www.cnpack.org/

link|flag
It made your project compile faster? How could you tell? ;) – Mason Wheeler May 19 at 11:32
Don't know, after installing the wizards, it just felt like 10% ;) – mjustin May 19 at 12:24

Your Answer

Get an OpenID
or

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