ROSE is an open source compiler infrastructure to build source-to-source program transformation and analysis tools for large-scale Fortran 77/95/2003, C, C++, OpenMP, and UPC applications. The intended users of ROSE could be either experienced compiler researchers or library and tool developers who may have minimal compiler experience. ROSE is particularly well suited for building custom tools for static analysis, program optimization, arbitrary program transformation, domain-specific optimizations, complex loop optimizations, performance analysis, and cyber-security.
ROSE is not grep, sed, LLVM, or a Perl script. A ROSE Tool uses the ROSE compiler-based infrastructure to parse code into a complete Abstract Syntax Tree (AST). The AST contains all the syntax and semantic information in the original code, and has a rich API supporting sophisticated analysis and transformations. The ROSE Tool queries the AST and reports on and/or changes the AST, then may emit new code from the AST. All ROSE Tools can thus precisely replicate the parsing and semantic analysis behaviour of multiple compiler languages, vendors, and versions. New ROSE Tools can quickly be created by customers or by the ROSE Team. ROSE is open-source, and is portable across a large and expanding range of platforms. ROSE Tools can process large code bases, and the ROSE infrastructure and ROSE Tool collection are continuously upgraded and extended by the LLNL ROSE Team and outside contributors.
From the source tree run ./build
. Then navigate to your build tree and run configure and make.
../src/configure --prefix=/path/for/ROSE/install \
--enable-languages=c,c++ \
--with-boost=/path/to/boost/install
make -j${NUM_PROCESSORS}
make install -j${NUM_PROCESSORS}
make check -j${NUM_PROCESSORS}
For Ubuntu 18.04, we have experimental support for installating ROSE pre-built binaries packages using apt-get
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:rosecompiler/rose-development # Replace rose-development with rose-stable for release version
sudo apt-get install rose
sudo apt-get install rose-tools # Optional: Installs ROSE tools in addition to ROSE Core
For full install instructions go to https://github.com/rose-compiler/rose/wiki/How-to-Set-Up-ROSE
src
: all source code for ROSEtests
: several subdirectories of test codes for ROSE.tools
: usable feature complete toolsprojects
: in development and incomplete toolstutorial
: exmples of ROSE featuresdocs
: files for bulding the documentation
For more information about ROSE and how to use it visit the github wiki at https://github.com/rose-compiler/rose/wiki
The ROSE API can be found at http://doxygen.rosecompiler.org. The API can also be made locally by going to cd $ROSE_BUILD/docs/Rose
and runnig make doxygen_docs
. The html pages can then be found in ${ROSE_BUILD}/docs/Rose/ROSE_WebPages
and can be easily viewed by pointing your browser at ${ROSE_BUILD}/docs/Rose/ROSE_WebPages
.