To make it automated:
- Compile your project with "Linking" option "Map file" set to "Detailed";
- A
.map file will be created in the same directory as the .exe;
- Parse the
.map file to retrieve the generated symbols.
Two remarks:
- This will get you a list of generated functions and methods - you'll have to check it to guess which is not generated;
- Note that code can be generated, but never called - in this case, if you want a more realistic coverage, use dedicated tools (like AQTime) or - even better in my opinion - some logging functions on the customer side.
And never be afraid of dead code. If it is not called, it won't be slow (apart from some very specific L1 CPU cache impact). Most of the time, it won't be compiled. Delphi compiler is very smart about finding dead code - you can be confident in it. So it won't harm your program execution. Deleting code in your unit would be risky if you forgot to compile on version of .dpr - main executable may not use it, but other versions may... Just make a backup before deleting some source code, and perhaps make a deeper refactoring of your code.