hanchenye-llvm-project/llvm/docs
Peter Collingbourne 4e3605a2af docs: Document how bitsets may be used to encode type information.
llvm-svn: 259619
2016-02-03 02:01:08 +00:00
..
CommandGuide [Profiling] Add a -sparse mode to llvm-profdata merge 2016-01-29 22:54:45 +00:00
Frontend
HistoricalNotes
TableGen
_ocamldoc
_static
_templates
_themes/llvm-theme
tutorial LLVM tutorial: fix broken links/anchors 2015-12-15 20:50:29 +00:00
AMDGPUUsage.rst
ARM-BE-bitcastfail.png
ARM-BE-bitcastsuccess.png
ARM-BE-ld1.png
ARM-BE-ldr.png
AliasAnalysis.rst fix typo 2016-01-13 16:46:41 +00:00
Atomics.rst
BigEndianNEON.rst
BitCodeFormat.rst [CXX TLS calling convention] Add CXX TLS calling convention. 2015-12-04 17:40:13 +00:00
BitSets.rst docs: Document how bitsets may be used to encode type information. 2016-02-03 02:01:08 +00:00
BlockFrequencyTerminology.rst
BranchWeightMetadata.rst
Bugpoint.rst
CMake.rst docs: address post-commit review 2016-01-19 05:43:21 +00:00
CMakeLists.txt
CodeGenerator.rst Fixing a typo in docs/CodeGenerator.rst 2015-11-13 15:14:04 +00:00
CodingStandards.rst
CommandLine.rst
CompileCudaWithLLVM.rst [doc] improve the doc for CUDA 2016-01-30 23:48:47 +00:00
CompilerWriterInfo.rst ARM/AArch64: update reference documentation. 2015-12-04 16:10:48 +00:00
CoverageMappingFormat.rst [Coverage] Fix more bugs in covmap V1 documentation 2016-01-27 03:13:09 +00:00
DebuggingJITedCode.rst
DeveloperPolicy.rst Fix a spurious if. 2015-12-11 00:51:59 +00:00
Dummy.html
ExceptionHandling.rst [WinEH] Disallow cyclic unwinds 2016-01-10 04:31:05 +00:00
ExtendedIntegerResults.txt
ExtendingLLVM.rst
Extensions.rst
FAQ.rst
FaultMaps.rst
GarbageCollection.rst
GetElementPtr.rst
GettingStarted.rst [docs] Remove references to autotools build. 2016-01-30 01:10:15 +00:00
GettingStartedVS.rst Update the VS getting started docs to reflect the current state of support 2016-01-11 20:51:57 +00:00
GoldPlugin.rst [docs] Remove references to autotools build. 2016-01-30 01:10:15 +00:00
HowToAddABuilder.rst
HowToBuildOnARM.rst [Docs] Change ARM build info to CMake 2015-11-06 18:39:34 +00:00
HowToCrossCompileLLVM.rst
HowToReleaseLLVM.rst [docs] Fix a typo 2016-01-26 23:26:25 +00:00
HowToSetUpLLVMStyleRTTI.rst
HowToSubmitABug.rst
HowToUseAttributes.rst
HowToUseInstrMappings.rst
InAlloca.rst
LLVMBuild.rst Fixing the documentation builds 2016-01-26 22:53:12 +00:00
LLVMBuild.txt
LangRef.rst Add a "gc-transition" operand bundle 2016-01-20 19:50:25 +00:00
Lexicon.rst
LibFuzzer.rst [libFuzzer] allow passing 1 or more files as individual inputs 2016-02-02 03:03:47 +00:00
LinkTimeOptimization.rst
MCJIT-creation.png
MCJIT-dyld-load.png
MCJIT-engine-builder.png
MCJIT-load-object.png
MCJIT-load.png
MCJIT-resolve-relocations.png
MCJITDesignAndImplementation.rst Fix several accidental DOS line endings in source files 2016-01-03 17:22:03 +00:00
MIRLangRef.rst
MarkedUpDisassembly.rst
MergeFunctions.rst
NVPTXUsage.rst
Packaging.rst
Passes.rst
Phabricator.rst [docs] Improve the documentation on committing code reviewed on 2016-01-14 13:39:29 +00:00
ProgrammersManual.rst The --debug-only option now takes a comma separated list of debug types. 2016-01-12 10:23:13 +00:00
Projects.rst
README.txt
ReleaseNotes.rst AMDGPU: Note mesa version in release notes 2016-01-26 04:29:15 +00:00
ReleaseProcess.rst [OPENMP] Make -fopenmp to turn on OpenMP support by default. 2015-12-10 05:45:58 +00:00
SegmentedStacks.rst
SourceLevelDebugging.rst docs: Document function-attached metadata and IR changes from r252219. 2015-11-06 02:41:02 +00:00
SphinxQuickstartTemplate.rst
StackMaps.rst
Statepoints.rst Add a "gc-transition" operand bundle 2016-01-20 19:50:25 +00:00
SystemLibrary.rst
TableGenFundamentals.rst
TestSuiteMakefileGuide.rst
TestingGuide.rst Fixing the documentation builds 2016-01-26 22:53:12 +00:00
Vectorizers.rst
WritingAnLLVMBackend.rst
WritingAnLLVMPass.rst Fix another reference to in-source builds 2015-10-23 17:42:51 +00:00
YamlIO.rst
conf.py Update version to 3.9. 2016-01-13 17:32:32 +00:00
doxygen.cfg.in Doxygen: Use mathjax to create formulas. 2015-11-25 00:50:47 +00:00
doxygen.intro
gcc-loops.png
index.rst [docs] Remove references to autotools build. 2016-01-30 01:10:15 +00:00
linpack-pc.png
make.bat
re_format.7
yaml2obj.rst

README.txt

LLVM Documentation
==================

LLVM's documentation is written in reStructuredText, a lightweight
plaintext markup language (file extension `.rst`). While the
reStructuredText documentation should be quite readable in source form, it
is mostly meant to be processed by the Sphinx documentation generation
system to create HTML pages which are hosted on <http://llvm.org/docs/> and
updated after every commit. Manpage output is also supported, see below.

If you instead would like to generate and view the HTML locally, install
Sphinx <http://sphinx-doc.org/> and then do:

    cd docs/
    make -f Makefile.sphinx
    $BROWSER _build/html/index.html

The mapping between reStructuredText files and generated documentation is
`docs/Foo.rst` <-> `_build/html/Foo.html` <-> `http://llvm.org/docs/Foo.html`.

If you are interested in writing new documentation, you will want to read
`SphinxQuickstartTemplate.rst` which will get you writing documentation
very fast and includes examples of the most important reStructuredText
markup syntax.

Manpage Output
===============

Building the manpages is similar to building the HTML documentation. The
primary difference is to use the `man` makefile target, instead of the
default (which is `html`). Sphinx then produces the man pages in the
directory `_build/man/`.

    cd docs/
    make -f Makefile.sphinx man
    man -l _build/man/FileCheck.1

The correspondence between .rst files and man pages is
`docs/CommandGuide/Foo.rst` <-> `_build/man/Foo.1`.
These .rst files are also included during HTML generation so they are also
viewable online (as noted above) at e.g.
`http://llvm.org/docs/CommandGuide/Foo.html`.

Checking links
==============

The reachability of external links in the documentation can be checked by
running:

    cd docs/
    make -f Makefile.sphinx linkcheck