mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 05:00:26 +00:00
5d0d67f3d1
I actually made a think-o when writing this FIXME since I wrote LangRef but it should actually have said WritingAnLLVMBackend. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171293 91177308-0d34-0410-b5e6-96231b3b80d8
110 lines
2.6 KiB
ReStructuredText
110 lines
2.6 KiB
ReStructuredText
.. _subsystems:
|
|
|
|
Subsystem Documentation
|
|
=======================
|
|
|
|
.. toctree::
|
|
:hidden:
|
|
|
|
AliasAnalysis
|
|
BitCodeFormat
|
|
BranchWeightMetadata
|
|
Bugpoint
|
|
CodeGenerator
|
|
ExceptionHandling
|
|
LinkTimeOptimization
|
|
SegmentedStacks
|
|
TableGenFundamentals
|
|
DebuggingJITedCode
|
|
GoldPlugin
|
|
MarkedUpDisassembly
|
|
SystemLibrary
|
|
SourceLevelDebugging
|
|
Vectorizers
|
|
WritingAnLLVMBackend
|
|
GarbageCollection
|
|
WritingAnLLVMPass
|
|
|
|
* :doc:`WritingAnLLVMPass`
|
|
|
|
Information on how to write LLVM transformations and analyses.
|
|
|
|
* :doc:`WritingAnLLVMBackend`
|
|
|
|
Information on how to write LLVM backends for machine targets.
|
|
|
|
* :ref:`code_generator`
|
|
|
|
The design and implementation of the LLVM code generator. Useful if you are
|
|
working on retargetting LLVM to a new architecture, designing a new codegen
|
|
pass, or enhancing existing components.
|
|
|
|
* :ref:`tablegen`
|
|
|
|
Describes the TableGen tool, which is used heavily by the LLVM code
|
|
generator.
|
|
|
|
* :ref:`alias_analysis`
|
|
|
|
Information on how to write a new alias analysis implementation or how to
|
|
use existing analyses.
|
|
|
|
* :doc:`GarbageCollection`
|
|
|
|
The interfaces source-language compilers should use for compiling GC'd
|
|
programs.
|
|
|
|
* :doc:`Source Level Debugging with LLVM <SourceLevelDebugging>`
|
|
|
|
This document describes the design and philosophy behind the LLVM
|
|
source-level debugger.
|
|
|
|
* :doc:`Vectorizers`
|
|
|
|
This document describes the current status of vectorization in LLVM.
|
|
|
|
* :ref:`exception_handling`
|
|
|
|
This document describes the design and implementation of exception handling
|
|
in LLVM.
|
|
|
|
* :ref:`bugpoint`
|
|
|
|
Automatic bug finder and test-case reducer description and usage
|
|
information.
|
|
|
|
* :ref:`bitcode_format`
|
|
|
|
This describes the file format and encoding used for LLVM "bc" files.
|
|
|
|
* :doc:`System Library <SystemLibrary>`
|
|
|
|
This document describes the LLVM System Library (``lib/System``) and
|
|
how to keep LLVM source code portable
|
|
|
|
* :ref:`lto`
|
|
|
|
This document describes the interface between LLVM intermodular optimizer
|
|
and the linker and its design
|
|
|
|
* :ref:`gold-plugin`
|
|
|
|
How to build your programs with link-time optimization on Linux.
|
|
|
|
* :ref:`debugging-jited-code`
|
|
|
|
How to debug JITed code with GDB.
|
|
|
|
* :ref:`branch_weight`
|
|
|
|
Provides information about Branch Prediction Information.
|
|
|
|
* :ref:`segmented_stacks`
|
|
|
|
This document describes segmented stacks and how they are used in LLVM.
|
|
|
|
* :ref:`marked_up_disassembly`
|
|
|
|
This document describes the optional rich disassembly output syntax.
|
|
|