From f75e74f67eef1f2effccb5e6668b640437c7eb61 Mon Sep 17 00:00:00 2001 From: Sean Silva Date: Tue, 4 Dec 2012 21:16:41 +0000 Subject: docs: Begin Sphinxification of docs/tutorial/ llvm-svn: 169309 --- llvm/docs/tutorial/index.html | 48 ------------------------------------------- llvm/docs/tutorial/index.rst | 36 ++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 48 deletions(-) delete mode 100644 llvm/docs/tutorial/index.html create mode 100644 llvm/docs/tutorial/index.rst (limited to 'llvm/docs/tutorial') diff --git a/llvm/docs/tutorial/index.html b/llvm/docs/tutorial/index.html deleted file mode 100644 index 2c11a9a..0000000 --- a/llvm/docs/tutorial/index.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - LLVM Tutorial: Table of Contents - - - - - - - - -

LLVM Tutorial: Table of Contents

- -
    -
  1. Kaleidoscope: Implementing a Language with LLVM -
      -
    1. Tutorial Introduction and the Lexer
    2. -
    3. Implementing a Parser and AST
    4. -
    5. Implementing Code Generation to LLVM IR
    6. -
    7. Adding JIT and Optimizer Support
    8. -
    9. Extending the language: control flow
    10. -
    11. Extending the language: user-defined operators
    12. -
    13. Extending the language: mutable variables / SSA construction
    14. -
    15. Conclusion and other useful LLVM tidbits
    16. -
  2. -
  3. Kaleidoscope: Implementing a Language with LLVM in Objective Caml -
      -
    1. Tutorial Introduction and the Lexer
    2. -
    3. Implementing a Parser and AST
    4. -
    5. Implementing Code Generation to LLVM IR
    6. -
    7. Adding JIT and Optimizer Support
    8. -
    9. Extending the language: control flow
    10. -
    11. Extending the language: user-defined operators
    12. -
    13. Extending the language: mutable variables / SSA construction
    14. -
    15. Conclusion and other useful LLVM tidbits
    16. -
  4. -
  5. Advanced Topics -
      -
    1. Writing - an Optimization for LLVM
    2. -
  6. -
- - - diff --git a/llvm/docs/tutorial/index.rst b/llvm/docs/tutorial/index.rst new file mode 100644 index 0000000..2da4212 --- /dev/null +++ b/llvm/docs/tutorial/index.rst @@ -0,0 +1,36 @@ +LLVM Tutorial: Table of Contents +================================ + +.. TODO:: Use Sphinx toctree once all of these pages are converted. + +#. Kaleidoscope: Implementing a Language with LLVM + + #. `Tutorial Introduction and the Lexer `__ + #. `Implementing a Parser and AST `__ + #. `Implementing Code Generation to LLVM IR `__ + #. `Adding JIT and Optimizer Support `__ + #. `Extending the language: control flow `__ + #. `Extending the language: user-defined operators `__ + #. `Extending the language: mutable variables / SSA + construction `__ + #. `Conclusion and other useful LLVM tidbits `__ + +#. Kaleidoscope: Implementing a Language with LLVM in Objective Caml + + #. `Tutorial Introduction and the Lexer `__ + #. `Implementing a Parser and AST `__ + #. `Implementing Code Generation to LLVM IR `__ + #. `Adding JIT and Optimizer Support `__ + #. `Extending the language: control flow `__ + #. `Extending the language: user-defined + operators `__ + #. `Extending the language: mutable variables / SSA + construction `__ + #. `Conclusion and other useful LLVM tidbits `__ + +#. Advanced Topics + + #. `Writing an Optimization for + LLVM `_ + + -- cgit v1.1