blob: f7befb3004e2c6d81fd14184104bb55761d5b483 [file] [log] [blame]
Ian Zernydcb172e2022-02-22 15:36:45 +01001#!/usr/bin/env python3
Rico Wind9d70f612018-08-31 09:17:43 +02002# Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
3# for details. All rights reserved. Use of this source code is governed by a
4# BSD-style license that can be found in the LICENSE file.
5
6# Script for running kotlin based benchmarks
7
8import optparse
9import os
10import subprocess
11import sys
12import toolhelper
13import utils
14
Rico Wind9d70f612018-08-31 09:17:43 +020015BENCHMARK_ROOT = os.path.join(utils.REPO_ROOT, 'third_party', 'benchmarks',
16 'kotlin-benches')
17
18BENCHMARK_PATTERN = '{benchmark}/kotlin/perf/build/libs/perf-1.0-BENCH.jar'
19BENCHMARK_MAIN_CLASS = 'com.android.kt.bms.cli.Runner'
20ART = os.path.join(utils.TOOLS_DIR, 'linux', 'art', 'bin', 'art')
21
22PROGUARD_CONF = """
23# From Android rules
24-keepclasseswithmembers public class * {
25 public static void main(java.lang.String[]);
26}
27# Disable obfuscation to only focus on shrinking
28-dontobfuscate
29# Once we're ready for optimization, we might want to relax access modifiers.
30-allowaccessmodification
31"""
32
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020033DEVICE_TEMP = '/data/local/temp/bench'
Rico Wind9d70f612018-08-31 09:17:43 +020034
35
36def parse_options():
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020037 result = optparse.OptionParser()
38 result.add_option('--api',
39 help='Android api level',
40 default='26',
41 choices=['21', '22', '23', '24', '25', '26'])
42 result.add_option('--benchmark',
43 help='The benchmark to run',
44 default='rgx',
45 choices=['rgx', 'deltablue', 'sta', 'empty'])
46 result.add_option('--use-device',
47 help='Run the benchmark on an attaced device',
48 default=False,
49 action='store_true')
50 return result.parse_args()
Rico Wind9d70f612018-08-31 09:17:43 +020051
52
53def get_jar_for_benchmark(benchmark):
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020054 return os.path.join(BENCHMARK_ROOT,
55 BENCHMARK_PATTERN.format(benchmark=benchmark))
56
Rico Wind9d70f612018-08-31 09:17:43 +020057
58def run_art(dex):
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020059 command = ['bash', ART, '-cp', dex, BENCHMARK_MAIN_CLASS]
60 utils.PrintCmd(command)
61 benchmark_output = subprocess.check_output(command)
62 return get_result(benchmark_output)
63
Rico Wind9d70f612018-08-31 09:17:43 +020064
65def adb(args):
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020066 command = ['adb'] + args
67 utils.PrintCmd(command)
68 return subprocess.check_output(['adb'] + args)
69
Rico Wind9d70f612018-08-31 09:17:43 +020070
71def get_result(output):
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020072 # There is a lot of debug output, with the actual results being in the line with:
73 # RESULTS,KtBench,KtBench,15719
74 # structure.
75 for result in [s for s in output.splitlines() if s.startswith('RESULTS')]:
76 return s.split('RESULTS,KtBench,KtBench,')[1]
77
Rico Wind9d70f612018-08-31 09:17:43 +020078
79def run_art_device(dex):
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020080 adb(['wait-for-device', 'root'])
81 device_dst = os.path.join(DEVICE_TEMP, os.path.basename(dex))
82 adb(['push', dex, device_dst])
83 benchmark_output = adb(
84 ['shell', 'dalvikvm', '-cp', device_dst, BENCHMARK_MAIN_CLASS])
85 return get_result(benchmark_output)
86
Rico Wind9d70f612018-08-31 09:17:43 +020087
88def Main():
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +020089 (options, args) = parse_options()
90 with utils.TempDir() as temp:
91 dex_path = os.path.join(temp, "classes.jar")
92 proguard_conf = os.path.join(temp, 'proguard.conf')
93 with open(proguard_conf, 'w') as f:
94 f.write(PROGUARD_CONF)
95 benchmark_jar = get_jar_for_benchmark(options.benchmark)
96 r8_args = [
97 '--lib',
98 utils.get_android_jar(26), # Only works with api 26
99 '--output',
100 dex_path,
101 '--pg-conf',
102 proguard_conf,
103 '--min-api',
104 str(options.api),
105 benchmark_jar
106 ]
107 toolhelper.run('r8', r8_args, True)
108 if options.use_device:
109 result = run_art_device(dex_path)
110 else:
111 result = run_art(dex_path)
112 print('Kotlin_{}(RunTimeRaw): {} ms'.format(options.benchmark, result))
113
Rico Wind9d70f612018-08-31 09:17:43 +0200114
115if __name__ == '__main__':
Christoffer Quist Adamsen2434a4d2023-10-16 11:29:03 +0200116 sys.exit(Main())