diff options
author | dim <dim@FreeBSD.org> | 2012-12-02 13:10:19 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-12-02 13:10:19 +0000 |
commit | 6de2c08bc400b4aca9fb46684e8bdb56eed9b09f (patch) | |
tree | 32b4679ab4b8f28e5228daafc65e9dc436935353 /docs/programming.rst | |
parent | 4dc93743c9d40c29c0a3bec2aae328cac0d289e8 (diff) | |
download | FreeBSD-src-6de2c08bc400b4aca9fb46684e8bdb56eed9b09f.zip FreeBSD-src-6de2c08bc400b4aca9fb46684e8bdb56eed9b09f.tar.gz |
Vendor import of llvm release_32 branch r168974 (effectively, 3.2 RC2):
http://llvm.org/svn/llvm-project/llvm/branches/release_32@168974
Diffstat (limited to 'docs/programming.rst')
-rw-r--r-- | docs/programming.rst | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/docs/programming.rst b/docs/programming.rst index 27e4301..c4eec59 100644 --- a/docs/programming.rst +++ b/docs/programming.rst @@ -6,14 +6,22 @@ Programming Documentation .. toctree:: :hidden: + Atomics CodingStandards CommandLine + CompilerWriterInfo + ExtendingLLVM + HowToSetUpLLVMStyleRTTI * `LLVM Language Reference Manual <LangRef.html>`_ Defines the LLVM intermediate representation and the assembly form of the different nodes. +* :ref:`atomics` + + Information about LLVM's concurrency model. + * `The LLVM Programmers Manual <ProgrammersManual.html>`_ Introduction to the general layout of the LLVM sourcebase, important classes @@ -28,7 +36,12 @@ Programming Documentation Details the LLVM coding standards and provides useful information on writing efficient C++ code. -* `Extending LLVM <ExtendingLLVM.html>`_ +* :doc:`HowToSetUpLLVMStyleRTTI` + + How to make ``isa<>``, ``dyn_cast<>``, etc. available for clients of your + class hierarchy. + +* :ref:`extending_llvm` Look here to see how to add instructions and intrinsics to LLVM. @@ -38,3 +51,7 @@ Programming Documentation (`tarball <http://llvm.org/doxygen/doxygen.tar.gz>`_) * `ViewVC Repository Browser <http://llvm.org/viewvc/>`_ + +* :ref:`compiler_writer_info` + + A list of helpful links for compiler writers. |