发布时间:2011-11-9 13:15
分类名称:C++
作者:phylips@bmy
出处:http://duanple.blog.163.com/blog/static/7097176720094532219778/
Named Return value 优化:
nrv 优化的本质是优化掉拷贝构造函数,去掉它不是生成它。当然了,因为为了优化掉它,前提就是它存在,也就是欲先去之,必先有之,这个也就是nrv优化需要有 拷贝构造函数存在的原因。 nrv优化会带来副作用,目前也不是正式标准,倒是那个对象模型上举的应用例子看看比较好。极端情况下,不用它的确造成很大的 性能损失,知道这个情况就可以了。
为什么必须定义了拷贝构造函数才能进行nrv优化?首先它是lippman在inside c++ object mode里说的。那个预先取之,必先有之的说法只是我的思考。查阅资料,实际上这个可能仅仅只是cfont开启NRV优化的一个开关。
The C++ standard allows the elision of the copy constructor (even if this results in different program behavior), which has a side effect of enabling the compiler to treat both objects as one。也就是我说的副作用,c++标准允许这个副作用的出现,也就是它允许进行NRV优化,但不是必须。
看下vc++8.0的NRV描述:http://msdn.microsoft.com/en-us/library/ms364057(VS.80).aspx
(里面说了在vc++ 8.0才加入了NRV优化,NRV优化的开关是有/O后面的级别开启。g++到底有没有,依上面的结果则是没有nrv优化)
The Visual C++ 8.0 compiler makes use of the flexibility that the standard provides and adds a new feature: Named Return Value Optimization (NRVO). NRVO eliminates the copy constructor and destructor of a stack-based return value. This optimizes out the redundant copy constructor and destructor calls and thus improves overall performance. It is to be noted that this could lead to different behavior between optimized and non-optimized programs (see the Optimization Side Effects section).