Difference between revisions of "NaplesPU LLVM Documentation"
Line 1: | Line 1: | ||
[[Category:Backend]] | [[Category:Backend]] | ||
− | |||
== Required reading == | == Required reading == | ||
− | |||
Before working on LLVM, you should be familiar with some things. In particular: | Before working on LLVM, you should be familiar with some things. In particular: | ||
# [https://en.wikipedia.org/wiki/Basic_block '''Basic Blocks'''] | # [https://en.wikipedia.org/wiki/Basic_block '''Basic Blocks'''] |
Revision as of 18:03, 28 May 2018
Required reading
Before working on LLVM, you should be familiar with some things. In particular:
- Basic Blocks
- SSA (Static Single Assignment) form
- AST (Abstract Syntax tree)
- DAG Direct Acyclic Graph.
In addition to general aspects about compilers, it is recommended to read about:
See the following textbook for other informations Getting Started with LLVM Core Libraries and LLVM Cookbook.
See also this article to have an overview of the main CodeGenerator phases.
The main task of the backend is to generate nu+ assembly code from the LLVM IR obtained by the Clang frontend. However the LLVM framework provides also base classes that can be used to create an assembler and a disassembler.
The nu+ backend is contained in the NuPlus folder under "compiler/lib/Target" directory. It contains several files, each implementing a specific class of the LLVM Framework. There are both tablegen and 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.
The files implemented in the nu+ backend are:
- NuPlus.td, used to describe a target and to instruct LLVM about the names of the classes used for each of the framework component.
- NuPlusRegisterInfo.td, contains the definition of the nu+ register file.
- NuPlusCallingConv.td, used to define the calling conventions to use when a function is called.
- NuPlusInstrFormats.td and NuPlusInstrInfo.td, define the instructions supported by the nu+ architecture and the pattern LLVM must use to translate the LLVM IR in nu+ asm.
C++ classes implementation
- NuPlusFrameLowering
- NuPlusInstrInfo
- NuPlusISelDAGToDAG
- NuPlusTargetLowering
- NuPlusMachineFunctionInfo
- NuPlusMCInstLower
- NuPlusRegisterInfo
- NuPlusTargetMachine
- NuPlusSubtarget
- NuPlusTargetObjectFile
in MCTargetDesc
- NuPlusAsmBackend
- NuPlusELFObjectWriter
- NuPlusMCAsmInfo
- NuPlusMCCodeEmitter
- NuPlusMCTargetDesc
- NuPlusFixupKinds
in InstPrinter
in Disassembler
in AsmParser