blob: 426718a079a6a86164674d688fd415749ba6da47 [file] [log] [blame]
Morten Krogh-Jespersen38c7ca02019-02-04 10:39:57 +01001#!/usr/bin/env python
2# Copyright (c) 2019, 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# Run R8 or PG on 'third_party/r8/r8.jar'.
7# Report Golem-compatible CodeSize and RunTimeRaw values:
8#
9# <NAME>-Total(CodeSize): <size>
10# <NAME>-Total(RunTimeRaw>: <time> ms
11#
12# and also detailed segment sizes for each classfile segment:
13#
14# <NAME>-Code(CodeSize): <size>
15# <NAME>-AnnotationSets(CodeSize): <size>
16# ...
17#
Morten Krogh-Jespersen480784d2019-02-05 08:10:46 +010018# Uses the R8CfSegments Java tool which is downloaded as an x20 dependency.
19# To make changes to the R8CfSegments tool one can use the gradle target -
20# remember to update the x20 dependency afterwards if you want the numbers
21# tracked.
Morten Krogh-Jespersen38c7ca02019-02-04 10:39:57 +010022
23from __future__ import print_function
24import argparse
25import golem
26import minify_tool
27import os
28import sys
29import utils
30
31def parse_arguments():
32 parser = argparse.ArgumentParser(
33 description = 'Run R8 or PG on'
34 ' third_party/r8/r8.jar.'
35 ' Report Golem-compatible CodeSize and RunTimeRaw values.')
36 parser.add_argument('--tool',
37 choices = ['pg', 'r8'],
38 required = True,
39 help = 'Compiler tool to use.')
40 parser.add_argument('--golem',
41 help = 'Running on golem, link in third_party resources.',
42 default = False,
43 action = 'store_true')
44 parser.add_argument('--name',
45 required = True,
46 help = 'Results will be printed using the specified benchmark name (e.g.'
47 ' <NAME>-<segment>(CodeSize): <bytes>), the full size is reported'
48 ' with <NAME>-Total(CodeSize)')
49 parser.add_argument('--print-memoryuse',
50 help = 'Prints the line \'<NAME>-Total(MemoryUse):'
51 ' <mem>\' at the end where <mem> is the peak'
52 ' peak resident set size (VmHWM) in bytes.',
53 default = False,
54 action = 'store_true')
55 parser.add_argument('--output',
56 help = 'Output directory to keep the generated files')
57 return parser.parse_args()
58
59
60def Main():
Morten Krogh-Jespersen38c7ca02019-02-04 10:39:57 +010061 args = parse_arguments()
Morten Krogh-Jespersen38c7ca02019-02-04 10:39:57 +010062 if args.golem:
63 golem.link_third_party()
Morten Krogh-Jespersenc32e3132019-02-22 11:34:26 +010064 utils.check_java_version()
65 output_dir = args.output
Morten Krogh-Jespersen38c7ca02019-02-04 10:39:57 +010066 with utils.TempDir() as temp_dir:
67 if not output_dir:
68 output_dir = temp_dir
69 track_memory_file = None
70 if args.print_memoryuse:
71 track_memory_file = os.path.join(output_dir, utils.MEMORY_USE_TMP_FILE)
72 if args.tool == 'pg':
73 utils.print_cfsegments(args.name, [utils.PINNED_PGR8_JAR])
74 else:
75 out_file = os.path.join(output_dir, 'out.jar')
76 return_code = minify_tool.minify_tool(
77 input_jar=utils.PINNED_R8_JAR,
78 output_jar=out_file,
79 debug=False,
80 build=False,
81 track_memory_file=track_memory_file,
82 benchmark_name=args.name + "-Total")
83 if return_code != 0:
84 sys.exit(return_code)
85
86 utils.print_cfsegments(args.name, [out_file])
87
88
89if __name__ == '__main__':
90 sys.exit(Main())