[llvm-commits] CVS: llvm-www/Documentation.html

Chris Lattner lattner at cs.uiuc.edu
Mon Aug 2 14:42:23 PDT 2004



Changes in directory llvm-www:

Documentation.html updated: 1.14 -> 1.15

---
Log message:

This file is obsolete.  Instead we just point into docs/


---
Diffs of the changes:  (+3 -168)

Index: llvm-www/Documentation.html
diff -u llvm-www/Documentation.html:1.14 llvm-www/Documentation.html:1.15
--- llvm-www/Documentation.html:1.14	Mon Aug  2 16:18:00 2004
+++ llvm-www/Documentation.html	Mon Aug  2 16:42:12 2004
@@ -1,172 +1,7 @@
 <!--#include virtual="header.incl" -->
-<div class="doc_section">LLVM Documentation</div>
+<div class="doc_section">Obsolete link</div>
 
-<!--=======================================================================-->
-<div class="doc_subsection">LLVM Design:</div>
-<!--=======================================================================-->
-
-<ul>
-<li><a href="pubs/2004-01-30-CGO-LLVM.html"> LLVM: A Compilation Framework for
-Lifelong Program Analysis & Transformation</a>: - Describes
-the LLVM instruction set and compilation strategy.  This should be the first
-document you read to get an overview of LLVM.</li>
-
-<li><a href="docs/LangRef.html">LLVM Reference Manual</a> - Defines the LLVM
-intermediate representation, the assembly form of the different nodes, and
-provides reference information about the different tools in LLVM.</li>
-
-<li><a href="docs/BytecodeFormat.html">LLVM Bytecode File Format</a></li>
-
-</ul>
-
-<!--=======================================================================-->
-<div class="doc_subsection">LLVM User Guides:</div>
-<!--=======================================================================-->
-
-<ul>
-<li><a href="docs/GettingStarted.html">The LLVM Getting Started Guide</a> -
-Discusses how to get up and running quickly with the LLVM infrastructure.
-Everything from unpacking and compilation of the distribution to execution of
-some tools.</li>
-
-<li><a href="docs/CommandGuide/">LLVM Command Guide</a> - A reference manual for
-the LLVM command line utilities ("man" pages for LLVM tools).</li>
-
-<li><a href="docs/ReleaseNotes.html">Release notes for the current release</a> 
-- This describes new features, known bugs, and other limitations.</li>
-
-<li><a href="docs/HowToSubmitABug.html">How to Submit A Bug Report</a> -
-Instructions for properly submitting information about any bugs you run into in
-the LLVM system.</li>
-
-<li><a href="docs/TestingGuide.html">LLVM Test Suite Guide</a> - A reference
-manual for using the LLVM test suite.</li>
-
-<li><a href="docs/CFEBuildInstrs.html">How to build the C/C++ front-end</a> -
-Instructions for building the front-end from source.</li>
-</ul>
-
-
-<!--=======================================================================-->
-<div class="doc_subsection">General LLVM Programming Documentation:</div>
-<!--=======================================================================-->
-
-<ul>
-<li><a href="docs/ProgrammersManual.html">The LLVM Programmers Manual</a> -
-Introduction to the general layout of the LLVM sourcebase, important classes
-and APIs, and some tips & tricks.</li>
-
-<li><a href="docs/Projects.html">LLVM Project Guide</a> - How-to guide and
-templates for new projects that <em>use</em> the LLVM infrastructure.  The
-templates (directory organization, Makefiles, and test tree) allow the project
-code to be located outside (or inside) the <tt>llvm/</tt> tree, while using LLVM
-header files and libraries.</li>
-
-<li><a href="docs/CommandLine.html">CommandLine library Reference Manual</a> -
-Provides information on using the command line parsing library.</li>
-
-<li><a href="docs/CodingStandards.html">Recommended LLVM Coding standards</a> -
-Details the LLVM coding standards and provides useful information on writing
-efficient C++ code.</li>
-
-<li><a href="docs/OpenProjects.html">Open Projects</a> - Look here if you are
-interested in doing something with LLVM but aren't sure what needs to be
-done.</li>
-
-<li><a href="docs/ExtendingLLVM.html">Extending LLVM</a> - Look here to see how 
-to add instructions and intrinsics to LLVM.</li>
-
-<li><a href="docs/CodingStandards.html">Coding Standards</a> - Guidelines for
-hacking LLVM source.</li>
-
-<li><a href="doxygen/">Doxygen generated documentation</a> (<a
-href="doxygen/inherits.html">classes</a>)</li>
-
-<li><a href="/cvsweb/cvsweb.cgi/llvm">CVSWeb CVS Tree Browser</a></li>
-
-</ul>
-
-<!--=======================================================================-->
-<div class="doc_subsection">LLVM Subsystem Documentation:</div>
-<!--=======================================================================-->
-
-<ul>
-
-<li><a href="docs/WritingAnLLVMPass.html">Writing an LLVM Pass</a> - Information
-on how to write LLVM transformations and analyses.</li>
-
-<li><a href="docs/CodeGenerator.html">The LLVM Target-Independent Code
-Generator</a> - 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.</li>
-
-<li><a href="docs/TableGenFundamentals.html">TableGen Fundamentals</a> -
-Describes the TableGen tool, which is used heavily by the LLVM code
-generator.</li>
-
-<li><a href="docs/AliasAnalysis.html">Alias Analysis in LLVM</a> - Information
-on how to write a new alias analysis implementation or how to use existing
-analyses.</li>
-
-<li><a href="docs/Stacker.html">The Stacker Cronicles</a> - This document
-describes both the Stacker language and LLVM frontend, but also some details
-about LLVM useful for those writing front-ends.</li>
-
-<li><a href="docs/GarbageCollection.html">Accurate Garbage Collection with
-LLVM</a> - The interfaces source-language compilers should use for compiling
-GC'd programs.</li>
-
-<li><a href="docs/SourceLevelDebugging.html">Source Level Debugging with
-LLVM</a> - This document describes the design and philosophy behind the LLVM
-source-level debugger.</li>
-
-<li><a href="docs/Bugpoint.html">Bugpoint</a> automatic bug finder and
-test-case reducer description and usage information.</li>
-
-</ul>
-
-<!--=======================================================================-->
-<a name="Support"> <div class="doc_section">LLVM Support</div> </a>
-<!--=======================================================================-->
-
-<ul>
-<li><a href="docs/FAQ.html">Frequently Asked Questions</a> - A list of common
-questions and problems and their solutions.</li>
-
-<li><a href="docs/HowToSubmitABug.html">How-To-Submit-A-Bug</a> - Instructions
-for the proper way to submit information about a bug you ran into in the LLVM
-system.</li>
-
-<li> You can probably find help on the unofficial LLVM IRC channel.  We often 
-are on irc.oftc.net in the #llvm channel.  If you are using the mozilla
-browser, and have chatzilla installed, you can join by <a 
-href="irc://irc.oftc.net/llvm">clicking here</a>.</li>
-
-</ul>
-
-<div class="doc_subsection">LLVM Mailing Lists:</div>
-
-<ul>
-<li>The <a href="http://mail.cs.uiuc.edu/mailman/listinfo/llvm-announce">
-LLVM Announcements List</a>: This is a low volume list that provides important 
-announcements regarding LLVM.  It gets email about once a month.</li>
-
-<li>The <a href="http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev">Developer's
-List</a>: This list is for people who want to be included in technical 
-discussions of LLVM. People post to this list when they have questions about 
-writing code for or using the LLVM tools. It is relatively low volume.</li>
-
-<li>The <a href="http://mail.cs.uiuc.edu/pipermail/llvmbugs/">Bugs &
-Patches Archive</a>: This list gets emailed every time a bug is opened and
-closed, and when people submit patches to be included in LLVM.  It is higher 
-volume than the LLVMdev list.</li>
-
-<li>The <a href="http://mail.cs.uiuc.edu/pipermail/llvm-commits/">CVS Commits
-Archive</a>: This list contains all commit messages that are made when LLVM 
-developers commit code changes to the CVS archive. It is useful for those who 
-want to stay on the bleeding edge of LLVM development. This list is very high
-volume.</li>
-
-</ul>
+This link is <b>obsolete</b>.  Please update your bookmarks to <a 
+href="/docs/">point here</a>.
 
 <!--#include virtual="footer.incl" -->





More information about the llvm-commits mailing list