1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Add docs for new column, native tests now run with -O2

llvm-svn: 7935
This commit is contained in:
Chris Lattner 2003-08-18 04:32:34 +00:00
parent eed7beaf57
commit 8b929dfe2a

View File

@ -135,7 +135,7 @@ with an asterisk: `*'. The columns of the tables are:<p>
<li><a name="Machine<br>code">Machine code</a> - The number of bytes of machine <li><a name="Machine<br>code">Machine code</a> - The number of bytes of machine
code generated by the JIT.</li> code generated by the JIT.</li>
<li><a name="GCC">GCC</a> - The time taken to execute the program when compiled <li><a name="GCC">GCC</a> - The time taken to execute the program when compiled
with GCC -O3.</li> with GCC -O2.</li>
<li><a name="CBE">CBE</a> - The time taken to execute the program after <li><a name="CBE">CBE</a> - The time taken to execute the program after
compilation through the C Backend.</li> compilation through the C Backend.</li>
<li><a name="LLC">LLC</a> - How long does the program generated by the static <li><a name="LLC">LLC</a> - How long does the program generated by the static
@ -143,6 +143,8 @@ with an asterisk: `*'. The columns of the tables are:<p>
<li><a name="JIT">JIT</a> - The amount of time spent running the <li><a name="JIT">JIT</a> - The amount of time spent running the
program with the JIT; this includes the code generation phase (listed above) program with the JIT; this includes the code generation phase (listed above)
and actually running the program.</li> and actually running the program.</li>
<li><a name="GCC/LLC">GCC/LLC - The speed-up of the LLC output vs the native
GCC output: greater than 1 is a speedup, less than 1 is a slowdown.
</ol><p> </ol><p>
A complete log of testing <a href="$DATE-ProgramTest.txt.gz">is available</a> A complete log of testing <a href="$DATE-ProgramTest.txt.gz">is available</a>