blob: 7cb06f91caa5cc6c855937e456cfe7e6e14bb5bb [file] [log] [blame]
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -08001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4r"""
5Class describing a one-shot build configuration object
6"""
7
8import logging as log
Rupert Swarbrick6cc20112020-04-24 09:44:35 +01009import os
Srikrishna Iyer32aae3f2020-03-19 17:34:00 -070010from collections import OrderedDict
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080011
Rupert Swarbrick6cc20112020-04-24 09:44:35 +010012from Deploy import CompileOneShot
Udi Jonnalagaddadf49fb82020-03-17 11:05:17 -070013from FlowCfg import FlowCfg
Rupert Swarbrick6cc20112020-04-24 09:44:35 +010014from Modes import BuildModes, Modes
Srikrishna Iyer2d151192021-02-10 16:56:16 -080015from utils import rm_path
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080016
17
18class OneShotCfg(FlowCfg):
19 """Simple one-shot build flow for non-simulation targets like
20 linting, synthesis and FPV.
21 """
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080022
Rupert Swarbricka23dfec2020-09-07 10:01:28 +010023 ignored_wildcards = (FlowCfg.ignored_wildcards +
24 ['build_mode', 'index', 'test'])
Rupert Swarbricke83b55e2020-05-12 11:44:04 +010025
Rupert Swarbricka23dfec2020-09-07 10:01:28 +010026 def __init__(self, flow_cfg_file, hjson_data, args, mk_config):
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080027 # Options set from command line
28 self.tool = args.tool
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080029 self.verbose = args.verbose
Michael Schaffner3d160992020-03-31 18:37:53 -070030 self.flist_gen_cmd = ""
31 self.flist_gen_opts = []
32 self.sv_flist_gen_dir = ""
33 self.flist_file = ""
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080034 self.build_cmd = ""
35 self.build_opts = []
Michael Schaffner3d160992020-03-31 18:37:53 -070036 self.build_log = ""
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080037 self.report_cmd = ""
38 self.report_opts = []
39 self.build_opts.extend(args.build_opts)
40 self.build_unique = args.build_unique
41 self.build_only = args.build_only
42
43 # Options built from cfg_file files
44 self.project = ""
45 self.flow = ""
46 self.flow_makefile = ""
47 self.scratch_path = ""
48 self.build_dir = ""
49 self.run_dir = ""
50 self.sw_build_dir = ""
51 self.pass_patterns = []
52 self.fail_patterns = []
53 self.name = ""
54 self.dut = ""
55 self.fusesoc_core = ""
56 self.ral_spec = ""
57 self.build_modes = []
58 self.run_modes = []
59 self.regressions = []
Michael Schaffner8fc927c2020-06-22 15:43:32 -070060 self.max_msg_count = -1
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080061
62 # Flow results
Srikrishna Iyer32aae3f2020-03-19 17:34:00 -070063 self.result = OrderedDict()
64 self.result_summary = OrderedDict()
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080065
66 self.dry_run = args.dry_run
67
68 # Not needed for this build
69 self.verbosity = ""
70 self.en_build_modes = []
71
72 # Generated data structures
73 self.links = {}
74 self.build_list = []
75 self.deploy = []
Cindy Chene0d2c8c2020-06-18 11:01:36 -070076 self.cov = args.cov
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080077
Rupert Swarbricka23dfec2020-09-07 10:01:28 +010078 super().__init__(flow_cfg_file, hjson_data, args, mk_config)
79
80 def _merge_hjson(self, hjson_data):
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080081 # If build_unique is set, then add current timestamp to uniquify it
82 if self.build_unique:
83 self.build_dir += "_" + self.timestamp
84
Rupert Swarbricka23dfec2020-09-07 10:01:28 +010085 super()._merge_hjson(hjson_data)
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080086
Rupert Swarbricka23dfec2020-09-07 10:01:28 +010087 def _expand(self):
88 super()._expand()
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -080089
Scott Johnsonfe79c4b2020-07-08 10:31:08 -070090 # Stuff below only pertains to individual cfg (not primary cfg).
Srikrishna Iyer737238f2021-04-02 02:15:51 -070091 if not self.is_primary_cfg and (not self.select_cfgs or
92 self.name in self.select_cfgs):
Srikrishna Iyer559daed2020-12-04 18:22:18 -080093 # Print scratch_path at the start:
94 log.info("[scratch_path]: [%s] [%s]", self.name, self.scratch_path)
Srikrishna Iyerfbaa01a2020-03-19 15:32:23 -070095
96 # Set directories with links for ease of debug / triage.
97 self.links = {
98 "D": self.scratch_path + "/" + "dispatched",
99 "P": self.scratch_path + "/" + "passed",
100 "F": self.scratch_path + "/" + "failed",
101 "K": self.scratch_path + "/" + "killed"
102 }
103
104 # Use the default build mode for tests that do not specify it
105 if not hasattr(self, "build_mode"):
106 setattr(self, "build_mode", "default")
107
Srikrishna Iyerfbaa01a2020-03-19 15:32:23 -0700108 # Create objects from raw dicts - build_modes, sim_modes, run_modes,
Scott Johnsonfe79c4b2020-07-08 10:31:08 -0700109 # tests and regressions, only if not a primary cfg obj
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -0800110 self._create_objects()
111
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -0800112 # Purge the output directories. This operates on self.
113 def _purge(self):
Srikrishna Iyer2d151192021-02-10 16:56:16 -0800114 assert self.scratch_path
115 log.info("Purging scratch path %s", self.scratch_path)
116 rm_path(self.scratch_path)
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -0800117
118 def _create_objects(self):
119 # Create build and run modes objects
120 build_modes = Modes.create_modes(BuildModes,
121 getattr(self, "build_modes"))
122 setattr(self, "build_modes", build_modes)
123
124 # All defined build modes are being built, h
125 # ence extend all with the global opts.
126 for build_mode in build_modes:
127 build_mode.build_opts.extend(self.build_opts)
128
129 def _print_list(self):
130 for list_item in self.list_items:
131 log.info("---- List of %s in %s ----", list_item, self.name)
132 if hasattr(self, list_item):
133 items = getattr(self, list_item)
134 for item in items:
135 log.info(item)
136 else:
137 log.error("Item %s does not exist!", list_item)
138
139 def _create_dirs(self):
140 '''Create initial set of directories
141 '''
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -0800142 for link in self.links.keys():
Srikrishna Iyer2d151192021-02-10 16:56:16 -0800143 rm_path(self.links[link])
144 os.makedirs(self.links[link])
Michael Schaffner8ac6c4c2020-03-03 15:00:20 -0800145
146 def _create_deploy_objects(self):
147 '''Create deploy objects from build modes
148 '''
149 builds = []
150 build_map = {}
151 for build in self.build_modes:
152 item = CompileOneShot(build, self)
153 builds.append(item)
154 build_map[build] = item
155
156 self.builds = builds
157 self.deploy = builds
158
159 # Create initial set of directories before kicking off the regression.
160 self._create_dirs()