Now it's time to put the theory into practice. The job is relatively easy. A small program should undergo ongoing optimization.
The program
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// ongoingOptimization.cpp
#include <iostream>
#include <thread>
int x= 0;
int y= 0;
void writing(){
x= 2000;
y= 11;
}
void reading(){
std::cout << "y: " << y << " ";
std::cout << "x: " << x << std::endl;
}
int main(){
std::thread thread1(writing);
std::thread thread2(reading);
thread1.join();
thread2.join();
}
|
The program is quite simple. It consists of two threads thread1 and thread2.thread1 writes the values x and y. thread 2 reads the values x and y in the opposite direction. The execution of the program is not so thrilling either.

But you see, even this simple program has different results. So I finally came to my key idea.
Modernes C++ Mentoring
Be part of my mentoring programs:
Do you want to stay informed about my mentoring programs: Subscribe via E-Mail.
In the process of the ongoing optimization of the program, I have two questions.
- Is the program well-defined? Precisely, is there a data race?
- Which values for x and y are possible?
The first question is often very challenging to answer. So I will reason in the first step about the program and verify in the second step my reasoning with CppMem. If I have answered the first question, the second answer can easily be derived. I will provide the possible values in a table.

But still, one question isn't answered yet. What do I mean by ongoing optimization? I mean, by ongoing optimization, that I try to improve the program by weakening the C++ memory model. So in my journey, I discuss the following stations.
- Non-atomic variables
- Locks
- Atomics with sequential consistency
- Atomics with acquire-release semantic
- Atomics with relaxed semantic
- Volatile variables
What's next?
Of course, this was a very short post. But this post should provide you only the context of my ongoing optimization. In case you are bored, reason about the small program and answer the two question.
- Is the program well-defined?
- Which values for x and y are possible?
Still bored? Then reason about the weakening of the program's memory model and the consequences. In the next post, I will analyze the unsynchronized access with the help of CppMem. Stay tuned.
Thanks a lot to my Patreon Supporters: Matt Braun, Roman Postanciuc, Tobias Zindl, G Prvulovic, Reinhold Dröge, Abernitzke, Frank Grimm, Sakib, Broeserl, António Pina, Sergey Agafyin, Андрей Бурмистров, Jake, GS, Lawton Shoemake, Animus24, Jozo Leko, John Breland, Venkat Nandam, Jose Francisco, Douglas Tinkham, Kuchlong Kuchlong, Robert Blanch, Truels Wissneth, Kris Kafka, Mario Luoni, Friedrich Huber, lennonli, Pramod Tikare Muralidhara, Peter Ware, Daniel Hufschläger, Alessandro Pezzato, Bob Perry, Satish Vangipuram, Andi Ireland, Richard Ohnemus, Michael Dunsky, Leo Goodstadt, John Wiederhirn, Yacob Cohen-Arazi, Florian Tischler, Robin Furness, Michael Young, Holger Detering, Bernd Mühlhaus, Matthieu Bolt, Stephen Kelley, Kyle Dean, Tusar Palauri, Dmitry Farberov, Juan Dent, George Liao, Daniel Ceperley, Jon T Hess, Stephen Totten, Wolfgang Fütterer, Matthias Grün, Phillip Diekmann, Ben Atakora, Ann Shatoff, and Rob North.
Thanks, in particular, to Jon Hess, Lakshman, Christian Wittenhorst, Sherhy Pyton, Dendi Suhubdy, Sudhakar Belagurusamy, Richard Sargeant, Rusty Fleming, John Nebel, Mipko, Alicja Kaminska, and Slavko Radman.
My special thanks to Embarcadero 
My special thanks to PVS-Studio 
My special thanks to Tipi.build 
My special thanks to Take Up code 
Seminars
I'm happy to give online seminars or face-to-face seminars worldwide. Please call me if you have any questions.
Bookable (Online)
German
Standard Seminars (English/German)
Here is a compilation of my standard seminars. These seminars are only meant to give you a first orientation.
- C++ - The Core Language
- C++ - The Standard Library
- C++ - Compact
- C++11 and C++14
- Concurrency with Modern C++
- Design Pattern and Architectural Pattern with C++
- Embedded Programming with Modern C++
- Generic Programming (Templates) with C++
New
- Clean Code with Modern C++
- C++20
Contact Me
- Phone: +49 7472 917441
- Mobil:: +49 176 5506 5086
- Mail: This email address is being protected from spambots. You need JavaScript enabled to view it.
- German Seminar Page: www.ModernesCpp.de
- Mentoring Page: www.ModernesCpp.org
Modernes C++,

Comments
all the great posts.
gossips and internet and this is actually frustrating.
A good web site with interesting content, that is what I need.
Thank you for keeping this web site, I will be visiting it.
Do you do newsletters? Cant find it.
for the post on this perfect one :D.
site, I'd rate it 10 10.
by mistake, while I was looking on Aol for something else, Anyways I am here now and would just like to say
thank you for a incredible post and a all round exciting blog (I
also love the theme/design), I don't have time to go through it all at the moment but I have book-marked it
and also included your RSS feeds, so when I have time I will be back to read
much more, Please do keep up the superb
job.
RSS feed for comments to this post