[llvm-commits] CVS: llvm/utils/NightlyTest.pl NightlyTestTemplate.html

John Criswell criswell at choi.cs.uiuc.edu
Thu Jun 26 16:39:32 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.12 -> 1.12.2.1
NightlyTestTemplate.html updated: 1.7 -> 1.7.2.1

---
Log message:

Merged with mainline on Thursday, June 26, 2003.


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.12 llvm/utils/NightlyTest.pl:1.12.2.1
--- llvm/utils/NightlyTest.pl:1.12	Sun May 11 10:23:10 2003
+++ llvm/utils/NightlyTest.pl	Thu Jun 26 16:36:18 2003
@@ -155,9 +155,9 @@
 if (!$NOCHECKOUT) {
   # Change the Makefile.config to build into the local directory...
   rename "Makefile.config", "Makefile.config.orig";
-  system "sed '/^LLVM_OBJ_DIR/d' < Makefile.config.orig > Makefile.config";
+  system "sed '/^OBJ_ROOT/d' < Makefile.config.orig > Makefile.config";
   system "echo >> Makefile.config";
-  system "echo 'LLVM_OBJ_DIR := .' >> Makefile.config";
+  system "echo 'OBJ_ROOT := .' >> Makefile.config";
 
   # Change the Makefile.config to not strip executables...
   system "echo 'KEEP_SYMBOLS := 1' >> Makefile.config";


Index: llvm/utils/NightlyTestTemplate.html
diff -u llvm/utils/NightlyTestTemplate.html:1.7 llvm/utils/NightlyTestTemplate.html:1.7.2.1
--- llvm/utils/NightlyTestTemplate.html:1.7	Sat May 10 15:54:55 2003
+++ llvm/utils/NightlyTestTemplate.html	Thu Jun 26 16:36:18 2003
@@ -126,15 +126,11 @@
 <li><a name="Bytecode">Bytecode - The size of the bytecode for the program
 <li><a name="Instrs">Instrs - The number of LLVM instructions in the
     compiled bytecode
-<li><a name="LLC">LLC - The time taken compile with the Sparc Backend.  Note
-    that this justs tests to see if the backend runs successfully, not if the
-    generated code works.
+<li><a name="LLC">LLC - The time taken compile with LLC (the static X86 backend)
+<li><a name="NAT">NAT - The time taken to execute the program when compiled
+    with GCC -O3.
 <li><a name="CBE">CBE - The time taken to execute the program after compilation
     through the C Backend.  If the diff fails, this a *.
-<li><a name="LLI">LLI - How long does the program take to execute in
-    LLI's interpreter (note that this is capped to ~300s).
-<li><a name="DynInstrs">DynInstrs - How many dynamic instructions are executed
-    by the interpreter, if it finishes.
 <li><a name="JIT">JIT - How long does the program take to execute in the
     Just-In-Time compiler.
 <li><a name="MachCode">MachCode - The number of bytes of machine code





More information about the llvm-commits mailing list