SCAF is an innovative dependence analysis framework that combines in a modular fashion memory analyses and (optionally) speculative assertions.
The full implementation of SCAF is not yet integrated in this repository. All the currectly available memory analysis modules are included, but the speculation modules along with a few other components (e.g., profilers) are currently part of another repository (https://github.com/PrincetonUniversity/cpf).
The novelty, design, implementation, and evaluation of this work is described in the PLDI '20 paper by Apostolakis et al. titled "SCAF: A Speculation-Aware Dependence Analysis Framework" (ACM DL, PDF, Talk, Abstract).
To reproduce the evaluation results presented in the PLDI 2020 paper, please refer to the artifact of the paper:
This work builds upon CAF (CGO '17 by Johnson et al., ACM DL).
If you use SCAF in a publication, we would appreciate a citation to the PLDI '20 paper:
@inproceedings{apostolakis:2020:pldi,
author = {Apostolakis, Sotiris and Xu, Ziyang and Tan, Zujun and Chan, Greg and Campanoni, Simone and August, David I.},
title = {SCAF: A Speculation-Aware Collaborative Dependence Analysis Framework},
year = {2020},
isbn = {9781450376136},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/3385412.3386028},
doi = {10.1145/3385412.3386028},
booktitle = {Proceedings of the 41st ACM SIGPLAN Conference on Programming Language Design and Implementation},
pages = {638–654},
numpages = {17},
keywords = {collaboration, dependence analysis, speculation},
location = {London, UK},
series = {PLDI 2020}
}
The version number is in the form of [v Major.Minor.Revision ]
LLVM 9.0.1
To build and install SCAF, run from the repository root directory: make
Run make clean from the root directory to clean the repository.
Run make uninstall from the root directory to uninstall SCAF.
SCAF is customizable and can be used as a conservative memory analysis if the speculation modules are disabled.
If you have any trouble using this framework feel free to create an issue! We will try our best to help.
We welcome contributions from the community to improve this framework and evolve it to cater for more users.
SCAF is licensed under the MIT License.