blob: 702af56b323c86e1bb3259b1c306a2eb770ed1c0 [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__,
81 "--dir=%s" % self._chromeos_root,
82 "--minilayout"]
asharife6b72fe2013-02-19 19:58:18 +000083 if self._public:
84 setup_chromeos_args.append("--public")
asharif5fe40e22013-02-19 19:58:50 +000085 ret = setup_chromeos.Main(setup_chromeos_args)
86 if ret:
87 raise Exception("Couldn't run setup_chromeos!")
asharif96f59692013-02-16 03:13:36 +000088
89 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 = """
119 benchmark: desktopui_PyAutoPerfTests {
ashariffce80422013-02-19 20:20:11 +0000120 iterations: 1
asharif96f59692013-02-16 03:13:36 +0000121 }
122 """
123 with open(experiment_file, "w") as f:
124 print >>f, experiment_header
125 print >>f, experiment_tests
126 for label in labels:
127 # TODO(asharif): Fix crosperf so it accepts labels with symbols
128 crosperf_label = label
129 crosperf_label = crosperf_label.replace("-", "minus")
130 crosperf_label = crosperf_label.replace("+", "plus")
asharife4a5a8f2013-02-19 20:19:33 +0000131 crosperf_label = crosperf_label.replace(".", "")
asharif96f59692013-02-16 03:13:36 +0000132 experiment_image = """
133 %s {
134 chromeos_image: %s
asharif58a8c9f2013-02-19 20:42:43 +0000135 image_args: %s
asharif96f59692013-02-16 03:13:36 +0000136 }
137 """ % (crosperf_label,
138 os.path.join(misc.GetImageDir(self._chromeos_root, self._board),
139 label,
asharif58a8c9f2013-02-19 20:42:43 +0000140 "chromiumos_test_image.bin"),
141 image_args)
asharif96f59692013-02-16 03:13:36 +0000142 print >>f, experiment_image
143 crosperf = os.path.join(os.path.dirname(__file__),
144 "crosperf",
145 "crosperf")
asharifb2cd6342013-02-19 19:42:57 +0000146 command = "%s --email=c-compiler-chrome %s" % (crosperf, experiment_file)
asharif96f59692013-02-16 03:13:36 +0000147 ret = self._ce.RunCommand(command)
148 if ret:
149 raise Exception("Couldn't run crosperf!")
150
151 def DoAll(self):
152 self._CheckoutChromeOS()
asharif96f59692013-02-16 03:13:36 +0000153 labels = []
154 vanilla_label = self._BuildAndImage("vanilla")
155 labels.append(vanilla_label)
156 for config in self._configs:
157 label = misc.GetFilenameFromString(config.gcc_config.githash)
158 if (not misc.DoesLabelExist(self._chromeos_root,
159 self._board,
160 label)):
161 self._BuildToolchain(config)
162 label = self._BuildAndImage(label)
163 labels.append(label)
164 self._TestLabels(labels)
asharif3e38de02013-02-19 19:34:59 +0000165 if self._clean:
166 ret = self._DeleteChroot()
167 if ret: return ret
asharif67973582013-02-19 20:19:40 +0000168 ret = self._DeleteCcahe()
169 if ret: return ret
asharif96f59692013-02-16 03:13:36 +0000170 return 0
171
172
173def Main(argv):
174 """The main function."""
175 # Common initializations
176### command_executer.InitCommandExecuter(True)
177 command_executer.InitCommandExecuter()
178 parser = optparse.OptionParser()
179 parser.add_option("--remote",
180 dest="remote",
181 help="Remote machines to run tests on.")
182 parser.add_option("--board",
183 dest="board",
184 default="x86-zgb",
185 help="The target board.")
186 parser.add_option("--githashes",
187 dest="githashes",
188 default="master",
189 help="The gcc githashes to test.")
asharif3e38de02013-02-19 19:34:59 +0000190 parser.add_option("--clean",
191 dest="clean",
192 default=False,
193 action="store_true",
194 help="Clean the chroot after testing.")
asharife6b72fe2013-02-19 19:58:18 +0000195 parser.add_option("--public",
196 dest="public",
197 default=False,
198 action="store_true",
199 help="Use the public checkout/build.")
asharif58a8c9f2013-02-19 20:42:43 +0000200 parser.add_option("--force-mismatch",
201 dest="force_mismatch",
202 default="",
203 help="Force the image regardless of board mismatch")
asharif96f59692013-02-16 03:13:36 +0000204 options, _ = parser.parse_args(argv)
205 if not options.board:
206 print "Please give a board."
207 return 1
208 if not options.remote:
209 print "Please give at least one remote machine."
210 return 1
211 toolchain_configs = []
212 for githash in options.githashes.split(","):
213 gcc_config = GCCConfig(githash=githash)
214 toolchain_config = ToolchainConfig(gcc_config=gcc_config)
215 toolchain_configs.append(toolchain_config)
asharif3e38de02013-02-19 19:34:59 +0000216 fc = ToolchainComparator(options.board, options.remote, toolchain_configs,
asharif58a8c9f2013-02-19 20:42:43 +0000217 options.clean, options.public,
218 options.force_mismatch)
asharif96f59692013-02-16 03:13:36 +0000219 return fc.DoAll()
220
221
222if __name__ == "__main__":
223 retval = Main(sys.argv)
224 sys.exit(retval)