Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 1 | // Copyright 2018 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package dexpreopt |
| 16 | |
| 17 | import ( |
| 18 | "encoding/json" |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 19 | "fmt" |
Paul Duffin | 7d1d083 | 2021-04-23 11:39:41 +0100 | [diff] [blame] | 20 | "reflect" |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 21 | "strings" |
Colin Cross | 74ba962 | 2019-02-11 15:11:14 -0800 | [diff] [blame] | 22 | |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 23 | "github.com/google/blueprint" |
| 24 | |
Colin Cross | 74ba962 | 2019-02-11 15:11:14 -0800 | [diff] [blame] | 25 | "android/soong/android" |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 26 | ) |
| 27 | |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 28 | // GlobalConfig stores the configuration for dex preopting. The fields are set |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 29 | // from product variables via dex_preopt_config.mk. |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 30 | type GlobalConfig struct { |
Ulya Trafimovich | a4a1c4e | 2021-01-15 18:40:04 +0000 | [diff] [blame] | 31 | DisablePreopt bool // disable preopt for all modules (excluding boot images) |
| 32 | DisablePreoptBootImages bool // disable prepot for boot images |
| 33 | DisablePreoptModules []string // modules with preopt disabled by product-specific config |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 34 | |
| 35 | OnlyPreoptBootImageAndSystemServer bool // only preopt jars in the boot image or system server |
| 36 | |
Ulya Trafimovich | 9023b02 | 2021-03-22 16:02:28 +0000 | [diff] [blame] | 37 | PreoptWithUpdatableBcp bool // If updatable boot jars are included in dexpreopt or not. |
| 38 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 39 | HasSystemOther bool // store odex files that match PatternsOnSystemOther on the system_other partition |
| 40 | PatternsOnSystemOther []string // patterns (using '%' to denote a prefix match) to put odex on the system_other partition |
| 41 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 42 | DisableGenerateProfile bool // don't generate profiles |
| 43 | ProfileDir string // directory to find profiles in |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 44 | |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 45 | BootJars android.ConfiguredJarList // modules for jars that form the boot class path |
| 46 | ApexBootJars android.ConfiguredJarList // jars within apex that form the boot class path |
Vladimir Marko | d2ee532 | 2018-12-19 17:57:57 +0000 | [diff] [blame] | 47 | |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 48 | ArtApexJars android.ConfiguredJarList // modules for jars that are in the ART APEX |
Colin Cross | 800fe13 | 2019-02-11 14:21:24 -0800 | [diff] [blame] | 49 | |
Jiakai Zhang | cee9e19 | 2021-10-29 19:46:45 +0000 | [diff] [blame] | 50 | SystemServerJars android.ConfiguredJarList // system_server classpath jars on the platform |
| 51 | SystemServerApps []string // apps that are loaded into system server |
| 52 | ApexSystemServerJars android.ConfiguredJarList // system_server classpath jars delivered via apex |
| 53 | StandaloneSystemServerJars android.ConfiguredJarList // jars on the platform that system_server loads dynamically using separate classloaders |
| 54 | ApexStandaloneSystemServerJars android.ConfiguredJarList // jars delivered via apex that system_server loads dynamically using separate classloaders |
| 55 | SpeedApps []string // apps that should be speed optimized |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 56 | |
Ulya Trafimovich | cd3203f | 2020-03-27 11:30:00 +0000 | [diff] [blame] | 57 | BrokenSuboptimalOrderOfSystemServerJars bool // if true, sub-optimal order does not cause a build error |
| 58 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 59 | PreoptFlags []string // global dex2oat flags that should be used if no module-specific dex2oat flags are specified |
| 60 | |
| 61 | DefaultCompilerFilter string // default compiler filter to pass to dex2oat, overridden by --compiler-filter= in module-specific dex2oat flags |
| 62 | SystemServerCompilerFilter string // default compiler filter to pass to dex2oat for system server jars |
| 63 | |
Nicolas Geoffray | c1bf724 | 2019-10-18 14:51:38 +0100 | [diff] [blame] | 64 | GenerateDMFiles bool // generate Dex Metadata files |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 65 | |
| 66 | NoDebugInfo bool // don't generate debug info by default |
Mathieu Chartier | 3f7ddbb | 2019-04-29 09:33:50 -0700 | [diff] [blame] | 67 | DontResolveStartupStrings bool // don't resolve string literals loaded during application startup. |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 68 | AlwaysSystemServerDebugInfo bool // always generate mini debug info for system server modules (overrides NoDebugInfo=true) |
| 69 | NeverSystemServerDebugInfo bool // never generate mini debug info for system server modules (overrides NoDebugInfo=false) |
| 70 | AlwaysOtherDebugInfo bool // always generate mini debug info for non-system server modules (overrides NoDebugInfo=true) |
| 71 | NeverOtherDebugInfo bool // never generate mini debug info for non-system server modules (overrides NoDebugInfo=true) |
| 72 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 73 | IsEng bool // build is a eng variant |
| 74 | SanitizeLite bool // build is the second phase of a SANITIZE_LITE build |
| 75 | |
| 76 | DefaultAppImages bool // build app images (TODO: .art files?) by default |
| 77 | |
Colin Cross | 800fe13 | 2019-02-11 14:21:24 -0800 | [diff] [blame] | 78 | Dex2oatXmx string // max heap size for dex2oat |
| 79 | Dex2oatXms string // initial heap size for dex2oat |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 80 | |
| 81 | EmptyDirectory string // path to an empty directory |
| 82 | |
Colin Cross | 74ba962 | 2019-02-11 15:11:14 -0800 | [diff] [blame] | 83 | CpuVariant map[android.ArchType]string // cpu variant for each architecture |
| 84 | InstructionSetFeatures map[android.ArchType]string // instruction set for each architecture |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 85 | |
Nicolas Geoffray | 1086e60 | 2021-01-20 14:30:40 +0000 | [diff] [blame] | 86 | BootImageProfiles android.Paths // path to a boot-image-profile.txt file |
| 87 | BootFlags string // extra flags to pass to dex2oat for the boot image |
| 88 | Dex2oatImageXmx string // max heap size for dex2oat for the boot image |
| 89 | Dex2oatImageXms string // initial heap size for dex2oat for the boot image |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 90 | |
Ulya Trafimovich | 4a13acb | 2021-03-02 12:25:02 +0000 | [diff] [blame] | 91 | // If true, downgrade the compiler filter of dexpreopt to "verify" when verify_uses_libraries |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 92 | // check fails, instead of failing the build. This will disable any AOT-compilation. |
| 93 | // |
| 94 | // The intended use case for this flag is to have a smoother migration path for the Java |
| 95 | // modules that need to add <uses-library> information in their build files. The flag allows to |
| 96 | // quickly silence build errors. This flag should be used with caution and only as a temporary |
| 97 | // measure, as it masks real errors and affects performance. |
| 98 | RelaxUsesLibraryCheck bool |
Jiakai Zhang | 616be06 | 2022-11-16 11:50:59 +0000 | [diff] [blame] | 99 | |
| 100 | EnableUffdGc bool // preopt with the assumption that userfaultfd GC will be used on device. |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 101 | } |
| 102 | |
Jiakai Zhang | 389a647 | 2021-12-14 18:54:06 +0000 | [diff] [blame] | 103 | var allPlatformSystemServerJarsKey = android.NewOnceKey("allPlatformSystemServerJars") |
| 104 | |
| 105 | // Returns all jars on the platform that system_server loads, including those on classpath and those |
| 106 | // loaded dynamically. |
| 107 | func (g *GlobalConfig) AllPlatformSystemServerJars(ctx android.PathContext) *android.ConfiguredJarList { |
| 108 | return ctx.Config().Once(allPlatformSystemServerJarsKey, func() interface{} { |
| 109 | res := g.SystemServerJars.AppendList(&g.StandaloneSystemServerJars) |
| 110 | return &res |
| 111 | }).(*android.ConfiguredJarList) |
| 112 | } |
| 113 | |
| 114 | var allApexSystemServerJarsKey = android.NewOnceKey("allApexSystemServerJars") |
| 115 | |
| 116 | // Returns all jars delivered via apex that system_server loads, including those on classpath and |
| 117 | // those loaded dynamically. |
| 118 | func (g *GlobalConfig) AllApexSystemServerJars(ctx android.PathContext) *android.ConfiguredJarList { |
| 119 | return ctx.Config().Once(allApexSystemServerJarsKey, func() interface{} { |
| 120 | res := g.ApexSystemServerJars.AppendList(&g.ApexStandaloneSystemServerJars) |
| 121 | return &res |
| 122 | }).(*android.ConfiguredJarList) |
| 123 | } |
| 124 | |
| 125 | var allSystemServerClasspathJarsKey = android.NewOnceKey("allSystemServerClasspathJars") |
| 126 | |
| 127 | // Returns all system_server classpath jars. |
| 128 | func (g *GlobalConfig) AllSystemServerClasspathJars(ctx android.PathContext) *android.ConfiguredJarList { |
| 129 | return ctx.Config().Once(allSystemServerClasspathJarsKey, func() interface{} { |
| 130 | res := g.SystemServerJars.AppendList(&g.ApexSystemServerJars) |
| 131 | return &res |
| 132 | }).(*android.ConfiguredJarList) |
| 133 | } |
| 134 | |
| 135 | var allSystemServerJarsKey = android.NewOnceKey("allSystemServerJars") |
| 136 | |
| 137 | // Returns all jars that system_server loads. |
| 138 | func (g *GlobalConfig) AllSystemServerJars(ctx android.PathContext) *android.ConfiguredJarList { |
| 139 | return ctx.Config().Once(allSystemServerJarsKey, func() interface{} { |
| 140 | res := g.AllPlatformSystemServerJars(ctx).AppendList(g.AllApexSystemServerJars(ctx)) |
| 141 | return &res |
| 142 | }).(*android.ConfiguredJarList) |
| 143 | } |
| 144 | |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 145 | // GlobalSoongConfig contains the global config that is generated from Soong, |
| 146 | // stored in dexpreopt_soong.config. |
| 147 | type GlobalSoongConfig struct { |
| 148 | // Paths to tools possibly used by the generated commands. |
| 149 | Profman android.Path |
| 150 | Dex2oat android.Path |
| 151 | Aapt android.Path |
| 152 | SoongZip android.Path |
| 153 | Zip2zip android.Path |
| 154 | ManifestCheck android.Path |
Colin Cross | 38b9685 | 2019-05-22 10:21:09 -0700 | [diff] [blame] | 155 | ConstructContext android.Path |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | type ModuleConfig struct { |
Victor Hsieh | d181c8b | 2019-01-29 13:00:33 -0800 | [diff] [blame] | 159 | Name string |
| 160 | DexLocation string // dex location on device |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 161 | BuildPath android.OutputPath |
| 162 | DexPath android.Path |
Jeongik Cha | 33a3a81 | 2021-04-15 09:12:49 +0900 | [diff] [blame] | 163 | ManifestPath android.OptionalPath |
Victor Hsieh | d181c8b | 2019-01-29 13:00:33 -0800 | [diff] [blame] | 164 | UncompressedDex bool |
| 165 | HasApkLibraries bool |
| 166 | PreoptFlags []string |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 167 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 168 | ProfileClassListing android.OptionalPath |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 169 | ProfileIsTextListing bool |
Nicolas Geoffray | e710242 | 2019-07-24 13:19:29 +0100 | [diff] [blame] | 170 | ProfileBootListing android.OptionalPath |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 171 | |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 172 | EnforceUsesLibraries bool // turn on build-time verify_uses_libraries check |
| 173 | EnforceUsesLibrariesStatusFile android.Path // a file with verify_uses_libraries errors (if any) |
| 174 | ProvidesUsesLibrary string // library name (usually the same as module name) |
| 175 | ClassLoaderContexts ClassLoaderContextMap |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 176 | |
Jeongik Cha | 4dda75e | 2021-04-27 23:56:44 +0900 | [diff] [blame] | 177 | Archs []android.ArchType |
| 178 | DexPreoptImagesDeps []android.OutputPaths |
| 179 | |
| 180 | DexPreoptImageLocationsOnHost []string // boot image location on host (file path without the arch subdirectory) |
| 181 | DexPreoptImageLocationsOnDevice []string // boot image location on device (file path without the arch subdirectory) |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 182 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 183 | PreoptBootClassPathDexFiles android.Paths // file paths of boot class path files |
| 184 | PreoptBootClassPathDexLocations []string // virtual locations of boot class path files |
Colin Cross | 800fe13 | 2019-02-11 14:21:24 -0800 | [diff] [blame] | 185 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 186 | PreoptExtractedApk bool // Overrides OnlyPreoptModules |
| 187 | |
| 188 | NoCreateAppImage bool |
| 189 | ForceCreateAppImage bool |
| 190 | |
| 191 | PresignedPrebuilt bool |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 192 | } |
| 193 | |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 194 | type globalSoongConfigSingleton struct{} |
| 195 | |
| 196 | var pctx = android.NewPackageContext("android/soong/dexpreopt") |
| 197 | |
| 198 | func init() { |
| 199 | pctx.Import("android/soong/android") |
LaMont Jones | 0c10e4d | 2023-05-16 00:58:37 +0000 | [diff] [blame] | 200 | android.RegisterParallelSingletonType("dexpreopt-soong-config", func() android.Singleton { |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 201 | return &globalSoongConfigSingleton{} |
| 202 | }) |
| 203 | } |
| 204 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 205 | func constructPath(ctx android.PathContext, path string) android.Path { |
Lukacs T. Berki | 9f6c24a | 2021-08-26 15:07:24 +0200 | [diff] [blame] | 206 | buildDirPrefix := ctx.Config().SoongOutDir() + "/" |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 207 | if path == "" { |
| 208 | return nil |
| 209 | } else if strings.HasPrefix(path, buildDirPrefix) { |
| 210 | return android.PathForOutput(ctx, strings.TrimPrefix(path, buildDirPrefix)) |
| 211 | } else { |
| 212 | return android.PathForSource(ctx, path) |
| 213 | } |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 214 | } |
| 215 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 216 | func constructPaths(ctx android.PathContext, paths []string) android.Paths { |
| 217 | var ret android.Paths |
| 218 | for _, path := range paths { |
| 219 | ret = append(ret, constructPath(ctx, path)) |
| 220 | } |
| 221 | return ret |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 222 | } |
| 223 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 224 | func constructWritablePath(ctx android.PathContext, path string) android.WritablePath { |
| 225 | if path == "" { |
| 226 | return nil |
| 227 | } |
| 228 | return constructPath(ctx, path).(android.WritablePath) |
| 229 | } |
| 230 | |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 231 | // ParseGlobalConfig parses the given data assumed to be read from the global |
| 232 | // dexpreopt.config file into a GlobalConfig struct. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 233 | func ParseGlobalConfig(ctx android.PathContext, data []byte) (*GlobalConfig, error) { |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 234 | type GlobalJSONConfig struct { |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 235 | *GlobalConfig |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 236 | |
| 237 | // Copies of entries in GlobalConfig that are not constructable without extra parameters. They will be |
| 238 | // used to construct the real value manually below. |
Paul Duffin | 7ccacae | 2020-10-23 21:14:20 +0100 | [diff] [blame] | 239 | BootImageProfiles []string |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | config := GlobalJSONConfig{} |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 243 | err := json.Unmarshal(data, &config) |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 244 | if err != nil { |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 245 | return config.GlobalConfig, err |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | // Construct paths that require a PathContext. |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 249 | config.GlobalConfig.BootImageProfiles = constructPaths(ctx, config.BootImageProfiles) |
| 250 | |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 251 | return config.GlobalConfig, nil |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 252 | } |
| 253 | |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 254 | type globalConfigAndRaw struct { |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 255 | global *GlobalConfig |
| 256 | data []byte |
| 257 | pathErrors []error |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | // GetGlobalConfig returns the global dexpreopt.config that's created in the |
| 261 | // make config phase. It is loaded once the first time it is called for any |
| 262 | // ctx.Config(), and returns the same data for all future calls with the same |
| 263 | // ctx.Config(). A value can be inserted for tests using |
| 264 | // setDexpreoptTestGlobalConfig. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 265 | func GetGlobalConfig(ctx android.PathContext) *GlobalConfig { |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 266 | return getGlobalConfigRaw(ctx).global |
| 267 | } |
| 268 | |
| 269 | // GetGlobalConfigRawData is the same as GetGlobalConfig, except that it returns |
| 270 | // the literal content of dexpreopt.config. |
| 271 | func GetGlobalConfigRawData(ctx android.PathContext) []byte { |
| 272 | return getGlobalConfigRaw(ctx).data |
| 273 | } |
| 274 | |
| 275 | var globalConfigOnceKey = android.NewOnceKey("DexpreoptGlobalConfig") |
| 276 | var testGlobalConfigOnceKey = android.NewOnceKey("TestDexpreoptGlobalConfig") |
| 277 | |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 278 | type pathContextErrorCollector struct { |
| 279 | android.PathContext |
| 280 | errors []error |
| 281 | } |
| 282 | |
| 283 | func (p *pathContextErrorCollector) Errorf(format string, args ...interface{}) { |
| 284 | p.errors = append(p.errors, fmt.Errorf(format, args...)) |
| 285 | } |
| 286 | |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 287 | func getGlobalConfigRaw(ctx android.PathContext) globalConfigAndRaw { |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 288 | config := ctx.Config().Once(globalConfigOnceKey, func() interface{} { |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 289 | if data, err := ctx.Config().DexpreoptGlobalConfig(ctx); err != nil { |
| 290 | panic(err) |
| 291 | } else if data != nil { |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 292 | pathErrorCollectorCtx := &pathContextErrorCollector{PathContext: ctx} |
| 293 | globalConfig, err := ParseGlobalConfig(pathErrorCollectorCtx, data) |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 294 | if err != nil { |
| 295 | panic(err) |
| 296 | } |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 297 | return globalConfigAndRaw{globalConfig, data, pathErrorCollectorCtx.errors} |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | // No global config filename set, see if there is a test config set |
| 301 | return ctx.Config().Once(testGlobalConfigOnceKey, func() interface{} { |
| 302 | // Nope, return a config with preopting disabled |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 303 | return globalConfigAndRaw{&GlobalConfig{ |
Ulya Trafimovich | a4a1c4e | 2021-01-15 18:40:04 +0000 | [diff] [blame] | 304 | DisablePreopt: true, |
| 305 | DisablePreoptBootImages: true, |
| 306 | DisableGenerateProfile: true, |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 307 | }, nil, nil} |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 308 | }) |
| 309 | }).(globalConfigAndRaw) |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 310 | |
| 311 | // Avoid non-deterministic errors by reporting cached path errors on all callers. |
| 312 | for _, err := range config.pathErrors { |
| 313 | if ctx.Config().AllowMissingDependencies() { |
| 314 | // When AllowMissingDependencies it set, report errors through AddMissingDependencies. |
| 315 | // If AddMissingDependencies doesn't exist on the current context (for example when |
| 316 | // called with a SingletonContext), just swallow the errors since there is no way to |
| 317 | // report them. |
| 318 | if missingDepsCtx, ok := ctx.(interface { |
| 319 | AddMissingDependencies(missingDeps []string) |
| 320 | }); ok { |
| 321 | missingDepsCtx.AddMissingDependencies([]string{err.Error()}) |
| 322 | } |
| 323 | } else { |
Colin Cross | c85750b | 2022-04-21 12:50:51 -0700 | [diff] [blame^] | 324 | android.ReportPathErrorf(ctx, "%s", err) |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 325 | } |
| 326 | } |
| 327 | |
| 328 | return config |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | // SetTestGlobalConfig sets a GlobalConfig that future calls to GetGlobalConfig |
| 332 | // will return. It must be called before the first call to GetGlobalConfig for |
| 333 | // the config. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 334 | func SetTestGlobalConfig(config android.Config, globalConfig *GlobalConfig) { |
Colin Cross | 7134e28 | 2021-12-01 12:16:55 -0800 | [diff] [blame] | 335 | config.Once(testGlobalConfigOnceKey, func() interface{} { return globalConfigAndRaw{globalConfig, nil, nil} }) |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 338 | // This struct is required to convert ModuleConfig from/to JSON. |
| 339 | // The types of fields in ModuleConfig are not convertible, |
| 340 | // so moduleJSONConfig has those fields as a convertible type. |
| 341 | type moduleJSONConfig struct { |
| 342 | *ModuleConfig |
| 343 | |
| 344 | BuildPath string |
| 345 | DexPath string |
| 346 | ManifestPath string |
| 347 | |
| 348 | ProfileClassListing string |
| 349 | ProfileBootListing string |
| 350 | |
| 351 | EnforceUsesLibrariesStatusFile string |
| 352 | ClassLoaderContexts jsonClassLoaderContextMap |
| 353 | |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 354 | DexPreoptImagesDeps [][]string |
| 355 | |
| 356 | PreoptBootClassPathDexFiles []string |
| 357 | } |
| 358 | |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 359 | // ParseModuleConfig parses a per-module dexpreopt.config file into a |
| 360 | // ModuleConfig struct. It is not used in Soong, which receives a ModuleConfig |
| 361 | // struct directly from java/dexpreopt.go. It is used in dexpreopt_gen called |
| 362 | // from Make to read the module dexpreopt.config written in the Make config |
| 363 | // stage. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 364 | func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) { |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 365 | config := moduleJSONConfig{} |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 366 | |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 367 | err := json.Unmarshal(data, &config) |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 368 | if err != nil { |
| 369 | return config.ModuleConfig, err |
| 370 | } |
| 371 | |
| 372 | // Construct paths that require a PathContext. |
| 373 | config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath) |
| 374 | config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath) |
Jeongik Cha | 33a3a81 | 2021-04-15 09:12:49 +0900 | [diff] [blame] | 375 | config.ModuleConfig.ManifestPath = android.OptionalPathForPath(constructPath(ctx, config.ManifestPath)) |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 376 | config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.ProfileClassListing)) |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 377 | config.ModuleConfig.EnforceUsesLibrariesStatusFile = constructPath(ctx, config.EnforceUsesLibrariesStatusFile) |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 378 | config.ModuleConfig.ClassLoaderContexts = fromJsonClassLoaderContext(ctx, config.ClassLoaderContexts) |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 379 | config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDexFiles) |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 380 | |
Dan Willemsen | 0f41678 | 2019-06-13 21:44:53 +0000 | [diff] [blame] | 381 | // This needs to exist, but dependencies are already handled in Make, so we don't need to pass them through JSON. |
Jeongik Cha | b19b58a | 2021-04-26 22:57:27 +0900 | [diff] [blame] | 382 | config.ModuleConfig.DexPreoptImagesDeps = make([]android.OutputPaths, len(config.ModuleConfig.Archs)) |
Dan Willemsen | 0f41678 | 2019-06-13 21:44:53 +0000 | [diff] [blame] | 383 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 384 | return config.ModuleConfig, nil |
| 385 | } |
| 386 | |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 387 | func pathsListToStringLists(pathsList []android.OutputPaths) [][]string { |
| 388 | ret := make([][]string, 0, len(pathsList)) |
| 389 | for _, paths := range pathsList { |
| 390 | ret = append(ret, paths.Strings()) |
| 391 | } |
| 392 | return ret |
| 393 | } |
| 394 | |
| 395 | func moduleConfigToJSON(config *ModuleConfig) ([]byte, error) { |
| 396 | return json.MarshalIndent(&moduleJSONConfig{ |
| 397 | BuildPath: config.BuildPath.String(), |
| 398 | DexPath: config.DexPath.String(), |
| 399 | ManifestPath: config.ManifestPath.String(), |
| 400 | ProfileClassListing: config.ProfileClassListing.String(), |
| 401 | ProfileBootListing: config.ProfileBootListing.String(), |
| 402 | EnforceUsesLibrariesStatusFile: config.EnforceUsesLibrariesStatusFile.String(), |
| 403 | ClassLoaderContexts: toJsonClassLoaderContext(config.ClassLoaderContexts), |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 404 | DexPreoptImagesDeps: pathsListToStringLists(config.DexPreoptImagesDeps), |
| 405 | PreoptBootClassPathDexFiles: config.PreoptBootClassPathDexFiles.Strings(), |
| 406 | ModuleConfig: config, |
| 407 | }, "", " ") |
| 408 | } |
| 409 | |
| 410 | // WriteModuleConfig serializes a ModuleConfig into a per-module dexpreopt.config JSON file. |
| 411 | // These config files are used for post-processing. |
| 412 | func WriteModuleConfig(ctx android.ModuleContext, config *ModuleConfig, path android.WritablePath) { |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 413 | if path == nil { |
| 414 | return |
| 415 | } |
| 416 | |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 417 | data, err := moduleConfigToJSON(config) |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 418 | if err != nil { |
| 419 | ctx.ModuleErrorf("failed to JSON marshal module dexpreopt.config: %v", err) |
| 420 | return |
| 421 | } |
| 422 | |
| 423 | android.WriteFileRule(ctx, path, string(data)) |
| 424 | } |
| 425 | |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 426 | // dex2oatModuleName returns the name of the module to use for the dex2oat host |
| 427 | // tool. It should be a binary module with public visibility that is compiled |
| 428 | // and installed for host. |
| 429 | func dex2oatModuleName(config android.Config) string { |
| 430 | // Default to the debug variant of dex2oat to help find bugs. |
| 431 | // Set USE_DEX2OAT_DEBUG to false for only building non-debug versions. |
| 432 | if config.Getenv("USE_DEX2OAT_DEBUG") == "false" { |
| 433 | return "dex2oat" |
| 434 | } else { |
| 435 | return "dex2oatd" |
| 436 | } |
| 437 | } |
| 438 | |
Paul Duffin | b506c9d | 2021-03-24 14:34:40 +0000 | [diff] [blame] | 439 | type dex2oatDependencyTag struct { |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 440 | blueprint.BaseDependencyTag |
Colin Cross | ce56425 | 2022-01-12 11:13:32 -0800 | [diff] [blame] | 441 | android.LicenseAnnotationToolchainDependencyTag |
Paul Duffin | b506c9d | 2021-03-24 14:34:40 +0000 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | func (d dex2oatDependencyTag) ExcludeFromVisibilityEnforcement() { |
| 445 | } |
| 446 | |
| 447 | func (d dex2oatDependencyTag) ExcludeFromApexContents() { |
| 448 | } |
| 449 | |
Martin Stjernholm | 0e4cceb | 2021-05-13 02:38:35 +0100 | [diff] [blame] | 450 | func (d dex2oatDependencyTag) AllowDisabledModuleDependency(target android.Module) bool { |
| 451 | // RegisterToolDeps may run after the prebuilt mutators and hence register a |
| 452 | // dependency on the source module even when the prebuilt is to be used. |
| 453 | // dex2oatPathFromDep takes that into account when it retrieves the path to |
| 454 | // the binary, but we also need to disable the check for dependencies on |
| 455 | // disabled modules. |
| 456 | return target.IsReplacedByPrebuilt() |
| 457 | } |
| 458 | |
Paul Duffin | b506c9d | 2021-03-24 14:34:40 +0000 | [diff] [blame] | 459 | // Dex2oatDepTag represents the dependency onto the dex2oatd module. It is added to any module that |
| 460 | // needs dexpreopting and so it makes no sense for it to be checked for visibility or included in |
| 461 | // the apex. |
| 462 | var Dex2oatDepTag = dex2oatDependencyTag{} |
| 463 | |
| 464 | var _ android.ExcludeFromVisibilityEnforcementTag = Dex2oatDepTag |
| 465 | var _ android.ExcludeFromApexContentsTag = Dex2oatDepTag |
Martin Stjernholm | 0e4cceb | 2021-05-13 02:38:35 +0100 | [diff] [blame] | 466 | var _ android.AllowDisabledModuleDependency = Dex2oatDepTag |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 467 | |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 468 | // RegisterToolDeps adds the necessary dependencies to binary modules for tools |
| 469 | // that are required later when Get(Cached)GlobalSoongConfig is called. It |
| 470 | // should be called from a mutator that's registered with |
| 471 | // android.RegistrationContext.FinalDepsMutators. |
| 472 | func RegisterToolDeps(ctx android.BottomUpMutatorContext) { |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 473 | dex2oatBin := dex2oatModuleName(ctx.Config()) |
| 474 | v := ctx.Config().BuildOSTarget.Variations() |
Ulya Trafimovich | a4a1c4e | 2021-01-15 18:40:04 +0000 | [diff] [blame] | 475 | ctx.AddFarVariationDependencies(v, Dex2oatDepTag, dex2oatBin) |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 476 | } |
| 477 | |
Jiakai Zhang | bc698cd | 2023-05-08 16:28:38 +0000 | [diff] [blame] | 478 | func IsDex2oatNeeded(ctx android.PathContext) bool { |
| 479 | global := GetGlobalConfig(ctx) |
| 480 | return !global.DisablePreopt || !global.DisablePreoptBootImages |
| 481 | } |
| 482 | |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 483 | func dex2oatPathFromDep(ctx android.ModuleContext) android.Path { |
Jiakai Zhang | bc698cd | 2023-05-08 16:28:38 +0000 | [diff] [blame] | 484 | if !IsDex2oatNeeded(ctx) { |
| 485 | return nil |
| 486 | } |
| 487 | |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 488 | dex2oatBin := dex2oatModuleName(ctx.Config()) |
| 489 | |
Martin Stjernholm | c004862 | 2020-08-18 17:37:41 +0100 | [diff] [blame] | 490 | // Find the right dex2oat module, trying to follow PrebuiltDepTag from source |
| 491 | // to prebuilt if there is one. We wouldn't have to do this if the |
| 492 | // prebuilt_postdeps mutator that replaces source deps with prebuilt deps was |
| 493 | // run after RegisterToolDeps above, but changing that leads to ordering |
| 494 | // problems between mutators (RegisterToolDeps needs to run late to act on |
| 495 | // final variants, while prebuilt_postdeps needs to run before many of the |
| 496 | // PostDeps mutators, like the APEX mutators). Hence we need to dig out the |
| 497 | // prebuilt explicitly here instead. |
| 498 | var dex2oatModule android.Module |
| 499 | ctx.WalkDeps(func(child, parent android.Module) bool { |
Ulya Trafimovich | a4a1c4e | 2021-01-15 18:40:04 +0000 | [diff] [blame] | 500 | if parent == ctx.Module() && ctx.OtherModuleDependencyTag(child) == Dex2oatDepTag { |
Martin Stjernholm | c004862 | 2020-08-18 17:37:41 +0100 | [diff] [blame] | 501 | // Found the source module, or prebuilt module that has replaced the source. |
| 502 | dex2oatModule = child |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 503 | if android.IsModulePrebuilt(child) { |
Martin Stjernholm | c004862 | 2020-08-18 17:37:41 +0100 | [diff] [blame] | 504 | return false // If it's the prebuilt we're done. |
| 505 | } else { |
| 506 | return true // Recurse to check if the source has a prebuilt dependency. |
| 507 | } |
| 508 | } |
| 509 | if parent == dex2oatModule && ctx.OtherModuleDependencyTag(child) == android.PrebuiltDepTag { |
Paul Duffin | f7c99f5 | 2021-04-28 10:41:21 +0100 | [diff] [blame] | 510 | if p := android.GetEmbeddedPrebuilt(child); p != nil && p.UsePrebuilt() { |
Martin Stjernholm | c004862 | 2020-08-18 17:37:41 +0100 | [diff] [blame] | 511 | dex2oatModule = child // Found a prebuilt that should be used. |
| 512 | } |
| 513 | } |
| 514 | return false |
| 515 | }) |
| 516 | |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 517 | if dex2oatModule == nil { |
| 518 | // If this happens there's probably a missing call to AddToolDeps in DepsMutator. |
| 519 | panic(fmt.Sprintf("Failed to lookup %s dependency", dex2oatBin)) |
| 520 | } |
| 521 | |
| 522 | dex2oatPath := dex2oatModule.(android.HostToolProvider).HostToolPath() |
| 523 | if !dex2oatPath.Valid() { |
| 524 | panic(fmt.Sprintf("Failed to find host tool path in %s", dex2oatModule)) |
| 525 | } |
| 526 | |
| 527 | return dex2oatPath.Path() |
| 528 | } |
| 529 | |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 530 | // createGlobalSoongConfig creates a GlobalSoongConfig from the current context. |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 531 | // Should not be used in dexpreopt_gen. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 532 | func createGlobalSoongConfig(ctx android.ModuleContext) *GlobalSoongConfig { |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 533 | return &GlobalSoongConfig{ |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 534 | Profman: ctx.Config().HostToolPath(ctx, "profman"), |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 535 | Dex2oat: dex2oatPathFromDep(ctx), |
Saeid Farivar Asanjan | fd27c7c | 2022-08-08 20:21:26 +0000 | [diff] [blame] | 536 | Aapt: ctx.Config().HostToolPath(ctx, "aapt2"), |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 537 | SoongZip: ctx.Config().HostToolPath(ctx, "soong_zip"), |
| 538 | Zip2zip: ctx.Config().HostToolPath(ctx, "zip2zip"), |
| 539 | ManifestCheck: ctx.Config().HostToolPath(ctx, "manifest_check"), |
Ulya Trafimovich | 5f364b6 | 2020-06-30 12:39:01 +0100 | [diff] [blame] | 540 | ConstructContext: ctx.Config().HostToolPath(ctx, "construct_context"), |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 541 | } |
| 542 | } |
| 543 | |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 544 | // The main reason for this Once cache for GlobalSoongConfig is to make the |
| 545 | // dex2oat path available to singletons. In ordinary modules we get it through a |
Ulya Trafimovich | a4a1c4e | 2021-01-15 18:40:04 +0000 | [diff] [blame] | 546 | // Dex2oatDepTag dependency, but in singletons there's no simple way to do the |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 547 | // same thing and ensure the right variant is selected, hence this cache to make |
| 548 | // the resolved path available to singletons. This means we depend on there |
Ulya Trafimovich | a4a1c4e | 2021-01-15 18:40:04 +0000 | [diff] [blame] | 549 | // being at least one ordinary module with a Dex2oatDepTag dependency. |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 550 | // |
| 551 | // TODO(b/147613152): Implement a way to deal with dependencies from singletons, |
Paul Duffin | 9f04524 | 2021-01-21 15:05:11 +0000 | [diff] [blame] | 552 | // and then possibly remove this cache altogether. |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 553 | var globalSoongConfigOnceKey = android.NewOnceKey("DexpreoptGlobalSoongConfig") |
| 554 | |
| 555 | // GetGlobalSoongConfig creates a GlobalSoongConfig the first time it's called, |
| 556 | // and later returns the same cached instance. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 557 | func GetGlobalSoongConfig(ctx android.ModuleContext) *GlobalSoongConfig { |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 558 | globalSoong := ctx.Config().Once(globalSoongConfigOnceKey, func() interface{} { |
| 559 | return createGlobalSoongConfig(ctx) |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 560 | }).(*GlobalSoongConfig) |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 561 | |
| 562 | // Always resolve the tool path from the dependency, to ensure that every |
| 563 | // module has the dependency added properly. |
| 564 | myDex2oat := dex2oatPathFromDep(ctx) |
| 565 | if myDex2oat != globalSoong.Dex2oat { |
| 566 | panic(fmt.Sprintf("Inconsistent dex2oat path in cached config: expected %s, got %s", globalSoong.Dex2oat, myDex2oat)) |
| 567 | } |
| 568 | |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 569 | return globalSoong |
| 570 | } |
| 571 | |
| 572 | // GetCachedGlobalSoongConfig returns a cached GlobalSoongConfig created by an |
| 573 | // earlier GetGlobalSoongConfig call. This function works with any context |
| 574 | // compatible with a basic PathContext, since it doesn't try to create a |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 575 | // GlobalSoongConfig with the proper paths (which requires a full |
| 576 | // ModuleContext). If there has been no prior call to GetGlobalSoongConfig, nil |
| 577 | // is returned. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 578 | func GetCachedGlobalSoongConfig(ctx android.PathContext) *GlobalSoongConfig { |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 579 | return ctx.Config().Once(globalSoongConfigOnceKey, func() interface{} { |
| 580 | return (*GlobalSoongConfig)(nil) |
| 581 | }).(*GlobalSoongConfig) |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 582 | } |
| 583 | |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 584 | type globalJsonSoongConfig struct { |
| 585 | Profman string |
| 586 | Dex2oat string |
| 587 | Aapt string |
| 588 | SoongZip string |
| 589 | Zip2zip string |
| 590 | ManifestCheck string |
| 591 | ConstructContext string |
| 592 | } |
| 593 | |
Martin Stjernholm | 40f9f3c | 2020-01-20 18:12:23 +0000 | [diff] [blame] | 594 | // ParseGlobalSoongConfig parses the given data assumed to be read from the |
| 595 | // global dexpreopt_soong.config file into a GlobalSoongConfig struct. It is |
| 596 | // only used in dexpreopt_gen. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 597 | func ParseGlobalSoongConfig(ctx android.PathContext, data []byte) (*GlobalSoongConfig, error) { |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 598 | var jc globalJsonSoongConfig |
| 599 | |
Colin Cross | 988414c | 2020-01-11 01:11:46 +0000 | [diff] [blame] | 600 | err := json.Unmarshal(data, &jc) |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 601 | if err != nil { |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 602 | return &GlobalSoongConfig{}, err |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 603 | } |
| 604 | |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 605 | config := &GlobalSoongConfig{ |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 606 | Profman: constructPath(ctx, jc.Profman), |
| 607 | Dex2oat: constructPath(ctx, jc.Dex2oat), |
| 608 | Aapt: constructPath(ctx, jc.Aapt), |
| 609 | SoongZip: constructPath(ctx, jc.SoongZip), |
| 610 | Zip2zip: constructPath(ctx, jc.Zip2zip), |
| 611 | ManifestCheck: constructPath(ctx, jc.ManifestCheck), |
| 612 | ConstructContext: constructPath(ctx, jc.ConstructContext), |
| 613 | } |
| 614 | |
| 615 | return config, nil |
| 616 | } |
| 617 | |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 618 | // checkBootJarsConfigConsistency checks the consistency of BootJars and ApexBootJars fields in |
Paul Duffin | 7d1d083 | 2021-04-23 11:39:41 +0100 | [diff] [blame] | 619 | // DexpreoptGlobalConfig and Config.productVariables. |
| 620 | func checkBootJarsConfigConsistency(ctx android.SingletonContext, dexpreoptConfig *GlobalConfig, config android.Config) { |
| 621 | compareBootJars := func(property string, dexpreoptJars, variableJars android.ConfiguredJarList) { |
| 622 | dexpreoptPairs := dexpreoptJars.CopyOfApexJarPairs() |
| 623 | variablePairs := variableJars.CopyOfApexJarPairs() |
| 624 | if !reflect.DeepEqual(dexpreoptPairs, variablePairs) { |
| 625 | ctx.Errorf("Inconsistent configuration of %[1]s\n"+ |
| 626 | " dexpreopt.GlobalConfig.%[1]s = %[2]s\n"+ |
| 627 | " productVariables.%[1]s = %[3]s", |
| 628 | property, dexpreoptPairs, variablePairs) |
| 629 | } |
| 630 | } |
| 631 | |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 632 | compareBootJars("BootJars", dexpreoptConfig.BootJars, config.NonApexBootJars()) |
| 633 | compareBootJars("ApexBootJars", dexpreoptConfig.ApexBootJars, config.ApexBootJars()) |
Paul Duffin | 7d1d083 | 2021-04-23 11:39:41 +0100 | [diff] [blame] | 634 | } |
| 635 | |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 636 | func (s *globalSoongConfigSingleton) GenerateBuildActions(ctx android.SingletonContext) { |
Paul Duffin | 7d1d083 | 2021-04-23 11:39:41 +0100 | [diff] [blame] | 637 | checkBootJarsConfigConsistency(ctx, GetGlobalConfig(ctx), ctx.Config()) |
| 638 | |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 639 | if GetGlobalConfig(ctx).DisablePreopt { |
| 640 | return |
| 641 | } |
| 642 | |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 643 | config := GetCachedGlobalSoongConfig(ctx) |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 644 | if config == nil { |
| 645 | // No module has enabled dexpreopting, so we assume there will be no calls |
| 646 | // to dexpreopt_gen. |
| 647 | return |
| 648 | } |
| 649 | |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 650 | jc := globalJsonSoongConfig{ |
| 651 | Profman: config.Profman.String(), |
| 652 | Dex2oat: config.Dex2oat.String(), |
| 653 | Aapt: config.Aapt.String(), |
| 654 | SoongZip: config.SoongZip.String(), |
| 655 | Zip2zip: config.Zip2zip.String(), |
| 656 | ManifestCheck: config.ManifestCheck.String(), |
| 657 | ConstructContext: config.ConstructContext.String(), |
| 658 | } |
| 659 | |
| 660 | data, err := json.Marshal(jc) |
| 661 | if err != nil { |
| 662 | ctx.Errorf("failed to JSON marshal GlobalSoongConfig: %v", err) |
| 663 | return |
| 664 | } |
| 665 | |
Colin Cross | cf371cc | 2020-11-13 11:48:42 -0800 | [diff] [blame] | 666 | android.WriteFileRule(ctx, android.PathForOutput(ctx, "dexpreopt_soong.config"), string(data)) |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | func (s *globalSoongConfigSingleton) MakeVars(ctx android.MakeVarsContext) { |
Martin Stjernholm | d90676f | 2020-01-11 00:37:30 +0000 | [diff] [blame] | 670 | if GetGlobalConfig(ctx).DisablePreopt { |
| 671 | return |
| 672 | } |
| 673 | |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 674 | config := GetCachedGlobalSoongConfig(ctx) |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 675 | if config == nil { |
| 676 | return |
| 677 | } |
Martin Stjernholm | c52aaf1 | 2020-01-06 23:11:37 +0000 | [diff] [blame] | 678 | |
| 679 | ctx.Strict("DEX2OAT", config.Dex2oat.String()) |
| 680 | ctx.Strict("DEXPREOPT_GEN_DEPS", strings.Join([]string{ |
| 681 | config.Profman.String(), |
| 682 | config.Dex2oat.String(), |
| 683 | config.Aapt.String(), |
| 684 | config.SoongZip.String(), |
| 685 | config.Zip2zip.String(), |
| 686 | config.ManifestCheck.String(), |
| 687 | config.ConstructContext.String(), |
| 688 | }, " ")) |
| 689 | } |
| 690 | |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 691 | func GlobalConfigForTests(ctx android.PathContext) *GlobalConfig { |
| 692 | return &GlobalConfig{ |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 693 | DisablePreopt: false, |
| 694 | DisablePreoptModules: nil, |
| 695 | OnlyPreoptBootImageAndSystemServer: false, |
| 696 | HasSystemOther: false, |
| 697 | PatternsOnSystemOther: nil, |
| 698 | DisableGenerateProfile: false, |
| 699 | ProfileDir: "", |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 700 | BootJars: android.EmptyConfiguredJarList(), |
satayev | d604b21 | 2021-07-21 14:23:52 +0100 | [diff] [blame] | 701 | ApexBootJars: android.EmptyConfiguredJarList(), |
Ulya Trafimovich | 249386a | 2020-07-01 14:31:13 +0100 | [diff] [blame] | 702 | ArtApexJars: android.EmptyConfiguredJarList(), |
satayev | 9a6f87e | 2021-05-04 16:14:48 +0100 | [diff] [blame] | 703 | SystemServerJars: android.EmptyConfiguredJarList(), |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 704 | SystemServerApps: nil, |
satayev | 492b17d | 2021-07-28 14:04:49 +0100 | [diff] [blame] | 705 | ApexSystemServerJars: android.EmptyConfiguredJarList(), |
Jiakai Zhang | cee9e19 | 2021-10-29 19:46:45 +0000 | [diff] [blame] | 706 | StandaloneSystemServerJars: android.EmptyConfiguredJarList(), |
| 707 | ApexStandaloneSystemServerJars: android.EmptyConfiguredJarList(), |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 708 | SpeedApps: nil, |
| 709 | PreoptFlags: nil, |
| 710 | DefaultCompilerFilter: "", |
| 711 | SystemServerCompilerFilter: "", |
| 712 | GenerateDMFiles: false, |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 713 | NoDebugInfo: false, |
Mathieu Chartier | 3f7ddbb | 2019-04-29 09:33:50 -0700 | [diff] [blame] | 714 | DontResolveStartupStrings: false, |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 715 | AlwaysSystemServerDebugInfo: false, |
| 716 | NeverSystemServerDebugInfo: false, |
| 717 | AlwaysOtherDebugInfo: false, |
| 718 | NeverOtherDebugInfo: false, |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 719 | IsEng: false, |
| 720 | SanitizeLite: false, |
| 721 | DefaultAppImages: false, |
| 722 | Dex2oatXmx: "", |
| 723 | Dex2oatXms: "", |
| 724 | EmptyDirectory: "empty_dir", |
| 725 | CpuVariant: nil, |
| 726 | InstructionSetFeatures: nil, |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 727 | BootImageProfiles: nil, |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 728 | BootFlags: "", |
| 729 | Dex2oatImageXmx: "", |
| 730 | Dex2oatImageXms: "", |
Martin Stjernholm | 75a48d8 | 2020-01-10 20:32:59 +0000 | [diff] [blame] | 731 | } |
| 732 | } |
| 733 | |
Paul Duffin | 9f04524 | 2021-01-21 15:05:11 +0000 | [diff] [blame] | 734 | func globalSoongConfigForTests() *GlobalSoongConfig { |
| 735 | return &GlobalSoongConfig{ |
| 736 | Profman: android.PathForTesting("profman"), |
| 737 | Dex2oat: android.PathForTesting("dex2oat"), |
Saeid Farivar Asanjan | fd27c7c | 2022-08-08 20:21:26 +0000 | [diff] [blame] | 738 | Aapt: android.PathForTesting("aapt2"), |
Paul Duffin | 9f04524 | 2021-01-21 15:05:11 +0000 | [diff] [blame] | 739 | SoongZip: android.PathForTesting("soong_zip"), |
| 740 | Zip2zip: android.PathForTesting("zip2zip"), |
| 741 | ManifestCheck: android.PathForTesting("manifest_check"), |
| 742 | ConstructContext: android.PathForTesting("construct_context"), |
| 743 | } |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 744 | } |