1#!/usr/bin/perl -w 2 3# Copyright (C) 2007 Apple Inc. All rights reserved. 4# Copyright (C) 2007 Eric Seidel <eric@webkit.org> 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: 9# 1. Redistributions of source code must retain the above copyright 10# notice, this list of conditions and the following disclaimer. 11# 2. Redistributions in binary form must reproduce the above copyright 12# notice, this list of conditions and the following disclaimer in the 13# documentation and/or other materials provided with the distribution. 14# 15# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 16# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 18# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 19# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 20# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 22# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 23# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 27use strict; 28use File::Spec; 29use FindBin; 30use Getopt::Long qw(:config pass_through); 31use lib $FindBin::Bin; 32use webkitdirs; 33use POSIX; 34 35# determine configuration, but default to "Release" instead of last-used configuration to match run-sunspider 36setConfiguration("Release"); 37setConfiguration(); 38my $configuration = configuration(); 39 40my $root; 41my $showHelp = 0; 42my $suite = ""; 43my $ubench = 0; 44my $v8 = 0; 45my $parseonly = 0; 46 47my $programName = basename($0); 48my $usage = <<EOF; 49Usage: $programName [options] FILE FILE 50 --help Show this help message 51 --root Path to root tools build 52 --suite Select a specific benchmark suite. The default is sunspider-0.9.1 53 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench 54 --v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4 55 --parse-only Use the parse-only benchmark suite. Same as --suite=parse-only 56EOF 57 58GetOptions('root=s' => sub { my ($argName, $value); setConfigurationProductDir(Cwd::abs_path($value)); }, 59 'suite=s' => \$suite, 60 'ubench' => \$ubench, 61 'v8' => \$v8, 62 'parse-only' => \$parseonly, 63 'help' => \$showHelp); 64 65if ($showHelp) { 66 print STDERR $usage; 67 exit 1; 68} 69 70@ARGV = map { File::Spec->rel2abs($_) } @ARGV; 71 72sub buildJSC 73{ 74 if (!defined($root)){ 75 chdirWebKit(); 76 my $buildResult = system currentPerlPath(), "WebKitTools/Scripts/build-jsc", "--" . $configuration; 77 if ($buildResult) { 78 print STDERR "Compiling jsc failed!\n"; 79 exit WEXITSTATUS($buildResult); 80 } 81 } 82} 83 84sub setupEnvironmentForExecution($) 85{ 86 my ($productDir) = @_; 87 print "Starting sunspider-compare-results with DYLD_FRAMEWORK_PATH set to point to built JavaScriptCore in $productDir.\n"; 88 $ENV{DYLD_FRAMEWORK_PATH} = $productDir; 89 # FIXME: Other platforms may wish to augment this method to use LD_LIBRARY_PATH, etc. 90} 91 92sub pathToBuiltJSC($) 93{ 94 my ($productDir) = @_; 95 my $jscName = "jsc"; 96 $jscName .= "_debug" if (isCygwin() && ($configuration eq "Debug")); 97 return "$productDir/$jscName"; 98} 99 100sub pathToSystemJSC() 101{ 102 my $path = "/System/Library/Frameworks/JavaScriptCore.framework/Resources/jsc"; 103 if (-f $path) { 104 return $path; 105 } 106 return undef; 107} 108 109sub pathToJSC() 110{ 111 my $path = pathToSystemJSC(); 112 return $path if defined $path; 113 114 buildJSC(); 115 116 my $productDir = jscProductDir(); 117 118 setupEnvironmentForExecution($productDir); 119 return pathToBuiltJSC($productDir); 120} 121 122my $jscPath = pathToJSC(); 123chdirWebKit(); 124chdir("SunSpider"); 125 126my @args = ("--shell", $jscPath); 127# This code could be removed if we chose to pass extra args to sunspider instead of Xcode 128push @args, "--suite=${suite}" if $suite; 129push @args, "--ubench" if $ubench; 130push @args, "--v8" if $v8; 131push @args, "--parse-only" if $parseonly; 132 133exec currentPerlPath(), "./sunspider-compare-results", @args, @ARGV; 134