blob: a767fd8a25c476062e23a3ea3626a30b985dd6ca [file] [log] [blame]
asharif96f59692013-02-16 03:13:36 +00001#!/usr/bin/python
2
3# Script to test different toolchains against ChromeOS benchmarks.
4import optparse
5import os
6import sys
7import build_chromeos
8import setup_chromeos
9from utils import command_executer
10from utils import misc
11from utils import logger
12
13
14class GCCConfig(object):
15 def __init__(self, githash):
16 self.githash = githash
17
18
19class ToolchainConfig:
20 def __init__(self, gcc_config=None, binutils_config=None):
21 self.gcc_config = gcc_config
22
23
24class ChromeOSCheckout(object):
25 def __init__(self, board, chromeos_root):
26 self._board = board
27 self._chromeos_root = chromeos_root
28 self._ce = command_executer.GetCommandExecuter()
29 self._l = logger.GetLogger()
30
asharif3e38de02013-02-19 19:34:59 +000031 def _DeleteChroot(self):
asharif87414272013-02-19 19:58:45 +000032 command = "cd %s; cros_sdk --delete" % self._chromeos_root
asharif3e38de02013-02-19 19:34:59 +000033 return self._ce.RunCommand(command)
34
asharif67973582013-02-19 20:19:40 +000035 def _DeleteCcahe(self):
36 # crosbug.com/34956
37 command = "sudo rm -rf %s" % os.path.join(self._chromeos_root, ".cache")
38 return self._ce.RunCommand(command)
39
asharif96f59692013-02-16 03:13:36 +000040 def _BuildAndImage(self, label=""):
41 if (not label or
42 not misc.DoesLabelExist(self._chromeos_root, self._board, label)):
43 build_chromeos_args = [build_chromeos.__file__,
44 "--chromeos_root=%s" % self._chromeos_root,
45 "--board=%s" % self._board,
46 "--rebuild"]
asharife6b72fe2013-02-19 19:58:18 +000047 if self._public:
48 build_chromeos_args.append("--env=USE=-chrome_internal")
Yunlian Jiangd145a582013-08-19 13:59:34 -070049 if label == "vanilla":
50 build_chromeos_args.append("--vanilla_image")
asharif96f59692013-02-16 03:13:36 +000051 ret = build_chromeos.Main(build_chromeos_args)
52 if ret:
53 raise Exception("Couldn't build ChromeOS!")
54 if label:
55 misc.LabelLatestImage(self._chromeos_root, self._board, label)
56 return label
57
58 def _SetupBoard(self, env_dict):
59 env_string = misc.GetEnvStringFromDict(env_dict)
60 command = ("%s %s" %
61 (env_string,
62 misc.GetSetupBoardCommand(self._board,
63 usepkg=False)))
64 ret = self._ce.ChrootRunCommand(self._chromeos_root,
65 command)
66 assert ret == 0, "Could not setup board with new toolchain."
67
68 def _UnInstallToolchain(self):
69 command = ("sudo CLEAN_DELAY=0 emerge -C cross-%s/gcc" %
70 misc.GetCtargetFromBoard(self._board,
71 self._chromeos_root))
72 ret = self._ce.ChrootRunCommand(self._chromeos_root,
73 command)
74 if ret:
75 raise Exception("Couldn't uninstall the toolchain!")
76
77 def _CheckoutChromeOS(self):
78 # TODO(asharif): Setup a fixed ChromeOS version (quarterly snapshot).
79 if not os.path.exists(self._chromeos_root):
80 setup_chromeos_args = [setup_chromeos.__file__,
Caroline Ticec35909e2013-10-02 17:13:13 -070081 "--dir=%s" % self._chromeos_root]
asharife6b72fe2013-02-19 19:58:18 +000082 if self._public:
83 setup_chromeos_args.append("--public")
asharif5fe40e22013-02-19 19:58:50 +000084 ret = setup_chromeos.Main(setup_chromeos_args)
85 if ret:
86 raise Exception("Couldn't run setup_chromeos!")
asharif96f59692013-02-16 03:13:36 +000087
Caroline Ticec35909e2013-10-02 17:13:13 -070088
asharif96f59692013-02-16 03:13:36 +000089 def _BuildToolchain(self, config):
90 self._UnInstallToolchain()
91 self._SetupBoard({"USE": "git_gcc",
92 "GCC_GITHASH": config.gcc_config.githash,
93 "EMERGE_DEFAULT_OPTS": "--exclude=gcc"})
94
95
96class ToolchainComparator(ChromeOSCheckout):
asharif58a8c9f2013-02-19 20:42:43 +000097 def __init__(self, board, remotes, configs, clean, public, force_mismatch):
asharif96f59692013-02-16 03:13:36 +000098 self._board = board
99 self._remotes = remotes
100 self._chromeos_root = "chromeos"
101 self._configs = configs
asharif3e38de02013-02-19 19:34:59 +0000102 self._clean = clean
asharife6b72fe2013-02-19 19:58:18 +0000103 self._public = public
asharif58a8c9f2013-02-19 20:42:43 +0000104 self._force_mismatch = force_mismatch
asharif96f59692013-02-16 03:13:36 +0000105 self._ce = command_executer.GetCommandExecuter()
106 self._l = logger.GetLogger()
107 ChromeOSCheckout.__init__(self, board, self._chromeos_root)
108
109 def _TestLabels(self, labels):
110 experiment_file = "toolchain_experiment.txt"
asharif58a8c9f2013-02-19 20:42:43 +0000111 image_args = ""
112 if self._force_mismatch:
asharif0b5d5c82013-02-19 20:42:56 +0000113 image_args = "--force-mismatch"
asharif96f59692013-02-16 03:13:36 +0000114 experiment_header = """
115 board: %s
116 remote: %s
117 """ % (self._board, self._remotes)
118 experiment_tests = """
cmtice04403882013-11-04 16:38:37 -0500119 benchmark: all_perfv2 {
120 suite: telemetry_Crosperf
ashariffce80422013-02-19 20:20:11 +0000121 iterations: 1
asharif96f59692013-02-16 03:13:36 +0000122 }
123 """
124 with open(experiment_file, "w") as f:
125 print >>f, experiment_header
126 print >>f, experiment_tests
127 for label in labels:
128 # TODO(asharif): Fix crosperf so it accepts labels with symbols
129 crosperf_label = label
130 crosperf_label = crosperf_label.replace("-", "minus")
131 crosperf_label = crosperf_label.replace("+", "plus")
asharife4a5a8f2013-02-19 20:19:33 +0000132 crosperf_label = crosperf_label.replace(".", "")
asharif96f59692013-02-16 03:13:36 +0000133 experiment_image = """
134 %s {
135 chromeos_image: %s
asharif58a8c9f2013-02-19 20:42:43 +0000136 image_args: %s
asharif96f59692013-02-16 03:13:36 +0000137 }
138 """ % (crosperf_label,
139 os.path.join(misc.GetImageDir(self._chromeos_root, self._board),
140 label,
asharif58a8c9f2013-02-19 20:42:43 +0000141 "chromiumos_test_image.bin"),
142 image_args)
asharif96f59692013-02-16 03:13:36 +0000143 print >>f, experiment_image
144 crosperf = os.path.join(os.path.dirname(__file__),
145 "crosperf",
146 "crosperf")
asharifb2cd6342013-02-19 19:42:57 +0000147 command = "%s --email=c-compiler-chrome %s" % (crosperf, experiment_file)
asharif96f59692013-02-16 03:13:36 +0000148 ret = self._ce.RunCommand(command)
149 if ret:
150 raise Exception("Couldn't run crosperf!")
151
152 def DoAll(self):
153 self._CheckoutChromeOS()
asharif96f59692013-02-16 03:13:36 +0000154 labels = []
155 vanilla_label = self._BuildAndImage("vanilla")
156 labels.append(vanilla_label)
157 for config in self._configs:
158 label = misc.GetFilenameFromString(config.gcc_config.githash)
159 if (not misc.DoesLabelExist(self._chromeos_root,
160 self._board,
161 label)):
162 self._BuildToolchain(config)
163 label = self._BuildAndImage(label)
164 labels.append(label)
165 self._TestLabels(labels)
asharif3e38de02013-02-19 19:34:59 +0000166 if self._clean:
167 ret = self._DeleteChroot()
168 if ret: return ret
asharif67973582013-02-19 20:19:40 +0000169 ret = self._DeleteCcahe()
170 if ret: return ret
asharif96f59692013-02-16 03:13:36 +0000171 return 0
172
173
174def Main(argv):
175 """The main function."""
176 # Common initializations
177### command_executer.InitCommandExecuter(True)
178 command_executer.InitCommandExecuter()
179 parser = optparse.OptionParser()
180 parser.add_option("--remote",
181 dest="remote",
182 help="Remote machines to run tests on.")
183 parser.add_option("--board",
184 dest="board",
185 default="x86-zgb",
186 help="The target board.")
187 parser.add_option("--githashes",
188 dest="githashes",
189 default="master",
190 help="The gcc githashes to test.")
asharif3e38de02013-02-19 19:34:59 +0000191 parser.add_option("--clean",
192 dest="clean",
193 default=False,
194 action="store_true",
195 help="Clean the chroot after testing.")
asharife6b72fe2013-02-19 19:58:18 +0000196 parser.add_option("--public",
197 dest="public",
198 default=False,
199 action="store_true",
200 help="Use the public checkout/build.")
asharif58a8c9f2013-02-19 20:42:43 +0000201 parser.add_option("--force-mismatch",
202 dest="force_mismatch",
203 default="",
204 help="Force the image regardless of board mismatch")
asharif96f59692013-02-16 03:13:36 +0000205 options, _ = parser.parse_args(argv)
206 if not options.board:
207 print "Please give a board."
208 return 1
209 if not options.remote:
210 print "Please give at least one remote machine."
211 return 1
212 toolchain_configs = []
213 for githash in options.githashes.split(","):
214 gcc_config = GCCConfig(githash=githash)
215 toolchain_config = ToolchainConfig(gcc_config=gcc_config)
216 toolchain_configs.append(toolchain_config)
asharif3e38de02013-02-19 19:34:59 +0000217 fc = ToolchainComparator(options.board, options.remote, toolchain_configs,
asharif58a8c9f2013-02-19 20:42:43 +0000218 options.clean, options.public,
219 options.force_mismatch)
asharif96f59692013-02-16 03:13:36 +0000220 return fc.DoAll()
221
222
223if __name__ == "__main__":
224 retval = Main(sys.argv)
225 sys.exit(retval)