Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 1 | # Copyright lowRISC contributors. |
| 2 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | r""" |
| 5 | Class describing a one-shot build configuration object |
| 6 | """ |
| 7 | |
| 8 | import logging as log |
Rupert Swarbrick | 6cc2011 | 2020-04-24 09:44:35 +0100 | [diff] [blame] | 9 | import os |
Srikrishna Iyer | 32aae3f | 2020-03-19 17:34:00 -0700 | [diff] [blame] | 10 | from collections import OrderedDict |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 11 | |
Rupert Swarbrick | 6cc2011 | 2020-04-24 09:44:35 +0100 | [diff] [blame] | 12 | from Deploy import CompileOneShot |
Udi Jonnalagadda | df49fb8 | 2020-03-17 11:05:17 -0700 | [diff] [blame] | 13 | from FlowCfg import FlowCfg |
Rupert Swarbrick | 6cc2011 | 2020-04-24 09:44:35 +0100 | [diff] [blame] | 14 | from Modes import BuildModes, Modes |
Srikrishna Iyer | 2d15119 | 2021-02-10 16:56:16 -0800 | [diff] [blame] | 15 | from utils import rm_path |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 16 | |
| 17 | |
| 18 | class OneShotCfg(FlowCfg): |
| 19 | """Simple one-shot build flow for non-simulation targets like |
| 20 | linting, synthesis and FPV. |
| 21 | """ |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 22 | |
Rupert Swarbrick | a23dfec | 2020-09-07 10:01:28 +0100 | [diff] [blame] | 23 | ignored_wildcards = (FlowCfg.ignored_wildcards + |
| 24 | ['build_mode', 'index', 'test']) |
Rupert Swarbrick | e83b55e | 2020-05-12 11:44:04 +0100 | [diff] [blame] | 25 | |
Rupert Swarbrick | a23dfec | 2020-09-07 10:01:28 +0100 | [diff] [blame] | 26 | def __init__(self, flow_cfg_file, hjson_data, args, mk_config): |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 27 | # Options set from command line |
| 28 | self.tool = args.tool |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 29 | self.verbose = args.verbose |
Michael Schaffner | 3d16099 | 2020-03-31 18:37:53 -0700 | [diff] [blame] | 30 | self.flist_gen_cmd = "" |
| 31 | self.flist_gen_opts = [] |
| 32 | self.sv_flist_gen_dir = "" |
| 33 | self.flist_file = "" |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 34 | self.build_cmd = "" |
| 35 | self.build_opts = [] |
Michael Schaffner | 3d16099 | 2020-03-31 18:37:53 -0700 | [diff] [blame] | 36 | self.build_log = "" |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 37 | 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 Schaffner | 8fc927c | 2020-06-22 15:43:32 -0700 | [diff] [blame] | 60 | self.max_msg_count = -1 |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 61 | |
| 62 | # Flow results |
Srikrishna Iyer | 32aae3f | 2020-03-19 17:34:00 -0700 | [diff] [blame] | 63 | self.result = OrderedDict() |
| 64 | self.result_summary = OrderedDict() |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 65 | |
| 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 Chen | e0d2c8c | 2020-06-18 11:01:36 -0700 | [diff] [blame] | 76 | self.cov = args.cov |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 77 | |
Rupert Swarbrick | a23dfec | 2020-09-07 10:01:28 +0100 | [diff] [blame] | 78 | super().__init__(flow_cfg_file, hjson_data, args, mk_config) |
| 79 | |
| 80 | def _merge_hjson(self, hjson_data): |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 81 | # 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 Swarbrick | a23dfec | 2020-09-07 10:01:28 +0100 | [diff] [blame] | 85 | super()._merge_hjson(hjson_data) |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 86 | |
Rupert Swarbrick | a23dfec | 2020-09-07 10:01:28 +0100 | [diff] [blame] | 87 | def _expand(self): |
| 88 | super()._expand() |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 89 | |
Scott Johnson | fe79c4b | 2020-07-08 10:31:08 -0700 | [diff] [blame] | 90 | # Stuff below only pertains to individual cfg (not primary cfg). |
Srikrishna Iyer | 737238f | 2021-04-02 02:15:51 -0700 | [diff] [blame] | 91 | if not self.is_primary_cfg and (not self.select_cfgs or |
| 92 | self.name in self.select_cfgs): |
Srikrishna Iyer | 559daed | 2020-12-04 18:22:18 -0800 | [diff] [blame] | 93 | # Print scratch_path at the start: |
| 94 | log.info("[scratch_path]: [%s] [%s]", self.name, self.scratch_path) |
Srikrishna Iyer | fbaa01a | 2020-03-19 15:32:23 -0700 | [diff] [blame] | 95 | |
| 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 Iyer | fbaa01a | 2020-03-19 15:32:23 -0700 | [diff] [blame] | 108 | # Create objects from raw dicts - build_modes, sim_modes, run_modes, |
Scott Johnson | fe79c4b | 2020-07-08 10:31:08 -0700 | [diff] [blame] | 109 | # tests and regressions, only if not a primary cfg obj |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 110 | self._create_objects() |
| 111 | |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 112 | # Purge the output directories. This operates on self. |
| 113 | def _purge(self): |
Srikrishna Iyer | 2d15119 | 2021-02-10 16:56:16 -0800 | [diff] [blame] | 114 | assert self.scratch_path |
| 115 | log.info("Purging scratch path %s", self.scratch_path) |
| 116 | rm_path(self.scratch_path) |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 117 | |
| 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 Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 142 | for link in self.links.keys(): |
Srikrishna Iyer | 2d15119 | 2021-02-10 16:56:16 -0800 | [diff] [blame] | 143 | rm_path(self.links[link]) |
| 144 | os.makedirs(self.links[link]) |
Michael Schaffner | 8ac6c4c | 2020-03-03 15:00:20 -0800 | [diff] [blame] | 145 | |
| 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() |