Skip to content

Latest commit

 

History

History
106 lines (77 loc) · 3.42 KB

README.md

File metadata and controls

106 lines (77 loc) · 3.42 KB

Open Fortran Parser (OFP)

version 0.8.7

Contents

The Open Fortran Parser (OFP) project provides a Fortran 2008 compliant parser and associated tools. These tools provide a Java and C API for actions that are called when parser rules are completed. These actions allow a parser consumer to build a custom Abstract Syntax Tree (AST).

If you need access to a complete source-to-source Fortran compiler infrastructure incorporating OFP, please consider using ROSE.

The OFP parser is based on an ANTLR 3 grammar and ANTLR version 3.5.2 tools are used to generate the Fortran parser (written in Java). The C action interfaces are currently provided by JNI.

  • Still a little sparse. Action interfaces are defined by the Java file
  • Set your java CLASSPATH to include the ANTLR jar files and OpenFortranParser-0.8.7.jar. If you use the bash shell, you can set the CLASSPATH with something like (assuming files are installed in /usr/local):
  export CLASSPATH=/usr/local/antlr/lib/antlr-3.5.2-complete.jar:/usr/local/ofp/lib/OpenFortranParser-0.8.7.jar
  • Run the parser with the command
  java fortran.ofp.FrontEnd [--verbose] filename
  • The public is free to clone the most recent copy of the OFP git repository repository and experiment with the tools. To submit changes, please fork the repository, branch on your fork, and submit a pull request

src

  • Java and C source files for the project.

build

  • Build directory.

tests

  • Fortran test files for the parser.