jeaye / pldi-tutorials-2023

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview

LLVM and Clang are one of the foundational instruments for building research and production programming languages. The libraries are efficient and composable providing many opportunities to build research language infrastructure. The tutorial is organized into three major parts:

  • Introduction, design principles, library layering (~45m) Provides an overview of LLVM and Clang.

  • Just-in-Time Infrastructure (~60m) Introduces new capabilities of ORCv2 such as speculative JITing and re-optimization using a simple language called Kaleidoscope.

  • Incremental compilation apt for dynamic programming languages (~45m) Outlines how to use Clang as a library to enable build basic C/C++/Python on-demand by building a C++ interpreter which connects to the Python interpreter. Video available here.

Upon completion of the tutorials researchers learn how to set up various LLVM components and use them to quickly bootstrap their research projects.

The tutorial will be given by Sunho Kim (De Anza College, Cupertino); Lang Hames (Apple); Vassil Vassilev (Princeton/CERN).

Structure

The tutorials are separated in 3 parts available under examples folder. Each part is prefixed with p1, p2 or p3 and each tutorial respectively ex1, ex2 and so on.

Build instructions

git clone https://github.com/compiler-research/pldi-tutorials-2023.git
cd pldi-tutorials-2023 && mkdir build && cd build
cmake -DLLVM_DIR=/path/to/llvm/ ../
make

About

License:MIT License


Languages

Language:CMake 100.0%