blob: c4eec59417e88ed2d7dab7aa7ec43999cf011d5e [file] [log] [blame]
Daniel Dunbar21e993c2012-04-19 16:31:37 +00001.. _programming:
2
3Programming Documentation
4=========================
5
Bill Wendlingeef31a52012-06-20 11:56:24 +00006.. toctree::
7 :hidden:
8
Bill Wendlingbef3ef92012-10-07 04:56:08 +00009 Atomics
Bill Wendlingeef31a52012-06-20 11:56:24 +000010 CodingStandards
Bill Wendling0bd3dee2012-08-08 08:21:24 +000011 CommandLine
Bill Wendling53960a62012-10-07 04:34:10 +000012 CompilerWriterInfo
Bill Wendlingbef3ef92012-10-07 04:56:08 +000013 ExtendingLLVM
Sean Silva36be1ae2012-10-05 03:32:01 +000014 HowToSetUpLLVMStyleRTTI
Bill Wendlingeef31a52012-06-20 11:56:24 +000015
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000016* `LLVM Language Reference Manual <LangRef.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000017
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000018 Defines the LLVM intermediate representation and the assembly form of the
19 different nodes.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000020
Sean Silva258aeb52012-09-21 02:46:32 +000021* :ref:`atomics`
22
23 Information about LLVM's concurrency model.
24
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000025* `The LLVM Programmers Manual <ProgrammersManual.html>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000026
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000027 Introduction to the general layout of the LLVM sourcebase, important classes
28 and APIs, and some tips & tricks.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000029
Bill Wendling0bd3dee2012-08-08 08:21:24 +000030* :ref:`commandline`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000031
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000032 Provides information on using the command line parsing library.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000033
Bill Wendlingeef31a52012-06-20 11:56:24 +000034* :ref:`coding_standards`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000035
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000036 Details the LLVM coding standards and provides useful information on writing
37 efficient C++ code.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000038
Sean Silva36be1ae2012-10-05 03:32:01 +000039* :doc:`HowToSetUpLLVMStyleRTTI`
40
41 How to make ``isa<>``, ``dyn_cast<>``, etc. available for clients of your
42 class hierarchy.
43
Bill Wendlingbef3ef92012-10-07 04:56:08 +000044* :ref:`extending_llvm`
Daniel Dunbar21e993c2012-04-19 16:31:37 +000045
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000046 Look here to see how to add instructions and intrinsics to LLVM.
Daniel Dunbar21e993c2012-04-19 16:31:37 +000047
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000048* `Doxygen generated documentation <http://llvm.org/doxygen/>`_
Daniel Dunbar21e993c2012-04-19 16:31:37 +000049
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000050 (`classes <http://llvm.org/doxygen/inherits.html>`_)
51 (`tarball <http://llvm.org/doxygen/doxygen.tar.gz>`_)
Daniel Dunbar21e993c2012-04-19 16:31:37 +000052
Bill Wendlingaf5e2e72012-06-20 11:55:22 +000053* `ViewVC Repository Browser <http://llvm.org/viewvc/>`_
Bill Wendling53960a62012-10-07 04:34:10 +000054
55* :ref:`compiler_writer_info`
56
57 A list of helpful links for compiler writers.