What Rules does compiler have to follow when dealing with volatile memory locations?(在处理易失性内存位置时,编译器必须遵循哪些规则?)
问题描述
我知道从多个线程或进程写入的内存位置读取时,volatile 关键字应该用于该位置,如下面的某些情况,但我想了解更多有关哪些限制的信息它真的对编译器有用吗?基本上编译器在处理这种情况时必须遵循什么规则,是否有任何例外情况,尽管同时访问内存位置,但程序员可以忽略 volatile 关键字.
I know when reading from a location of memory which is written to by several threads or processes the volatile keyword should be used for that location like some cases below but I want to know more about what restrictions does it really make for compiler and basically what rules does compiler have to follow when dealing with such case and is there any exceptional case where despite simultaneous access to a memory location the volatile keyword can be ignored by programmer.
volatile SomeType * ptr = someAddress;
void someFunc(volatile const SomeType & input){
//function body
}
推荐答案
volatile
排除的一个特殊且非常常见的优化是将值从内存缓存到寄存器中,并使用注册重复访问(因为这比每次都返回内存要快得多).
A particular and very common optimization that is ruled out by volatile
is to cache a value from memory into a register, and use the register for repeated access (because this is much faster than going back to memory every time).
相反,编译器必须每次都从内存中获取值(从 Zach 那里得到提示,我应该说每次"都受序列点的限制).
Instead the compiler must fetch the value from memory every time (taking a hint from Zach, I should say that "every time" is bounded by sequence points).
写入序列也不能使用寄存器并且稍后只将最终值写回:每次写入必须被推送到内存中.
Nor can a sequence of writes make use of a register and only write the final value back later on: every write must be pushed out to memory.
为什么这很有用?在某些架构上,某些 IO 设备将它们的输入或输出映射到内存位置(即写入该位置的字节实际上在串行线上输出).如果编译器将其中一些写入重定向到一个仅偶尔刷新的寄存器,那么大部分字节不会进入串行线路.不好.使用 volatile
可以防止这种情况.
Why is this useful? On some architectures certain IO devices map their inputs or outputs to a memory location (i.e. a byte written to that location actually goes out on the serial line). If the compiler redirects some of those writes to a register that is only flushed occasionally then most of the bytes won't go onto the serial line. Not good. Using volatile
prevents this situation.
这篇关于在处理易失性内存位置时,编译器必须遵循哪些规则?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在处理易失性内存位置时,编译器必须遵循哪些规则?
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01