about summary refs log tree commit diff
path: root/src/tools/miri/genmc-sys/build.rs
AgeCommit message (Collapse)AuthorLines
2025-09-07Implement more features for GenMC modePatrick-6-11/+26
- 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>
2025-09-03Merge pull request #4506 from Patrick-6/miri-genmc-mvpRalf Jung-16/+26
Add minimal functionality for using GenMC mode
2025-09-03Implement basic support for running Miri with GenMC.Patrick-6-16/+26
- Implement memory allocation compatible with GenMC. - Extract address generator struct from Miri's allocator. - Support thread creation and joining. - Support atomic load and store. - Support scheduling through GenMC. - Add tests for GenMC mode. - Add clang-format file for C++ code in Miri. - Update genmc-sys crate license to MIT/Apache to match GenMC dependency. - Add documentation for GenMC mode. Note: this commit depends on changes to GenMC not yet upstreamed to its official repository. Co-authored-by: Ralf Jung <post@ralfj.de>
2025-07-28Reduce required cc crate version.Patrick-6-1/+3
2025-07-27various minor adjustmentsRalf Jung-9/+8
2025-07-27Add support for building and linking against genmcPatrick-6-0/+268