The use of inline, __inline, __forceinline
所在版块:求学狮城 发贴时间:2003-02-21 02:42  评分:

用户信息
复制本帖HTML代码
高亮: 今天贴 X 昨天贴 X 前天贴 X 
The inline and __inline keywords allow the compiler to insert a copy of the function body into each place the function is called. The insertion occurs only if the compiler's cost/benefit analysis show it to be profitable. The __forceinline keyword overrides the cost/benefit analysis and relies on the judgement of the programmer instead. Exercise caution when using __forceinline. Indiscriminate use of __forceinline can result in larger code with only marginal performance gains or, in some cases, even performance losses (due to increased paging of a larger executable, for example).

You cannot force the compiler to inline a function when conditions other than cost/benefit analysis prevent it. You cannot inline a function if:

The function or its caller is compiled with /Ob0 (the default option for debug builds).


The function and the caller use different types of exception handling (C++ exception handling in one, structured exception handling in the other).


The function has a variable argument list.


The function uses inline assembly and is not compiled with /Og, /Ox, /O1, or /O2).


Function returns an unwindable object by value and is not compiled with /GX, /EHs, or /EHa).


The function receives a copy-constructed object passed by value, when compiled with /GX, /EHs,, or /EHa.


The function is recursive and is not accompanied by #pragma(inline_recursion, on). With the pragma, recursive functions can be inlined to a default depth of eight calls. To change the inlining depth, use #pragma(inline_depth, n).
If the compiler cannot inline a function declared __forceinline, it generates a level 1 warning (4714).

The inline keyword is available only in C++. The __inline and __forceinline keywords are available in both C and C++. For compatibility with previous versions, _inline is a synonym for __inline.

Using inline functions can make your program faster because they eliminate the overhead associated with function calls. Functions expanded inline are subject to code optimizations not available to normal functions.

The /Ob compiler optimization option determines whether inline function expansion actually occurs
.
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!

Put your OWN COOL signature here!
 相关帖子 我要回复↙ ↗回到正文
c++ beginner 的菜鸟问题 如今   (514 bytes , 617reads )
i think you also have to put inline in class def 吴永铮   (279 bytes , 218reads )
Why need do this? Yup   (157 bytes , 478reads )
let me try with GCC and others. hash   (0 bytes , 167reads )
i even got problem when i try to compile 和尚庙的主持   (55 bytes , 164reads )
The use of inline, __inline, __forceinline Yup   (2160 bytes , 378reads )