Do .pdbs slow down a release application?

后端 未结 2 1583
梦如初夏
梦如初夏 2021-01-02 01:59

If a .pdb (program debug) file is included with a .dll then line numbers appear in the stack trace of any exception thrown. Does this affect the performance of the applicati

相关标签:
2条回答
  • 2021-01-02 02:38

    John Robbins wrote about this in his article Do PDB Files Affect Performance?. The simple answer is no (if you compile your release build with both the /optimize+ and /debug switches):

    That might be true on other operating systems, but not Windows. If you think they do, then why does Microsoft build every single product they ship with PDB files turned on for both debug and release builds? They wrote the compiler, they wrote the linker, and they wrote the operating system so they know exactly what the effects are. Microsoft has more people focused on performance than any other software company in the world. If there were any performance impact at all, they wouldn't do it. Period. Performance isn't the only thing at Microsoft, it's everything.

    Additionally:

    When built /optimize+ and a /debug switch, a DebuggingMode.IgnoreSequencePoints is passed to the DebuggableAttribute to tell the JIT compiler that it doesn't need to load the PDB file in order to correctly JIT the IL.

    He also has another article entitled PDB Files: What Every Developer Must Know that is also a good read.

    0 讨论(0)
  • 2021-01-02 02:39

    Not normally. PDBs and optimizations are orthogonal. One can be enabled regardless of the value of the other option. However, it might reduce performance if you want to actually use the information contained in PDB, like when you are accessing the StackTrace of an exception and it needs to get line numbers from PDB or when you call new StackTrace(true).

    By the way, Eric Lippert has a related blog entry about compiler optimizations.

    0 讨论(0)
提交回复
热议问题