[PATCH] D101306: [docs]updated the llvm/example revision
PoojaYadav via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 26 09:49:31 PDT 2021
pooja2299 created this revision.
pooja2299 added a reviewer: xgupta.
pooja2299 requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D101306
Files:
llvm/docs/GettingStarted.rst
Index: llvm/docs/GettingStarted.rst
===================================================================
--- llvm/docs/GettingStarted.rst
+++ llvm/docs/GettingStarted.rst
@@ -819,15 +819,23 @@
- Some simple examples showing how to use the LLVM IR, JIT, LLJIT, ORCv2,
ParallelJIT, IR Transforms, Kaleidoscope languages, and SpeculativeJIT.
-- Also shows how to use some of the LLVM APIs and how LLVM works, in
- ModuleMaker section.
+
+- Kaleidoscope Tutorial: Kaleidoscope language tutorial run through the
+ implementation of a nice little compiler for a non-trivial language
+ including a hand-written lexer, parser, AST, as well as code generation
+ support using LLVM- both static and JIT!
+ `Kaleidoscope Tutorial for complete beginner
+ <https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/index.html>`_.
+
+- BuildingAJIT: Examples of the `BuildingAJIT tutorial
+ <https://llvm.org/docs/tutorial/BuildingAJIT1.html>`_ that shows how LLVM’s
+ ORC JIT APIs interact with other parts of LLVM. It also, teaches how to
+ recombine them to build a custom JIT that is suited to your use-case.
+
- Demonstration of compiling BrainF language to LLVM assembly.
+
- ExceptionDemo: Demo program showing implementation of LLVM exceptions and
shows several test cases including the handling of foreign exceptions.
-- Kaleidoscope is a procedural language that allows you to define functions,
- use conditionals, math, etc with simple syntax.
- `Kaleidoscope Tutorial for complete beginner
- <https://llvm.org/docs/tutorial/MyFirstLanguageFrontend/index.html>`_.
``llvm/include``
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D101306.340570.patch
Type: text/x-patch
Size: 1620 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210426/bd7b78f9/attachment.bin>
More information about the llvm-commits
mailing list