zoukankan      html  css  js  c++  java
  • VC++Debug避免F11步进不想要的函数中

      It's often useful to avoid stepping into some common code like constructors or overloaded operators.

      Many times when you debug the code you probably step into functions you would like to step over, whether it's constructors, assignment operators or others. One of those that used to bother me the most was the CStringconstructor. Here is an example when stepping into take_a_string() function first steps into CString's constructor.

      

      Luckily it is possible to tell the debugger to step over some methods, classes or entire namespaces. The way this was implemented has changed. Back in the days of VS 6 this used to be specified through the autoexp.dat file.

      autoexp.dat provides this capability. Add a section called "[ExecutionControl]". Add keys where the key is the function name and the value is "NoStepInto". You can specify an asterisk (*) as a wildcard as the first set of colons for a namespace or class.

      autoexp.dat is only read on Visual Studio's start up.

      To ignore the function myfunctionname, and all calls to the class CFoo:

      [ExecutionControl]

      myfunctionname=NoStepInto

      CFoo::*=NoStepInto

      To ignore construction and assignment of MFC CStrings: (Notice the extra = in CString::operator=.)

      [ExecutionControl]

      CString::CString=NoStepInto

      CString::operator==NoStepInto

      To ignore all ATL calls:

      [ExecutionControl]

      ATL::*=NoStepInto

            -------------------------------------------------------------------------分割线-----------------------------------------------------------------------------------------

      Since Visual Studio 2002 this was changed to Registry settings. To enable stepping over functions you need to add some values in Registry (you can find all the details here):

    • The actual location depends on the version of Visual Studio you have and the platform of the OS (x86 or x64, because the Registry has to views for 64-bit Windows)
    • The value name is a number and represents the priority of the rule; the higher the number the more precedence the rules has over others.
    • The value data is a REG_SZ value representing a regular expression that specifies what to filter and what action to perform.

      To skip stepping into any CString method I have added the following rule:

      

      Having this enabled, even when you press to step into take_a_string() in the above example the debugger skips the CString's constructor.

      Additional readings:

  • 相关阅读:
    谈谈 OC 中的内联函数
    Spring 新手教程(二) 生命周期和作用域
    实时竞价(RTB) 介绍(基础篇)
    oracle数据库性能优化方案精髓整理收集回想
    HNU 13411 Reverse a Road II(最大流+BFS)经典
    CSS3主要知识点复习总结+HTML5新增标签
    修改默认MYSQL数据库data存放位置
    mysql状态查看 QPS/TPS/缓存命中率查看
    Mysql5.7.10新加用户
    很靠谱linux常用命令
  • 原文地址:https://www.cnblogs.com/MakeView660/p/8442831.html
Copyright © 2011-2022 走看看