是否可以保证在 C++ 中不会优化执行内存写入的代码? [英] Is it possible to guarantee code doing memory writes is not optimized away in C++?

查看:17
本文介绍了是否可以保证在 C++ 中不会优化执行内存写入的代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

允许 C++ 编译器优化写入内存:

C++ compilers are allowed to optimize away writes into memory:

 {
     //all this code can be eliminated
     char buffer[size];
     std::fill_n( buffer, size, 0);
 }

在处理敏感数据时,典型的方法是使用 volatile* 指针来确保内存写入由编译器发出.以下是 Visual C++ 运行时库中 SecureZeroMemory() 函数的实现方式 (WinNT.h):

When dealing with sensitive data the typical approach is using volatile* pointers to ensure that memory writes are emitted by the compiler. Here's how SecureZeroMemory() function in Visual C++ runtime library is implemented (WinNT.h):

FORCEINLINE PVOID RtlSecureZeroMemory(
     __in_bcount(cnt) PVOID ptr, __in SIZE_T cnt )
{
    volatile char *vptr = (volatile char *)ptr;
#if defined(_M_AMD64)
    __stosb((PBYTE )((DWORD64)vptr), 0, cnt);
#else
    while (cnt) {
        *vptr = 0;
        vptr++;
        cnt--;
    }
#endif
    return ptr;
}

该函数将传递的指针转换为 volatile* 指针,然后通过后者写入.但是,如果我在局部变量上使用它:

The function casts the passed pointer to a volatile* pointer and then writes through the latter. However if I use it on a local variable:

char buffer[size];
SecureZeroMemory( buffer, size );

变量本身不是volatile.因此,根据 C++ 标准定义,写入 buffer 的可观察行为不算作可观察行为,看起来可以优化掉.

the variable itself is not volatile. So according to C++ Standard definition of observable behavior writes into buffer don't count as observable behavior and looks like it can be optimized away.

现在下面有很多关于页面文件、缓存等的评论,这些都是有效的,但我们在这个问题中忽略它们.这个问题唯一的问题是内存写入的代码是否被优化掉了.

Now there're a lot of comments below about page files, caches, etc, which are all valid, but let's just ignore them in this question. The only thing this question is about is whether the code for memory writes is optimized away or not.

是否可以确保在 C++ 中不会优化写入内存的代码?SecureZeroMemory() 中的解决方案是否符合 C++ 标准?

Is it possible to ensure that code doing writes into memory is not optimized away in C++? Is the solution in SecureZeroMemory() compliant to C++ Standard?

推荐答案

没有可移植的解决方案.如果它愿意,编译器可以在您在内存中的多个位置使用数据时复制数据,并且任何零函数只能将当时正在使用的函数置零.任何解决方案都是不可移植的.

There is no portable solution. If it wants to, the compiler could have made copies of the data while you were using it in multiple places in memory and any zero function could zero only the one it's using at that time. Any solution will be non-portable.

这篇关于是否可以保证在 C++ 中不会优化执行内存写入的代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆