1#!/usr/bin/env python 2# Copyright 2014 the V8 project authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6import argparse 7import os 8import subprocess 9import sys 10 11BOTS = { 12 '--arm32': 'v8_arm32_perf_try', 13 '--linux32': 'v8_linux32_perf_try', 14 '--linux64': 'v8_linux64_perf_try', 15 '--linux64_atom': 'v8_linux64_atom_perf_try', 16 '--linux64_haswell': 'v8_linux64_haswell_perf_try', 17 '--nexus5': 'v8_nexus5_perf_try', 18 '--nexus7': 'v8_nexus7_perf_try', 19 '--nexus9': 'v8_nexus9_perf_try', 20 '--nexus10': 'v8_nexus10_perf_try', 21} 22 23DEFAULT_BOTS = [ 24 'v8_arm32_perf_try', 25 'v8_linux32_perf_try', 26 'v8_linux64_haswell_perf_try', 27 'v8_nexus10_perf_try', 28] 29 30PUBLIC_BENCHMARKS = [ 31 'arewefastyet', 32 'embenchen', 33 'emscripten', 34 'compile', 35 'jetstream', 36 'jetstream-ignition', 37 'jsbench', 38 'jstests', 39 'kraken_orig', 40 'kraken_orig-ignition', 41 'massive', 42 'memory', 43 'octane', 44 'octane-noopt', 45 'octane-ignition', 46 'octane-pr', 47 'octane-tf', 48 'octane-tf-pr', 49 'simdjs', 50 'sunspider', 51 'sunspider-ignition', 52 'unity', 53 'wasm', 54] 55 56V8_BASE = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) 57 58def main(): 59 parser = argparse.ArgumentParser(description='') 60 parser.add_argument('benchmarks', nargs='+', help='The benchmarks to run.') 61 parser.add_argument('--extra-flags', default='', 62 help='Extra flags to be passed to the executable.') 63 parser.add_argument('-r', '--revision', type=str, default=None, 64 help='Revision (use full hash!) to use for the try job; ' 65 'default: the revision will be determined by the ' 66 'try server; see its waterfall for more info') 67 for option in sorted(BOTS): 68 parser.add_argument( 69 option, dest='bots', action='append_const', const=BOTS[option], 70 help='Add %s trybot.' % BOTS[option]) 71 options = parser.parse_args() 72 if not options.bots: 73 print 'No trybots specified. Using default %s.' % ','.join(DEFAULT_BOTS) 74 options.bots = DEFAULT_BOTS 75 76 if not options.benchmarks: 77 print 'Please specify the benchmarks to run as arguments.' 78 return 1 79 80 for benchmark in options.benchmarks: 81 if benchmark not in PUBLIC_BENCHMARKS: 82 print ('%s not found in our benchmark list. The respective trybot might ' 83 'fail, unless you run something this script isn\'t aware of. ' 84 'Available public benchmarks: %s' % (benchmark, PUBLIC_BENCHMARKS)) 85 print 'Proceed anyways? [Y/n] ', 86 answer = sys.stdin.readline().strip() 87 if answer != "" and answer != "Y" and answer != "y": 88 return 1 89 90 assert '"' not in options.extra_flags and '\'' not in options.extra_flags, ( 91 'Invalid flag specification.') 92 93 # Ensure depot_tools are updated. 94 subprocess.check_output( 95 'gclient', shell=True, stderr=subprocess.STDOUT, cwd=V8_BASE) 96 97 cmd = ['git cl try -m internal.client.v8'] 98 cmd += ['-b %s' % bot for bot in options.bots] 99 if options.revision: cmd += ['-r %s' % options.revision] 100 benchmarks = ['"%s"' % benchmark for benchmark in options.benchmarks] 101 cmd += ['-p \'testfilter=[%s]\'' % ','.join(benchmarks)] 102 if options.extra_flags: 103 cmd += ['-p \'extra_flags="%s"\'' % options.extra_flags] 104 subprocess.check_call(' '.join(cmd), shell=True, cwd=V8_BASE) 105 106 107if __name__ == '__main__': # pragma: no cover 108 sys.exit(main()) 109