std::atomic
มีอยู่เพราะ ISAs จำนวนมากสนับสนุนฮาร์ดแวร์โดยตรง
สิ่งที่มาตรฐาน C ++ กล่าวถึงstd::atomic
ได้รับการวิเคราะห์ในคำตอบอื่น ๆ
ดังนั้นตอนนี้เรามาดูสิ่งที่std::atomic
รวบรวมเพื่อให้ได้ความเข้าใจที่แตกต่าง
ประเด็นหลักจากการทดลองนี้ก็คือซีพียูสมัยใหม่มีการรองรับโดยตรงสำหรับการดำเนินการจำนวนเต็มของอะตอมตัวอย่างเช่นคำนำหน้า LOCK ใน x86 และstd::atomic
โดยพื้นฐานแล้วเป็นอินเทอร์เฟซแบบพกพาสำหรับการบุกรุกเหล่านั้น: คำสั่ง "ล็อค" หมายถึงอะไร ใน aarch64 จะใช้LDADD
การสนับสนุนนี้ช่วยให้ทางเลือกที่รวดเร็วกว่าสำหรับวิธีการทั่วไปมากขึ้นเช่นstd::mutex
ซึ่งสามารถสร้างอะตอมส่วนคำสั่งที่ซับซ้อนได้หลายแบบในราคาที่ถูกกว่าstd::atomic
เพราะstd::mutex
จะทำให้การfutex
เรียกระบบใน Linux ซึ่งเป็นวิธีที่ช้ากว่าคำแนะนำของstd::atomic
ผู้ใช้ ดูเพิ่มเติมที่: std :: mutex สร้างรั้วหรือไม่
ลองพิจารณาโปรแกรมแบบมัลติเธรดต่อไปนี้ซึ่งเพิ่มตัวแปรโกลบอลในหลายเธรดพร้อมกับกลไกการซิงโครไนซ์ที่แตกต่างกันขึ้นอยู่กับการกำหนดพรีโปรเซสเซอร์
main.cpp
#include <atomic>
#include <iostream>
#include <thread>
#include <vector>
size_t niters;
#if STD_ATOMIC
std::atomic_ulong global(0);
#else
uint64_t global = 0;
#endif
void threadMain() {
for (size_t i = 0; i < niters; ++i) {
#if LOCK
__asm__ __volatile__ (
"lock incq %0;"
: "+m" (global),
"+g" (i) // to prevent loop unrolling
:
:
);
#else
__asm__ __volatile__ (
""
: "+g" (i) // to prevent he loop from being optimized to a single add
: "g" (global)
:
);
global++;
#endif
}
}
int main(int argc, char **argv) {
size_t nthreads;
if (argc > 1) {
nthreads = std::stoull(argv[1], NULL, 0);
} else {
nthreads = 2;
}
if (argc > 2) {
niters = std::stoull(argv[2], NULL, 0);
} else {
niters = 10;
}
std::vector<std::thread> threads(nthreads);
for (size_t i = 0; i < nthreads; ++i)
threads[i] = std::thread(threadMain);
for (size_t i = 0; i < nthreads; ++i)
threads[i].join();
uint64_t expect = nthreads * niters;
std::cout << "expect " << expect << std::endl;
std::cout << "global " << global << std::endl;
}
GitHub ต้นน้ำ
รวบรวมเรียกใช้และถอดแยกชิ้นส่วน:
comon="-ggdb3 -O3 -std=c++11 -Wall -Wextra -pedantic main.cpp -pthread"
g++ -o main_fail.out $common
g++ -o main_std_atomic.out -DSTD_ATOMIC $common
g++ -o main_lock.out -DLOCK $common
./main_fail.out 4 100000
./main_std_atomic.out 4 100000
./main_lock.out 4 100000
gdb -batch -ex "disassemble threadMain" main_fail.out
gdb -batch -ex "disassemble threadMain" main_std_atomic.out
gdb -batch -ex "disassemble threadMain" main_lock.out
เป็นไปได้อย่างยิ่งที่สภาพการแข่งขันจะ“ ผิด” สำหรับmain_fail.out
:
expect 400000
global 100000
และเอาท์พุท "ขวา" ของผู้อื่น:
expect 400000
global 400000
ถอดชิ้นส่วนของmain_fail.out
:
0x0000000000002780 <+0>: endbr64
0x0000000000002784 <+4>: mov 0x29b5(%rip),%rcx # 0x5140 <niters>
0x000000000000278b <+11>: test %rcx,%rcx
0x000000000000278e <+14>: je 0x27b4 <threadMain()+52>
0x0000000000002790 <+16>: mov 0x29a1(%rip),%rdx # 0x5138 <global>
0x0000000000002797 <+23>: xor %eax,%eax
0x0000000000002799 <+25>: nopl 0x0(%rax)
0x00000000000027a0 <+32>: add $0x1,%rax
0x00000000000027a4 <+36>: add $0x1,%rdx
0x00000000000027a8 <+40>: cmp %rcx,%rax
0x00000000000027ab <+43>: jb 0x27a0 <threadMain()+32>
0x00000000000027ad <+45>: mov %rdx,0x2984(%rip) # 0x5138 <global>
0x00000000000027b4 <+52>: retq
ถอดชิ้นส่วนของmain_std_atomic.out
:
0x0000000000002780 <+0>: endbr64
0x0000000000002784 <+4>: cmpq $0x0,0x29b4(%rip) # 0x5140 <niters>
0x000000000000278c <+12>: je 0x27a6 <threadMain()+38>
0x000000000000278e <+14>: xor %eax,%eax
0x0000000000002790 <+16>: lock addq $0x1,0x299f(%rip) # 0x5138 <global>
0x0000000000002799 <+25>: add $0x1,%rax
0x000000000000279d <+29>: cmp %rax,0x299c(%rip) # 0x5140 <niters>
0x00000000000027a4 <+36>: ja 0x2790 <threadMain()+16>
0x00000000000027a6 <+38>: retq
ถอดชิ้นส่วนของmain_lock.out
:
Dump of assembler code for function threadMain():
0x0000000000002780 <+0>: endbr64
0x0000000000002784 <+4>: cmpq $0x0,0x29b4(%rip) # 0x5140 <niters>
0x000000000000278c <+12>: je 0x27a5 <threadMain()+37>
0x000000000000278e <+14>: xor %eax,%eax
0x0000000000002790 <+16>: lock incq 0x29a0(%rip) # 0x5138 <global>
0x0000000000002798 <+24>: add $0x1,%rax
0x000000000000279c <+28>: cmp %rax,0x299d(%rip) # 0x5140 <niters>
0x00000000000027a3 <+35>: ja 0x2790 <threadMain()+16>
0x00000000000027a5 <+37>: retq
สรุป:
เวอร์ชันที่ไม่ใช่อะตอมมิกจะบันทึกโกลบอลเป็นรีจิสเตอร์และเพิ่มการลงทะเบียน
ดังนั้นในตอนท้ายการเขียนสี่อย่างน่าจะเกิดขึ้นกลับมาเป็นโลกที่มีค่า "ผิด" 100000
เท่ากัน
std::atomic
lock addq
คอมไพล์ คำนำหน้า LOCK ทำให้การinc
ดึงข้อมูลแก้ไขและอัปเดตหน่วยความจำแบบอะตอมต่อไปนี้
อย่างชัดเจนประกอบแบบอินไลน์ LOCK เราคำนำหน้าคอมไพล์ไปเกือบสิ่งเดียวกันเช่นstd::atomic
ยกเว้นว่าเราจะนำมาใช้แทนinc
add
ไม่แน่ใจว่าทำไม GCC เลือกadd
เนื่องจากอิงค์ของเราสร้างการถอดรหัสขนาดเล็กลง 1 ไบต์
ARMv8 สามารถใช้ LDAXR + STLXR หรือ LDADD ในซีพียูรุ่นใหม่กว่า: ฉันจะเริ่มกระทู้ใน C ธรรมดาได้อย่างไร
ทดสอบใน Ubuntu 19.10 AMD64, GCC 9.2.1, Lenovo ThinkPad P51
a.fetch_add(12)
ถ้าคุณต้องการอะตอมมิก RMW