Skip to content

pal-stdr/toy-mlir-out-of-tree-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

24 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

MLIR Toy Tutorial as an out-of-tree project

version: LLVM 18.0.0
commit: ecf881838045985f381003cc27569c73a207d0cc
Date: Tue Jan 2 12:06:27 2024 +0100

TUTORIAL INDEX (git branch wise)

  • ch-0-0-build-llvm: gives the overview of this tutorial and how to build llvm-project from source.
  • ch-0-1-prep-mlir-template: How to collect and setup the MLIR out-of-tree template.
  • ch-0-2-prep-toy-scaffold: How to setup just Toy compiler project scaffold. [Note: Without using/collecting the lexer, parser codes.]
  • ch-1-toy-parser: How to collect & setup lexer, parser from llvm-18-src-build (i.e. llvm-project) for Toy language.
  • ch-2-0-init-setup-toy-dialect: Setting up the Dialect headers and lib. No important changes in tools/toy-compiler/toy-compiler.cpp
  • More coming....

====== CHAPTER 2-0 Starts ======

Objective

  • How to initialize the setup of TOY Dialect from llvm-18-src-build/mlir/examples/toy (i.e. llvm-project) for Toy language.
  • Define a ToyDialectBase from where we will start to extend the ToyOps
  • Section 1 discusses, how to play with the code assets for Dialects at tools/toy-compiler/include/ dir; including CMake configs
  • Section 2 discusses, how to play with the code assets for Dialects at tools/toy-compiler/lib/ dir; including CMake configs
  • Section 3 discusses, how to update the main CMake config (i.e. tools/toy-compiler/CMakeLists.txt) for the things done in Section 1 & Section 2.
  • Section 4 discusses, how the Dialect files (i.e. .td) are managed by MLIR infrastructure.
  • Section 5 shows, the updated scaffold of tools/toy-compiler dir.
  • (Optional) Section 6 includes the scaffold of build/tools/toy-compiler/include dir to show where can be the autogenerated headers (i.e. ToyDialectBase.h.inc & ToyDialectBase.cpp.inc) are found.

Output

  • You will not see any visible change of toy-compiler bin output πŸ™‚. Because this part only deals with concepts + registering the dialect.

Git Branch name

  • ch-2-0-init-setup-toy-dialect

How To?

Newly added files and dirs

# Newly added Docs Dir
Docs/MLIR-KNOWLEDGE-BASE/
Docs/TOY-TUTO/2.SETUP-TOY-DIALECT-and-EMIT-BASIC-MLIR


# Newly added Docs
Docs/MLIR-KNOWLEDGE-BASE/1.WHAT-WHY-OF-MLIR.md
Docs/MLIR-KNOWLEDGE-BASE/2.WHAT-IS-DIALECT.md
Docs/TOY-TUTO/2.SETUP-TOY-DIALECT-and-EMIT-BASIC-MLIR/2.0.INIT-SETUP-OF-TOY-DIALECT.md

# Modified docs
Docs/MISCELLANEOUS/CMAKE-HOW-TO/CMAKE-KNOWLEDGE.md


# Newly added dirs for toy-compiler
cmake/
tools/toy-compiler/include/Dialect/
tools/toy-compiler/include/Dialect/ToyDialect/
tools/toy-compiler/lib/Dialect/
tools/toy-compiler/lib/Dialect/ToyDialect/



# Newly added code files
cmake/MyCustomCmakeUtils.cmake
tools/toy-compiler/include/Dialect/ToyDialect/ToyDialectBase.td
tools/toy-compiler/include/Dialect/ToyDialect/ToyDialectBase.h
tools/toy-compiler/include/Dialect/ToyDialect/CMakeLists.txt
tools/toy-compiler/include/Dialect/CMakeLists.txt
tools/toy-compiler/include/CMakeLists.txt
tools/toy-compiler/lib/Dialect/ToyDialect/ToyDialectBase.cpp
tools/toy-compiler/lib/Dialect/ToyDialect/CMakeLists.txt
tools/toy-compiler/lib/Dialect/CMakeLists.txt


# Modified
tools/toy-compiler/toy-compiler.cpp
tools/toy-compiler/CMakeLists.txt
tools/toy-compiler/lib/CMakeLists.txt
build-mlir-18.sh
README.md


# Example Toy code dir (e.g. ast.toy, codegen.toy, etc. )
# Not Used in this tuto
test/Examples/Toy/


# Src code for toy compiler
llvm-project/mlir/examples/toy/Ch2


# Compile
./build-mlir-18.sh


# Test (Just to check)
# If you want to use "installation" dir
# echo $LLVM_PROJECT_ROOT => /path/to/llvm-18-src-build
# For, generating Dialect declarations
$LLVM_PROJECT_ROOT/installation/bin/mlir-tblgen -gen-dialect-decls tools/toy-compiler/include/Dialect/ToyDialect/ToyDialectBase.td -I $LLVM_PROJECT_ROOT/mlir/include/

# For, generating Dialect definitions
$LLVM_PROJECT_ROOT/installation/bin/mlir-tblgen -gen-dialect-defs tools/toy-compiler/include/Dialect/ToyDialect/ToyDialectBase.td -I $LLVM_PROJECT_ROOT/mlir/include/

# For, generating Dialect docs
$LLVM_PROJECT_ROOT/installation/bin/mlir-tblgen -gen-dialect-doc tools/toy-compiler/include/Dialect/ToyDialect/ToyDialectBase.td -I $LLVM_PROJECT_ROOT/mlir/include/



# Toy project scaffold upto this point

β”œβ”€β”€ cmake
β”‚Β Β  └── MyCustomCmakeUtils.cmake # <== add_mlir_dialect_customized() defined here w/ tablegen commands to generate .inc type headers.
....
...
└── tools
    β”œβ”€β”€ CMakeLists.txt
    └── toy-compiler
        β”œβ”€β”€ CMakeLists.txt
        β”œβ”€β”€ include
        β”‚Β Β  β”œβ”€β”€ CMakeLists.txt # <== Newly added
        β”‚Β Β  β”œβ”€β”€ Dialect # <== Newly added
        β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CMakeLists.txt
        β”‚Β Β  β”‚Β Β  └── ToyDialect
        β”‚Β Β  β”‚Β Β      β”œβ”€β”€ CMakeLists.txt # <== Autogeneration process of ".inc" type headers are defined here.
        β”‚Β Β  β”‚Β Β      β”œβ”€β”€ ToyDialectBase.h
        β”‚Β Β  β”‚Β Β      └── ToyDialectBase.td
        β”‚Β Β  └── toy-analysis-parser
        β”‚Β Β      β”œβ”€β”€ AST.h
        β”‚Β Β      β”œβ”€β”€ Lexer.h
        β”‚Β Β      └── Parser.h
        β”œβ”€β”€ lib
        β”‚Β Β  β”œβ”€β”€ CMakeLists.txt
        β”‚Β Β  β”œβ”€β”€ Dialect # <== Newly added
        β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CMakeLists.txt
        β”‚Β Β  β”‚Β Β  └── ToyDialect
        β”‚Β Β  β”‚Β Β      β”œβ”€β”€ CMakeLists.txt # <== ToyDialectBase.cpp is calling the alias "ToyCh2OpsIncGen" as it's dependency to execute all tablegen commands first; before Dialect.cpp is called by final compilation chain.
        β”‚Β Β  β”‚Β Β      └── ToyDialectBase.cpp # <== Initialize the ToyDialect
        β”‚Β Β  └── toy-parser
        β”‚Β Β      β”œβ”€β”€ AST.cpp
        β”‚Β Β      └── CMakeLists.txt
        └── toy-compiler.cpp

Key things

  • What, why, how of Dialect
  • How to define & integrated a Dialect with this project

====== CHAPTER 2-0 Ends ======

In advance, sorry for too much "bla bla bla..." in this intro README. But it is for them, who are completely newbie to this compiler/LLVM/MLIR world. And I think these prep talks are absolutely necessary to draw a 30,000 ft' bird's eye view in their mind. If you are already familiar with LLVM, or compiler world, feel free to skip all the explanations; and directly jump to the section How to Use this Tutorial.

Some thoughts from my part

  • I do not claim any ownership or authorship of this repo. All the codes are collected from Official Toy Language Tutorial Series.
  • The only motivation to do this repo, is to help those, who have no prior knowledge on MLIR or LLVM or even on compiler details.
  • Why this motivation? Because, it is highly likely that, those people will face almost the similar hurdle as me.

What you will learn here..

  • For what & why of MLIR - Docs/MLIR-KNOWLEDGE-BASE/1.WHAT-WHY-OF-MLIR.md
  • How to build LLVM for MLIR. You can use the same build for other purpose too πŸ˜‰ (e.g. using clang/clang++ as your regular compiler, instead of gcc/g++)! The version 18 is used for both LLVM & MLIR.
  • How to setup & work with MLIR out-of-tree project. What is an out-of-tree project, briefly discussed here.
  • How to play with cmake.
  • How to organize the project scaffold. Feel free to choose your own after you finish this tuto.
  • Walkthrough on Official Toy Tutorial with code.
  • Explanation of most important details.

Who are the target audience?

  • Anybody who are enthusiast on MLIR.
  • Specially who has no prior knowledge on LLVM or MLIR.
  • People from different academic background. Atleast possess bare minimum development/script writing/programming experience with c or, c++ or, python or, js, etc.
  • Have a dire hunger to know or curiosity "What really happens inside a programming language?" Actually I am from this group πŸ˜….
  • For students, who want to learn, how to make a complier with MLIR. Or, even want to build awesome Bachelor, Masters or even PhD projects.
  • Most important: It doesn't matter if you don't have a CS bachelor degree. I don't πŸ˜‰. But one day, still you can be an awesome compiler engg. πŸ˜€

How to Use this Tutorial

  • This tutorial will follow the Official Toy Language Tutorial Series from MLIR official website
  • Starting with the initial LLVM + MLIR setup, all the other chapters will be organized in git branches.
  • The project scaffolding is reorganized. But the used codes are almost same as the official tutorial.
  • Main idea is to give a birds-eye-view on, how all the chapters are progressively advanced in the form of git branches, and finally how all pieces are joined together.
  • Name of the official toy language compiler is toyc (i.e. toyc.cpp). But here it is renamed to toy-compiler (i.e. toy-compiler.cpp).
  • From LLVM + MLIR setup to project scaffolding is thoroughly discussed in this tuto.
  • But for rest, you have to rely on only reading documentations written in code files.
  • Why the rest is not thoroughly discussed? Because, it almost impossible to note everything in README.md type file. It would take ages. Moreover, if I write in details, they will be so much confusing that, might become not-understandable at all. So I really beg your pardon.
  • But still I will try to write most important points, that you need to understand.
  • ENJOY! πŸ˜ƒπŸ˜ƒπŸ˜ƒπŸ˜ƒ

How/Where to ask questions/doubts

Please use github issue thread for asking about your doubts, issues or bugs. I am still learning myself 😁. So please don't expect I can answer all the questions πŸ˜‰.

Prerequisites

1. Where to find Toy code + dev assets + binaries & How to use them

I assume, you have already build the llvm-project from source, and the renamed the src folder to llvm-18-src-build from llvm-project. The LLVM build process is described in details. If you didn't build it, I'd recommend you to build it first.

1.1. How the Toy examples are already build with llvm src

When we configured the llvm-18-src-build with -DLLVM_BUILD_EXAMPLES=ON parameter, that also builds the Toy binaries which could be found at /path/to/llvm-18-src-build/build/bin/toyc-ch1 or /path/to/llvm-18-src-build/installation/examples/.

1.2. Where to find the Toy development src code (i.e. lexer, parser, MLIRGen, .cpp, etc.)?

You can find it inside your src dir llvm-18-src-build. All the codes are organized there, into different chapters following the Official Toy Tutorial

# You will find toy dev code here
/path/to/llvm-18-src-build/mlir/examples/toy

1.3. Where to find the Toy language code (i.e. ast.toy, codegen.toy, scalar.toy, etc.)?

Here also the codes are organized there, into different chapters following the Official Toy Tutorial

# You will find toy code here
/path/to/llvm-18-src-build/mlir/test/Examples/Toy/

1.4. How to play with already build Toy code + assets + binaries that come with llvm-18-src-build

/path/to/llvm-18-src-build/build/bin/toyc-ch1 /path/to/llvm-18-src-build/mlir/test/Examples/Toy/Ch1/ast.toy -emit=ast
# Or,
/path/to/llvm-18-src-build/installation/examples/toyc-ch1 /path/to/llvm-18-src-build/mlir/test/Examples/Toy/Ch1/ast.toy -emit=ast

About

Toy lang tutorial as out of tree project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published