summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-01 17:18:11 +0000
committerChris Lattner <sabre@nondot.org>2004-06-01 17:18:11 +0000
commit10d6800742cc773bc7578fbd8b5cd516e2563d03 (patch)
tree29a814de67c84cd42619e50d21b1d49b0b68274a /docs
parent4ff620a867b7fcd13fb641c4ea872bd9be4b7b71 (diff)
downloadexternal_llvm-10d6800742cc773bc7578fbd8b5cd516e2563d03.zip
external_llvm-10d6800742cc773bc7578fbd8b5cd516e2563d03.tar.gz
external_llvm-10d6800742cc773bc7578fbd8b5cd516e2563d03.tar.bz2
Add a warning about incompleteness, fix validation errors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CodeGenerator.html19
1 files changed, 11 insertions, 8 deletions
diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html
index 4729cc0..8480d34 100644
--- a/docs/CodeGenerator.html
+++ b/docs/CodeGenerator.html
@@ -36,7 +36,7 @@
<li><a href="#targetimpls">Target description implementations</a>
<ul>
<li><a href="#x86">The X86 backend</a></li>
- </li>
+ </ul>
</li>
</ol>
@@ -45,6 +45,10 @@
<p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a></p>
</div>
+<div class="doc_warning">
+ <p>Warning: This is a work in progress.</p>
+</div>
+
<!-- *********************************************************************** -->
<div class="doc_section">
<a name="introduction">Introduction</a>
@@ -126,12 +130,11 @@ implement radically different code generators in the LLVM system that do not
make use of any of the built-in components. Doing so is not recommended at all,
but could be required for radically different targets that do not fit into the
LLVM machine description model: programmable FPGAs for example.</p>
-</p>
</div>
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="high-level-design">The high-level design of the code generator</a></li>
+ <a name="high-level-design">The high-level design of the code generator</a>
</div>
<div class="doc_text">
@@ -195,7 +198,7 @@ targets with unusual requirements can be supported with custom passes as needed.
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="tablegen">Using TableGen for target description</a></li>
+ <a name="tablegen">Using TableGen for target description</a>
</div>
<div class="doc_text">
@@ -273,7 +276,7 @@ target, and whether the target is little- or big-endian.</p>
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="mregisterinfo">The <tt>MRegisterInfo</tt> class</a></li>
+ <a name="mregisterinfo">The <tt>MRegisterInfo</tt> class</a>
</div>
<div class="doc_text">
@@ -310,17 +313,17 @@ href="TableGenFundamentals.html">TableGen</a> description of the register file.
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="targetinstrinfo">The <tt>TargetInstrInfo</tt> class</a></li>
+ <a name="targetinstrinfo">The <tt>TargetInstrInfo</tt> class</a>
</div>
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="targetframeinfo">The <tt>TargetFrameInfo</tt> class</a></li>
+ <a name="targetframeinfo">The <tt>TargetFrameInfo</tt> class</a>
</div>
<!-- ======================================================================= -->
<div class="doc_subsection">
- <a name="targetjitinfo">The <tt>TargetJITInfo</tt> class</a></li>
+ <a name="targetjitinfo">The <tt>TargetJITInfo</tt> class</a>
</div>
<!-- *********************************************************************** -->