Difference between revisions of "NaplesPU LLVM Documentation"

From NaplesPU Documentation
Jump to: navigation, search
(Tablegen files)
Line 1: Line 1:
 
To fully understand some aspects of some solutions adopted in the nu+ backend, it is highly recommended to read about the general aspects of compiler structure and the LLVM architecture. In particular, a newbie must be aware of  [https://en.wikipedia.org/wiki/Basic_block '''Basic Blocks'''], [https://en.wikipedia.org/wiki/Static_single_assignment_form '''SSA''' (Static Single Assignment) form], [https://en.wikipedia.org/wiki/Abstract_syntax_tree '''AST''' (Abstract Syntax tree)] and [https://en.wikipedia.org/wiki/Directed_acyclic_graph '''DAG''' Direct Acyclic Graph]. Further informations can be retrieved from the [https://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools dragonbook].
 
To fully understand some aspects of some solutions adopted in the nu+ backend, it is highly recommended to read about the general aspects of compiler structure and the LLVM architecture. In particular, a newbie must be aware of  [https://en.wikipedia.org/wiki/Basic_block '''Basic Blocks'''], [https://en.wikipedia.org/wiki/Static_single_assignment_form '''SSA''' (Static Single Assignment) form], [https://en.wikipedia.org/wiki/Abstract_syntax_tree '''AST''' (Abstract Syntax tree)] and [https://en.wikipedia.org/wiki/Directed_acyclic_graph '''DAG''' Direct Acyclic Graph]. Further informations can be retrieved from the [https://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools dragonbook].
  
Other than the general aspects about compilers, it is recommended to read about the [http://www.aosabook.org/en/llvm.html '''LLVM architecture'''], the [http://llvm.org/docs/LangRef.html '''LLVM Intermediate Representation'''] and [http://llvm.org/docs/TableGen/index.html '''Tablegen''']. See the following textbook for other informations [http://books.tarsoit.com/Getting%20Started%20with%20LLVM%20Core%20Libraries.pdf Getting Started with LLVM  
+
Other than the general aspects about compilers, it is recommended to read about the [http://www.aosabook.org/en/llvm.html '''LLVM architecture'''], the [http://llvm.org/docs/LangRef.html '''LLVM Intermediate Representation'''] and [http://llvm.org/docs/TableGen/index.html '''Tablegen''']. See the following textbook for other informations [http://books.tarsoit.com/Getting%20Started%20with%20LLVM%20Core%20Libraries.pdf Getting Started with LLVM Core Libraries] and [https://github.com/iBreaker/book/blob/master/LLVM%20Cookbook.pdf LLVM Cookbook].
Core Libraries] and [https://github.com/iBreaker/book/blob/master/LLVM%20Cookbook.pdf LLVM Cookbook].
 
  
 
The nu+ backend is contained in the '''NuPlus''' folder under "compiler/lib/Target" directory. It contains several files each of which implements a specific class of the LLVM Framework, some of which are tablegen files while others are C++ classes.
 
The nu+ backend is contained in the '''NuPlus''' folder under "compiler/lib/Target" directory. It contains several files each of which implements a specific class of the LLVM Framework, some of which are tablegen files while others are C++ classes.

Revision as of 15:17, 27 September 2017

To fully understand some aspects of some solutions adopted in the nu+ backend, it is highly recommended to read about the general aspects of compiler structure and the LLVM architecture. In particular, a newbie must be aware of Basic Blocks, SSA (Static Single Assignment) form, AST (Abstract Syntax tree) and DAG Direct Acyclic Graph. Further informations can be retrieved from the dragonbook.

Other than the general aspects about compilers, it is recommended to read about the LLVM architecture, the LLVM Intermediate Representation and Tablegen. See the following textbook for other informations Getting Started with LLVM Core Libraries and LLVM Cookbook.

The nu+ backend is contained in the NuPlus folder under "compiler/lib/Target" directory. It contains several files each of which implements a specific class of the LLVM Framework, some of which are tablegen files while others are C++ classes.

Tablegen files

These files describe, through the Tablegen description language, the target architecture like the register file, the instruction set and the calling conventions.

C++ classes implementation