几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量  


返回   几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 » 仿射空间:CAX软件开发(三)二次开发与程序设计 » 程序设计 » vc编程
用户名
密码
注册 帮助 会员 日历 银行 搜索 今日新帖 标记论坛为已读


回复
 
主题工具 搜索本主题 显示模式
旧 2013-11-21, 01:34 PM   #1
huangyhg
超级版主
 
huangyhg的头像
 
注册日期: 04-03
帖子: 18592
精华: 36
现金: 249466 标准币
资产: 1080358888 标准币
huangyhg 向着好的方向发展
默认 Why is Visual C++ 2010 still calling Orphan_all when a vector is destroyed with _ITER

Why is Visual C++ 2010 still calling Orphan_all when a vector is destroyed with _ITERATOR_DEBUG_LEVEL=0 ?

Hi ho, Visual C++ newbie here. (I came up to speed on Visual C++ 6 somewhat ages ago, and have used the IDE sporadically since then, but still don't feel comfortable with it. Give me a good old commandline and get off my lawn, that's my attitude.)

I'm helping out on an app built with Visual C++ 2010 (it's a solution file with 20 subprojects), and noticed something odd: even though _ITERATOR_DEBUG_LEVEL and _SECURE_SCL are both defined to zero in the project's properties, adding /FAs for one of the .cpp files still shows calls to checked iterator stuff, e.g.

call DWORD PTR __imp_?_Orphan_all@_Container_base0@std@@QAEXXZ

I've verified (with printf) that both defines are zero. Furthermore, these calls seem very fragile; if I delete seemingly trivial amounts of code from the function involved, the calls to Orphan_all vanish.

So: why is Visual C++ 2010 still calling Orphan_all when a vector is destroyed with _ITERATOR_DEBUG_LEVEL=0 ?


(Also, I've also heard that the cl.exe itself in windows sdk v7.1 and several games all seem to import _Orphan_all@_Container_base0@std@@QAEXXZ from msvcp100.dll, which seems odd for released products. What should msvcp100.dll's _Orphan_all@_Container_base0@std@@QAEXXZ do -- is it a no-op, or does it actually do things, like the one in msvcp100d.dll?)

[EDIT: asked at http://stackoverflow.com/questions/...-destroyed-with and got excellent answers within minutes. That site is on fire! I now suspect that the optimizer just missed removing a few calls that it should have known would be no-ops.]

  • Edited by Dan Kegel Friday, July 20, 2012 4:57 AM
Friday, July 20, 2012 4:10 AM
Reply
|
Quote
|




Dan Kegel


0 Points






Answers



0

Sign in to vote


I understand the issue clearly now. The example program

#include <stdio.h> #include <vector> using namespace std; int main() { vector<int> foo; vector<int> bar; vector<int> baz; foo.push_back(1); swap(foo, bar); baz = bar; printf("top of baz is %d\n", baz.back()); return 0; }
when compiled with /FAs shows various calls to _Orphan_all and _Swap_all... and compiling with /E shows that those functions are empty inline functions. As described in 

http://channel9.msdn.com/Series/C9-...nced-STL-3-of-n

that's normal, and the optimizer usually inlines these calls (which, since they're empty, removes them). When you compile with /Od, or when the function in question is too big for the optimizer, the calls are not inlined, and the (empty) implementation in msvcp100.dll is called (and just returns).

So, in short, all is well, and those calls are not normally a performance problem.
__________________
借用达朗贝尔的名言:前进吧,你会得到信心!
[url="http://www.dimcax.com"]几何尺寸与公差标准[/url]
huangyhg离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
旧 2013-11-21, 01:34 PM   #2
huangyhg
超级版主
 
huangyhg的头像
 
注册日期: 04-03
帖子: 18592
精华: 36
现金: 249466 标准币
资产: 1080358888 标准币
huangyhg 向着好的方向发展
默认 回复: Why is Visual C++ 2010 still calling Orphan_all when a vector is destroyed with _ITER

__________________
借用达朗贝尔的名言:前进吧,你会得到信心!
[url="http://www.dimcax.com"]几何尺寸与公差标准[/url]
huangyhg离线中   回复时引用此帖
回复


主题工具 搜索本主题
搜索本主题:

高级搜索
显示模式

发帖规则
不可以发表新主题
不可以回复主题
不可以上传附件
不可以编辑您的帖子

vB 代码开启
[IMG]代码开启
HTML代码关闭



所有的时间均为北京时间。 现在的时间是 01:55 AM.


于2004年创办,几何尺寸与公差论坛"致力于产品几何量公差标准GD&T | GPS研究/CAD设计/CAM加工/CMM测量"。免责声明:论坛严禁发布色情反动言论及有关违反国家法律法规内容!情节严重者提供其IP,并配合相关部门进行严厉查处,若內容有涉及侵权,请立即联系我们QQ:44671734。注:此论坛须管理员验证方可发帖。
沪ICP备06057009号-2
更多