Document the llvm.fabs intrinsic.
[oota-llvm.git] / docs / programming.rst
1 .. _programming:
2
3 Programming Documentation
4 =========================
5
6 .. toctree::
7    :hidden:
8
9    CodingStandards
10
11 * `LLVM Language Reference Manual <LangRef.html>`_
12
13   Defines the LLVM intermediate representation and the assembly form of the
14   different nodes.
15
16 * `The LLVM Programmers Manual <ProgrammersManual.html>`_
17
18   Introduction to the general layout of the LLVM sourcebase, important classes
19   and APIs, and some tips & tricks.
20
21 * `CommandLine library Reference Manual <CommandLine.html>`_
22
23   Provides information on using the command line parsing library.
24
25 * :ref:`coding_standards`
26
27   Details the LLVM coding standards and provides useful information on writing
28   efficient C++ code.
29
30 * `Extending LLVM <ExtendingLLVM.html>`_
31
32   Look here to see how to add instructions and intrinsics to LLVM.
33
34 * `Doxygen generated documentation <http://llvm.org/doxygen/>`_
35
36   (`classes <http://llvm.org/doxygen/inherits.html>`_)
37   (`tarball <http://llvm.org/doxygen/doxygen.tar.gz>`_)
38
39 * `ViewVC Repository Browser <http://llvm.org/viewvc/>`_