[cfe-commits] r74296 - in /cfe/trunk/www: performance-2009-03-02.html performance.html timing-data/2009-06-26/ timing-data/2009-06-26/176.gcc.pdf timing-data/2009-06-26/176.gcc.png timing-data/2009-06-26/176.gcc.txt timing-data/2009-06-26/sketch.pdf timing-data/2009-06-26/sketch.png timing-data/2009-06-26/sketch.txt

Daniel Dunbar daniel at zuster.org
Fri Jun 26 11:14:41 PDT 2009


Author: ddunbar
Date: Fri Jun 26 13:14:41 2009
New Revision: 74296

URL: http://llvm.org/viewvc/llvm-project?rev=74296&view=rev
Log:
Update performance numbers.

Added:
    cfe/trunk/www/performance-2009-03-02.html
    cfe/trunk/www/timing-data/2009-06-26/
    cfe/trunk/www/timing-data/2009-06-26/176.gcc.pdf   (with props)
    cfe/trunk/www/timing-data/2009-06-26/176.gcc.png   (with props)
    cfe/trunk/www/timing-data/2009-06-26/176.gcc.txt
    cfe/trunk/www/timing-data/2009-06-26/sketch.pdf   (with props)
    cfe/trunk/www/timing-data/2009-06-26/sketch.png   (with props)
    cfe/trunk/www/timing-data/2009-06-26/sketch.txt
Modified:
    cfe/trunk/www/performance.html

Added: cfe/trunk/www/performance-2009-03-02.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/performance-2009-03-02.html?rev=74296&view=auto

==============================================================================
--- cfe/trunk/www/performance-2009-03-02.html (added)
+++ cfe/trunk/www/performance-2009-03-02.html Fri Jun 26 13:14:41 2009
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+          "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+  <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+  <title>Clang - Performance</title>
+  <link type="text/css" rel="stylesheet" href="menu.css" />
+  <link type="text/css" rel="stylesheet" href="content.css" />
+  <style type="text/css">
+</style>
+</head>
+<body>
+
+<!--#include virtual="menu.html.incl"-->
+
+<div id="content">
+
+<!--*************************************************************************-->
+<h1>Clang - Performance</h1>
+<!--*************************************************************************-->
+
+<p>This page shows the compile time performance of Clang on two
+interesting benchmarks:
+<ul>
+  <li><i>Sketch</i>: The Objective-C example application shipped on
+    Mac OS X as part of Xcode. <i>Sketch</i> is indicative of a
+    "typical" Objective-C app. The source itself has a relatively
+    small amount of code (~7,500 lines of source code), but it relies
+    on the extensive Cocoa APIs to build its functionality. Like many
+    Objective-C applications, it includes <tt>Cocoa/Cocoa.h</tt> in
+    all of its source files, which represents a significant stress
+    test of the front-end's performance on lexing, preprocessing,
+    parsing, and syntax analysis.</li>
+  <li><i>176.gcc</i>: This is the gcc-2.7.2.2 code base as present in
+    SPECINT 2000. In contrast to Sketch, <i>176.gcc</i> consists of a
+    large amount of C source code (~200,000 lines) with few system
+    dependencies. This stresses the back-end's performance on generating
+    assembly code and debug information.</li>
+</ul>
+</p>
+
+<p>
+For previous performance numbers, please
+go <a href="performance-2008-10-31.html">here</a>.
+</p>
+
+<!--*************************************************************************-->
+<h2><a name="experiments">Experiments</a></h2>
+<!--*************************************************************************-->
+
+<p>Measurements are done by running a full build (using xcodebuild or
+make for Sketch and 176.gcc respectively) using Clang and gcc 4.2 as
+compilers; gcc is run both with and without the new clang driver (ccc)
+in order to evaluate the overhead of the driver itself.</p>
+
+<p>In order to track the performance of various subsystems the timings
+have been broken down into separate stages where possible. This is
+done by over-riding the CC environment variable used during the build
+to point to one of a few simple shell scripts which may skip part of
+the build.
+
+<ul>
+  <li><tt>non-compiler</tt>: The overhead of the build system itself;
+    for Sketch this also includes the time to build/copy various
+    non-source code resource files.</li>
+  <li><tt>+ driver</tt>: Add execution of the driver, but do not execute any
+    commands (by using the -### driver option).</li>
+  <li><tt>+ pch gen</tt>: Add generation of PCH files.</li>
+  <li><tt>+ cpp</tt>: Add preprocessing of source files (this time is
+    include in syntax for gcc).</li>
+  <li><tt>+ parse</tt>: Add parsing of source files (this time is
+    include in syntax for gcc).</li>
+  <li><tt>+ syntax</tt>: Add semantic checking of source files (for
+    gcc, this includes preprocessing and parsing as well).</li>
+  <li><tt>+ IRgen</tt>: Add generation of LLVM IR (gcc has no
+    corresponding phase).</li>
+  <li><tt>+ codegen</tt>: Add generation of assembler files.</li>
+  <li><tt>+ assembler</tt>: Add assembler time to generate .o files.</li>
+  <li><tt>+ linker</tt>: Add linker time.</li>
+</ul>
+</p>
+
+<p>This set of stages is chosen to be approximately additive, that is
+each subsequent stage simply adds some additional processing. The
+timings measure the delta of the given stage from the previous
+one. For example, the timings for <tt>+ syntax</tt> below show the
+difference of running with <tt>+ syntax</tt> versus running with <tt>+
+parse</tt> (for clang) or <tt>+ driver</tt> with gcc. This amounts to
+a fairly accurate measure of only the time to perform semantic
+analysis (and preprocessing/parsing, in the case of gcc).</p>
+
+<!--*************************************************************************-->
+<h2><a name="timings">Timing Results</a></h2>
+<!--*************************************************************************-->
+
+<!--=======================================================================-->
+<h3><a name="2009-03-02">2009-03-02</a></h3>
+<!--=======================================================================-->
+
+<a href="timing-data/2009-03-02/sketch.pdf">
+<img class="img_slide" 
+     src="timing-data/2009-03-02/sketch.png" alt="Sketch Timings"/>
+</a>
+
+<a href="timing-data/2009-03-02/176.gcc.pdf">
+<img class="img_slide" 
+     src="timing-data/2009-03-02/176.gcc.png" alt="176.gcc Timings"/>
+</a>
+
+</div>
+</body>
+</html>

Modified: cfe/trunk/www/performance.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/performance.html?rev=74296&r1=74295&r2=74296&view=diff

==============================================================================
--- cfe/trunk/www/performance.html (original)
+++ cfe/trunk/www/performance.html Fri Jun 26 13:14:41 2009
@@ -50,8 +50,7 @@
 
 <p>Measurements are done by running a full build (using xcodebuild or
 make for Sketch and 176.gcc respectively) using Clang and gcc 4.2 as
-compilers; gcc is run both with and without the new clang driver (ccc)
-in order to evaluate the overhead of the driver itself.</p>
+compilers.</p>
 
 <p>In order to track the performance of various subsystems the timings
 have been broken down into separate stages where possible. This is
@@ -65,13 +64,9 @@
     non-source code resource files.</li>
   <li><tt>+ driver</tt>: Add execution of the driver, but do not execute any
     commands (by using the -### driver option).</li>
-  <li><tt>+ pch gen</tt>: Add generation of PCH files.</li>
-  <li><tt>+ cpp</tt>: Add preprocessing of source files (this time is
-    include in syntax for gcc).</li>
-  <li><tt>+ parse</tt>: Add parsing of source files (this time is
-    include in syntax for gcc).</li>
-  <li><tt>+ syntax</tt>: Add semantic checking of source files (for
-    gcc, this includes preprocessing and parsing as well).</li>
+  <li><tt>+ pch gen</tt>: Add generation of PCH files (if used).</li>
+  <li><tt>+ syntax</tt>: Add preprocessing, parsing, and semantic checking of
+    source files.</li>
   <li><tt>+ IRgen</tt>: Add generation of LLVM IR (gcc has no
     corresponding phase).</li>
   <li><tt>+ codegen</tt>: Add generation of assembler files.</li>
@@ -80,31 +75,30 @@
 </ul>
 </p>
 
-<p>This set of stages is chosen to be approximately additive, that is
-each subsequent stage simply adds some additional processing. The
-timings measure the delta of the given stage from the previous
-one. For example, the timings for <tt>+ syntax</tt> below show the
-difference of running with <tt>+ syntax</tt> versus running with <tt>+
-parse</tt> (for clang) or <tt>+ driver</tt> with gcc. This amounts to
-a fairly accurate measure of only the time to perform semantic
-analysis (and preprocessing/parsing, in the case of gcc).</p>
+<p>This set of stages is chosen to be approximately additive, that is each
+subsequent stage simply adds some additional processing. The timings measure the
+delta of the given stage from the previous one. For example, the timings
+for <tt>+ syntax</tt> below show the difference of running with <tt>+
+syntax</tt> versus the times for <tt>+ pch gen</tt>. This amounts to a fairly
+accurate measure of only the time to perform preprocessing, parsing, and
+semantic analysis after PCH generation is done.</p>
 
 <!--*************************************************************************-->
 <h2><a name="timings">Timing Results</a></h2>
 <!--*************************************************************************-->
 
 <!--=======================================================================-->
-<h3><a name="2009-03-02">2009-03-02</a></h3>
+<h3><a name="2009-06-26">2009-06-26</a></h3>
 <!--=======================================================================-->
 
-<a href="timing-data/2009-03-02/sketch.pdf">
+<a href="timing-data/2009-06-26/sketch.pdf">
 <img class="img_slide" 
-     src="timing-data/2009-03-02/sketch.png" alt="Sketch Timings"/>
+     src="timing-data/2009-06-26/sketch.png" alt="Sketch Timings"/>
 </a>
 
-<a href="timing-data/2009-03-02/176.gcc.pdf">
+<a href="timing-data/2009-06-26/176.gcc.pdf">
 <img class="img_slide" 
-     src="timing-data/2009-03-02/176.gcc.png" alt="176.gcc Timings"/>
+     src="timing-data/2009-06-26/176.gcc.png" alt="176.gcc Timings"/>
 </a>
 
 </div>

Added: cfe/trunk/www/timing-data/2009-06-26/176.gcc.pdf
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/timing-data/2009-06-26/176.gcc.pdf?rev=74296&view=auto

==============================================================================
Binary file - no diff available.

Propchange: cfe/trunk/www/timing-data/2009-06-26/176.gcc.pdf

------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: cfe/trunk/www/timing-data/2009-06-26/176.gcc.png
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/timing-data/2009-06-26/176.gcc.png?rev=74296&view=auto

==============================================================================
Binary file - no diff available.

Propchange: cfe/trunk/www/timing-data/2009-06-26/176.gcc.png

------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: cfe/trunk/www/timing-data/2009-06-26/176.gcc.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/timing-data/2009-06-26/176.gcc.txt?rev=74296&view=auto

==============================================================================
--- cfe/trunk/www/timing-data/2009-06-26/176.gcc.txt (added)
+++ cfe/trunk/www/timing-data/2009-06-26/176.gcc.txt Fri Jun 26 13:14:41 2009
@@ -0,0 +1,699 @@
+start = """2009-06-26_10-19"""
+clang  = """/Volumes/Data/ddunbar/llvm.install/bin/clang"""
+gcc = """/usr/bin/gcc-4.2"""
+clang_info = """
+clang version 1.0 (https://ddunbar@llvm.org/svn/llvm-project/cfe/trunk 70266M)
+Target: x86_64-apple-darwin10
+ "/Volumes/Data/ddunbar/llvm.install/bin/../libexec/clang-cc" "-triple" "x86_64-apple-darwin10" "-S" "-disable-free" "-main-file-name" "null" "--relocation-model" "pic" "-pic-level=1" "--disable-fp-elim" "--unwind-tables=1" "--fmath-errno=0" "-mmacosx-version-min=10.6.0" "-fdiagnostics-show-option" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-CVKyzP.s" "-x" "c" "/dev/null"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/as" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-yeTCzJ.o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-CVKyzP.s"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld" "-dynamic" "-arch" "x86_64" "-macosx_version_min" "10.6.0" "-weak_reference_mismatches" "non-weak" "-o" "a.out" "-lcrt1.10.6.o" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../../i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../.." "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-yeTCzJ.o" "-lSystem" "-lgcc"
+"""
+gcc_info = """
+Using built-in specs.
+Target: i686-apple-darwin10
+Configured with: /var/tmp/gcc/gcc-5646~6/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10
+Thread model: posix
+gcc version 4.2.1 (Apple Inc. build 5646)
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/cc1" "-quiet" "-imultilib" "x86_64" "-D__DYNAMIC__" "/dev/null" "-fPIC" "-quiet" "-dumpbase" "null" "-mmacosx-version-min=10.6.0" "-m64" "-mtune=core2" "-auxbase" "null" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//cc1kQh9M.s"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/as" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//ccQcv4DT.o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//cc1kQh9M.s"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/collect2" "-dynamic" "-arch" "x86_64" "-macosx_version_min" "10.6.0" "-weak_reference_mismatches" "non-weak" "-o" "a.out" "-lcrt1.10.6.o" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../../i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../.." "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//ccQcv4DT.o" "-lSystem" "-lgcc" "-lSystem"
+"""
+style = """make"""
+runs = []
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.065445, 0.110578, 0.041286),
+	(1, 0.064915, 0.107837, 0.038992),
+	(2, 0.065191, 0.106475, 0.039233),
+	(3, 0.064924, 0.107004, 0.039142),
+	(4, 0.065260, 0.108901, 0.038903),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.066126, 0.112036, 0.040769),
+	(1, 0.065207, 0.108471, 0.038945),
+	(2, 0.065186, 0.107970, 0.038926),
+	(3, 0.065149, 0.108577, 0.039189),
+	(4, 0.065456, 0.109348, 0.039253),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.206667, 0.425607, 0.110976),
+	(1, 0.204719, 0.410080, 0.107065),
+	(2, 0.204989, 0.410953, 0.108714),
+	(3, 0.204985, 0.407392, 0.107438),
+	(4, 0.203424, 0.408111, 0.108717),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.265631, 0.798950, 0.161461),
+	(1, 0.263615, 0.805888, 0.160308),
+	(2, 0.263824, 0.686335, 0.145542),
+	(3, 0.262625, 0.949966, 0.177774),
+	(4, 0.263458, 0.820937, 0.162473),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.464727, 0.818916, 0.657338),
+	(1, 1.492318, 0.850179, 0.351025),
+	(2, 1.492530, 0.861113, 0.349530),
+	(3, 1.515402, 0.868510, 0.354163),
+	(4, 1.501033, 0.855415, 0.351763),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.339387, 1.362012, 0.808105),
+	(1, 4.327148, 1.319992, 0.794006),
+	(2, 4.327374, 1.320020, 0.793893),
+	(3, 4.319876, 1.319808, 0.787893),
+	(4, 4.329951, 1.344321, 0.796930),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.977307, 1.244670, 0.754129),
+	(1, 3.948981, 1.236009, 0.751078),
+	(2, 3.987417, 1.247336, 0.750608),
+	(3, 3.973621, 1.227822, 0.746016),
+	(4, 3.947019, 1.234332, 0.741703),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 6.749291, 1.404829, 1.149195),
+	(1, 6.750589, 1.434406, 1.151828),
+	(2, 6.744767, 1.415306, 1.146994),
+	(3, 6.738192, 1.425966, 1.147283),
+	(4, 6.755475, 1.410701, 1.147945),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 9.403397, 1.560103, 1.539962),
+	(1, 9.398348, 1.540148, 1.526404),
+	(2, 9.421496, 1.551876, 1.744563),
+	(3, 9.456310, 1.589165, 1.539901),
+	(4, 9.417963, 1.545186, 1.528347),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 8.032359, 1.747400, 1.467280),
+	(1, 7.962687, 1.720919, 1.391892),
+	(2, 7.986155, 1.694753, 1.426921),
+	(3, 7.978081, 1.695359, 1.416691),
+	(4, 7.977982, 1.687328, 1.419240),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.750102, 1.794398, 1.729777),
+	(1, 10.730841, 1.801150, 1.728536),
+	(2, 10.723943, 1.779271, 1.701177),
+	(3, 10.730824, 1.778987, 1.705904),
+	(4, 10.741052, 1.819326, 1.724089),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 8.070440, 1.732707, 1.518658),
+	(1, 8.111095, 1.739793, 1.542162),
+	(2, 8.106386, 1.751412, 1.552584),
+	(3, 8.062847, 1.723786, 1.540230),
+	(4, 8.075670, 1.701288, 1.509957),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"8",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.803240, 1.832409, 1.822466),
+	(1, 10.797956, 1.833142, 1.875121),
+	(2, 10.815192, 1.818826, 1.835845),
+	(3, 10.826268, 1.809307, 1.823997),
+	(4, 10.815709, 1.809185, 1.840403),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.060892, 0.065833, 0.155946),
+	(1, 0.060517, 0.064263, 0.133922),
+	(2, 0.060487, 0.064208, 0.133807),
+	(3, 0.060484, 0.063849, 0.134039),
+	(4, 0.060465, 0.064026, 0.133506),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.060780, 0.064833, 0.136229),
+	(1, 0.060581, 0.064090, 0.134156),
+	(2, 0.060534, 0.064191, 0.133656),
+	(3, 0.060524, 0.064027, 0.133635),
+	(4, 0.060523, 0.063964, 0.133708),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.182177, 0.218261, 0.480256),
+	(1, 0.181253, 0.215086, 0.446808),
+	(2, 0.181503, 0.215725, 0.450776),
+	(3, 0.181187, 0.215330, 0.447765),
+	(4, 0.181176, 0.215050, 0.446595),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.236347, 0.301491, 0.583495),
+	(1, 0.235946, 0.299452, 0.568506),
+	(2, 0.235676, 0.298048, 0.559954),
+	(3, 0.235782, 0.298448, 0.561808),
+	(4, 0.235882, 0.299948, 0.563575),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.355242, 0.589876, 2.134110),
+	(1, 1.354939, 0.586215, 2.111487),
+	(2, 1.354329, 0.589784, 2.109410),
+	(3, 1.355080, 0.586192, 2.122027),
+	(4, 1.354042, 0.581133, 2.111260),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.044141, 0.951252, 5.162733),
+	(1, 4.043237, 0.954487, 5.147568),
+	(2, 4.043888, 0.952179, 5.146153),
+	(3, 4.043125, 0.948038, 5.147289),
+	(4, 4.043883, 0.943084, 5.147096),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.444049, 0.848918, 4.534581),
+	(1, 3.444084, 0.854620, 4.525171),
+	(2, 3.444498, 0.862757, 4.598576),
+	(3, 3.442347, 0.856215, 4.518719),
+	(4, 3.443622, 0.866269, 4.532286),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 6.065809, 1.034261, 7.390113),
+	(1, 6.064420, 1.027780, 7.396403),
+	(2, 6.065132, 1.030652, 7.471856),
+	(3, 6.060587, 1.031604, 7.337894),
+	(4, 6.064466, 1.050338, 7.360592),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 8.960646, 1.236906, 10.456741),
+	(1, 8.957264, 1.234577, 10.357447),
+	(2, 8.956407, 1.237590, 10.352680),
+	(3, 8.957027, 1.241364, 10.398440),
+	(4, 8.956120, 1.239588, 10.355988),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 7.277301, 1.238993, 8.973009),
+	(1, 7.277048, 1.246566, 9.027985),
+	(2, 7.277032, 1.226791, 8.944300),
+	(3, 7.277537, 1.242752, 8.970441),
+	(4, 7.278972, 1.238938, 8.989529),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.081783, 1.335714, 11.707981),
+	(1, 10.081742, 1.344538, 11.682596),
+	(2, 10.079740, 1.330281, 11.681210),
+	(3, 10.074737, 1.324856, 11.632253),
+	(4, 10.075030, 1.350316, 11.633475),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 7.377028, 1.265309, 9.283505),
+	(1, 7.376723, 1.253489, 9.102278),
+	(2, 7.376104, 1.255404, 9.094650),
+	(3, 7.376589, 1.260461, 9.246790),
+	(4, 7.377455, 1.255013, 9.095294),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"1",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.172422, 1.355756, 11.797816),
+	(1, 10.173442, 1.357210, 11.808185),
+	(2, 10.173484, 1.346743, 11.781768),
+	(3, 10.170524, 1.352371, 11.749764),
+	(4, 10.171428, 1.362057, 11.760581),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.061930, 0.070826, 0.090142),
+	(1, 0.061012, 0.067330, 0.073687),
+	(2, 0.060994, 0.067246, 0.073681),
+	(3, 0.061099, 0.067234, 0.074369),
+	(4, 0.061022, 0.066989, 0.073428),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.061591, 0.069558, 0.083641),
+	(1, 0.061059, 0.067184, 0.073565),
+	(2, 0.061076, 0.067165, 0.073724),
+	(3, 0.061096, 0.066990, 0.073567),
+	(4, 0.061062, 0.067199, 0.073221),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.185243, 0.234231, 0.256557),
+	(1, 0.184673, 0.232841, 0.245015),
+	(2, 0.184453, 0.232130, 0.244661),
+	(3, 0.184370, 0.230836, 0.243152),
+	(4, 0.184320, 0.231212, 0.244266),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.239474, 0.325816, 0.314883),
+	(1, 0.238393, 0.326431, 0.306354),
+	(2, 0.238299, 0.326449, 0.307918),
+	(3, 0.237867, 0.325013, 0.305753),
+	(4, 0.238329, 0.326355, 0.306446),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.386532, 0.594929, 1.083410),
+	(1, 1.385214, 0.591925, 1.071299),
+	(2, 1.385670, 0.596527, 1.071159),
+	(3, 1.385205, 0.595489, 1.071494),
+	(4, 1.385904, 0.590797, 1.067600),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.154845, 0.996239, 2.665919),
+	(1, 4.149680, 0.998786, 2.651533),
+	(2, 4.150974, 1.006984, 2.655142),
+	(3, 4.152007, 1.008280, 2.659809),
+	(4, 4.152938, 1.003288, 2.658114),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.644865, 0.892229, 2.404722),
+	(1, 3.639556, 0.887595, 2.387664),
+	(2, 3.643246, 0.880541, 2.387287),
+	(3, 3.643391, 0.883751, 2.401062),
+	(4, 3.644145, 0.886052, 2.392286),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 6.307048, 1.072104, 3.873967),
+	(1, 6.313464, 1.064256, 3.870116),
+	(2, 6.307031, 1.064902, 3.865455),
+	(3, 6.309147, 1.070336, 3.900830),
+	(4, 6.307909, 1.066836, 3.868847),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 9.143474, 1.275600, 5.365390),
+	(1, 9.141933, 1.276966, 5.352204),
+	(2, 9.141995, 1.270270, 5.353590),
+	(3, 9.143375, 1.285837, 5.356607),
+	(4, 9.144897, 1.283080, 5.494642),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 7.533151, 1.293809, 4.718994),
+	(1, 7.528865, 1.295241, 4.726586),
+	(2, 7.528888, 1.303576, 4.729746),
+	(3, 7.525020, 1.295358, 4.716415),
+	(4, 7.528346, 1.289752, 4.721087),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.287174, 1.382953, 6.031426),
+	(1, 10.283068, 1.389433, 6.021822),
+	(2, 10.283543, 1.392869, 6.004187),
+	(3, 10.284358, 1.377433, 5.997940),
+	(4, 10.289169, 1.391765, 6.007507),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 7.619409, 1.304847, 4.862155),
+	(1, 7.623702, 1.312795, 4.906194),
+	(2, 7.621269, 1.306275, 4.840736),
+	(3, 7.621495, 1.319364, 4.862966),
+	(4, 7.621999, 1.304611, 4.860783),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"2",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.367482, 1.401449, 6.145377),
+	(1, 10.373043, 1.412685, 6.172106),
+	(2, 10.373049, 1.398992, 6.103300),
+	(3, 10.373781, 1.396096, 6.107375),
+	(4, 10.366926, 1.406716, 6.112696),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.064425, 0.090165, 0.056533),
+	(1, 0.062985, 0.083843, 0.047935),
+	(2, 0.062983, 0.083616, 0.047921),
+	(3, 0.063039, 0.084145, 0.048157),
+	(4, 0.063026, 0.084462, 0.048349),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.064141, 0.088108, 0.053766),
+	(1, 0.063195, 0.084658, 0.048108),
+	(2, 0.063350, 0.085147, 0.049666),
+	(3, 0.063052, 0.083725, 0.047925),
+	(4, 0.063048, 0.083896, 0.048249),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.195147, 0.299573, 0.157355),
+	(1, 0.193085, 0.296310, 0.156304),
+	(2, 0.193189, 0.295669, 0.155085),
+	(3, 0.193301, 0.292950, 0.152589),
+	(4, 0.193210, 0.292226, 0.154638),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.250242, 0.409797, 0.192336),
+	(1, 0.248762, 0.398072, 0.187157),
+	(2, 0.248680, 0.433130, 0.196985),
+	(3, 0.248853, 0.398547, 0.187603),
+	(4, 0.248648, 0.405913, 0.188482),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.451387, 0.687142, 0.597211),
+	(1, 1.446637, 0.676693, 0.591064),
+	(2, 1.449276, 0.677468, 0.591800),
+	(3, 1.444318, 0.671687, 0.589322),
+	(4, 1.444476, 0.681194, 0.592248),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.264736, 1.132651, 1.424788),
+	(1, 4.261695, 1.143089, 1.416857),
+	(2, 4.264731, 1.138831, 1.422684),
+	(3, 4.264711, 1.140477, 1.417779),
+	(4, 4.260991, 1.147619, 1.419141),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.837203, 1.035623, 1.327415),
+	(1, 3.869828, 1.033702, 1.331966),
+	(2, 3.878679, 1.043199, 1.336928),
+	(3, 3.865577, 1.033086, 1.330496),
+	(4, 3.854501, 1.024146, 1.328011),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 6.576067, 1.224910, 2.082887),
+	(1, 6.555647, 1.214275, 2.066679),
+	(2, 6.564496, 1.225676, 2.082281),
+	(3, 6.563023, 1.202289, 2.074234),
+	(4, 6.574312, 1.203879, 2.075939),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 9.320291, 1.388042, 2.820785),
+	(1, 9.321238, 1.374025, 2.817582),
+	(2, 9.312721, 1.370752, 2.815972),
+	(3, 9.321560, 1.382464, 2.905396),
+	(4, 9.315155, 1.367614, 2.814303),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 7.799699, 1.445598, 2.532217),
+	(1, 7.793440, 1.427494, 2.537293),
+	(2, 7.794819, 1.451267, 2.540644),
+	(3, 7.802867, 1.449885, 2.537256),
+	(4, 7.811558, 1.454217, 2.549762),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.518288, 1.557086, 3.158364),
+	(1, 10.524251, 1.541390, 3.138438),
+	(2, 10.526541, 1.538375, 3.142480),
+	(3, 10.516332, 1.562218, 3.192590),
+	(4, 10.526898, 1.540009, 3.152245),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 7.894470, 1.472428, 2.647063),
+	(1, 7.880948, 1.497803, 2.666059),
+	(2, 7.877924, 1.457295, 2.623934),
+	(3, 7.880090, 1.463151, 2.671976),
+	(4, 7.876586, 1.463586, 2.653038),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"4",
+                'pch':"no_pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 10.608510, 1.562882, 3.262625),
+	(1, 10.609805, 1.556848, 3.285292),
+	(2, 10.618056, 1.550407, 3.276770),
+	(3, 10.618343, 1.584988, 3.335703),
+	(4, 10.613029, 1.560418, 3.287023),
+]}
+))
+finished = """2009-06-26_10-31"""

Added: cfe/trunk/www/timing-data/2009-06-26/sketch.pdf
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/timing-data/2009-06-26/sketch.pdf?rev=74296&view=auto

==============================================================================
Binary file - no diff available.

Propchange: cfe/trunk/www/timing-data/2009-06-26/sketch.pdf

------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: cfe/trunk/www/timing-data/2009-06-26/sketch.png
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/timing-data/2009-06-26/sketch.png?rev=74296&view=auto

==============================================================================
Binary file - no diff available.

Propchange: cfe/trunk/www/timing-data/2009-06-26/sketch.png

------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: cfe/trunk/www/timing-data/2009-06-26/sketch.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/timing-data/2009-06-26/sketch.txt?rev=74296&view=auto

==============================================================================
--- cfe/trunk/www/timing-data/2009-06-26/sketch.txt (added)
+++ cfe/trunk/www/timing-data/2009-06-26/sketch.txt Fri Jun 26 13:14:41 2009
@@ -0,0 +1,803 @@
+start = """2009-06-26_10-04"""
+clang  = """/Volumes/Data/ddunbar/llvm.install/bin/clang"""
+gcc = """/usr/bin/gcc-4.2"""
+clang_info = """
+clang version 1.0 (https://ddunbar@llvm.org/svn/llvm-project/cfe/trunk 70266M)
+Target: x86_64-apple-darwin10
+ "/Volumes/Data/ddunbar/llvm.install/bin/../libexec/clang-cc" "-triple" "x86_64-apple-darwin10" "-S" "-disable-free" "-main-file-name" "null" "--relocation-model" "pic" "-pic-level=1" "--disable-fp-elim" "--unwind-tables=1" "--fmath-errno=0" "-mmacosx-version-min=10.6.0" "-fdiagnostics-show-option" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-vpL9h3.s" "-x" "c" "/dev/null"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/as" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-qdRbcC.o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-vpL9h3.s"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/ld" "-dynamic" "-arch" "x86_64" "-macosx_version_min" "10.6.0" "-weak_reference_mismatches" "non-weak" "-o" "a.out" "-lcrt1.10.6.o" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../../i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../.." "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-/cc-qdRbcC.o" "-lSystem" "-lgcc"
+"""
+gcc_info = """
+Using built-in specs.
+Target: i686-apple-darwin10
+Configured with: /var/tmp/gcc/gcc-5646~6/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10
+Thread model: posix
+gcc version 4.2.1 (Apple Inc. build 5646)
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/cc1" "-quiet" "-imultilib" "x86_64" "-D__DYNAMIC__" "/dev/null" "-fPIC" "-quiet" "-dumpbase" "null" "-mmacosx-version-min=10.6.0" "-m64" "-mtune=core2" "-auxbase" "null" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//ccvaleXF.s"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/as" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//ccV9sWHa.o" "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//ccvaleXF.s"
+ "/usr/libexec/gcc/i686-apple-darwin10/4.2.1/collect2" "-dynamic" "-arch" "x86_64" "-macosx_version_min" "10.6.0" "-weak_reference_mismatches" "non-weak" "-o" "a.out" "-lcrt1.10.6.o" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/x86_64" "-L/usr/lib/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../../i686-apple-darwin10/4.2.1" "-L/usr/lib/gcc/i686-apple-darwin10/4.2.1/../../.." "/var/folders/cl/clrOX6SaG+moCeRKEI4PtU+++TI/-Tmp-//ccV9sWHa.o" "-lSystem" "-lgcc" "-lSystem"
+"""
+style = """xcb"""
+runs = []
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.454775, 0.429118, 0.894442),
+	(1, 0.456816, 0.263663, 0.473584),
+	(2, 0.455418, 0.263616, 0.471947),
+	(3, 0.457123, 0.264847, 0.476358),
+	(4, 0.455484, 0.265836, 0.472721),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.456015, 0.267448, 0.475121),
+	(1, 0.457929, 0.266122, 0.474585),
+	(2, 0.457145, 0.265216, 0.474808),
+	(3, 0.458294, 0.263764, 0.475413),
+	(4, 0.457468, 0.262464, 0.475923),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.486632, 0.345058, 0.560472),
+	(1, 0.493027, 0.344064, 0.516340),
+	(2, 0.492830, 0.342958, 0.515723),
+	(3, 0.490442, 0.345107, 0.516254),
+	(4, 0.496280, 0.343245, 0.518030),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.514260, 0.372418, 0.544621),
+	(1, 0.513040, 0.372859, 0.536797),
+	(2, 0.512094, 0.370682, 0.534324),
+	(3, 0.512872, 0.373514, 0.535788),
+	(4, 0.514620, 0.371925, 0.536016),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_pch",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.913210, 0.501577, 4.006777),
+	(1, 0.887095, 0.443278, 1.071434),
+	(2, 0.889139, 0.440980, 1.078436),
+	(3, 0.887708, 0.443451, 1.070797),
+	(4, 0.890721, 0.442759, 1.079390),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_pch",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 2.388931, 0.727417, 3.522403),
+	(1, 2.383308, 0.731864, 3.460458),
+	(2, 2.387928, 0.735731, 3.453216),
+	(3, 2.378387, 0.727654, 3.672474),
+	(4, 2.381366, 0.724858, 3.474937),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.037409, 0.613406, 1.215209),
+	(1, 1.040770, 0.634141, 1.205919),
+	(2, 1.034234, 0.618161, 1.210088),
+	(3, 1.035743, 0.626183, 1.194313),
+	(4, 1.035466, 0.621088, 1.181653),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.151380, 2.414929, 4.130644),
+	(1, 3.152197, 2.432369, 4.145959),
+	(2, 3.169057, 2.386287, 4.135253),
+	(3, 3.146057, 2.403489, 4.493451),
+	(4, 3.152363, 2.441579, 4.118788),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.400262, 0.704892, 1.375730),
+	(1, 1.404950, 0.676989, 1.295341),
+	(2, 1.395974, 0.686132, 1.318555),
+	(3, 1.402644, 0.668249, 1.302908),
+	(4, 1.394704, 0.675209, 1.326093),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.616115, 0.717480, 1.452331),
+	(1, 1.624647, 0.706313, 1.364950),
+	(2, 1.621780, 0.711227, 1.364399),
+	(3, 1.615129, 0.708090, 1.350312),
+	(4, 1.627133, 0.705681, 1.380502),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.021269, 2.613351, 4.403274),
+	(1, 3.972482, 2.627701, 4.451196),
+	(2, 3.966213, 2.540204, 4.303024),
+	(3, 3.951820, 2.599589, 4.339412),
+	(4, 3.980372, 2.566508, 4.337338),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.735196, 0.782129, 1.452587),
+	(1, 1.739009, 0.764330, 1.425707),
+	(2, 1.740858, 0.769880, 1.437086),
+	(3, 1.741419, 0.762191, 1.403820),
+	(4, 1.747043, 0.780665, 1.420343),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.102902, 2.665367, 4.390574),
+	(1, 4.097269, 2.666010, 4.359247),
+	(2, 4.147762, 2.644022, 4.382155),
+	(3, 4.196482, 2.724179, 4.465809),
+	(4, 4.137713, 2.652589, 4.396584),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.778593, 0.860038, 1.933043),
+	(1, 1.783723, 0.779371, 1.463440),
+	(2, 1.776279, 0.782745, 1.449608),
+	(3, 1.776952, 0.782233, 1.478619),
+	(4, 1.770755, 0.782444, 1.652835),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"8",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.133649, 2.666723, 4.502220),
+	(1, 4.164545, 2.606363, 4.423237),
+	(2, 4.141087, 2.729139, 4.466176),
+	(3, 4.186804, 2.692518, 4.448523),
+	(4, 4.135804, 2.680580, 4.428858),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.645824, 0.336540, 1.040349),
+	(1, 0.758601, 0.377669, 1.198545),
+	(2, 0.802384, 0.385620, 1.256802),
+	(3, 0.667186, 0.257789, 0.986552),
+	(4, 0.677381, 0.323771, 1.067715),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.654302, 0.326431, 1.043052),
+	(1, 0.610937, 0.202433, 0.879312),
+	(2, 0.821695, 0.241481, 1.127804),
+	(3, 0.633888, 0.315185, 1.009161),
+	(4, 0.606823, 0.209530, 0.874705),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.543719, 0.249359, 0.878529),
+	(1, 0.864268, 0.407639, 1.357842),
+	(2, 0.505443, 0.253217, 0.842801),
+	(3, 1.168525, 0.628933, 1.885143),
+	(4, 0.860483, 0.294474, 1.244566),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.730678, 0.350816, 1.158314),
+	(1, 0.833076, 0.402332, 1.310570),
+	(2, 0.626271, 0.280957, 0.987633),
+	(3, 0.705011, 0.360332, 1.149777),
+	(4, 0.708342, 0.304606, 1.086816),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_pch",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.243931, 0.544136, 1.943868),
+	(1, 1.178064, 0.357476, 1.703040),
+	(2, 0.921374, 0.438177, 1.525808),
+	(3, 1.153771, 0.486733, 1.796961),
+	(4, 0.968192, 0.355170, 1.483673),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_pch",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 2.493859, 0.712226, 4.011872),
+	(1, 2.940300, 0.921172, 4.652497),
+	(2, 2.715094, 0.893861, 4.490923),
+	(3, 2.610419, 0.709403, 4.118227),
+	(4, 2.526798, 0.679792, 3.994116),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.458838, 0.694208, 2.378138),
+	(1, 1.817837, 0.740143, 2.805735),
+	(2, 1.300085, 0.703071, 2.229211),
+	(3, 1.262175, 0.539189, 2.048597),
+	(4, 1.191437, 0.497072, 1.923328),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.120749, 1.789574, 5.789810),
+	(1, 3.273377, 1.967923, 6.133188),
+	(2, 3.037123, 1.733381, 5.596823),
+	(3, 3.042984, 1.730581, 5.650857),
+	(4, 3.188306, 1.759639, 5.884737),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.542473, 0.612384, 2.425046),
+	(1, 1.545307, 0.697333, 2.515996),
+	(2, 1.600507, 0.604696, 2.460228),
+	(3, 1.632270, 0.718514, 2.592235),
+	(4, 1.928976, 0.629692, 2.794199),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.770525, 0.684705, 2.712227),
+	(1, 1.887006, 0.676721, 2.808092),
+	(2, 1.625953, 0.651827, 2.513331),
+	(3, 1.773543, 0.671273, 2.695842),
+	(4, 1.601478, 0.621009, 2.649159),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.114128, 2.094426, 7.063334),
+	(1, 4.025352, 1.957465, 6.838969),
+	(2, 3.821735, 1.946024, 6.632936),
+	(3, 3.907138, 2.007547, 7.016114),
+	(4, 4.024595, 2.043679, 6.922250),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 2.056124, 0.710399, 3.025185),
+	(1, 1.804336, 0.726053, 2.772563),
+	(2, 1.967191, 0.656225, 2.892478),
+	(3, 2.201167, 1.485126, 3.955987),
+	(4, 1.994297, 0.676570, 2.914002),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.153794, 1.918740, 6.996844),
+	(1, 4.211883, 1.937034, 7.076586),
+	(2, 4.084567, 1.959342, 6.944548),
+	(3, 4.648222, 2.460079, 7.979059),
+	(4, 4.136109, 1.985068, 6.960107),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 2.028821, 0.718882, 3.022737),
+	(1, 1.843870, 0.711606, 2.811073),
+	(2, 1.985330, 0.640222, 2.873062),
+	(3, 2.060936, 0.694181, 3.004850),
+	(4, 1.897412, 0.741471, 2.895000),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"1",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.126488, 1.921937, 7.213964),
+	(1, 4.030952, 2.008876, 6.892632),
+	(2, 4.003183, 1.903866, 6.818411),
+	(3, 4.002316, 1.899865, 6.714604),
+	(4, 4.241685, 2.074201, 7.178083),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.438307, 0.207037, 0.506107),
+	(1, 0.443102, 0.205874, 0.504716),
+	(2, 0.439711, 0.209035, 0.506141),
+	(3, 0.436863, 0.206002, 0.504331),
+	(4, 0.439627, 0.206224, 0.505025),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.439477, 0.207192, 0.504912),
+	(1, 0.437463, 0.209372, 0.504820),
+	(2, 0.437903, 0.206376, 0.506661),
+	(3, 0.442930, 0.207493, 0.505236),
+	(4, 0.437359, 0.206906, 0.505647),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.476966, 0.260986, 0.572957),
+	(1, 0.478184, 0.263035, 0.573059),
+	(2, 0.469230, 0.262187, 0.571016),
+	(3, 0.469081, 0.262310, 0.570270),
+	(4, 0.487872, 0.261247, 0.573296),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.500065, 0.287104, 0.600696),
+	(1, 0.490454, 0.288579, 0.599350),
+	(2, 0.489178, 0.290420, 0.595453),
+	(3, 0.504358, 0.305761, 0.621200),
+	(4, 0.488484, 0.284586, 0.593988),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_pch",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.863838, 0.365213, 1.134056),
+	(1, 0.879504, 0.384604, 1.159071),
+	(2, 0.865340, 0.363764, 1.135322),
+	(3, 0.870478, 0.367344, 1.160674),
+	(4, 0.872049, 0.365320, 1.137567),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_pch",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 2.356240, 0.639645, 3.459472),
+	(1, 2.360200, 0.659262, 3.524492),
+	(2, 2.357683, 0.643919, 3.503642),
+	(3, 2.356418, 0.645647, 3.487224),
+	(4, 2.373107, 0.644771, 3.481359),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.020421, 0.527766, 1.342095),
+	(1, 1.015704, 0.514000, 1.336929),
+	(2, 1.012705, 0.511238, 1.355272),
+	(3, 1.017781, 0.525921, 1.395570),
+	(4, 1.018256, 0.517513, 1.810392),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.236664, 1.833475, 5.064647),
+	(1, 3.116394, 1.846229, 4.585106),
+	(2, 3.109082, 1.861524, 4.545915),
+	(3, 3.105011, 1.846408, 4.555086),
+	(4, 3.098872, 1.865976, 4.564655),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.380699, 0.583314, 1.565867),
+	(1, 1.388951, 0.550808, 1.551250),
+	(2, 1.413442, 0.605844, 2.090865),
+	(3, 1.387903, 0.560118, 1.544868),
+	(4, 1.380258, 0.556370, 1.545919),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.594818, 0.585227, 1.667099),
+	(1, 1.592606, 0.587092, 1.672961),
+	(2, 1.593256, 0.589412, 1.669080),
+	(3, 1.593986, 0.587601, 1.669540),
+	(4, 1.596080, 0.588672, 1.661919),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.936649, 2.035445, 5.031351),
+	(1, 3.945642, 1.975630, 5.060494),
+	(2, 3.944102, 1.986388, 5.217065),
+	(3, 3.942765, 1.958722, 5.007943),
+	(4, 3.942774, 1.998893, 5.220903),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.712580, 0.646710, 1.767951),
+	(1, 1.726718, 0.639926, 1.762359),
+	(2, 1.715856, 0.663728, 1.801439),
+	(3, 1.710717, 0.642142, 1.748022),
+	(4, 1.711775, 0.639969, 1.762574),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.100132, 2.051387, 5.193869),
+	(1, 4.080168, 2.011265, 5.256560),
+	(2, 4.081965, 2.023322, 5.162267),
+	(3, 4.095547, 2.044797, 5.131689),
+	(4, 4.083693, 2.027487, 5.067421),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.750192, 0.645773, 1.781508),
+	(1, 1.751823, 0.651023, 1.799043),
+	(2, 1.746203, 0.648456, 1.799824),
+	(3, 1.743422, 0.650594, 1.813096),
+	(4, 1.743223, 0.647433, 1.804423),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"2",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.112210, 2.030036, 5.210062),
+	(1, 4.134068, 2.036290, 5.134560),
+	(2, 4.106223, 2.031620, 5.167160),
+	(3, 4.111138, 2.067136, 5.242598),
+	(4, 4.114321, 2.105259, 5.219405),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"null",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.450242, 0.234466, 0.468920),
+	(1, 0.452251, 0.234237, 0.472734),
+	(2, 0.449428, 0.230498, 0.469181),
+	(3, 0.451854, 0.234653, 0.471594),
+	(4, 0.450034, 0.233853, 0.470746),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"null",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.451976, 0.237066, 0.471837),
+	(1, 0.451032, 0.232549, 0.469509),
+	(2, 0.450837, 0.235248, 0.469812),
+	(3, 0.451435, 0.236156, 0.471181),
+	(4, 0.454297, 0.235811, 0.472732),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"###",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.487874, 0.301226, 0.520971),
+	(1, 0.485966, 0.302353, 0.522738),
+	(2, 0.487933, 0.320309, 0.538211),
+	(3, 0.484292, 0.301703, 0.518200),
+	(4, 0.485094, 0.300915, 0.519927),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"###",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.507246, 0.328269, 0.538592),
+	(1, 0.504679, 0.327246, 0.536575),
+	(2, 0.506116, 0.325455, 0.534917),
+	(3, 0.504966, 0.325033, 0.535512),
+	(4, 0.504264, 0.325877, 0.537850),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_pch",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 0.878871, 0.406325, 1.083290),
+	(1, 0.881664, 0.406706, 1.089465),
+	(2, 0.879953, 0.403525, 1.089816),
+	(3, 0.880059, 0.403838, 1.081420),
+	(4, 0.882767, 0.404104, 1.081738),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_pch",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 2.376690, 0.683461, 3.481408),
+	(1, 2.371811, 0.678423, 3.554769),
+	(2, 2.373430, 0.687361, 3.496073),
+	(3, 2.371478, 0.675612, 3.438700),
+	(4, 2.377505, 0.688872, 3.424400),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"syntax",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.042312, 0.579073, 1.213381),
+	(1, 1.044438, 0.584515, 1.205995),
+	(2, 1.038797, 0.582026, 1.219606),
+	(3, 1.040786, 0.577159, 1.215521),
+	(4, 1.043000, 0.577868, 1.223773),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"syntax",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 3.231130, 2.567647, 4.158387),
+	(1, 3.235798, 2.498238, 4.418977),
+	(2, 3.238465, 2.529717, 4.211575),
+	(3, 3.239709, 2.495562, 4.156266),
+	(4, 3.231558, 2.493020, 4.108168),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"irgen",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.421647, 0.642906, 1.341418),
+	(1, 1.421549, 0.646429, 1.343189),
+	(2, 1.433072, 0.641680, 1.327081),
+	(3, 1.428600, 0.639478, 1.332256),
+	(4, 1.427077, 0.643784, 1.322933),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_asm",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.654124, 0.663628, 1.402498),
+	(1, 1.643467, 0.662131, 1.386214),
+	(2, 1.653972, 0.671458, 1.393807),
+	(3, 1.646365, 0.671024, 1.395913),
+	(4, 1.651021, 0.662302, 1.404011),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_asm",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.297588, 2.725803, 4.463298),
+	(1, 4.286029, 2.678946, 4.487945),
+	(2, 4.280374, 2.696217, 4.492516),
+	(3, 4.305121, 2.681000, 4.491615),
+	(4, 4.290141, 2.697022, 4.485084),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"only_compile",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.763493, 0.720256, 1.438810),
+	(1, 1.766202, 0.720674, 1.581947),
+	(2, 1.766634, 0.722865, 1.439302),
+	(3, 1.767231, 0.726466, 1.455122),
+	(4, 1.765071, 0.725319, 1.443411),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"only_compile",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.439486, 2.767478, 4.493862),
+	(1, 4.450584, 2.723827, 4.523759),
+	(2, 4.446754, 2.728436, 4.522514),
+	(3, 4.418589, 2.747071, 4.539960),
+	(4, 4.449233, 2.763071, 4.578583),
+]}
+))
+runs.append(( { 'cc':"clang_pch",
+                'script':"all",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 1.796239, 0.738339, 1.484091),
+	(1, 1.804887, 0.734832, 1.484408),
+	(2, 1.799010, 0.745599, 1.487400),
+	(3, 1.795834, 0.735356, 1.480006),
+	(4, 1.806408, 0.745381, 1.483771),
+]}
+))
+runs.append(( { 'cc':"gcc",
+                'script':"all",
+                'threads':"4",
+                'pch':"pch" }, 
+{ 'version' : 0,
+  'samples' : [
+	(0, 4.450745, 2.820108, 4.598335),
+	(1, 4.492508, 2.802745, 4.608004),
+	(2, 4.484814, 2.762586, 4.664950),
+	(3, 4.428110, 2.724648, 4.700769),
+	(4, 4.451598, 2.814003, 4.559797),
+]}
+))
+finished = """2009-06-26_10-19"""





More information about the cfe-commits mailing list