Sujet : Re: Strange asm generated by GCC...
De : chris.m.thomasson.1 (at) *nospam* gmail.com (Chris M. Thomasson)
Groupes : comp.archDate : 20. Dec 2024, 01:54:59
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vk2f93$33q08$1@dont-email.me>
References : 1
User-Agent : Mozilla Thunderbird
On 12/19/2024 4:43 PM, Chris M. Thomasson wrote:
Why in the world would GCC use an XCHG instruction for the following code. The damn XCHG has an implied LOCK prefix! Yikes!
https://godbolt.org/z/Thxchdcr8
_______________________
#include <atomic>
int main()
{
std::atomic<unsigned long> m_state = 0;
m_state.store(std::memory_order_relaxed);
return 0;
}
_______________________
[...]
Ahhh! Actually, I am not sure what that even compiled! Now, this is much better:
https://godbolt.org/z/d46q9dd4h_____________________________
#include <atomic>
static std::atomic<unsigned long> m_state = 0;
int main()
{
m_state.store(1, std::memory_order_relaxed);
return 0;
}
_____________________________
and I get:
_____________________________
main:
mov QWORD PTR m_state[rip], 1
xor eax, eax
ret
_____________________________
Okay. This makes much more sense.