Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve reliability of the Callback implementation #755

Merged
merged 2 commits into from
Nov 13, 2023

Conversation

alrvid
Copy link
Contributor

@alrvid alrvid commented Nov 7, 2023

These changes are made since some combinations of code and compiler versions sometimes lead to erroneous machine code being generated, because of the somewhat adventurous implementation in Callback.h. The first change prevents the GCC compiler from applying optimizations that assume the code follows strict aliasing rules. The second one prevents the GCC compiler from sometimes generating incorrect inline code for the Callback constructor. The machine code generated with these changes are, on the one hand, less optimal. But on the other hand, the changes should prevent bugs arising from undefined behavior that is tricky to find in the Callback implementation, or simply from compiler bugs in GCC. The philosophy here is that it's better to be safe than sorry, rather than trying to find and fix every single dangerous construct in the code.

See also this post from a few years ago by one of the authors of Callback.h: https://answers.launchpad.net/gcc-arm-embedded/+question/686870

This change prevents the GCC compiler from applying optimizations that assume the code follows strict aliasing rules. In order to prevent bugs arising from undefined behavior that is tricky to find in the Callback implementation, or simply from compiler bugs in GCC. The reason for making the change now is concrete customer cases where incorrect machine code was generated in relation to Mbed Callbacks.
This prevents the GCC compiler from generating incorrect inline code for the Callback constructor.
@alrvid alrvid requested a review from facchinm November 7, 2023 14:35
@facchinm facchinm merged commit 1a7859c into arduino:main Nov 13, 2023
10 checks passed
@facchinm
Copy link
Member

Ouch, I noticed after merging that the patch will be overridden after the next rebuild of the core... I'll reapply at https://github.com/arduino/mbed-os and get the patch back in.

facchinm added a commit to arduino/mbed-os that referenced this pull request Nov 13, 2023
facchinm added a commit to arduino/mbed-os that referenced this pull request Nov 13, 2023
facchinm added a commit that referenced this pull request Nov 13, 2023
Importing #755 in the correct tree so it's preserved on rebuild
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants