Home | History | Annotate | only in /external/llvm/docs
Up to higher level directory
NameDateSize
_static/23-Apr-2015
_templates/23-Apr-2015
_themes/23-Apr-2015
AliasAnalysis.rst23-Apr-201530.9K
ARM-BE-bitcastfail.png23-Apr-201528.7K
ARM-BE-bitcastsuccess.png23-Apr-201540.5K
ARM-BE-ld1.png23-Apr-201522K
ARM-BE-ldr.png23-Apr-201516.1K
Atomics.rst23-Apr-201519.2K
BigEndianNEON.rst23-Apr-201512.2K
BitCodeFormat.rst23-Apr-201536.8K
BlockFrequencyTerminology.rst23-Apr-20154.6K
BranchWeightMetadata.rst23-Apr-20152.9K
Bugpoint.rst23-Apr-201510.4K
CMake.rst23-Apr-201518.2K
CMakeLists.txt23-Apr-20153.5K
CodeGenerator.rst23-Apr-2015105.7K
CodingStandards.rst23-Apr-201561K
CommandGuide/23-Apr-2015
CommandLine.rst23-Apr-201567.4K
CompilerWriterInfo.rst23-Apr-20156.3K
conf.py23-Apr-20158.2K
DebuggingJITedCode.rst23-Apr-20154.9K
DeveloperPolicy.rst23-Apr-201525.9K
doxygen.cfg.in23-Apr-201567.1K
doxygen.css23-Apr-20159K
doxygen.footer23-Apr-2015378
doxygen.header23-Apr-2015471
doxygen.intro23-Apr-2015787
Dummy.html23-Apr-20150
ExceptionHandling.rst23-Apr-201518.2K
ExtendedIntegerResults.txt23-Apr-20154.9K
ExtendingLLVM.rst23-Apr-201511.5K
Extensions.rst23-Apr-20155K
FAQ.rst23-Apr-201518.2K
GarbageCollection.rst23-Apr-201539.2K
gcc-loops.png23-Apr-201521K
GetElementPtr.rst23-Apr-201521.9K
GettingStarted.rst23-Apr-201548.3K
GettingStartedVS.rst23-Apr-20158.2K
GoldPlugin.rst23-Apr-20155.3K
HistoricalNotes/23-Apr-2015
HowToAddABuilder.rst23-Apr-20153.6K
HowToBuildOnARM.rst23-Apr-20152.9K
HowToCrossCompileLLVM.rst23-Apr-20156.1K
HowToReleaseLLVM.rst23-Apr-201518.4K
HowToSetUpLLVMStyleRTTI.rst23-Apr-201512.9K
HowToSubmitABug.rst23-Apr-20158.4K
HowToUseAttributes.rst23-Apr-20153.5K
HowToUseInstrMappings.rst23-Apr-20157.6K
InAlloca.rst23-Apr-20156.3K
index.rst23-Apr-201512.2K
LangRef.rst23-Apr-2015314.1K
Lexicon.rst23-Apr-20155.2K
LinkTimeOptimization.rst23-Apr-201511K
linpack-pc.png23-Apr-201513.3K
LLVMBuild.rst23-Apr-201512.3K
LLVMBuild.txt23-Apr-2015660
make.bat23-Apr-20155K
Makefile23-Apr-20154.3K
Makefile.sphinx23-Apr-20155.4K
MakefileGuide.rst23-Apr-201533.1K
MarkedUpDisassembly.rst23-Apr-20153.3K
MCJIT-creation.png23-Apr-201525.8K
MCJIT-dyld-load.png23-Apr-201538K
MCJIT-engine-builder.png23-Apr-201518.3K
MCJIT-load-object.png23-Apr-201574.7K
MCJIT-load.png23-Apr-201526.7K
MCJIT-resolve-relocations.png23-Apr-201556.3K
MCJITDesignAndImplementation.rst23-Apr-20158.6K
NVPTXUsage.rst23-Apr-201529.4K
Packaging.rst23-Apr-20152.6K
Passes.rst23-Apr-201547.6K
Phabricator.rst23-Apr-20155K
ProgrammersManual.rst23-Apr-2015127K
Projects.rst23-Apr-20159.4K
re_format.723-Apr-201518.4K
README.txt23-Apr-20151.8K
ReleaseNotes.rst23-Apr-20155.7K
ReleaseProcess.rst23-Apr-20157.3K
SegmentedStacks.rst23-Apr-20153.1K
SourceLevelDebugging.rst23-Apr-201583.5K
SphinxQuickstartTemplate.rst23-Apr-20155K
StackMaps.rst23-Apr-201519.9K
SystemLibrary.rst23-Apr-201511.5K
TableGen/23-Apr-2015
TableGenFundamentals.rst23-Apr-2015243
TestingGuide.rst23-Apr-201519K
TestSuiteMakefileGuide.rst23-Apr-201511.1K
tutorial/23-Apr-2015
Vectorizers.rst23-Apr-201512.7K
WritingAnLLVMBackend.rst23-Apr-201580.4K
WritingAnLLVMPass.rst23-Apr-201559K
yaml2obj.rst23-Apr-20159.8K
YamlIO.rst23-Apr-201529.9K

README.txt

      1 LLVM Documentation
      2 ==================
      3 
      4 LLVM's documentation is written in reStructuredText, a lightweight
      5 plaintext markup language (file extension `.rst`). While the
      6 reStructuredText documentation should be quite readable in source form, it
      7 is mostly meant to be processed by the Sphinx documentation generation
      8 system to create HTML pages which are hosted on <http://llvm.org/docs/> and
      9 updated after every commit. Manpage output is also supported, see below.
     10 
     11 If you instead would like to generate and view the HTML locally, install
     12 Sphinx <http://sphinx-doc.org/> and then do:
     13 
     14     cd docs/
     15     make -f Makefile.sphinx
     16     $BROWSER _build/html/index.html
     17 
     18 The mapping between reStructuredText files and generated documentation is
     19 `docs/Foo.rst` <-> `_build/html/Foo.html` <-> `http://llvm.org/docs/Foo.html`.
     20 
     21 If you are interested in writing new documentation, you will want to read
     22 `SphinxQuickstartTemplate.rst` which will get you writing documentation
     23 very fast and includes examples of the most important reStructuredText
     24 markup syntax.
     25 
     26 Manpage Output
     27 ===============
     28 
     29 Building the manpages is similar to building the HTML documentation. The
     30 primary difference is to use the `man` makefile target, instead of the
     31 default (which is `html`). Sphinx then produces the man pages in the
     32 directory `_build/man/`.
     33 
     34     cd docs/
     35     make -f Makefile.sphinx man
     36     man -l _build/man/FileCheck.1
     37 
     38 The correspondence between .rst files and man pages is
     39 `docs/CommandGuide/Foo.rst` <-> `_build/man/Foo.1`.
     40 These .rst files are also included during HTML generation so they are also
     41 viewable online (as noted above) at e.g.
     42 `http://llvm.org/docs/CommandGuide/Foo.html`.
     43 
     44 Checking links
     45 ==============
     46 
     47 The reachibility of external links in the documentation can be checked by
     48 running:
     49 
     50     cd docs/
     51     make -f Makefile.sphinx linkcheck
     52