Re: Strange asm generated by GCC...

Liste des GroupesRevenir à c arch 
Sujet : Re: Strange asm generated by GCC...
De : chris.m.thomasson.1 (at) *nospam* gmail.com (Chris M. Thomasson)
Groupes : comp.arch
Date : 20. Dec 2024, 21:23:48
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vk4jok$3k2q0$1@dont-email.me>
References : 1 2 3 4
User-Agent : Mozilla Thunderbird
On 12/20/2024 12:12 PM, Chris M. Thomasson wrote:
On 12/20/2024 3:55 AM, jseigh wrote:
On 12/19/24 20:02, Chris M. Thomasson wrote:
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);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
>
Strange to me that this even compiled at all. I clearly forgot to put in a value. aka:
>
m_state.store(1, std::memory_order_release);
>
Sorry about that. ;^o
>
The 2nd parameter has a default value, std::memory_order_cst.
Your 1st argument was a std::memory_order value which is an
integer value.  So basically
>
   m.state.store(std::memory_order_relaxed, std::memory_order_cst);
>
 https://en.cppreference.com/w/cpp/atomic/atomic/store
 The first param is the value we want to store. The second one is memory order.
AHHHHHH!!!!!!!!!!!
Yup. This is why it compiled. DOH!!!!!!!!
Sorry Joe.

Date Sujet#  Auteur
20 Dec01:43 * Strange asm generated by GCC...11Chris M. Thomasson
20 Dec01:54 +- Re: Strange asm generated by GCC...1Chris M. Thomasson
20 Dec02:02 +* Re: Strange asm generated by GCC...5Chris M. Thomasson
20 Dec12:55 i`* Re: Strange asm generated by GCC...4jseigh
20 Dec21:12 i `* Re: Strange asm generated by GCC...3Chris M. Thomasson
20 Dec21:15 i  +- Re: Strange asm generated by GCC...1Chris M. Thomasson
20 Dec21:23 i  `- Re: Strange asm generated by GCC...1Chris M. Thomasson
20 Dec18:46 `* Re: Strange asm generated by GCC...4jseigh
20 Dec20:59  +* Re: Strange asm generated by GCC...2jseigh
20 Dec21:17  i`- Re: Strange asm generated by GCC...1jseigh
21 Dec11:37  `- Re: Strange asm generated by GCC...1aph

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal