about summary refs log tree commit diff
path: root/src/tools/miri/tests/genmc/pass/atomics
AgeCommit message (Collapse)AuthorLines
2025-09-18Add GenMC estimation mode. Improve error handling and output printing.Patrick-6-6/+6
2025-09-12Implement more features for GenMC modePatrick-6-0/+128
- Handling Compare-Exchange operations. - Limitation: Compare-Exchange currently ignores possibility of spurious failures. - Limitation: Compare-Exchange failure memory ordering is ignored. - Upgrade compare-exchange success ordering to avoid reporting non-existent bugs. - Add warnings for GenMC mode for unsupported features. - Add a lot of tests, including translation of GenMC litmus tests and Loom tests. - Cleanup
2025-09-07Implement more features for GenMC modePatrick-6-0/+93
- Support for atomic fences. - Support for atomic read-modify-write (RMW). - Add tests using RMW and fences. - Add options: - to disable weak memory effects in GenMC mode. - to print GenMC execution graphs. - to print GenMC output message. - Fix GenMC full rebuild issue and run configure step when commit changes. - Do cleanup. Co-authored-by: Ralf Jung <post@ralfj.de>