我正在阅读 preshing 的博客Memory Reordering Caught in the Act ,并通过他的示例代码复制了 memory-reordering
然后我想知道我是否可以通过 Go 重现 memory-reordering,所以我在 go 中编写了示例代码,但是 memory-reordering 在 Go 中没有显示。
我写信是为了分享一些发现。
你能帮忙解释一下为什么 Go 不能进行内存重新排序吗?谢谢。
Go 中的示例代码:
package main
import (
"fmt"
"math/rand"
)
var x, y, r1, r2 int
var detected = 0
func randWait() {
for rand.Intn(8) != 0 {
}
}
func main() {
beginSig1 := make(chan bool, 1)
beginSig2 := make(chan bool, 1)
endSig1 := make(chan bool, 1)
endSig2 := make(chan bool, 1)
go func() {
for {
<-beginSig1
randWait()
x = 1
r1 = y
endSig1 <- true
}
}()
go func() {
for {
<-beginSig2
randWait()
y = 1
r2 = x
endSig2 <- true
}
}()
for i := 1; ; i = i + 1 {
x = 0
y = 0
beginSig1 <- true
beginSig2 <- true
<-endSig1
<-endSig2
if r1 == 0 && r2 == 0 {
detected = detected + 1
fmt.Println(detected, "reorders detected after ", i, "iterations")
}
}
}
汇编代码(通过“ndisasm -b 32”)显示 C++ 与 Go 之间的差异
来自 C++ 的汇编代码
00000CF0 C705520300000100 mov dword [0x352],0x1 //X=1 -0000 00000CFA 8B0550030000 mov eax,[0x350] 00000D00 89054E030000 mov [0x34e],eax //r1=Y
来自 Go 的汇编代码
000013EA 48 dec eax 000013EB C70425787F170001 mov dword [0x177f78],0x1 //x=1 -000000 000013F6 48 dec eax 000013F7 8B1C25807F1700 mov ebx,[0x177f80] 000013FE 48 dec eax 000013FF 891C25687F1700 mov [0x177f68],ebx //r1=Y 00001406 48 dec eax
似乎Go使用dec eax
了共享内存的访问权限,但是dec eax
可以防止内存重新排序是没有意义的
英特尔® 64 和 IA-32 架构软件开发人员手册第 3 卷,第 8.2 节显示了可能阻止内存重新排序的情况,但
dec eax
不包括在内...我尝试
dec eax
在 C 代码中添加共享内存访问的余量,并且内存重新排序仍然存在。
到目前为止,我不知道原因。请帮我解决一下,谢谢。