blob: ba41f4a6625f407cb96c24c22c13ea8d087503e7 [file] [log] [blame]
Colin Cross43f08db2018-11-12 10:13:39 -08001// 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
15package dexpreopt
16
17import (
18 "encoding/json"
Martin Stjernholmd90676f2020-01-11 00:37:30 +000019 "fmt"
Paul Duffin7d1d0832021-04-23 11:39:41 +010020 "reflect"
Colin Cross69f59a32019-02-15 10:39:37 -080021 "strings"
Colin Cross74ba9622019-02-11 15:11:14 -080022
Martin Stjernholmd90676f2020-01-11 00:37:30 +000023 "github.com/google/blueprint"
24
Colin Cross74ba9622019-02-11 15:11:14 -080025 "android/soong/android"
Colin Cross43f08db2018-11-12 10:13:39 -080026)
27
Martin Stjernholmc52aaf12020-01-06 23:11:37 +000028// GlobalConfig stores the configuration for dex preopting. The fields are set
Martin Stjernholm75a48d82020-01-10 20:32:59 +000029// from product variables via dex_preopt_config.mk.
Colin Cross43f08db2018-11-12 10:13:39 -080030type GlobalConfig struct {
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +000031 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 Cross43f08db2018-11-12 10:13:39 -080034
35 OnlyPreoptBootImageAndSystemServer bool // only preopt jars in the boot image or system server
36
Ulya Trafimovich9023b022021-03-22 16:02:28 +000037 PreoptWithUpdatableBcp bool // If updatable boot jars are included in dexpreopt or not.
38
Colin Cross43f08db2018-11-12 10:13:39 -080039 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 Cross69f59a32019-02-15 10:39:37 -080042 DisableGenerateProfile bool // don't generate profiles
43 ProfileDir string // directory to find profiles in
Colin Cross43f08db2018-11-12 10:13:39 -080044
satayevd604b212021-07-21 14:23:52 +010045 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 Markod2ee5322018-12-19 17:57:57 +000047
Jiakai Zhang556bdf82023-07-12 16:51:57 +010048 ArtApexJars android.ConfiguredJarList // modules for jars that are in the ART APEX
49 TestOnlyArtBootImageJars android.ConfiguredJarList // modules for jars to be included in the ART boot image for testing
Colin Cross800fe132019-02-11 14:21:24 -080050
Jiakai Zhangcee9e192021-10-29 19:46:45 +000051 SystemServerJars android.ConfiguredJarList // system_server classpath jars on the platform
52 SystemServerApps []string // apps that are loaded into system server
53 ApexSystemServerJars android.ConfiguredJarList // system_server classpath jars delivered via apex
54 StandaloneSystemServerJars android.ConfiguredJarList // jars on the platform that system_server loads dynamically using separate classloaders
55 ApexStandaloneSystemServerJars android.ConfiguredJarList // jars delivered via apex that system_server loads dynamically using separate classloaders
56 SpeedApps []string // apps that should be speed optimized
Colin Cross43f08db2018-11-12 10:13:39 -080057
Ulya Trafimovichcd3203f2020-03-27 11:30:00 +000058 BrokenSuboptimalOrderOfSystemServerJars bool // if true, sub-optimal order does not cause a build error
59
Colin Cross43f08db2018-11-12 10:13:39 -080060 PreoptFlags []string // global dex2oat flags that should be used if no module-specific dex2oat flags are specified
61
62 DefaultCompilerFilter string // default compiler filter to pass to dex2oat, overridden by --compiler-filter= in module-specific dex2oat flags
63 SystemServerCompilerFilter string // default compiler filter to pass to dex2oat for system server jars
64
Nicolas Geoffrayc1bf7242019-10-18 14:51:38 +010065 GenerateDMFiles bool // generate Dex Metadata files
Colin Cross43f08db2018-11-12 10:13:39 -080066
67 NoDebugInfo bool // don't generate debug info by default
Mathieu Chartier3f7ddbb2019-04-29 09:33:50 -070068 DontResolveStartupStrings bool // don't resolve string literals loaded during application startup.
Colin Cross43f08db2018-11-12 10:13:39 -080069 AlwaysSystemServerDebugInfo bool // always generate mini debug info for system server modules (overrides NoDebugInfo=true)
70 NeverSystemServerDebugInfo bool // never generate mini debug info for system server modules (overrides NoDebugInfo=false)
71 AlwaysOtherDebugInfo bool // always generate mini debug info for non-system server modules (overrides NoDebugInfo=true)
72 NeverOtherDebugInfo bool // never generate mini debug info for non-system server modules (overrides NoDebugInfo=true)
73
Colin Cross43f08db2018-11-12 10:13:39 -080074 IsEng bool // build is a eng variant
75 SanitizeLite bool // build is the second phase of a SANITIZE_LITE build
76
77 DefaultAppImages bool // build app images (TODO: .art files?) by default
78
Colin Cross800fe132019-02-11 14:21:24 -080079 Dex2oatXmx string // max heap size for dex2oat
80 Dex2oatXms string // initial heap size for dex2oat
Colin Cross43f08db2018-11-12 10:13:39 -080081
82 EmptyDirectory string // path to an empty directory
83
Colin Cross74ba9622019-02-11 15:11:14 -080084 CpuVariant map[android.ArchType]string // cpu variant for each architecture
85 InstructionSetFeatures map[android.ArchType]string // instruction set for each architecture
Colin Cross43f08db2018-11-12 10:13:39 -080086
Nicolas Geoffray1086e602021-01-20 14:30:40 +000087 BootImageProfiles android.Paths // path to a boot-image-profile.txt file
88 BootFlags string // extra flags to pass to dex2oat for the boot image
89 Dex2oatImageXmx string // max heap size for dex2oat for the boot image
90 Dex2oatImageXms string // initial heap size for dex2oat for the boot image
Ulya Trafimovich8c35fcf2021-02-17 16:23:28 +000091
Ulya Trafimovich4a13acb2021-03-02 12:25:02 +000092 // If true, downgrade the compiler filter of dexpreopt to "verify" when verify_uses_libraries
Ulya Trafimovich8c35fcf2021-02-17 16:23:28 +000093 // check fails, instead of failing the build. This will disable any AOT-compilation.
94 //
95 // The intended use case for this flag is to have a smoother migration path for the Java
96 // modules that need to add <uses-library> information in their build files. The flag allows to
97 // quickly silence build errors. This flag should be used with caution and only as a temporary
98 // measure, as it masks real errors and affects performance.
99 RelaxUsesLibraryCheck bool
Jiakai Zhang616be062022-11-16 11:50:59 +0000100
101 EnableUffdGc bool // preopt with the assumption that userfaultfd GC will be used on device.
Colin Cross43f08db2018-11-12 10:13:39 -0800102}
103
Jiakai Zhang389a6472021-12-14 18:54:06 +0000104var allPlatformSystemServerJarsKey = android.NewOnceKey("allPlatformSystemServerJars")
105
106// Returns all jars on the platform that system_server loads, including those on classpath and those
107// loaded dynamically.
108func (g *GlobalConfig) AllPlatformSystemServerJars(ctx android.PathContext) *android.ConfiguredJarList {
109 return ctx.Config().Once(allPlatformSystemServerJarsKey, func() interface{} {
110 res := g.SystemServerJars.AppendList(&g.StandaloneSystemServerJars)
111 return &res
112 }).(*android.ConfiguredJarList)
113}
114
115var allApexSystemServerJarsKey = android.NewOnceKey("allApexSystemServerJars")
116
117// Returns all jars delivered via apex that system_server loads, including those on classpath and
118// those loaded dynamically.
119func (g *GlobalConfig) AllApexSystemServerJars(ctx android.PathContext) *android.ConfiguredJarList {
120 return ctx.Config().Once(allApexSystemServerJarsKey, func() interface{} {
121 res := g.ApexSystemServerJars.AppendList(&g.ApexStandaloneSystemServerJars)
122 return &res
123 }).(*android.ConfiguredJarList)
124}
125
126var allSystemServerClasspathJarsKey = android.NewOnceKey("allSystemServerClasspathJars")
127
128// Returns all system_server classpath jars.
129func (g *GlobalConfig) AllSystemServerClasspathJars(ctx android.PathContext) *android.ConfiguredJarList {
130 return ctx.Config().Once(allSystemServerClasspathJarsKey, func() interface{} {
131 res := g.SystemServerJars.AppendList(&g.ApexSystemServerJars)
132 return &res
133 }).(*android.ConfiguredJarList)
134}
135
136var allSystemServerJarsKey = android.NewOnceKey("allSystemServerJars")
137
138// Returns all jars that system_server loads.
139func (g *GlobalConfig) AllSystemServerJars(ctx android.PathContext) *android.ConfiguredJarList {
140 return ctx.Config().Once(allSystemServerJarsKey, func() interface{} {
141 res := g.AllPlatformSystemServerJars(ctx).AppendList(g.AllApexSystemServerJars(ctx))
142 return &res
143 }).(*android.ConfiguredJarList)
144}
145
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000146// GlobalSoongConfig contains the global config that is generated from Soong,
147// stored in dexpreopt_soong.config.
148type GlobalSoongConfig struct {
149 // Paths to tools possibly used by the generated commands.
150 Profman android.Path
151 Dex2oat android.Path
152 Aapt android.Path
153 SoongZip android.Path
154 Zip2zip android.Path
155 ManifestCheck android.Path
Colin Cross38b96852019-05-22 10:21:09 -0700156 ConstructContext android.Path
Colin Cross43f08db2018-11-12 10:13:39 -0800157}
158
159type ModuleConfig struct {
Victor Hsiehd181c8b2019-01-29 13:00:33 -0800160 Name string
161 DexLocation string // dex location on device
Colin Cross69f59a32019-02-15 10:39:37 -0800162 BuildPath android.OutputPath
163 DexPath android.Path
Jeongik Cha33a3a812021-04-15 09:12:49 +0900164 ManifestPath android.OptionalPath
Victor Hsiehd181c8b2019-01-29 13:00:33 -0800165 UncompressedDex bool
166 HasApkLibraries bool
167 PreoptFlags []string
Colin Cross43f08db2018-11-12 10:13:39 -0800168
Colin Cross69f59a32019-02-15 10:39:37 -0800169 ProfileClassListing android.OptionalPath
Colin Cross43f08db2018-11-12 10:13:39 -0800170 ProfileIsTextListing bool
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100171 ProfileBootListing android.OptionalPath
Colin Cross43f08db2018-11-12 10:13:39 -0800172
Ulya Trafimovich8c35fcf2021-02-17 16:23:28 +0000173 EnforceUsesLibraries bool // turn on build-time verify_uses_libraries check
174 EnforceUsesLibrariesStatusFile android.Path // a file with verify_uses_libraries errors (if any)
175 ProvidesUsesLibrary string // library name (usually the same as module name)
176 ClassLoaderContexts ClassLoaderContextMap
Colin Cross43f08db2018-11-12 10:13:39 -0800177
Jeongik Cha4dda75e2021-04-27 23:56:44 +0900178 Archs []android.ArchType
179 DexPreoptImagesDeps []android.OutputPaths
180
181 DexPreoptImageLocationsOnHost []string // boot image location on host (file path without the arch subdirectory)
182 DexPreoptImageLocationsOnDevice []string // boot image location on device (file path without the arch subdirectory)
Colin Cross43f08db2018-11-12 10:13:39 -0800183
Colin Cross69f59a32019-02-15 10:39:37 -0800184 PreoptBootClassPathDexFiles android.Paths // file paths of boot class path files
185 PreoptBootClassPathDexLocations []string // virtual locations of boot class path files
Colin Cross800fe132019-02-11 14:21:24 -0800186
Colin Cross43f08db2018-11-12 10:13:39 -0800187 PreoptExtractedApk bool // Overrides OnlyPreoptModules
188
189 NoCreateAppImage bool
190 ForceCreateAppImage bool
191
192 PresignedPrebuilt bool
Colin Cross43f08db2018-11-12 10:13:39 -0800193}
194
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000195type globalSoongConfigSingleton struct{}
196
197var pctx = android.NewPackageContext("android/soong/dexpreopt")
198
199func init() {
200 pctx.Import("android/soong/android")
LaMont Jones0c10e4d2023-05-16 00:58:37 +0000201 android.RegisterParallelSingletonType("dexpreopt-soong-config", func() android.Singleton {
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000202 return &globalSoongConfigSingleton{}
203 })
204}
205
Colin Cross69f59a32019-02-15 10:39:37 -0800206func constructPath(ctx android.PathContext, path string) android.Path {
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200207 buildDirPrefix := ctx.Config().SoongOutDir() + "/"
Colin Cross69f59a32019-02-15 10:39:37 -0800208 if path == "" {
209 return nil
210 } else if strings.HasPrefix(path, buildDirPrefix) {
211 return android.PathForOutput(ctx, strings.TrimPrefix(path, buildDirPrefix))
212 } else {
213 return android.PathForSource(ctx, path)
214 }
Colin Cross43f08db2018-11-12 10:13:39 -0800215}
216
Colin Cross69f59a32019-02-15 10:39:37 -0800217func constructPaths(ctx android.PathContext, paths []string) android.Paths {
218 var ret android.Paths
219 for _, path := range paths {
220 ret = append(ret, constructPath(ctx, path))
221 }
222 return ret
Colin Cross43f08db2018-11-12 10:13:39 -0800223}
224
Colin Cross69f59a32019-02-15 10:39:37 -0800225func constructWritablePath(ctx android.PathContext, path string) android.WritablePath {
226 if path == "" {
227 return nil
228 }
229 return constructPath(ctx, path).(android.WritablePath)
230}
231
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000232// ParseGlobalConfig parses the given data assumed to be read from the global
233// dexpreopt.config file into a GlobalConfig struct.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000234func ParseGlobalConfig(ctx android.PathContext, data []byte) (*GlobalConfig, error) {
Colin Cross69f59a32019-02-15 10:39:37 -0800235 type GlobalJSONConfig struct {
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000236 *GlobalConfig
Colin Cross69f59a32019-02-15 10:39:37 -0800237
238 // Copies of entries in GlobalConfig that are not constructable without extra parameters. They will be
239 // used to construct the real value manually below.
Paul Duffin7ccacae2020-10-23 21:14:20 +0100240 BootImageProfiles []string
Colin Cross69f59a32019-02-15 10:39:37 -0800241 }
242
243 config := GlobalJSONConfig{}
Colin Cross988414c2020-01-11 01:11:46 +0000244 err := json.Unmarshal(data, &config)
Colin Cross69f59a32019-02-15 10:39:37 -0800245 if err != nil {
Colin Cross988414c2020-01-11 01:11:46 +0000246 return config.GlobalConfig, err
Colin Cross69f59a32019-02-15 10:39:37 -0800247 }
248
249 // Construct paths that require a PathContext.
Colin Cross69f59a32019-02-15 10:39:37 -0800250 config.GlobalConfig.BootImageProfiles = constructPaths(ctx, config.BootImageProfiles)
251
Colin Cross988414c2020-01-11 01:11:46 +0000252 return config.GlobalConfig, nil
Colin Cross69f59a32019-02-15 10:39:37 -0800253}
254
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000255type globalConfigAndRaw struct {
Colin Cross7134e282021-12-01 12:16:55 -0800256 global *GlobalConfig
257 data []byte
258 pathErrors []error
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000259}
260
261// GetGlobalConfig returns the global dexpreopt.config that's created in the
262// make config phase. It is loaded once the first time it is called for any
263// ctx.Config(), and returns the same data for all future calls with the same
264// ctx.Config(). A value can be inserted for tests using
265// setDexpreoptTestGlobalConfig.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000266func GetGlobalConfig(ctx android.PathContext) *GlobalConfig {
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000267 return getGlobalConfigRaw(ctx).global
268}
269
270// GetGlobalConfigRawData is the same as GetGlobalConfig, except that it returns
271// the literal content of dexpreopt.config.
272func GetGlobalConfigRawData(ctx android.PathContext) []byte {
273 return getGlobalConfigRaw(ctx).data
274}
275
276var globalConfigOnceKey = android.NewOnceKey("DexpreoptGlobalConfig")
277var testGlobalConfigOnceKey = android.NewOnceKey("TestDexpreoptGlobalConfig")
278
Colin Cross7134e282021-12-01 12:16:55 -0800279type pathContextErrorCollector struct {
280 android.PathContext
281 errors []error
282}
283
284func (p *pathContextErrorCollector) Errorf(format string, args ...interface{}) {
285 p.errors = append(p.errors, fmt.Errorf(format, args...))
286}
287
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000288func getGlobalConfigRaw(ctx android.PathContext) globalConfigAndRaw {
Colin Cross7134e282021-12-01 12:16:55 -0800289 config := ctx.Config().Once(globalConfigOnceKey, func() interface{} {
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000290 if data, err := ctx.Config().DexpreoptGlobalConfig(ctx); err != nil {
291 panic(err)
292 } else if data != nil {
Colin Cross7134e282021-12-01 12:16:55 -0800293 pathErrorCollectorCtx := &pathContextErrorCollector{PathContext: ctx}
294 globalConfig, err := ParseGlobalConfig(pathErrorCollectorCtx, data)
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000295 if err != nil {
296 panic(err)
297 }
Colin Cross7134e282021-12-01 12:16:55 -0800298 return globalConfigAndRaw{globalConfig, data, pathErrorCollectorCtx.errors}
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000299 }
300
301 // No global config filename set, see if there is a test config set
302 return ctx.Config().Once(testGlobalConfigOnceKey, func() interface{} {
303 // Nope, return a config with preopting disabled
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000304 return globalConfigAndRaw{&GlobalConfig{
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000305 DisablePreopt: true,
306 DisablePreoptBootImages: true,
307 DisableGenerateProfile: true,
Colin Cross7134e282021-12-01 12:16:55 -0800308 }, nil, nil}
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000309 })
310 }).(globalConfigAndRaw)
Colin Cross7134e282021-12-01 12:16:55 -0800311
312 // Avoid non-deterministic errors by reporting cached path errors on all callers.
313 for _, err := range config.pathErrors {
314 if ctx.Config().AllowMissingDependencies() {
315 // When AllowMissingDependencies it set, report errors through AddMissingDependencies.
316 // If AddMissingDependencies doesn't exist on the current context (for example when
317 // called with a SingletonContext), just swallow the errors since there is no way to
318 // report them.
319 if missingDepsCtx, ok := ctx.(interface {
320 AddMissingDependencies(missingDeps []string)
321 }); ok {
322 missingDepsCtx.AddMissingDependencies([]string{err.Error()})
323 }
324 } else {
Colin Crossc85750b2022-04-21 12:50:51 -0700325 android.ReportPathErrorf(ctx, "%s", err)
Colin Cross7134e282021-12-01 12:16:55 -0800326 }
327 }
328
329 return config
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000330}
331
332// SetTestGlobalConfig sets a GlobalConfig that future calls to GetGlobalConfig
333// will return. It must be called before the first call to GetGlobalConfig for
334// the config.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000335func SetTestGlobalConfig(config android.Config, globalConfig *GlobalConfig) {
Colin Cross7134e282021-12-01 12:16:55 -0800336 config.Once(testGlobalConfigOnceKey, func() interface{} { return globalConfigAndRaw{globalConfig, nil, nil} })
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000337}
338
Jeongik Chac6246672021-04-08 00:00:19 +0900339// This struct is required to convert ModuleConfig from/to JSON.
340// The types of fields in ModuleConfig are not convertible,
341// so moduleJSONConfig has those fields as a convertible type.
342type moduleJSONConfig struct {
343 *ModuleConfig
344
345 BuildPath string
346 DexPath string
347 ManifestPath string
348
349 ProfileClassListing string
350 ProfileBootListing string
351
352 EnforceUsesLibrariesStatusFile string
353 ClassLoaderContexts jsonClassLoaderContextMap
354
Jeongik Chac6246672021-04-08 00:00:19 +0900355 DexPreoptImagesDeps [][]string
356
357 PreoptBootClassPathDexFiles []string
358}
359
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000360// ParseModuleConfig parses a per-module dexpreopt.config file into a
361// ModuleConfig struct. It is not used in Soong, which receives a ModuleConfig
362// struct directly from java/dexpreopt.go. It is used in dexpreopt_gen called
363// from Make to read the module dexpreopt.config written in the Make config
364// stage.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000365func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) {
Jeongik Chac6246672021-04-08 00:00:19 +0900366 config := moduleJSONConfig{}
Colin Cross69f59a32019-02-15 10:39:37 -0800367
Colin Cross988414c2020-01-11 01:11:46 +0000368 err := json.Unmarshal(data, &config)
Colin Cross69f59a32019-02-15 10:39:37 -0800369 if err != nil {
370 return config.ModuleConfig, err
371 }
372
373 // Construct paths that require a PathContext.
374 config.ModuleConfig.BuildPath = constructPath(ctx, config.BuildPath).(android.OutputPath)
375 config.ModuleConfig.DexPath = constructPath(ctx, config.DexPath)
Jeongik Cha33a3a812021-04-15 09:12:49 +0900376 config.ModuleConfig.ManifestPath = android.OptionalPathForPath(constructPath(ctx, config.ManifestPath))
Colin Cross69f59a32019-02-15 10:39:37 -0800377 config.ModuleConfig.ProfileClassListing = android.OptionalPathForPath(constructPath(ctx, config.ProfileClassListing))
Ulya Trafimovich8c35fcf2021-02-17 16:23:28 +0000378 config.ModuleConfig.EnforceUsesLibrariesStatusFile = constructPath(ctx, config.EnforceUsesLibrariesStatusFile)
Ulya Trafimovich8cbc5d22020-11-03 15:15:46 +0000379 config.ModuleConfig.ClassLoaderContexts = fromJsonClassLoaderContext(ctx, config.ClassLoaderContexts)
Colin Cross69f59a32019-02-15 10:39:37 -0800380 config.ModuleConfig.PreoptBootClassPathDexFiles = constructPaths(ctx, config.PreoptBootClassPathDexFiles)
Colin Cross69f59a32019-02-15 10:39:37 -0800381
Dan Willemsen0f416782019-06-13 21:44:53 +0000382 // This needs to exist, but dependencies are already handled in Make, so we don't need to pass them through JSON.
Jeongik Chab19b58a2021-04-26 22:57:27 +0900383 config.ModuleConfig.DexPreoptImagesDeps = make([]android.OutputPaths, len(config.ModuleConfig.Archs))
Dan Willemsen0f416782019-06-13 21:44:53 +0000384
Colin Cross69f59a32019-02-15 10:39:37 -0800385 return config.ModuleConfig, nil
386}
387
Jeongik Chac6246672021-04-08 00:00:19 +0900388func pathsListToStringLists(pathsList []android.OutputPaths) [][]string {
389 ret := make([][]string, 0, len(pathsList))
390 for _, paths := range pathsList {
391 ret = append(ret, paths.Strings())
392 }
393 return ret
394}
395
396func moduleConfigToJSON(config *ModuleConfig) ([]byte, error) {
397 return json.MarshalIndent(&moduleJSONConfig{
398 BuildPath: config.BuildPath.String(),
399 DexPath: config.DexPath.String(),
400 ManifestPath: config.ManifestPath.String(),
401 ProfileClassListing: config.ProfileClassListing.String(),
402 ProfileBootListing: config.ProfileBootListing.String(),
403 EnforceUsesLibrariesStatusFile: config.EnforceUsesLibrariesStatusFile.String(),
404 ClassLoaderContexts: toJsonClassLoaderContext(config.ClassLoaderContexts),
Jeongik Chac6246672021-04-08 00:00:19 +0900405 DexPreoptImagesDeps: pathsListToStringLists(config.DexPreoptImagesDeps),
406 PreoptBootClassPathDexFiles: config.PreoptBootClassPathDexFiles.Strings(),
407 ModuleConfig: config,
408 }, "", " ")
409}
410
411// WriteModuleConfig serializes a ModuleConfig into a per-module dexpreopt.config JSON file.
412// These config files are used for post-processing.
413func WriteModuleConfig(ctx android.ModuleContext, config *ModuleConfig, path android.WritablePath) {
Ulya Trafimovich76b08522021-01-14 17:52:43 +0000414 if path == nil {
415 return
416 }
417
Jeongik Chac6246672021-04-08 00:00:19 +0900418 data, err := moduleConfigToJSON(config)
Ulya Trafimovich76b08522021-01-14 17:52:43 +0000419 if err != nil {
420 ctx.ModuleErrorf("failed to JSON marshal module dexpreopt.config: %v", err)
421 return
422 }
423
424 android.WriteFileRule(ctx, path, string(data))
425}
426
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000427// dex2oatModuleName returns the name of the module to use for the dex2oat host
428// tool. It should be a binary module with public visibility that is compiled
429// and installed for host.
430func dex2oatModuleName(config android.Config) string {
431 // Default to the debug variant of dex2oat to help find bugs.
432 // Set USE_DEX2OAT_DEBUG to false for only building non-debug versions.
433 if config.Getenv("USE_DEX2OAT_DEBUG") == "false" {
434 return "dex2oat"
435 } else {
436 return "dex2oatd"
437 }
438}
439
Paul Duffinb506c9d2021-03-24 14:34:40 +0000440type dex2oatDependencyTag struct {
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000441 blueprint.BaseDependencyTag
Colin Crossce564252022-01-12 11:13:32 -0800442 android.LicenseAnnotationToolchainDependencyTag
Paul Duffinb506c9d2021-03-24 14:34:40 +0000443}
444
445func (d dex2oatDependencyTag) ExcludeFromVisibilityEnforcement() {
446}
447
448func (d dex2oatDependencyTag) ExcludeFromApexContents() {
449}
450
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +0100451func (d dex2oatDependencyTag) AllowDisabledModuleDependency(target android.Module) bool {
452 // RegisterToolDeps may run after the prebuilt mutators and hence register a
453 // dependency on the source module even when the prebuilt is to be used.
454 // dex2oatPathFromDep takes that into account when it retrieves the path to
455 // the binary, but we also need to disable the check for dependencies on
456 // disabled modules.
457 return target.IsReplacedByPrebuilt()
458}
459
Paul Duffinb506c9d2021-03-24 14:34:40 +0000460// Dex2oatDepTag represents the dependency onto the dex2oatd module. It is added to any module that
461// needs dexpreopting and so it makes no sense for it to be checked for visibility or included in
462// the apex.
463var Dex2oatDepTag = dex2oatDependencyTag{}
464
465var _ android.ExcludeFromVisibilityEnforcementTag = Dex2oatDepTag
466var _ android.ExcludeFromApexContentsTag = Dex2oatDepTag
Martin Stjernholm0e4cceb2021-05-13 02:38:35 +0100467var _ android.AllowDisabledModuleDependency = Dex2oatDepTag
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000468
Martin Stjernholm6d415272020-01-31 17:10:36 +0000469// RegisterToolDeps adds the necessary dependencies to binary modules for tools
470// that are required later when Get(Cached)GlobalSoongConfig is called. It
471// should be called from a mutator that's registered with
472// android.RegistrationContext.FinalDepsMutators.
473func RegisterToolDeps(ctx android.BottomUpMutatorContext) {
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000474 dex2oatBin := dex2oatModuleName(ctx.Config())
475 v := ctx.Config().BuildOSTarget.Variations()
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000476 ctx.AddFarVariationDependencies(v, Dex2oatDepTag, dex2oatBin)
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000477}
478
Jiakai Zhangbc698cd2023-05-08 16:28:38 +0000479func IsDex2oatNeeded(ctx android.PathContext) bool {
480 global := GetGlobalConfig(ctx)
481 return !global.DisablePreopt || !global.DisablePreoptBootImages
482}
483
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000484func dex2oatPathFromDep(ctx android.ModuleContext) android.Path {
Jiakai Zhangbc698cd2023-05-08 16:28:38 +0000485 if !IsDex2oatNeeded(ctx) {
486 return nil
487 }
488
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000489 dex2oatBin := dex2oatModuleName(ctx.Config())
490
Martin Stjernholmc0048622020-08-18 17:37:41 +0100491 // Find the right dex2oat module, trying to follow PrebuiltDepTag from source
492 // to prebuilt if there is one. We wouldn't have to do this if the
493 // prebuilt_postdeps mutator that replaces source deps with prebuilt deps was
494 // run after RegisterToolDeps above, but changing that leads to ordering
495 // problems between mutators (RegisterToolDeps needs to run late to act on
496 // final variants, while prebuilt_postdeps needs to run before many of the
497 // PostDeps mutators, like the APEX mutators). Hence we need to dig out the
498 // prebuilt explicitly here instead.
499 var dex2oatModule android.Module
500 ctx.WalkDeps(func(child, parent android.Module) bool {
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000501 if parent == ctx.Module() && ctx.OtherModuleDependencyTag(child) == Dex2oatDepTag {
Martin Stjernholmc0048622020-08-18 17:37:41 +0100502 // Found the source module, or prebuilt module that has replaced the source.
503 dex2oatModule = child
Paul Duffinf7c99f52021-04-28 10:41:21 +0100504 if android.IsModulePrebuilt(child) {
Martin Stjernholmc0048622020-08-18 17:37:41 +0100505 return false // If it's the prebuilt we're done.
506 } else {
507 return true // Recurse to check if the source has a prebuilt dependency.
508 }
509 }
510 if parent == dex2oatModule && ctx.OtherModuleDependencyTag(child) == android.PrebuiltDepTag {
Paul Duffinf7c99f52021-04-28 10:41:21 +0100511 if p := android.GetEmbeddedPrebuilt(child); p != nil && p.UsePrebuilt() {
Martin Stjernholmc0048622020-08-18 17:37:41 +0100512 dex2oatModule = child // Found a prebuilt that should be used.
513 }
514 }
515 return false
516 })
517
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000518 if dex2oatModule == nil {
519 // If this happens there's probably a missing call to AddToolDeps in DepsMutator.
520 panic(fmt.Sprintf("Failed to lookup %s dependency", dex2oatBin))
521 }
522
523 dex2oatPath := dex2oatModule.(android.HostToolProvider).HostToolPath()
524 if !dex2oatPath.Valid() {
525 panic(fmt.Sprintf("Failed to find host tool path in %s", dex2oatModule))
526 }
527
528 return dex2oatPath.Path()
529}
530
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000531// createGlobalSoongConfig creates a GlobalSoongConfig from the current context.
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000532// Should not be used in dexpreopt_gen.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000533func createGlobalSoongConfig(ctx android.ModuleContext) *GlobalSoongConfig {
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000534 return &GlobalSoongConfig{
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000535 Profman: ctx.Config().HostToolPath(ctx, "profman"),
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000536 Dex2oat: dex2oatPathFromDep(ctx),
Saeid Farivar Asanjanfd27c7c2022-08-08 20:21:26 +0000537 Aapt: ctx.Config().HostToolPath(ctx, "aapt2"),
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000538 SoongZip: ctx.Config().HostToolPath(ctx, "soong_zip"),
539 Zip2zip: ctx.Config().HostToolPath(ctx, "zip2zip"),
540 ManifestCheck: ctx.Config().HostToolPath(ctx, "manifest_check"),
Ulya Trafimovich5f364b62020-06-30 12:39:01 +0100541 ConstructContext: ctx.Config().HostToolPath(ctx, "construct_context"),
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000542 }
543}
544
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000545// The main reason for this Once cache for GlobalSoongConfig is to make the
546// dex2oat path available to singletons. In ordinary modules we get it through a
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000547// Dex2oatDepTag dependency, but in singletons there's no simple way to do the
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000548// same thing and ensure the right variant is selected, hence this cache to make
549// the resolved path available to singletons. This means we depend on there
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000550// being at least one ordinary module with a Dex2oatDepTag dependency.
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000551//
552// TODO(b/147613152): Implement a way to deal with dependencies from singletons,
Paul Duffin9f045242021-01-21 15:05:11 +0000553// and then possibly remove this cache altogether.
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000554var globalSoongConfigOnceKey = android.NewOnceKey("DexpreoptGlobalSoongConfig")
555
556// GetGlobalSoongConfig creates a GlobalSoongConfig the first time it's called,
557// and later returns the same cached instance.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000558func GetGlobalSoongConfig(ctx android.ModuleContext) *GlobalSoongConfig {
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000559 globalSoong := ctx.Config().Once(globalSoongConfigOnceKey, func() interface{} {
560 return createGlobalSoongConfig(ctx)
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000561 }).(*GlobalSoongConfig)
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000562
563 // Always resolve the tool path from the dependency, to ensure that every
564 // module has the dependency added properly.
565 myDex2oat := dex2oatPathFromDep(ctx)
566 if myDex2oat != globalSoong.Dex2oat {
567 panic(fmt.Sprintf("Inconsistent dex2oat path in cached config: expected %s, got %s", globalSoong.Dex2oat, myDex2oat))
568 }
569
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000570 return globalSoong
571}
572
573// GetCachedGlobalSoongConfig returns a cached GlobalSoongConfig created by an
574// earlier GetGlobalSoongConfig call. This function works with any context
575// compatible with a basic PathContext, since it doesn't try to create a
Martin Stjernholm6d415272020-01-31 17:10:36 +0000576// GlobalSoongConfig with the proper paths (which requires a full
577// ModuleContext). If there has been no prior call to GetGlobalSoongConfig, nil
578// is returned.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000579func GetCachedGlobalSoongConfig(ctx android.PathContext) *GlobalSoongConfig {
Martin Stjernholm6d415272020-01-31 17:10:36 +0000580 return ctx.Config().Once(globalSoongConfigOnceKey, func() interface{} {
581 return (*GlobalSoongConfig)(nil)
582 }).(*GlobalSoongConfig)
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000583}
584
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000585type globalJsonSoongConfig struct {
586 Profman string
587 Dex2oat string
588 Aapt string
589 SoongZip string
590 Zip2zip string
591 ManifestCheck string
592 ConstructContext string
593}
594
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000595// ParseGlobalSoongConfig parses the given data assumed to be read from the
596// global dexpreopt_soong.config file into a GlobalSoongConfig struct. It is
597// only used in dexpreopt_gen.
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000598func ParseGlobalSoongConfig(ctx android.PathContext, data []byte) (*GlobalSoongConfig, error) {
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000599 var jc globalJsonSoongConfig
600
Colin Cross988414c2020-01-11 01:11:46 +0000601 err := json.Unmarshal(data, &jc)
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000602 if err != nil {
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000603 return &GlobalSoongConfig{}, err
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000604 }
605
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000606 config := &GlobalSoongConfig{
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000607 Profman: constructPath(ctx, jc.Profman),
608 Dex2oat: constructPath(ctx, jc.Dex2oat),
609 Aapt: constructPath(ctx, jc.Aapt),
610 SoongZip: constructPath(ctx, jc.SoongZip),
611 Zip2zip: constructPath(ctx, jc.Zip2zip),
612 ManifestCheck: constructPath(ctx, jc.ManifestCheck),
613 ConstructContext: constructPath(ctx, jc.ConstructContext),
614 }
615
616 return config, nil
617}
618
satayevd604b212021-07-21 14:23:52 +0100619// checkBootJarsConfigConsistency checks the consistency of BootJars and ApexBootJars fields in
Paul Duffin7d1d0832021-04-23 11:39:41 +0100620// DexpreoptGlobalConfig and Config.productVariables.
621func checkBootJarsConfigConsistency(ctx android.SingletonContext, dexpreoptConfig *GlobalConfig, config android.Config) {
622 compareBootJars := func(property string, dexpreoptJars, variableJars android.ConfiguredJarList) {
623 dexpreoptPairs := dexpreoptJars.CopyOfApexJarPairs()
624 variablePairs := variableJars.CopyOfApexJarPairs()
625 if !reflect.DeepEqual(dexpreoptPairs, variablePairs) {
626 ctx.Errorf("Inconsistent configuration of %[1]s\n"+
627 " dexpreopt.GlobalConfig.%[1]s = %[2]s\n"+
628 " productVariables.%[1]s = %[3]s",
629 property, dexpreoptPairs, variablePairs)
630 }
631 }
632
satayevd604b212021-07-21 14:23:52 +0100633 compareBootJars("BootJars", dexpreoptConfig.BootJars, config.NonApexBootJars())
634 compareBootJars("ApexBootJars", dexpreoptConfig.ApexBootJars, config.ApexBootJars())
Paul Duffin7d1d0832021-04-23 11:39:41 +0100635}
636
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000637func (s *globalSoongConfigSingleton) GenerateBuildActions(ctx android.SingletonContext) {
Paul Duffin7d1d0832021-04-23 11:39:41 +0100638 checkBootJarsConfigConsistency(ctx, GetGlobalConfig(ctx), ctx.Config())
639
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000640 if GetGlobalConfig(ctx).DisablePreopt {
641 return
642 }
643
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000644 config := GetCachedGlobalSoongConfig(ctx)
Martin Stjernholm6d415272020-01-31 17:10:36 +0000645 if config == nil {
646 // No module has enabled dexpreopting, so we assume there will be no calls
647 // to dexpreopt_gen.
648 return
649 }
650
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000651 jc := globalJsonSoongConfig{
652 Profman: config.Profman.String(),
653 Dex2oat: config.Dex2oat.String(),
654 Aapt: config.Aapt.String(),
655 SoongZip: config.SoongZip.String(),
656 Zip2zip: config.Zip2zip.String(),
657 ManifestCheck: config.ManifestCheck.String(),
658 ConstructContext: config.ConstructContext.String(),
659 }
660
661 data, err := json.Marshal(jc)
662 if err != nil {
663 ctx.Errorf("failed to JSON marshal GlobalSoongConfig: %v", err)
664 return
665 }
666
Colin Crosscf371cc2020-11-13 11:48:42 -0800667 android.WriteFileRule(ctx, android.PathForOutput(ctx, "dexpreopt_soong.config"), string(data))
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000668}
669
670func (s *globalSoongConfigSingleton) MakeVars(ctx android.MakeVarsContext) {
Martin Stjernholmd90676f2020-01-11 00:37:30 +0000671 if GetGlobalConfig(ctx).DisablePreopt {
672 return
673 }
674
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000675 config := GetCachedGlobalSoongConfig(ctx)
Martin Stjernholm6d415272020-01-31 17:10:36 +0000676 if config == nil {
677 return
678 }
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000679
680 ctx.Strict("DEX2OAT", config.Dex2oat.String())
681 ctx.Strict("DEXPREOPT_GEN_DEPS", strings.Join([]string{
682 config.Profman.String(),
683 config.Dex2oat.String(),
684 config.Aapt.String(),
685 config.SoongZip.String(),
686 config.Zip2zip.String(),
687 config.ManifestCheck.String(),
688 config.ConstructContext.String(),
689 }, " "))
690}
691
Martin Stjernholm8d80cee2020-01-31 17:44:54 +0000692func GlobalConfigForTests(ctx android.PathContext) *GlobalConfig {
693 return &GlobalConfig{
Colin Cross69f59a32019-02-15 10:39:37 -0800694 DisablePreopt: false,
695 DisablePreoptModules: nil,
696 OnlyPreoptBootImageAndSystemServer: false,
697 HasSystemOther: false,
698 PatternsOnSystemOther: nil,
699 DisableGenerateProfile: false,
700 ProfileDir: "",
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100701 BootJars: android.EmptyConfiguredJarList(),
satayevd604b212021-07-21 14:23:52 +0100702 ApexBootJars: android.EmptyConfiguredJarList(),
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100703 ArtApexJars: android.EmptyConfiguredJarList(),
Jiakai Zhang556bdf82023-07-12 16:51:57 +0100704 TestOnlyArtBootImageJars: android.EmptyConfiguredJarList(),
satayev9a6f87e2021-05-04 16:14:48 +0100705 SystemServerJars: android.EmptyConfiguredJarList(),
Colin Cross69f59a32019-02-15 10:39:37 -0800706 SystemServerApps: nil,
satayev492b17d2021-07-28 14:04:49 +0100707 ApexSystemServerJars: android.EmptyConfiguredJarList(),
Jiakai Zhangcee9e192021-10-29 19:46:45 +0000708 StandaloneSystemServerJars: android.EmptyConfiguredJarList(),
709 ApexStandaloneSystemServerJars: android.EmptyConfiguredJarList(),
Colin Cross69f59a32019-02-15 10:39:37 -0800710 SpeedApps: nil,
711 PreoptFlags: nil,
712 DefaultCompilerFilter: "",
713 SystemServerCompilerFilter: "",
714 GenerateDMFiles: false,
Colin Cross69f59a32019-02-15 10:39:37 -0800715 NoDebugInfo: false,
Mathieu Chartier3f7ddbb2019-04-29 09:33:50 -0700716 DontResolveStartupStrings: false,
Colin Cross69f59a32019-02-15 10:39:37 -0800717 AlwaysSystemServerDebugInfo: false,
718 NeverSystemServerDebugInfo: false,
719 AlwaysOtherDebugInfo: false,
720 NeverOtherDebugInfo: false,
Colin Cross69f59a32019-02-15 10:39:37 -0800721 IsEng: false,
722 SanitizeLite: false,
723 DefaultAppImages: false,
724 Dex2oatXmx: "",
725 Dex2oatXms: "",
726 EmptyDirectory: "empty_dir",
727 CpuVariant: nil,
728 InstructionSetFeatures: nil,
Colin Cross69f59a32019-02-15 10:39:37 -0800729 BootImageProfiles: nil,
Colin Cross69f59a32019-02-15 10:39:37 -0800730 BootFlags: "",
731 Dex2oatImageXmx: "",
732 Dex2oatImageXms: "",
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000733 }
734}
735
Paul Duffin9f045242021-01-21 15:05:11 +0000736func globalSoongConfigForTests() *GlobalSoongConfig {
737 return &GlobalSoongConfig{
738 Profman: android.PathForTesting("profman"),
739 Dex2oat: android.PathForTesting("dex2oat"),
Saeid Farivar Asanjanfd27c7c2022-08-08 20:21:26 +0000740 Aapt: android.PathForTesting("aapt2"),
Paul Duffin9f045242021-01-21 15:05:11 +0000741 SoongZip: android.PathForTesting("soong_zip"),
742 Zip2zip: android.PathForTesting("zip2zip"),
743 ManifestCheck: android.PathForTesting("manifest_check"),
744 ConstructContext: android.PathForTesting("construct_context"),
745 }
Colin Cross69f59a32019-02-15 10:39:37 -0800746}