ROSE (compiler framework)

From Wikipedia, the free encyclopedia
ROSE
Original author(s)Daniel J. Quinlan, Chunhua (Leo) Liao, Robb P. Matzke, Markus Schordan, et al.
Developer(s)Lawrence Livermore National Laboratory
Stable release
0.9.13.0 / 15 December 2019; 4 years ago (2019-12-15)
Preview release
0.9.6a / 16 March 2016; 8 years ago (2016-03-16)
Written inC++
Operating systemLinux, OS X
PlatformIA-32, x86-64
Available inEnglish
TypeCompiler
LicenseBSD modified
Websiterosecompiler.org

The ROSE compiler framework, developed at Lawrence Livermore National Laboratory (LLNL), is an open-source software compiler infrastructure to generate source-to-source analyzers and translators for multiple source languages including C (C89, C98, Unified Parallel C (UPC)), C++ (C++98, C++11), Fortran (77, 95, 2003), OpenMP, Java, Python, and PHP.

It also supports certain binary files, and auto-parallelizing compilers by generating source code annotated with OpenMP directives. Unlike most other research compilers, ROSE is aimed at enabling non-experts to leverage compiler technologies to build their own custom software analyzers and optimizers.

The infrastructure[edit]

ROSE consists of multiple front-ends, a midend operating on its internal intermediate representation (IR), and backends regenerating (unparse) source code from IR. Optionally, vendor compilers can be used to compile the unparsed source code into final executables.

To parse C and C++ applications, ROSE uses the Edison Design Group's C++ front-end.[1] Fortran support, including F2003 and earlier 1977, 1990, and 1995 versions, is based on the Open Fortran Parser (OFP) developed at Los Alamos National Laboratory.[2]

The ROSE IR consists of an abstract syntax tree, symbol tables, control flow graph, etc. It is an object-oriented IR with several levels of interfaces for quickly building source-to-source translators. All information from the input source code is carefully preserved in the ROSE IR, including C preprocessor control structure, source comments, source position information, and C++ template information, e.g., template arguments.

ROSE is released under a BSD-style license. It targets Linux and OS X on both IA-32 and x86-64 platforms. Its Edison Design Group (EDG) parts are proprietary and distributed in binary form. Source files of the EDG parts can be obtained if users have a commercial or research license from EDG.

Award[edit]

The ROSE compiler infrastructure received one of the 2009 R&D 100 Awards.[3] The R&D 100 Awards are presented annually by R&D Magazine to recognize the 100 most significant proven research and development advances introduced over the past year. An independent expert panel selects the winners.

See also[edit]

References[edit]

  1. ^ "Edison Design Group's C++ front-end". Edg.com. Archived from the original on 2008-12-24.{{cite web}}: CS1 maint: unfit URL (link)
  2. ^ "Open Fortran Parser (OFP)". Fortran-parser.sourceforge.net.
  3. ^ "Free compiler aids novices, experts". R&D Magazine. Advantage Business Media. 30 July 2009. Retrieved 18 March 2016.

External links[edit]