From 0137afab0ae1c51da6a96d549529cba0e87d67f3 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 15 Aug 2003 19:31:04 +0000 Subject: [PATCH] * Match the column names in the report * Describe and clarify meanings of columns * Fix up HTML: close and
  • tags git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7900 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/NightlyTestTemplate.html | 45 +++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/utils/NightlyTestTemplate.html b/utils/NightlyTestTemplate.html index bf6894b88c6..299bd803f41 100644 --- a/utils/NightlyTestTemplate.html +++ b/utils/NightlyTestTemplate.html @@ -116,28 +116,33 @@ GNUplot charts showing a couple of things:

    This section tests LLVM on a variety of programs in the test suite. This -includes benchmark suites like the Olden, ptrdist, and SPEC benchmarks as well -as a few random programs with test inputs. This section is meant to track how -stable LLVM is as a whole. The columns of the tables are:

    +includes benchmark suites like the Olden, McCat, Ptrdist, and SPEC benchmarks as +well as a few random programs with test inputs. This section is meant to track +how stable LLVM is as a whole. A failure in the execution of any test is marked +with an asterisk: `*'. The columns of the tables are:

      -
    1. Program - The name of the program for that row -
    2. GCCAS - Time to run LLVM optimizers on the program -
    3. Bytecode - The size of the bytecode for the program -
    4. Instrs - The number of LLVM instructions in the - compiled bytecode -
    5. LLC - The time taken compile with LLC (the static backend) -
    6. NAT - The time taken to execute the program when compiled - with GCC -O3. -
    7. CBE - The time taken to execute the program after compilation - through the C Backend. If the diff fails, this a *. -
    8. LLC - The time taken to run LLC compiled program -
    9. JIT - How long does the program take to execute in the - Just-In-Time compiler. -
    10. MachCode - The number of bytes of machine code - generated by the JIT. -
    11. CompTime - The amount of time spent in the JIT itself, - instead of executing the program. +
    12. Program - The name of the program for that row.
    13. +
    14. GCCAS - Time to run LLVM optimizers on the program.
    15. +
    16. Bytecode - The size of the bytecode for the + program
    17. +
    18. Instrs - The number of LLVM instructions in the + compiled bytecode
    19. +
    20. LLC compile - The time taken compile with + LLC (the static backend)
    21. +
    22. JIT codegen - The amount of time spent in the + JIT itself, instead of executing the program.
    23. +
    24. Machine code - The number of bytes of machine + code generated by the JIT.
    25. +
    26. GCC - The time taken to execute the program when compiled + with GCC -O3.
    27. +
    28. CBE - The time taken to execute the program after + compilation through the C Backend.
    29. +
    30. LLC - How long does the program generated by the static + backend LLC take to execute
    31. +
    32. JIT - The amount of time spent running the + program with the JIT; this includes the code generation phase (listed above) + and actually running the program.

    A complete log of testing is available -- 2.34.1