Update for changes in location of Stacker.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33293 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-17 05:37:42 +00:00
parent de8dacf759
commit 72826f6171

View File

@ -1298,11 +1298,16 @@ remainder of the story.
<div class="doc_subsection"> <a name="directory">Directory Structure</a></div> <div class="doc_subsection"> <a name="directory">Directory Structure</a></div>
<div class="doc_text"> <div class="doc_text">
<p>The source code, test programs, and sample programs can all be found <p>The source code, test programs, and sample programs can all be found
under the LLVM "projects" directory. You will need to obtain the LLVM sources in the LLVM repository named <tt>llvm-stacker</tt> This should be checked out to
to find it (either via anonymous CVS or a tarball. See the the <tt>projects</tt> directory so that it will auto-configure. To do that, make
<a href="GettingStarted.html">Getting Started</a> document).</p> sure you have the llvm sources in <tt><i>llvm</i></tt>
<p>Under the "projects" directory there is a directory named "Stacker". That (see <a href="GettingStarted.html">Getting Started</a>) and then use these
directory contains everything, as follows:</p> commands:<pre>
cd <i>llvm</i>/projects
cvs co llvm-stacker</pre>
</p>
<p>Under the <tt>projects/llvm-stacker</tt> directory you will find the
implementation of the Stacker compiler, as follows:</p>
<ul> <ul>
<li><em>lib</em> - contains most of the source code <li><em>lib</em> - contains most of the source code
<ul> <ul>
@ -1320,32 +1325,32 @@ directory contains everything, as follows:</p>
<!-- ======================================================================= --> <!-- ======================================================================= -->
<div class="doc_subsection"><a name="lexer"></a>The Lexer</div> <div class="doc_subsection"><a name="lexer"></a>The Lexer</div>
<div class="doc_text"> <div class="doc_text">
<p>See projects/Stacker/lib/compiler/Lexer.l</p> <p>See projects/llvm-stacker/lib/compiler/Lexer.l</p>
</div> </div>
<!-- ======================================================================= --> <!-- ======================================================================= -->
<div class="doc_subsection"><a name="parser"></a>The Parser</div> <div class="doc_subsection"><a name="parser"></a>The Parser</div>
<div class="doc_text"> <div class="doc_text">
<p>See projects/Stacker/lib/compiler/StackerParser.y</p> <p>See projects/llvm-stacker/lib/compiler/StackerParser.y</p>
</div> </div>
<!-- ======================================================================= --> <!-- ======================================================================= -->
<div class="doc_subsection"><a name="compiler"></a>The Compiler</div> <div class="doc_subsection"><a name="compiler"></a>The Compiler</div>
<div class="doc_text"> <div class="doc_text">
<p>See projects/Stacker/lib/compiler/StackerCompiler.cpp</p> <p>See projects/llvm-stacker/lib/compiler/StackerCompiler.cpp</p>
</div> </div>
<!-- ======================================================================= --> <!-- ======================================================================= -->
<div class="doc_subsection"><a name="runtime"></a>The Runtime</div> <div class="doc_subsection"><a name="runtime"></a>The Runtime</div>
<div class="doc_text"> <div class="doc_text">
<p>See projects/Stacker/lib/runtime/stacker_rt.c</p> <p>See projects/llvm-stacker/lib/runtime/stacker_rt.c</p>
</div> </div>
<!-- ======================================================================= --> <!-- ======================================================================= -->
<div class="doc_subsection"><a name="driver"></a>Compiler Driver</div> <div class="doc_subsection"><a name="driver"></a>Compiler Driver</div>
<div class="doc_text"> <div class="doc_text">
<p>See projects/Stacker/tools/stkrc/stkrc.cpp</p> <p>See projects/llvm-stacker/tools/stkrc/stkrc.cpp</p>
</div> </div>
<!-- ======================================================================= --> <!-- ======================================================================= -->
<div class="doc_subsection"><a name="tests"></a>Test Programs</div> <div class="doc_subsection"><a name="tests"></a>Test Programs</div>
<div class="doc_text"> <div class="doc_text">
<p>See projects/Stacker/test/*.st</p> <p>See projects/llvm-stacker/test/*.st</p>
</div> </div>
<!-- ======================================================================= --> <!-- ======================================================================= -->
<div class="doc_subsection"> <a name="exercise">Exercise</a></div> <div class="doc_subsection"> <a name="exercise">Exercise</a></div>