zoukankan      html  css  js  c++  java
  • C++ Release编译时如何对某段代码不进行优化

    optimize
    #pragma optimize( "[optimization-list]", {on | off} )

    Feature Only in Professional and Enterprise Edition    Code optimization is supported only in Visual C++ Professional and Enterprise Editions. For more information, see Visual C++ Editions.

    Specifies optimizations to be performed on a function-by-function basis. The optimize pragma must appear outside a function and takes effect at the first function defined after the pragma is seen. The on and off arguments turn options specified in the optimization-list on or off.

    The optimization-list can be zero or more of the parameters shown in Table 2.2.

    Table 2.2   Parameters of the optimize Pragma

    Parameter(s) Type of optimization 
    a Assume no aliasing. 
    g Enable global optimizations. 
    p Improve floating-point consistency. 
    s or t Specify short or fast sequences of machine code. 
    w Assume no aliasing across function calls. 
    y Generate frame pointers on the program stack. 


    These are the same letters used with the /O compiler options. For example,

    #pragma optimize( "atp", on )

    Using the optimize pragma with the empty string (" ") is a special form of the directive. It either turns off all optimizations or restores them to their original (or default) settings.

    #pragma optimize( "", off )
    .
    .
    .
    #pragma optimize( "", on ) 

  • 相关阅读:
    机器学习---聚类算法
    机器学习解决问题的框架
    17个机器学习的常用算法!
    机器学习---理论篇
    golang 调用cmd执行EXE
    队列(自定义列表实现自定义队列)
    栈Stack(使用自定义链表实现自定义栈)
    链表( 自定义链表)
    队列(动态数组实现自定义队列)
    栈Stack(动态数组实现自定义栈)
  • 原文地址:https://www.cnblogs.com/kuangke/p/9525054.html
Copyright © 2011-2022 走看看