Home | History | Annotate | only in /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen
Up to higher level directory
NameDateSize
CMakeLists.txt06-Dec-2016166
Makefile06-Dec-2016398
README.txt06-Dec-2016788
toy.cpp06-Dec-201639.3K

README.txt

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