diff --git a/docs/tutorial/index.html b/docs/tutorial/index.html index 8fc546727b0..43c5dab5de2 100644 --- a/docs/tutorial/index.html +++ b/docs/tutorial/index.html @@ -15,17 +15,26 @@
LLVM Tutorial: Table of Contents
    -
  1. An Introduction to LLVM: Basic Concepts and Design
  2. -
  3. Basic Tutorials +
  4. An Introduction to LLVM: Basic Concepts and Design
  5. +
  6. Simple JIT Tutorials
      -
    1. Tutorial 1: A First Function
    2. -
    3. Tutorial 2: A More Complicated Function
    4. -
    5. Tutorial 3: Reading and Writing Bitcode
    6. -
    7. Tutorial 4: Running Optimizations
    8. -
    9. Tutorial 5: Invoking the JIT
    10. +
    11. A First Function
    12. +
    13. A More Complicated Function
    14. +
    15. Reading and Writing Bitcode
    16. +
    17. Running Optimizations
    18. +
    19. Invoking the JIT
  7. -
  8. Example: Using LLVM to execute a simple language in JIT
  9. +
  10. Implementing a simple language with LLVM +
      +
    1. The basic language, with its lexer
    2. +
    3. Implementing a Parser and AST
    4. +
    5. Implementing code generation to LLVM IR
    6. +
    7. Extending the language: if/then/else
    8. +
    9. Extending the language: operator overloading
    10. +
    11. Adding JIT codegen support
    12. +
    13. Thoughts and ideas for extensions
    14. +