blob: c8f9538e6b3130b8122f6be4521d885a80b36af8 [file] [log] [blame]
Colin Cross800fe132019-02-11 14:21:24 -08001// Copyright 2019 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 java
16
17import (
18 "path/filepath"
Vladimir Marko205e6c22020-04-01 13:52:27 +010019 "sort"
Colin Cross800fe132019-02-11 14:21:24 -080020 "strings"
21
22 "android/soong/android"
23 "android/soong/dexpreopt"
24
Colin Cross800fe132019-02-11 14:21:24 -080025 "github.com/google/blueprint/proptools"
26)
27
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +000028// This comment describes:
29// 1. ART boot images in general (their types, structure, file layout, etc.)
30// 2. build system support for boot images
31//
32// 1. ART boot images
33// ------------------
34//
35// A boot image in ART is a set of files that contain AOT-compiled native code and a heap snapshot
36// of AOT-initialized classes for the bootclasspath Java libraries. A boot image is compiled from a
37// set of DEX jars by the dex2oat compiler. A boot image is used for two purposes: 1) it is
38// installed on device and loaded at runtime, and 2) other Java libraries and apps are compiled
39// against it (compilation may take place either on host, known as "dexpreopt", or on device, known
40// as "dexopt").
41//
42// A boot image is not a single file, but a collection of interrelated files. Each boot image has a
43// number of components that correspond to the Java libraries that constitute it. For each component
44// there are multiple files:
45// - *.oat or *.odex file with native code (architecture-specific, one per instruction set)
46// - *.art file with pre-initialized Java classes (architecture-specific, one per instruction set)
47// - *.vdex file with verification metadata for the DEX bytecode (architecture independent)
48//
49// *.vdex files for the boot images do not contain the DEX bytecode itself, because the
50// bootclasspath DEX files are stored on disk in uncompressed and aligned form. Consequently a boot
51// image is not self-contained and cannot be used without its DEX files. To simplify the management
52// of boot image files, ART uses a certain naming scheme and associates the following metadata with
53// each boot image:
54// - A stem, which is a symbolic name that is prepended to boot image file names.
55// - A location (on-device path to the boot image files).
56// - A list of boot image locations (on-device paths to dependency boot images).
57// - A set of DEX locations (on-device paths to the DEX files, one location for one DEX file used
58// to compile the boot image).
59//
60// There are two kinds of boot images:
61// - primary boot images
62// - boot image extensions
63//
64// 1.1. Primary boot images
65// ------------------------
66//
67// A primary boot image is compiled for a core subset of bootclasspath Java libraries. It does not
68// depend on any other images, and other boot images may depend on it.
69//
70// For example, assuming that the stem is "boot", the location is /apex/com.android.art/javalib/,
71// the set of core bootclasspath libraries is A B C, and the boot image is compiled for ARM targets
72// (32 and 64 bits), it will have three components with the following files:
73// - /apex/com.android.art/javalib/{arm,arm64}/boot.{art,oat,vdex}
74// - /apex/com.android.art/javalib/{arm,arm64}/boot-B.{art,oat,vdex}
75// - /apex/com.android.art/javalib/{arm,arm64}/boot-C.{art,oat,vdex}
76//
77// The files of the first component are special: they do not have the component name appended after
78// the stem. This naming convention dates back to the times when the boot image was not split into
79// components, and there were just boot.oat and boot.art. The decision to split was motivated by
80// licensing reasons for one of the bootclasspath libraries.
81//
82// As of November 2020 the only primary boot image in Android is the image in the ART APEX
83// com.android.art. The primary ART boot image contains the Core libraries that are part of the ART
84// module. When the ART module gets updated, the primary boot image will be updated with it, and all
85// dependent images will get invalidated (the checksum of the primary image stored in dependent
86// images will not match), unless they are updated in sync with the ART module.
87//
88// 1.2. Boot image extensions
89// --------------------------
90//
91// A boot image extension is compiled for a subset of bootclasspath Java libraries (in particular,
92// this subset does not include the Core bootclasspath libraries that go into the primary boot
93// image). A boot image extension depends on the primary boot image and optionally some other boot
94// image extensions. Other images may depend on it. In other words, boot image extensions can form
95// acyclic dependency graphs.
96//
97// The motivation for boot image extensions comes from the Mainline project. Consider a situation
98// when the list of bootclasspath libraries is A B C, and both A and B are parts of the Android
99// platform, but C is part of an updatable APEX com.android.C. When the APEX is updated, the Java
100// code for C might have changed compared to the code that was used to compile the boot image.
101// Consequently, the whole boot image is obsolete and invalidated (even though the code for A and B
102// that does not depend on C is up to date). To avoid this, the original monolithic boot image is
103// split in two parts: the primary boot image that contains A B, and the boot image extension that
104// contains C and depends on the primary boot image (extends it).
105//
106// For example, assuming that the stem is "boot", the location is /system/framework, the set of
107// bootclasspath libraries is D E (where D is part of the platform and is located in
108// /system/framework, and E is part of a non-updatable APEX com.android.E and is located in
109// /apex/com.android.E/javalib), and the boot image is compiled for ARM targets (32 and 64 bits),
110// it will have two components with the following files:
111// - /system/framework/{arm,arm64}/boot-D.{art,oat,vdex}
112// - /system/framework/{arm,arm64}/boot-E.{art,oat,vdex}
113//
114// As of November 2020 the only boot image extension in Android is the Framework boot image
115// extension. It extends the primary ART boot image and contains Framework libraries and other
116// bootclasspath libraries from the platform and non-updatable APEXes that are not included in the
117// ART image. The Framework boot image extension is updated together with the platform. In the
118// future other boot image extensions may be added for some updatable modules.
119//
120//
121// 2. Build system support for boot images
122// ---------------------------------------
123//
124// The primary ART boot image needs to be compiled with one dex2oat invocation that depends on DEX
125// jars for the core libraries. Framework boot image extension needs to be compiled with one dex2oat
126// invocation that depends on the primary ART boot image and all bootclasspath DEX jars except the
127// Core libraries.
128//
129// 2.1. Libraries that go in the boot images
130// -----------------------------------------
131//
132// The contents of each boot image are determined by the PRODUCT variables. The primary ART APEX
133// boot image contains libraries listed in the ART_APEX_JARS variable in the AOSP makefiles. The
134// Framework boot image extension contains libraries specified in the PRODUCT_BOOT_JARS and
135// PRODUCT_BOOT_JARS_EXTRA variables. The AOSP makefiles specify some common Framework libraries,
136// but more product-specific libraries can be added in the product makefiles.
137//
138// Each component of the PRODUCT_BOOT_JARS and PRODUCT_BOOT_JARS_EXTRA variables is either a simple
139// name (if the library is a part of the Platform), or a colon-separated pair <apex, name> (if the
140// library is a part of a non-updatable APEX).
141//
142// A related variable PRODUCT_UPDATABLE_BOOT_JARS contains bootclasspath libraries that are in
143// updatable APEXes. They are not included in the boot image.
144//
145// One exception to the above rules are "coverage" builds (a special build flavor which requires
146// setting environment variable EMMA_INSTRUMENT_FRAMEWORK=true). In coverage builds the Java code in
147// boot image libraries is instrumented, which means that the instrumentation library (jacocoagent)
148// needs to be added to the list of bootclasspath DEX jars.
149//
150// In general, there is a requirement that the source code for a boot image library must be
151// available at build time (e.g. it cannot be a stub that has a separate implementation library).
152//
153// 2.2. Static configs
154// -------------------
155//
156// Because boot images are used to dexpreopt other Java modules, the paths to boot image files must
157// be known by the time dexpreopt build rules for the dependent modules are generated. Boot image
158// configs are constructed very early during the build, before build rule generation. The configs
159// provide predefined paths to boot image files (these paths depend only on static build
160// configuration, such as PRODUCT variables, and use hard-coded directory names).
161//
162// 2.3. Singleton
163// --------------
164//
165// Build rules for the boot images are generated with a Soong singleton. Because a singleton has no
166// dependencies on other modules, it has to find the modules for the DEX jars using VisitAllModules.
167// Soong loops through all modules and compares each module against a list of bootclasspath library
168// names. Then it generates build rules that copy DEX jars from their intermediate module-specific
169// locations to the hard-coded locations predefined in the boot image configs.
170//
171// It would be possible to use a module with proper dependencies instead, but that would require
172// changes in the way Soong generates variables for Make: a singleton can use one MakeVars() method
173// that writes variables to out/soong/make_vars-*.mk, which is included early by the main makefile,
174// but module(s) would have to use out/soong/Android-*.mk which has a group of LOCAL_* variables
175// for each module, and is included later.
176//
177// 2.4. Install rules
178// ------------------
179//
180// The primary boot image and the Framework extension are installed in different ways. The primary
181// boot image is part of the ART APEX: it is copied into the APEX intermediate files, packaged
182// together with other APEX contents, extracted and mounted on device. The Framework boot image
183// extension is installed by the rules defined in makefiles (make/core/dex_preopt_libart.mk). Soong
184// writes out a few DEXPREOPT_IMAGE_* variables for Make; these variables contain boot image names,
185// paths and so on.
186//
187// 2.5. JIT-Zygote configuration
188// -----------------------------
189//
190// One special configuration is JIT-Zygote build, when the primary ART image is used for compiling
191// apps instead of the Framework boot image extension (see DEXPREOPT_USE_ART_IMAGE and UseArtImage).
192//
193
Colin Cross800fe132019-02-11 14:21:24 -0800194func init() {
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000195 RegisterDexpreoptBootJarsComponents(android.InitRegistrationContext)
Colin Cross800fe132019-02-11 14:21:24 -0800196}
197
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000198// Target-independent description of a boot image.
Colin Cross44df5812019-02-15 23:06:46 -0800199type bootImageConfig struct {
David Srbecky1aacc6c2020-03-26 11:10:45 +0000200 // If this image is an extension, the image that it extends.
201 extends *bootImageConfig
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000202
203 // Image name (used in directory names and ninja rule names).
204 name string
205
206 // Basename of the image: the resulting filenames are <stem>[-<jar>].{art,oat,vdex}.
207 stem string
208
209 // Output directory for the image files.
210 dir android.OutputPath
211
212 // Output directory for the image files with debug symbols.
213 symbolsDir android.OutputPath
214
215 // Subdirectory where the image files are installed.
216 installSubdir string
217
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100218 // A list of (location, jar) pairs for the Java modules in this image.
219 modules android.ConfiguredJarList
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000220
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000221 // File paths to jars.
222 dexPaths android.WritablePaths // for this image
223 dexPathsDeps android.WritablePaths // for the dependency images and in this image
224
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000225 // File path to a zip archive with all image files (or nil, if not needed).
226 zip android.WritablePath
David Srbeckyc177ebe2020-02-18 20:43:06 +0000227
228 // Rules which should be used in make to install the outputs.
229 profileInstalls android.RuleBuilderInstalls
230
231 // Target-dependent fields.
232 variants []*bootImageVariant
233}
234
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000235// Target-dependent description of a boot image.
David Srbeckyc177ebe2020-02-18 20:43:06 +0000236type bootImageVariant struct {
237 *bootImageConfig
238
239 // Target for which the image is generated.
240 target android.Target
241
David Srbeckyab994982020-03-30 17:24:13 +0100242 // The "locations" of jars.
243 dexLocations []string // for this image
244 dexLocationsDeps []string // for the dependency images and in this image
245
David Srbeckyc177ebe2020-02-18 20:43:06 +0000246 // Paths to image files.
247 images android.OutputPath // first image file
248 imagesDeps android.OutputPaths // all files
249
250 // Only for extensions, paths to the primary boot images.
251 primaryImages android.OutputPath
252
253 // Rules which should be used in make to install the outputs.
254 installs android.RuleBuilderInstalls
255 vdexInstalls android.RuleBuilderInstalls
256 unstrippedInstalls android.RuleBuilderInstalls
257}
258
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000259// Get target-specific boot image variant for the given boot image config and target.
David Srbeckyc177ebe2020-02-18 20:43:06 +0000260func (image bootImageConfig) getVariant(target android.Target) *bootImageVariant {
261 for _, variant := range image.variants {
262 if variant.target.Os == target.Os && variant.target.Arch.ArchType == target.Arch.ArchType {
263 return variant
264 }
265 }
266 return nil
Colin Cross800fe132019-02-11 14:21:24 -0800267}
268
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000269// Return any (the first) variant which is for the device (as opposed to for the host).
David Srbeckyab994982020-03-30 17:24:13 +0100270func (image bootImageConfig) getAnyAndroidVariant() *bootImageVariant {
271 for _, variant := range image.variants {
272 if variant.target.Os == android.Android {
273 return variant
274 }
275 }
276 return nil
277}
278
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000279// Return the name of a boot image module given a boot image config and a component (module) index.
280// A module name is a combination of the Java library name, and the boot image stem (that is stored
281// in the config).
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100282func (image bootImageConfig) moduleName(ctx android.PathContext, idx int) string {
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000283 // The first module of the primary boot image is special: its module name has only the stem, but
284 // not the library name. All other module names are of the form <stem>-<library name>
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100285 m := image.modules.Jar(idx)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000286 name := image.stem
David Srbecky1aacc6c2020-03-26 11:10:45 +0000287 if idx != 0 || image.extends != nil {
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100288 name += "-" + android.ModuleStem(m)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000289 }
290 return name
291}
Dan Willemsen0f416782019-06-13 21:44:53 +0000292
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000293// Return the name of the first boot image module, or stem if the list of modules is empty.
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100294func (image bootImageConfig) firstModuleNameOrStem(ctx android.PathContext) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100295 if image.modules.Len() > 0 {
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100296 return image.moduleName(ctx, 0)
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000297 } else {
298 return image.stem
299 }
300}
301
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000302// Return filenames for the given boot image component, given the output directory and a list of
303// extensions.
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000304func (image bootImageConfig) moduleFiles(ctx android.PathContext, dir android.OutputPath, exts ...string) android.OutputPaths {
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100305 ret := make(android.OutputPaths, 0, image.modules.Len()*len(exts))
306 for i := 0; i < image.modules.Len(); i++ {
Ulya Trafimovich8640ab92020-05-11 18:06:15 +0100307 name := image.moduleName(ctx, i)
Dan Willemsen0f416782019-06-13 21:44:53 +0000308 for _, ext := range exts {
309 ret = append(ret, dir.Join(ctx, name+ext))
310 }
311 }
Dan Willemsen0f416782019-06-13 21:44:53 +0000312 return ret
313}
314
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000315// Return boot image locations (as a list of symbolic paths).
316//
David Srbecky1aacc6c2020-03-26 11:10:45 +0000317// The image "location" is a symbolic path that, with multiarchitecture support, doesn't really
318// exist on the device. Typically it is /apex/com.android.art/javalib/boot.art and should be the
319// same for all supported architectures on the device. The concrete architecture specific files
320// actually end up in architecture-specific sub-directory such as arm, arm64, x86, or x86_64.
321//
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000322// For example a physical file /apex/com.android.art/javalib/x86/boot.art has "image location"
323// /apex/com.android.art/javalib/boot.art (which is not an actual file).
324//
325// For a primary boot image the list of locations has a single element.
326//
327// For a boot image extension the list of locations contains a location for all dependency images
328// (including the primary image) and the location of the extension itself. For example, for the
329// Framework boot image extension that depends on the primary ART boot image the list contains two
330// elements.
David Srbecky1aacc6c2020-03-26 11:10:45 +0000331//
332// The location is passed as an argument to the ART tools like dex2oat instead of the real path.
333// ART tools will then reconstruct the architecture-specific real path.
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000334//
David Srbecky1aacc6c2020-03-26 11:10:45 +0000335func (image *bootImageVariant) imageLocations() (imageLocations []string) {
336 if image.extends != nil {
337 imageLocations = image.extends.getVariant(image.target).imageLocations()
338 }
339 return append(imageLocations, dexpreopt.PathToLocation(image.images, image.target.Arch.ArchType))
340}
341
Colin Cross800fe132019-02-11 14:21:24 -0800342func dexpreoptBootJarsFactory() android.Singleton {
Colin Cross44df5812019-02-15 23:06:46 -0800343 return &dexpreoptBootJars{}
Colin Cross800fe132019-02-11 14:21:24 -0800344}
345
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000346func RegisterDexpreoptBootJarsComponents(ctx android.RegistrationContext) {
347 ctx.RegisterSingletonType("dex_bootjars", dexpreoptBootJarsFactory)
348}
349
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000350func SkipDexpreoptBootJars(ctx android.PathContext) bool {
351 return dexpreopt.GetGlobalConfig(ctx).DisablePreoptBootImages
Colin Cross800fe132019-02-11 14:21:24 -0800352}
353
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000354// Singleton for generating boot image build rules.
Colin Cross44df5812019-02-15 23:06:46 -0800355type dexpreoptBootJars struct {
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000356 // Default boot image config (currently always the Framework boot image extension). It should be
357 // noted that JIT-Zygote builds use ART APEX image instead of the Framework boot image extension,
358 // but the switch is handled not here, but in the makefiles (triggered with
359 // DEXPREOPT_USE_ART_IMAGE=true).
David Srbeckyc177ebe2020-02-18 20:43:06 +0000360 defaultBootImage *bootImageConfig
Colin Cross2d00f0d2019-05-09 21:50:00 -0700361
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000362 // Other boot image configs (currently the list contains only the primary ART APEX image. It
363 // used to contain an experimental JIT-Zygote image (now replaced with the ART APEX image). In
364 // the future other boot image extensions may be added.
365 otherImages []*bootImageConfig
366
367 // Build path to a config file that Soong writes for Make (to be used in makefiles that install
368 // the default boot image).
Colin Cross2d00f0d2019-05-09 21:50:00 -0700369 dexpreoptConfigForMake android.WritablePath
Colin Cross44df5812019-02-15 23:06:46 -0800370}
Colin Cross800fe132019-02-11 14:21:24 -0800371
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000372// Accessor function for the apex package. Returns nil if dexpreopt is disabled.
Tim Joinesc1ef1bb2020-03-18 18:00:41 +0000373func DexpreoptedArtApexJars(ctx android.BuilderContext) map[android.ArchType]android.OutputPaths {
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000374 if SkipDexpreoptBootJars(ctx) {
Tim Joinesc1ef1bb2020-03-18 18:00:41 +0000375 return nil
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000376 }
Tim Joinesc1ef1bb2020-03-18 18:00:41 +0000377 // Include dexpreopt files for the primary boot image.
378 files := map[android.ArchType]android.OutputPaths{}
379 for _, variant := range artBootImageConfig(ctx).variants {
David Srbecky7f8dac12020-02-13 16:00:45 +0000380 // We also generate boot images for host (for testing), but we don't need those in the apex.
Tim Joinesc1ef1bb2020-03-18 18:00:41 +0000381 if variant.target.Os == android.Android {
382 files[variant.target.Arch.ArchType] = variant.imagesDeps
David Srbecky7f8dac12020-02-13 16:00:45 +0000383 }
David Srbeckyc177ebe2020-02-18 20:43:06 +0000384 }
Tim Joinesc1ef1bb2020-03-18 18:00:41 +0000385 return files
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000386}
387
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000388// Generate build rules for boot images.
Colin Cross44df5812019-02-15 23:06:46 -0800389func (d *dexpreoptBootJars) GenerateBuildActions(ctx android.SingletonContext) {
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000390 if SkipDexpreoptBootJars(ctx) {
Colin Cross800fe132019-02-11 14:21:24 -0800391 return
392 }
Martin Stjernholm6d415272020-01-31 17:10:36 +0000393 if dexpreopt.GetCachedGlobalSoongConfig(ctx) == nil {
394 // No module has enabled dexpreopting, so we assume there will be no boot image to make.
395 return
396 }
Colin Cross800fe132019-02-11 14:21:24 -0800397
Colin Cross2d00f0d2019-05-09 21:50:00 -0700398 d.dexpreoptConfigForMake = android.PathForOutput(ctx, ctx.Config().DeviceName(), "dexpreopt.config")
399 writeGlobalConfigForMake(ctx, d.dexpreoptConfigForMake)
400
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000401 global := dexpreopt.GetGlobalConfig(ctx)
Colin Cross800fe132019-02-11 14:21:24 -0800402
403 // Skip recompiling the boot image for the second sanitization phase. We'll get separate paths
404 // and invalidate first-stage artifacts which are crucial to SANITIZE_LITE builds.
405 // Note: this is technically incorrect. Compiled code contains stack checks which may depend
406 // on ASAN settings.
407 if len(ctx.Config().SanitizeDevice()) == 1 &&
408 ctx.Config().SanitizeDevice()[0] == "address" &&
Colin Cross44df5812019-02-15 23:06:46 -0800409 global.SanitizeLite {
Colin Cross800fe132019-02-11 14:21:24 -0800410 return
411 }
412
Lingfeng Yang54191fa2019-12-19 16:40:09 +0000413 // Always create the default boot image first, to get a unique profile rule for all images.
414 d.defaultBootImage = buildBootImage(ctx, defaultBootImageConfig(ctx))
Ulya Trafimovich44561882020-01-03 13:25:54 +0000415 // Create boot image for the ART apex (build artifacts are accessed via the global boot image config).
416 d.otherImages = append(d.otherImages, buildBootImage(ctx, artBootImageConfig(ctx)))
Colin Crossc9a4c362019-02-26 21:13:48 -0800417
418 dumpOatRules(ctx, d.defaultBootImage)
Colin Cross44df5812019-02-15 23:06:46 -0800419}
420
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000421// Inspect this module to see if it contains a bootclasspath dex jar.
422// Note that the same jar may occur in multiple modules.
423// This logic is tested in the apex package to avoid import cycle apex <-> java.
424func getBootImageJar(ctx android.SingletonContext, image *bootImageConfig, module android.Module) (int, android.Path) {
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000425 name := ctx.ModuleName(module)
Paul Duffin064b70c2020-11-02 17:32:38 +0000426
427 // Strip a prebuilt_ prefix so that this can access the dex jar from a prebuilt module.
428 name = android.RemoveOptionalPrebuiltPrefix(name)
429
430 // Ignore any module that is not listed in the boot image configuration.
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100431 index := image.modules.IndexOfJar(name)
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000432 if index == -1 {
433 return -1, nil
434 }
435
Paul Duffin064b70c2020-11-02 17:32:38 +0000436 // It is an error if a module configured in the boot image does not support accessing the dex jar.
437 // This is safe because every module that has the same name has to have the same module type.
Paul Duffinfc021662020-12-03 18:06:20 +0000438 jar, hasJar := module.(interface{ DexJarBuildPath() android.Path })
439 if !hasJar {
440 ctx.Errorf("module %q configured in boot image %q does not support accessing dex jar", module, image.name)
441 return -1, nil
442 }
443
444 // It is also an error if the module is not an ApexModule.
445 if _, ok := module.(android.ApexModule); !ok {
446 ctx.Errorf("module %q configured in boot image %q does not support being added to an apex", module, image.name)
447 return -1, nil
448 }
449
Colin Cross56a83212020-09-15 18:30:11 -0700450 apexInfo := ctx.ModuleProvider(module, android.ApexInfoProvider).(android.ApexInfo)
Paul Duffinfc021662020-12-03 18:06:20 +0000451
452 // Now match the apex part of the boot image configuration.
453 requiredApex := image.modules.Apex(index)
454 if requiredApex == "platform" {
455 if len(apexInfo.InApexes) != 0 {
456 // A platform variant is required but this is for an apex so ignore it.
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000457 return -1, nil
Paul Duffinfc021662020-12-03 18:06:20 +0000458 }
459 } else if !android.InList(requiredApex, apexInfo.InApexes) {
460 // An apex variant for a specific apex is required but this is the wrong apex.
461 return -1, nil
462 }
463
464 // Check that this module satisfies any boot image specific constraints.
465 fromUpdatableApex := apexInfo.Updatable
466
467 switch image.name {
468 case artBootImageName:
469 if len(apexInfo.InApexes) > 0 && allHavePrefix(apexInfo.InApexes, "com.android.art") {
470 // ok: found the jar in the ART apex
Ulya Trafimoviche0ce4ba2020-04-08 15:00:49 +0100471 } else if name == "jacocoagent" && ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") {
Ulya Trafimovich7c140d82020-04-22 18:05:58 +0100472 // exception (skip and continue): Jacoco platform variant for a coverage build
Ulya Trafimoviche0ce4ba2020-04-08 15:00:49 +0100473 return -1, nil
Ulya Trafimovich7c140d82020-04-22 18:05:58 +0100474 } else if fromUpdatableApex {
475 // error: this jar is part of an updatable apex other than ART
Colin Cross56a83212020-09-15 18:30:11 -0700476 ctx.Errorf("module %q from updatable apexes %q is not allowed in the ART boot image", name, apexInfo.InApexes)
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000477 } else {
Ulya Trafimovich7c140d82020-04-22 18:05:58 +0100478 // error: this jar is part of the platform or a non-updatable apex
Colin Crossaede88c2020-08-11 12:17:01 -0700479 ctx.Errorf("module %q is not allowed in the ART boot image", name)
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000480 }
Paul Duffinfc021662020-12-03 18:06:20 +0000481
482 case frameworkBootImageName:
Ulya Trafimovich7c140d82020-04-22 18:05:58 +0100483 if !fromUpdatableApex {
484 // ok: this jar is part of the platform or a non-updatable apex
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000485 } else {
Ulya Trafimovich7c140d82020-04-22 18:05:58 +0100486 // error: this jar is part of an updatable apex
Colin Cross56a83212020-09-15 18:30:11 -0700487 ctx.Errorf("module %q from updatable apexes %q is not allowed in the framework boot image", name, apexInfo.InApexes)
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000488 }
Paul Duffinfc021662020-12-03 18:06:20 +0000489 default:
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000490 panic("unknown boot image: " + image.name)
491 }
492
Ulyana Trafimovich5539e7b2020-06-04 14:08:17 +0000493 return index, jar.DexJarBuildPath()
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000494}
495
Colin Crossaede88c2020-08-11 12:17:01 -0700496func allHavePrefix(list []string, prefix string) bool {
497 for _, s := range list {
Martin Stjernholm7f511072020-10-12 15:10:36 +0100498 if s != prefix && !strings.HasPrefix(s, prefix+".") {
Colin Crossaede88c2020-08-11 12:17:01 -0700499 return false
500 }
501 }
502 return true
503}
504
David Srbeckyc177ebe2020-02-18 20:43:06 +0000505// buildBootImage takes a bootImageConfig, creates rules to build it, and returns the image.
506func buildBootImage(ctx android.SingletonContext, image *bootImageConfig) *bootImageConfig {
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000507 // Collect dex jar paths for the boot image modules.
508 // This logic is tested in the apex package to avoid import cycle apex <-> java.
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100509 bootDexJars := make(android.Paths, image.modules.Len())
Colin Cross800fe132019-02-11 14:21:24 -0800510 ctx.VisitAllModules(func(module android.Module) {
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000511 if i, j := getBootImageJar(ctx, image, module); i != -1 {
Paul Duffindb77e142020-12-03 19:25:39 +0000512 if existing := bootDexJars[i]; existing != nil {
513 ctx.Errorf("Multiple dex jars found for %s:%s - %s and %s",
514 image.modules.Apex(i), image.modules.Jar(i), existing, j)
515 return
516 }
517
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000518 bootDexJars[i] = j
Colin Cross800fe132019-02-11 14:21:24 -0800519 }
520 })
521
522 var missingDeps []string
523 // Ensure all modules were converted to paths
524 for i := range bootDexJars {
525 if bootDexJars[i] == nil {
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100526 m := image.modules.Jar(i)
Colin Cross800fe132019-02-11 14:21:24 -0800527 if ctx.Config().AllowMissingDependencies() {
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +0100528 missingDeps = append(missingDeps, m)
Paul Duffin7f48eef2020-12-03 11:15:58 +0000529 bootDexJars[i] = android.PathForOutput(ctx, "missing/module", m, "from/apex", image.modules.Apex(i))
Colin Cross800fe132019-02-11 14:21:24 -0800530 } else {
Ulya Trafimovichb28cc372020-01-13 15:18:16 +0000531 ctx.Errorf("failed to find a dex jar path for module '%s'"+
Ulya Trafimovich50c4a4b2020-04-21 15:36:33 +0100532 ", note that some jars may be filtered out by module constraints", m)
Colin Cross800fe132019-02-11 14:21:24 -0800533 }
534 }
535 }
536
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000537 // The paths to bootclasspath DEX files need to be known at module GenerateAndroidBuildAction
538 // time, before the boot images are built (these paths are used in dexpreopt rule generation for
539 // Java libraries and apps). Generate rules that copy bootclasspath DEX jars to the predefined
540 // paths.
Colin Cross800fe132019-02-11 14:21:24 -0800541 for i := range bootDexJars {
542 ctx.Build(pctx, android.BuildParams{
543 Rule: android.Cp,
544 Input: bootDexJars[i],
Colin Cross44df5812019-02-15 23:06:46 -0800545 Output: image.dexPaths[i],
Colin Cross800fe132019-02-11 14:21:24 -0800546 })
547 }
548
Colin Cross44df5812019-02-15 23:06:46 -0800549 profile := bootImageProfileRule(ctx, image, missingDeps)
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100550 bootFrameworkProfileRule(ctx, image, missingDeps)
Vladimir Marko205e6c22020-04-01 13:52:27 +0100551 updatableBcpPackagesRule(ctx, image, missingDeps)
Colin Cross800fe132019-02-11 14:21:24 -0800552
Ulya Trafimovich9ab49332020-06-10 15:44:25 +0100553 var zipFiles android.Paths
David Srbeckyc177ebe2020-02-18 20:43:06 +0000554 for _, variant := range image.variants {
555 files := buildBootImageVariant(ctx, variant, profile, missingDeps)
Ulya Trafimovich9ab49332020-06-10 15:44:25 +0100556 if variant.target.Os == android.Android {
557 zipFiles = append(zipFiles, files.Paths()...)
558 }
Colin Cross800fe132019-02-11 14:21:24 -0800559 }
Colin Cross44df5812019-02-15 23:06:46 -0800560
Colin Crossdf8eebe2019-04-09 15:29:41 -0700561 if image.zip != nil {
Colin Crossf1a035e2020-11-16 17:32:30 -0800562 rule := android.NewRuleBuilder(pctx, ctx)
Colin Crossdf8eebe2019-04-09 15:29:41 -0700563 rule.Command().
Colin Crossf1a035e2020-11-16 17:32:30 -0800564 BuiltTool("soong_zip").
Colin Crossdf8eebe2019-04-09 15:29:41 -0700565 FlagWithOutput("-o ", image.zip).
Ulya Trafimovich9ab49332020-06-10 15:44:25 +0100566 FlagWithArg("-C ", image.dir.Join(ctx, android.Android.String()).String()).
567 FlagWithInputList("-f ", zipFiles, " -f ")
Colin Crossdf8eebe2019-04-09 15:29:41 -0700568
Colin Crossf1a035e2020-11-16 17:32:30 -0800569 rule.Build("zip_"+image.name, "zip "+image.name+" image")
Colin Crossdf8eebe2019-04-09 15:29:41 -0700570 }
571
Colin Cross44df5812019-02-15 23:06:46 -0800572 return image
Colin Cross800fe132019-02-11 14:21:24 -0800573}
574
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000575// Generate boot image build rules for a specific target.
David Srbeckyc177ebe2020-02-18 20:43:06 +0000576func buildBootImageVariant(ctx android.SingletonContext, image *bootImageVariant,
577 profile android.Path, missingDeps []string) android.WritablePaths {
Colin Cross800fe132019-02-11 14:21:24 -0800578
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000579 globalSoong := dexpreopt.GetCachedGlobalSoongConfig(ctx)
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000580 global := dexpreopt.GetGlobalConfig(ctx)
Colin Cross44df5812019-02-15 23:06:46 -0800581
David Srbeckyc177ebe2020-02-18 20:43:06 +0000582 arch := image.target.Arch.ArchType
David Srbecky7f8dac12020-02-13 16:00:45 +0000583 os := image.target.Os.String() // We need to distinguish host-x86 and device-x86.
584 symbolsDir := image.symbolsDir.Join(ctx, os, image.installSubdir, arch.String())
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000585 symbolsFile := symbolsDir.Join(ctx, image.stem+".oat")
David Srbecky7f8dac12020-02-13 16:00:45 +0000586 outputDir := image.dir.Join(ctx, os, image.installSubdir, arch.String())
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000587 outputPath := outputDir.Join(ctx, image.stem+".oat")
588 oatLocation := dexpreopt.PathToLocation(outputPath, arch)
589 imagePath := outputPath.ReplaceExtension(ctx, "art")
Colin Cross800fe132019-02-11 14:21:24 -0800590
Colin Crossf1a035e2020-11-16 17:32:30 -0800591 rule := android.NewRuleBuilder(pctx, ctx)
Colin Cross800fe132019-02-11 14:21:24 -0800592 rule.MissingDeps(missingDeps)
593
594 rule.Command().Text("mkdir").Flag("-p").Flag(symbolsDir.String())
595 rule.Command().Text("rm").Flag("-f").
596 Flag(symbolsDir.Join(ctx, "*.art").String()).
597 Flag(symbolsDir.Join(ctx, "*.oat").String()).
598 Flag(symbolsDir.Join(ctx, "*.invocation").String())
599 rule.Command().Text("rm").Flag("-f").
600 Flag(outputDir.Join(ctx, "*.art").String()).
601 Flag(outputDir.Join(ctx, "*.oat").String()).
602 Flag(outputDir.Join(ctx, "*.invocation").String())
603
604 cmd := rule.Command()
605
606 extraFlags := ctx.Config().Getenv("ART_BOOT_IMAGE_EXTRA_ARGS")
607 if extraFlags == "" {
608 // Use ANDROID_LOG_TAGS to suppress most logging by default...
609 cmd.Text(`ANDROID_LOG_TAGS="*:e"`)
610 } else {
611 // ...unless the boot image is generated specifically for testing, then allow all logging.
612 cmd.Text(`ANDROID_LOG_TAGS="*:v"`)
613 }
614
615 invocationPath := outputPath.ReplaceExtension(ctx, "invocation")
616
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000617 cmd.Tool(globalSoong.Dex2oat).
Colin Cross800fe132019-02-11 14:21:24 -0800618 Flag("--avoid-storing-invocation").
Colin Cross69f59a32019-02-15 10:39:37 -0800619 FlagWithOutput("--write-invocation-to=", invocationPath).ImplicitOutput(invocationPath).
Colin Cross44df5812019-02-15 23:06:46 -0800620 Flag("--runtime-arg").FlagWithArg("-Xms", global.Dex2oatImageXms).
621 Flag("--runtime-arg").FlagWithArg("-Xmx", global.Dex2oatImageXmx)
Colin Cross800fe132019-02-11 14:21:24 -0800622
Colin Cross69f59a32019-02-15 10:39:37 -0800623 if profile != nil {
Colin Cross800fe132019-02-11 14:21:24 -0800624 cmd.FlagWithArg("--compiler-filter=", "speed-profile")
Colin Cross69f59a32019-02-15 10:39:37 -0800625 cmd.FlagWithInput("--profile-file=", profile)
Colin Cross800fe132019-02-11 14:21:24 -0800626 }
627
Nicolas Geoffray1086e602021-01-20 14:30:40 +0000628 dirtyImageFile := "frameworks/base/config/dirty-image-objects"
629 dirtyImagePath := android.ExistentPathForSource(ctx, dirtyImageFile)
630 if dirtyImagePath.Valid() {
631 cmd.FlagWithInput("--dirty-image-objects=", dirtyImagePath.Path())
Colin Cross800fe132019-02-11 14:21:24 -0800632 }
633
David Srbecky1aacc6c2020-03-26 11:10:45 +0000634 if image.extends != nil {
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000635 // It is a boot image extension, so it needs the boot image it depends on (in this case the
636 // primary ART APEX image).
David Srbeckyc177ebe2020-02-18 20:43:06 +0000637 artImage := image.primaryImages
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000638 cmd.
639 Flag("--runtime-arg").FlagWithInputList("-Xbootclasspath:", image.dexPathsDeps.Paths(), ":").
640 Flag("--runtime-arg").FlagWithList("-Xbootclasspath-locations:", image.dexLocationsDeps, ":").
641 FlagWithArg("--boot-image=", dexpreopt.PathToLocation(artImage, arch)).Implicit(artImage)
642 } else {
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000643 // It is a primary image, so it needs a base address.
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000644 cmd.FlagWithArg("--base=", ctx.Config().LibartImgDeviceBaseAddress())
645 }
646
Colin Cross800fe132019-02-11 14:21:24 -0800647 cmd.
Colin Cross44df5812019-02-15 23:06:46 -0800648 FlagForEachInput("--dex-file=", image.dexPaths.Paths()).
649 FlagForEachArg("--dex-location=", image.dexLocations).
Colin Cross800fe132019-02-11 14:21:24 -0800650 Flag("--generate-debug-info").
651 Flag("--generate-build-id").
Mathieu Chartier54fd8072019-07-26 13:50:04 -0700652 Flag("--image-format=lz4hc").
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000653 FlagWithArg("--oat-symbols=", symbolsFile.String()).
Colin Cross800fe132019-02-11 14:21:24 -0800654 Flag("--strip").
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000655 FlagWithArg("--oat-file=", outputPath.String()).
Colin Cross800fe132019-02-11 14:21:24 -0800656 FlagWithArg("--oat-location=", oatLocation).
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000657 FlagWithArg("--image=", imagePath.String()).
Colin Cross800fe132019-02-11 14:21:24 -0800658 FlagWithArg("--instruction-set=", arch.String()).
Colin Cross44df5812019-02-15 23:06:46 -0800659 FlagWithArg("--android-root=", global.EmptyDirectory).
Colin Cross800fe132019-02-11 14:21:24 -0800660 FlagWithArg("--no-inline-from=", "core-oj.jar").
Ulya Trafimovichc0c98d52020-03-09 12:46:06 +0000661 Flag("--force-determinism").
Colin Cross800fe132019-02-11 14:21:24 -0800662 Flag("--abort-on-hard-verifier-error")
663
David Srbecky7f8dac12020-02-13 16:00:45 +0000664 // Use the default variant/features for host builds.
665 // The map below contains only device CPU info (which might be x86 on some devices).
666 if image.target.Os == android.Android {
667 cmd.FlagWithArg("--instruction-set-variant=", global.CpuVariant[arch])
668 cmd.FlagWithArg("--instruction-set-features=", global.InstructionSetFeatures[arch])
669 }
670
Colin Cross44df5812019-02-15 23:06:46 -0800671 if global.BootFlags != "" {
672 cmd.Flag(global.BootFlags)
Colin Cross800fe132019-02-11 14:21:24 -0800673 }
674
675 if extraFlags != "" {
676 cmd.Flag(extraFlags)
677 }
678
Colin Cross0b9f31f2019-02-28 11:00:01 -0800679 cmd.Textf(`|| ( echo %s ; false )`, proptools.ShellEscape(failureMessage))
Colin Cross800fe132019-02-11 14:21:24 -0800680
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000681 installDir := filepath.Join("/", image.installSubdir, arch.String())
Colin Cross800fe132019-02-11 14:21:24 -0800682
Colin Cross800fe132019-02-11 14:21:24 -0800683 var vdexInstalls android.RuleBuilderInstalls
684 var unstrippedInstalls android.RuleBuilderInstalls
685
Colin Crossdf8eebe2019-04-09 15:29:41 -0700686 var zipFiles android.WritablePaths
687
Dan Willemsen0f416782019-06-13 21:44:53 +0000688 for _, artOrOat := range image.moduleFiles(ctx, outputDir, ".art", ".oat") {
689 cmd.ImplicitOutput(artOrOat)
690 zipFiles = append(zipFiles, artOrOat)
Colin Cross800fe132019-02-11 14:21:24 -0800691
Dan Willemsen0f416782019-06-13 21:44:53 +0000692 // Install the .oat and .art files
693 rule.Install(artOrOat, filepath.Join(installDir, artOrOat.Base()))
694 }
Colin Cross800fe132019-02-11 14:21:24 -0800695
Dan Willemsen0f416782019-06-13 21:44:53 +0000696 for _, vdex := range image.moduleFiles(ctx, outputDir, ".vdex") {
697 cmd.ImplicitOutput(vdex)
698 zipFiles = append(zipFiles, vdex)
Colin Cross800fe132019-02-11 14:21:24 -0800699
David Srbecky7f8dac12020-02-13 16:00:45 +0000700 // Note that the vdex files are identical between architectures.
701 // Make rules will create symlinks to share them between architectures.
Colin Cross800fe132019-02-11 14:21:24 -0800702 vdexInstalls = append(vdexInstalls,
David Srbecky7f8dac12020-02-13 16:00:45 +0000703 android.RuleBuilderInstall{vdex, filepath.Join(installDir, vdex.Base())})
Dan Willemsen0f416782019-06-13 21:44:53 +0000704 }
705
706 for _, unstrippedOat := range image.moduleFiles(ctx, symbolsDir, ".oat") {
707 cmd.ImplicitOutput(unstrippedOat)
Colin Cross800fe132019-02-11 14:21:24 -0800708
709 // Install the unstripped oat files. The Make rules will put these in $(TARGET_OUT_UNSTRIPPED)
710 unstrippedInstalls = append(unstrippedInstalls,
Colin Cross69f59a32019-02-15 10:39:37 -0800711 android.RuleBuilderInstall{unstrippedOat, filepath.Join(installDir, unstrippedOat.Base())})
Colin Cross800fe132019-02-11 14:21:24 -0800712 }
713
Colin Crossf1a035e2020-11-16 17:32:30 -0800714 rule.Build(image.name+"JarsDexpreopt_"+image.target.String(), "dexpreopt "+image.name+" jars "+arch.String())
Colin Cross800fe132019-02-11 14:21:24 -0800715
716 // save output and installed files for makevars
David Srbeckyc177ebe2020-02-18 20:43:06 +0000717 image.installs = rule.Installs()
718 image.vdexInstalls = vdexInstalls
719 image.unstrippedInstalls = unstrippedInstalls
Colin Crossdf8eebe2019-04-09 15:29:41 -0700720
721 return zipFiles
Colin Cross800fe132019-02-11 14:21:24 -0800722}
723
724const failureMessage = `ERROR: Dex2oat failed to compile a boot image.
725It is likely that the boot classpath is inconsistent.
726Rebuild with ART_BOOT_IMAGE_EXTRA_ARGS="--runtime-arg -verbose:verifier" to see verification errors.`
727
David Srbeckyc177ebe2020-02-18 20:43:06 +0000728func bootImageProfileRule(ctx android.SingletonContext, image *bootImageConfig, missingDeps []string) android.WritablePath {
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000729 globalSoong := dexpreopt.GetCachedGlobalSoongConfig(ctx)
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000730 global := dexpreopt.GetGlobalConfig(ctx)
Nicolas Geoffray27c7cc62019-02-24 16:04:52 +0000731
Ulya Trafimovicha4a1c4e2021-01-15 18:40:04 +0000732 if global.DisableGenerateProfile {
Nicolas Geoffray27c7cc62019-02-24 16:04:52 +0000733 return nil
734 }
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000735 profile := ctx.Config().Once(bootImageProfileRuleKey, func() interface{} {
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000736 defaultProfile := "frameworks/base/config/boot-image-profile.txt"
Colin Cross800fe132019-02-11 14:21:24 -0800737
Colin Crossf1a035e2020-11-16 17:32:30 -0800738 rule := android.NewRuleBuilder(pctx, ctx)
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000739 rule.MissingDeps(missingDeps)
Colin Cross800fe132019-02-11 14:21:24 -0800740
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000741 var bootImageProfile android.Path
742 if len(global.BootImageProfiles) > 1 {
743 combinedBootImageProfile := image.dir.Join(ctx, "boot-image-profile.txt")
744 rule.Command().Text("cat").Inputs(global.BootImageProfiles).Text(">").Output(combinedBootImageProfile)
745 bootImageProfile = combinedBootImageProfile
746 } else if len(global.BootImageProfiles) == 1 {
747 bootImageProfile = global.BootImageProfiles[0]
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000748 } else if path := android.ExistentPathForSource(ctx, defaultProfile); path.Valid() {
749 bootImageProfile = path.Path()
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000750 } else {
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000751 // No profile (not even a default one, which is the case on some branches
752 // like master-art-host that don't have frameworks/base).
753 // Return nil and continue without profile.
754 return nil
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000755 }
Colin Cross800fe132019-02-11 14:21:24 -0800756
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000757 profile := image.dir.Join(ctx, "boot.prof")
Colin Cross800fe132019-02-11 14:21:24 -0800758
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000759 rule.Command().
760 Text(`ANDROID_LOG_TAGS="*:e"`).
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000761 Tool(globalSoong.Profman).
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000762 FlagWithInput("--create-profile-from=", bootImageProfile).
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000763 FlagForEachInput("--apk=", image.dexPathsDeps.Paths()).
David Srbeckyab994982020-03-30 17:24:13 +0100764 FlagForEachArg("--dex-location=", image.getAnyAndroidVariant().dexLocationsDeps).
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000765 FlagWithOutput("--reference-profile-file=", profile)
Colin Cross800fe132019-02-11 14:21:24 -0800766
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000767 rule.Install(profile, "/system/etc/boot-image.prof")
768
Colin Crossf1a035e2020-11-16 17:32:30 -0800769 rule.Build("bootJarsProfile", "profile boot jars")
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000770
771 image.profileInstalls = rule.Installs()
772
773 return profile
Ulyana Trafimovichde534412019-11-08 10:51:01 +0000774 })
775 if profile == nil {
776 return nil // wrap nil into a typed pointer with value nil
777 }
778 return profile.(android.WritablePath)
Colin Cross800fe132019-02-11 14:21:24 -0800779}
780
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000781var bootImageProfileRuleKey = android.NewOnceKey("bootImageProfileRule")
782
David Srbeckyc177ebe2020-02-18 20:43:06 +0000783func bootFrameworkProfileRule(ctx android.SingletonContext, image *bootImageConfig, missingDeps []string) android.WritablePath {
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000784 globalSoong := dexpreopt.GetCachedGlobalSoongConfig(ctx)
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000785 global := dexpreopt.GetGlobalConfig(ctx)
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100786
Dan Willemsen9f435972020-05-28 15:28:00 -0700787 if global.DisableGenerateProfile || ctx.Config().UnbundledBuild() {
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100788 return nil
789 }
790 return ctx.Config().Once(bootFrameworkProfileRuleKey, func() interface{} {
Colin Crossf1a035e2020-11-16 17:32:30 -0800791 rule := android.NewRuleBuilder(pctx, ctx)
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100792 rule.MissingDeps(missingDeps)
793
794 // Some branches like master-art-host don't have frameworks/base, so manually
795 // handle the case that the default is missing. Those branches won't attempt to build the profile rule,
796 // and if they do they'll get a missing deps error.
797 defaultProfile := "frameworks/base/config/boot-profile.txt"
798 path := android.ExistentPathForSource(ctx, defaultProfile)
799 var bootFrameworkProfile android.Path
800 if path.Valid() {
801 bootFrameworkProfile = path.Path()
802 } else {
803 missingDeps = append(missingDeps, defaultProfile)
Paul Duffin7f48eef2020-12-03 11:15:58 +0000804 bootFrameworkProfile = android.PathForOutput(ctx, "missing", defaultProfile)
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100805 }
806
807 profile := image.dir.Join(ctx, "boot.bprof")
808
809 rule.Command().
810 Text(`ANDROID_LOG_TAGS="*:e"`).
Martin Stjernholm75a48d82020-01-10 20:32:59 +0000811 Tool(globalSoong.Profman).
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100812 Flag("--generate-boot-profile").
813 FlagWithInput("--create-profile-from=", bootFrameworkProfile).
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000814 FlagForEachInput("--apk=", image.dexPathsDeps.Paths()).
David Srbeckyab994982020-03-30 17:24:13 +0100815 FlagForEachArg("--dex-location=", image.getAnyAndroidVariant().dexLocationsDeps).
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100816 FlagWithOutput("--reference-profile-file=", profile)
817
818 rule.Install(profile, "/system/etc/boot-image.bprof")
Colin Crossf1a035e2020-11-16 17:32:30 -0800819 rule.Build("bootFrameworkProfile", "profile boot framework jars")
Nicolas Geoffraye7102422019-07-24 13:19:29 +0100820 image.profileInstalls = append(image.profileInstalls, rule.Installs()...)
821
822 return profile
823 }).(android.WritablePath)
824}
825
826var bootFrameworkProfileRuleKey = android.NewOnceKey("bootFrameworkProfileRule")
827
Vladimir Marko205e6c22020-04-01 13:52:27 +0100828func updatableBcpPackagesRule(ctx android.SingletonContext, image *bootImageConfig, missingDeps []string) android.WritablePath {
Dan Willemsen9f435972020-05-28 15:28:00 -0700829 if ctx.Config().UnbundledBuild() {
Vladimir Marko205e6c22020-04-01 13:52:27 +0100830 return nil
831 }
832
833 return ctx.Config().Once(updatableBcpPackagesRuleKey, func() interface{} {
834 global := dexpreopt.GetGlobalConfig(ctx)
Ulya Trafimovich249386a2020-07-01 14:31:13 +0100835 updatableModules := global.UpdatableBootJars.CopyOfJars()
Vladimir Marko205e6c22020-04-01 13:52:27 +0100836
837 // Collect `permitted_packages` for updatable boot jars.
838 var updatablePackages []string
839 ctx.VisitAllModules(func(module android.Module) {
Paul Duffine739f1e2020-05-29 11:24:51 +0100840 if j, ok := module.(PermittedPackagesForUpdatableBootJars); ok {
Vladimir Marko205e6c22020-04-01 13:52:27 +0100841 name := ctx.ModuleName(module)
842 if i := android.IndexList(name, updatableModules); i != -1 {
Paul Duffine739f1e2020-05-29 11:24:51 +0100843 pp := j.PermittedPackagesForUpdatableBootJars()
Vladimir Marko205e6c22020-04-01 13:52:27 +0100844 if len(pp) > 0 {
845 updatablePackages = append(updatablePackages, pp...)
846 } else {
847 ctx.Errorf("Missing permitted_packages for %s", name)
848 }
849 // Do not match the same library repeatedly.
850 updatableModules = append(updatableModules[:i], updatableModules[i+1:]...)
851 }
852 }
853 })
854
855 // Sort updatable packages to ensure deterministic ordering.
856 sort.Strings(updatablePackages)
857
858 updatableBcpPackagesName := "updatable-bcp-packages.txt"
859 updatableBcpPackages := image.dir.Join(ctx, updatableBcpPackagesName)
860
Colin Crosscf371cc2020-11-13 11:48:42 -0800861 // WriteFileRule automatically adds the last end-of-line.
862 android.WriteFileRule(ctx, updatableBcpPackages, strings.Join(updatablePackages, "\n"))
Vladimir Marko205e6c22020-04-01 13:52:27 +0100863
Colin Crossf1a035e2020-11-16 17:32:30 -0800864 rule := android.NewRuleBuilder(pctx, ctx)
Vladimir Marko205e6c22020-04-01 13:52:27 +0100865 rule.MissingDeps(missingDeps)
866 rule.Install(updatableBcpPackages, "/system/etc/"+updatableBcpPackagesName)
867 // TODO: Rename `profileInstalls` to `extraInstalls`?
868 // Maybe even move the field out of the bootImageConfig into some higher level type?
869 image.profileInstalls = append(image.profileInstalls, rule.Installs()...)
870
871 return updatableBcpPackages
872 }).(android.WritablePath)
873}
874
875var updatableBcpPackagesRuleKey = android.NewOnceKey("updatableBcpPackagesRule")
876
David Srbeckyc177ebe2020-02-18 20:43:06 +0000877func dumpOatRules(ctx android.SingletonContext, image *bootImageConfig) {
Colin Crossc9a4c362019-02-26 21:13:48 -0800878 var allPhonies android.Paths
David Srbeckyc177ebe2020-02-18 20:43:06 +0000879 for _, image := range image.variants {
880 arch := image.target.Arch.ArchType
David Srbecky46672322020-03-16 13:27:55 +0000881 suffix := arch.String()
882 // Host and target might both use x86 arch. We need to ensure the names are unique.
883 if image.target.Os.Class == android.Host {
884 suffix = "host-" + suffix
885 }
Colin Crossc9a4c362019-02-26 21:13:48 -0800886 // Create a rule to call oatdump.
David Srbecky7f8dac12020-02-13 16:00:45 +0000887 output := android.PathForOutput(ctx, "boot."+suffix+".oatdump.txt")
Colin Crossf1a035e2020-11-16 17:32:30 -0800888 rule := android.NewRuleBuilder(pctx, ctx)
Colin Crossc9a4c362019-02-26 21:13:48 -0800889 rule.Command().
890 // TODO: for now, use the debug version for better error reporting
Colin Crossf1a035e2020-11-16 17:32:30 -0800891 BuiltTool("oatdumpd").
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000892 FlagWithInputList("--runtime-arg -Xbootclasspath:", image.dexPathsDeps.Paths(), ":").
893 FlagWithList("--runtime-arg -Xbootclasspath-locations:", image.dexLocationsDeps, ":").
David Srbecky1aacc6c2020-03-26 11:10:45 +0000894 FlagWithArg("--image=", strings.Join(image.imageLocations(), ":")).Implicits(image.imagesDeps.Paths()).
Colin Crossc9a4c362019-02-26 21:13:48 -0800895 FlagWithOutput("--output=", output).
896 FlagWithArg("--instruction-set=", arch.String())
Colin Crossf1a035e2020-11-16 17:32:30 -0800897 rule.Build("dump-oat-boot-"+suffix, "dump oat boot "+arch.String())
Colin Crossc9a4c362019-02-26 21:13:48 -0800898
899 // Create a phony rule that depends on the output file and prints the path.
David Srbecky7f8dac12020-02-13 16:00:45 +0000900 phony := android.PathForPhony(ctx, "dump-oat-boot-"+suffix)
Colin Crossf1a035e2020-11-16 17:32:30 -0800901 rule = android.NewRuleBuilder(pctx, ctx)
Colin Crossc9a4c362019-02-26 21:13:48 -0800902 rule.Command().
903 Implicit(output).
904 ImplicitOutput(phony).
905 Text("echo").FlagWithArg("Output in ", output.String())
Colin Crossf1a035e2020-11-16 17:32:30 -0800906 rule.Build("phony-dump-oat-boot-"+suffix, "dump oat boot "+arch.String())
Colin Crossc9a4c362019-02-26 21:13:48 -0800907
David Srbecky1aacc6c2020-03-26 11:10:45 +0000908 allPhonies = append(allPhonies, phony)
Colin Crossc9a4c362019-02-26 21:13:48 -0800909 }
910
911 phony := android.PathForPhony(ctx, "dump-oat-boot")
912 ctx.Build(pctx, android.BuildParams{
913 Rule: android.Phony,
914 Output: phony,
915 Inputs: allPhonies,
916 Description: "dump-oat-boot",
917 })
918
919}
920
Colin Cross2d00f0d2019-05-09 21:50:00 -0700921func writeGlobalConfigForMake(ctx android.SingletonContext, path android.WritablePath) {
Martin Stjernholm40f9f3c2020-01-20 18:12:23 +0000922 data := dexpreopt.GetGlobalConfigRawData(ctx)
Colin Cross2d00f0d2019-05-09 21:50:00 -0700923
Colin Crosscf371cc2020-11-13 11:48:42 -0800924 android.WriteFileRule(ctx, path, string(data))
Colin Cross2d00f0d2019-05-09 21:50:00 -0700925}
926
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000927// Define Make variables for boot image names, paths, etc. These variables are used in makefiles
928// (make/core/dex_preopt_libart.mk) to generate install rules that copy boot image files to the
929// correct output directories.
Colin Cross44df5812019-02-15 23:06:46 -0800930func (d *dexpreoptBootJars) MakeVars(ctx android.MakeVarsContext) {
Colin Cross2d00f0d2019-05-09 21:50:00 -0700931 if d.dexpreoptConfigForMake != nil {
932 ctx.Strict("DEX_PREOPT_CONFIG_FOR_MAKE", d.dexpreoptConfigForMake.String())
Martin Stjernholmc52aaf12020-01-06 23:11:37 +0000933 ctx.Strict("DEX_PREOPT_SOONG_CONFIG_FOR_MAKE", android.PathForOutput(ctx, "dexpreopt_soong.config").String())
Colin Cross2d00f0d2019-05-09 21:50:00 -0700934 }
935
Colin Cross44df5812019-02-15 23:06:46 -0800936 image := d.defaultBootImage
937 if image != nil {
Colin Cross44df5812019-02-15 23:06:46 -0800938 ctx.Strict("DEXPREOPT_IMAGE_PROFILE_BUILT_INSTALLED", image.profileInstalls.String())
Ulya Trafimovich4d2eeed2019-11-08 10:54:21 +0000939 ctx.Strict("DEXPREOPT_BOOTCLASSPATH_DEX_FILES", strings.Join(image.dexPathsDeps.Strings(), " "))
David Srbeckyab994982020-03-30 17:24:13 +0100940 ctx.Strict("DEXPREOPT_BOOTCLASSPATH_DEX_LOCATIONS", strings.Join(image.getAnyAndroidVariant().dexLocationsDeps, " "))
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000941
942 var imageNames []string
Ulya Trafimovich3bfabf22020-11-20 17:28:51 +0000943 // TODO: the primary ART boot image should not be exposed to Make, as it is installed in a
944 // different way as a part of the ART APEX. However, there is a special JIT-Zygote build
945 // configuration which uses the primary ART image instead of the Framework boot image
946 // extension, and it relies on the ART image being exposed to Make. To fix this, it is
947 // necessary to rework the logic in makefiles.
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000948 for _, current := range append(d.otherImages, image) {
949 imageNames = append(imageNames, current.name)
David Srbecky1aacc6c2020-03-26 11:10:45 +0000950 for _, variant := range current.variants {
David Srbecky7f8dac12020-02-13 16:00:45 +0000951 suffix := ""
David Srbecky1aacc6c2020-03-26 11:10:45 +0000952 if variant.target.Os.Class == android.Host {
David Srbecky7f8dac12020-02-13 16:00:45 +0000953 suffix = "_host"
954 }
David Srbecky1aacc6c2020-03-26 11:10:45 +0000955 sfx := variant.name + suffix + "_" + variant.target.Arch.ArchType.String()
956 ctx.Strict("DEXPREOPT_IMAGE_VDEX_BUILT_INSTALLED_"+sfx, variant.vdexInstalls.String())
957 ctx.Strict("DEXPREOPT_IMAGE_"+sfx, variant.images.String())
958 ctx.Strict("DEXPREOPT_IMAGE_DEPS_"+sfx, strings.Join(variant.imagesDeps.Strings(), " "))
959 ctx.Strict("DEXPREOPT_IMAGE_BUILT_INSTALLED_"+sfx, variant.installs.String())
960 ctx.Strict("DEXPREOPT_IMAGE_UNSTRIPPED_BUILT_INSTALLED_"+sfx, variant.unstrippedInstalls.String())
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000961 }
David Srbeckyab994982020-03-30 17:24:13 +0100962 imageLocations := current.getAnyAndroidVariant().imageLocations()
David Srbecky1aacc6c2020-03-26 11:10:45 +0000963 ctx.Strict("DEXPREOPT_IMAGE_LOCATIONS_"+current.name, strings.Join(imageLocations, ":"))
Colin Cross31bf00d2019-12-04 13:16:01 -0800964 ctx.Strict("DEXPREOPT_IMAGE_ZIP_"+current.name, current.zip.String())
Nicolas Geoffray72892f12019-02-22 15:34:40 +0000965 }
966 ctx.Strict("DEXPREOPT_IMAGE_NAMES", strings.Join(imageNames, " "))
Colin Cross800fe132019-02-11 14:21:24 -0800967 }
Colin Cross800fe132019-02-11 14:21:24 -0800968}