LLVM Tutorial: Table of Contents
- An Introduction to LLVM: Basic Concepts and Design
- Simple JIT Tutorials
- A First Function
- A More Complicated Function
- Running Optimizations
- Reading and Writing Bitcode
- Invoking the JIT
- Implementing a language with LLVM: Kaleidoscope
- The basic language, with its lexer
- Implementing a Parser and AST
- Implementing Code Generation to LLVM IR
- Adding JIT and Optimizer Support
- Extending the language: control flow
- Extending the language: user-defined operators
- Extending the language: mutable variables / SSA construction
- Thoughts and ideas for extensions
- Advanced Topics
- Writing
an Optimization for LLVM