• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

CMakeLists.txtD22-Nov-2023166 1311

MakefileD22-Nov-2023398 1813

README.txtD22-Nov-2023788 1411

toy.cppD22-Nov-202339.3 KiB1,340863

README.txt

1//===----------------------------------------------------------------------===/
2//                 Kaleidoscope with Orc - Initial Version
3//===----------------------------------------------------------------------===//
4
5This version of Kaleidoscope with Orc demonstrates lazy code-generation.
6Unlike the first Kaleidoscope-Orc tutorial, where code-gen was performed as soon
7as modules were added to the JIT, this tutorial adds a LazyEmittingLayer to defer
8code-generation until modules are actually referenced. All IR-generation is still
9performed up-front.
10
11This directory contain a Makefile that allow the code to be built in a
12standalone manner, independent of the larger LLVM build infrastructure. To build
13the program you will need to have 'clang++' and 'llvm-config' in your path.
14