x64 上的 COM 调用约定
我试图获得有关 COM 在 x64 计算机上的行为方式的明确答案。 在 x64 计算机上分派对 COM 接口的调用时,Windows 是否使用正常的 x64 调用约定(假设 COM 实现是 64 位)? 具体来说,我动态生成 vtbl 条目以指向在运行时动态加载的程序集块。 该程序集需要知道如何从调用它的人处正确获取参数。 因此,我想知道 COM 是否使用标准 x64 调用约定(几乎是快速调用)设置对我的程序集的调用。
I am trying to get a definitive answer regarding the way COM behaves on a x64 machine. Does Windows use the normal x64 calling convention when dispatching calls to COM interfaces on x64 machines (assuming the COM implementation is 64 bits)? Specifically, I dynamically generate my vtbl entries to point to a chunk of assembly that's dynamically loaded during runtime. This assembly needs to know how to get parameters correctly from whomever is calling it. Thus, I'd like to know if COM sets up the call to my assembly using the standard x64 calling convention (pretty much fastcall).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
COM 调用约定是 STDMETHOD/STDMETHODIMP 宏(及其变体)定义的任何内容。 在 IA-32 上,大多数都是
stdcall
; 我不知道x86-64上用什么(我只安装了32位mingw交叉编译器)。The COM calling convention is whatever the STDMETHOD/STDMETHODIMP macros (and their variants) defines it to be. On IA-32, it's
stdcall
for most of them; I do not know what is used on x86-64 (I only have the 32-bit mingw cross-compiler installed).