Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 1 | // Copyright 2018 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package java |
| 16 | |
| 17 | import ( |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 18 | "path/filepath" |
Jiakai Zhang | 51b2a8b | 2023-06-26 16:47:38 +0100 | [diff] [blame] | 19 | "sort" |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 20 | "strings" |
| 21 | |
Spandan Das | 3dbda18 | 2024-05-20 22:23:10 +0000 | [diff] [blame] | 22 | "github.com/google/blueprint/proptools" |
| 23 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 24 | "android/soong/android" |
| 25 | "android/soong/dexpreopt" |
| 26 | ) |
| 27 | |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 28 | type DexpreopterInterface interface { |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 29 | // True if the java module is to be dexed and installed on devices. |
| 30 | // Structs that embed dexpreopter must implement this. |
| 31 | IsInstallable() bool |
| 32 | |
| 33 | // True if dexpreopt is disabled for the java module. |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 34 | dexpreoptDisabled(ctx android.BaseModuleContext, libraryName string) bool |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 35 | |
| 36 | // If the java module is to be installed into an APEX, this list contains information about the |
| 37 | // dexpreopt outputs to be installed on devices. Note that these dexpreopt outputs are installed |
| 38 | // outside of the APEX. |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 39 | DexpreoptBuiltInstalledForApex() []dexpreopterInstall |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 40 | |
| 41 | // The Make entries to install the dexpreopt outputs. Derived from |
| 42 | // `DexpreoptBuiltInstalledForApex`. |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 43 | AndroidMkEntriesForApex() []android.AndroidMkEntries |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 44 | |
| 45 | // See `dexpreopter.outputProfilePathOnHost`. |
| 46 | OutputProfilePathOnHost() android.Path |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | type dexpreopterInstall struct { |
| 50 | // A unique name to distinguish an output from others for the same java library module. Usually in |
| 51 | // the form of `<arch>-<encoded-path>.odex/vdex/art`. |
| 52 | name string |
| 53 | |
| 54 | // The name of the input java module. |
| 55 | moduleName string |
| 56 | |
| 57 | // The path to the dexpreopt output on host. |
| 58 | outputPathOnHost android.Path |
| 59 | |
| 60 | // The directory on the device for the output to install to. |
| 61 | installDirOnDevice android.InstallPath |
| 62 | |
| 63 | // The basename (the last segment of the path) for the output to install as. |
| 64 | installFileOnDevice string |
| 65 | } |
| 66 | |
| 67 | // The full module name of the output in the makefile. |
| 68 | func (install *dexpreopterInstall) FullModuleName() string { |
| 69 | return install.moduleName + install.SubModuleName() |
| 70 | } |
| 71 | |
| 72 | // The sub-module name of the output in the makefile (the name excluding the java module name). |
| 73 | func (install *dexpreopterInstall) SubModuleName() string { |
| 74 | return "-dexpreopt-" + install.name |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Jiakai Zhang | 6decef9 | 2022-01-12 17:56:19 +0000 | [diff] [blame] | 77 | // Returns Make entries for installing the file. |
| 78 | // |
| 79 | // This function uses a value receiver rather than a pointer receiver to ensure that the object is |
| 80 | // safe to use in `android.AndroidMkExtraEntriesFunc`. |
| 81 | func (install dexpreopterInstall) ToMakeEntries() android.AndroidMkEntries { |
| 82 | return android.AndroidMkEntries{ |
| 83 | Class: "ETC", |
Jiakai Zhang | 6decef9 | 2022-01-12 17:56:19 +0000 | [diff] [blame] | 84 | OutputFile: android.OptionalPathForPath(install.outputPathOnHost), |
| 85 | ExtraEntries: []android.AndroidMkExtraEntriesFunc{ |
| 86 | func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) { |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 87 | entries.SetString("LOCAL_MODULE", install.FullModuleName()) |
Jiakai Zhang | 6decef9 | 2022-01-12 17:56:19 +0000 | [diff] [blame] | 88 | entries.SetString("LOCAL_MODULE_PATH", install.installDirOnDevice.String()) |
| 89 | entries.SetString("LOCAL_INSTALLED_MODULE_STEM", install.installFileOnDevice) |
| 90 | entries.SetString("LOCAL_NOT_AVAILABLE_FOR_PLATFORM", "false") |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 91 | // Unset LOCAL_SOONG_INSTALLED_MODULE so that this does not default to the primary .apex file |
| 92 | // Without this, installation of the dexpreopt artifacts get skipped |
| 93 | entries.SetString("LOCAL_SOONG_INSTALLED_MODULE", "") |
Jiakai Zhang | 6decef9 | 2022-01-12 17:56:19 +0000 | [diff] [blame] | 94 | }, |
| 95 | }, |
| 96 | } |
| 97 | } |
| 98 | |
Justin Yun | 613bdc5 | 2024-06-12 21:32:10 +0900 | [diff] [blame] | 99 | func (install dexpreopterInstall) PackageFile(ctx android.ModuleContext) android.PackagingSpec { |
| 100 | return ctx.PackageFile(install.installDirOnDevice, install.installFileOnDevice, install.outputPathOnHost) |
| 101 | } |
| 102 | |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 103 | type Dexpreopter struct { |
| 104 | dexpreopter |
| 105 | } |
| 106 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 107 | type dexpreopter struct { |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 108 | dexpreoptProperties DexpreoptProperties |
| 109 | importDexpreoptProperties ImportDexpreoptProperties |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 110 | |
Spandan Das | 0727ba7 | 2024-02-13 16:37:43 +0000 | [diff] [blame] | 111 | // If true, the dexpreopt rules will not be generated |
| 112 | // Unlike Dex_preopt.Enabled which is user-facing, |
| 113 | // shouldDisableDexpreopt is a mutated propery. |
| 114 | shouldDisableDexpreopt bool |
| 115 | |
Colin Cross | 70dda7e | 2019-10-01 22:05:35 -0700 | [diff] [blame] | 116 | installPath android.InstallPath |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 117 | uncompressedDex bool |
| 118 | isSDKLibrary bool |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 119 | isApp bool |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 120 | isTest bool |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 121 | isPresignedPrebuilt bool |
Colin Cross | fa9bfcd | 2021-11-10 16:42:38 -0800 | [diff] [blame] | 122 | preventInstall bool |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 123 | |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 124 | manifestFile android.Path |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 125 | statusFile android.WritablePath |
Ulya Trafimovich | 8cbc5d2 | 2020-11-03 15:15:46 +0000 | [diff] [blame] | 126 | enforceUsesLibs bool |
| 127 | classLoaderContexts dexpreopt.ClassLoaderContextMap |
Colin Cross | 50ddcc4 | 2019-05-16 12:28:22 -0700 | [diff] [blame] | 128 | |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 129 | // See the `dexpreopt` function for details. |
| 130 | builtInstalled string |
| 131 | builtInstalledForApex []dexpreopterInstall |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 132 | |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 133 | // The config is used for two purposes: |
| 134 | // - Passing dexpreopt information about libraries from Soong to Make. This is needed when |
| 135 | // a <uses-library> is defined in Android.bp, but used in Android.mk (see dex_preopt_config_merger.py). |
| 136 | // Note that dexpreopt.config might be needed even if dexpreopt is disabled for the library itself. |
| 137 | // - Dexpreopt post-processing (using dexpreopt artifacts from a prebuilt system image to incrementally |
| 138 | // dexpreopt another partition). |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 139 | configPath android.WritablePath |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 140 | |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 141 | // The path to the profile on host that dexpreopter generates. This is used as the input for |
| 142 | // dex2oat. |
| 143 | outputProfilePathOnHost android.Path |
| 144 | |
| 145 | // The path to the profile that dexpreopter accepts. It must be in the binary format. If this is |
| 146 | // set, it overrides the profile settings in `dexpreoptProperties`. |
| 147 | inputProfilePathOnHost android.Path |
Spandan Das | 3dbda18 | 2024-05-20 22:23:10 +0000 | [diff] [blame] | 148 | |
| 149 | // The path to the profile that matches the dex optimized by r8/d8. It is in text format. If this is |
| 150 | // set, it will be converted to a binary profile which will be subsequently used for dexpreopt. |
| 151 | rewrittenProfile android.Path |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | type DexpreoptProperties struct { |
| 155 | Dex_preopt struct { |
Nicolas Geoffray | c1bf724 | 2019-10-18 14:51:38 +0100 | [diff] [blame] | 156 | // If false, prevent dexpreopting. Defaults to true. |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 157 | Enabled *bool |
| 158 | |
| 159 | // If true, generate an app image (.art file) for this module. |
| 160 | App_image *bool |
| 161 | |
| 162 | // If true, use a checked-in profile to guide optimization. Defaults to false unless |
| 163 | // a matching profile is set or a profile is found in PRODUCT_DEX_PREOPT_PROFILE_DIR |
| 164 | // that matches the name of this module, in which case it is defaulted to true. |
| 165 | Profile_guided *bool |
| 166 | |
| 167 | // If set, provides the path to profile relative to the Android.bp file. If not set, |
| 168 | // defaults to searching for a file that matches the name of this module in the default |
| 169 | // profile location set by PRODUCT_DEX_PREOPT_PROFILE_DIR, or empty if not found. |
Colin Cross | de4e4e6 | 2019-04-26 10:52:32 -0700 | [diff] [blame] | 170 | Profile *string `android:"path"` |
Spandan Das | 3dbda18 | 2024-05-20 22:23:10 +0000 | [diff] [blame] | 171 | |
| 172 | // If set to true, r8/d8 will use `profile` as input to generate a new profile that matches |
| 173 | // the optimized dex. |
| 174 | // The new profile will be subsequently used as the profile to dexpreopt the dex file. |
| 175 | Enable_profile_rewriting *bool |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 176 | } |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 177 | |
| 178 | Dex_preopt_result struct { |
| 179 | // True if profile-guided optimization is actually enabled. |
| 180 | Profile_guided bool |
| 181 | } `blueprint:"mutated"` |
| 182 | } |
| 183 | |
| 184 | type ImportDexpreoptProperties struct { |
| 185 | Dex_preopt struct { |
| 186 | // If true, use the profile in the prebuilt APEX to guide optimization. Defaults to false. |
| 187 | Profile_guided *bool |
| 188 | } |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 189 | } |
| 190 | |
Ulya Trafimovich | 6cf2c0c | 2020-04-24 12:15:20 +0100 | [diff] [blame] | 191 | func init() { |
| 192 | dexpreopt.DexpreoptRunningInSoong = true |
| 193 | } |
| 194 | |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 195 | func isApexVariant(ctx android.BaseModuleContext) bool { |
Colin Cross | ff694a8 | 2023-12-13 15:54:49 -0800 | [diff] [blame] | 196 | apexInfo, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 197 | return !apexInfo.IsForPlatform() |
| 198 | } |
| 199 | |
Jiakai Zhang | 28bc9a8 | 2021-12-20 15:08:57 +0000 | [diff] [blame] | 200 | func forPrebuiltApex(ctx android.BaseModuleContext) bool { |
Colin Cross | ff694a8 | 2023-12-13 15:54:49 -0800 | [diff] [blame] | 201 | apexInfo, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
Jiakai Zhang | 28bc9a8 | 2021-12-20 15:08:57 +0000 | [diff] [blame] | 202 | return apexInfo.ForPrebuiltApex |
| 203 | } |
| 204 | |
Spandan Das | a8afdcb | 2024-02-29 06:40:16 +0000 | [diff] [blame] | 205 | // For apex variant of modules, this returns true on the source variant if the prebuilt apex |
| 206 | // has been selected using apex_contributions. |
| 207 | // The prebuilt apex will be responsible for generating the dexpreopt rules of the deapexed java lib. |
| 208 | func disableSourceApexVariant(ctx android.BaseModuleContext) bool { |
| 209 | if !isApexVariant(ctx) { |
| 210 | return false // platform variant |
| 211 | } |
| 212 | apexInfo, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
| 213 | psi := android.PrebuiltSelectionInfoMap{} |
Jihoon Kang | a3a0546 | 2024-04-05 00:36:44 +0000 | [diff] [blame] | 214 | ctx.VisitDirectDeps(func(am android.Module) { |
| 215 | if prebuiltSelectionInfo, ok := android.OtherModuleProvider(ctx, am, android.PrebuiltSelectionInfoProvider); ok { |
| 216 | psi = prebuiltSelectionInfo |
| 217 | } |
Spandan Das | a8afdcb | 2024-02-29 06:40:16 +0000 | [diff] [blame] | 218 | }) |
| 219 | // Find the apex variant for this module |
| 220 | _, apexVariantsWithoutTestApexes, _ := android.ListSetDifference(apexInfo.InApexVariants, apexInfo.TestApexes) |
| 221 | disableSource := false |
| 222 | // find the selected apexes |
| 223 | for _, apexVariant := range apexVariantsWithoutTestApexes { |
| 224 | for _, selected := range psi.GetSelectedModulesForApiDomain(apexVariant) { |
| 225 | // If the apex_contribution for this api domain contains a prebuilt apex, disable the source variant |
| 226 | if strings.HasPrefix(selected, "prebuilt_com.google.android") { |
| 227 | disableSource = true |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | return disableSource |
| 232 | } |
| 233 | |
Jiakai Zhang | cf61e3c | 2023-05-08 16:28:38 +0000 | [diff] [blame] | 234 | // Returns whether dexpreopt is applicable to the module. |
| 235 | // When it returns true, neither profile nor dexpreopt artifacts will be generated. |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 236 | func (d *dexpreopter) dexpreoptDisabled(ctx android.BaseModuleContext, libName string) bool { |
Colin Cross | 38310bb | 2021-12-01 10:34:14 -0800 | [diff] [blame] | 237 | if !ctx.Device() { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 238 | return true |
| 239 | } |
| 240 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 241 | if d.isTest { |
| 242 | return true |
| 243 | } |
| 244 | |
| 245 | if !BoolDefault(d.dexpreoptProperties.Dex_preopt.Enabled, true) { |
| 246 | return true |
| 247 | } |
| 248 | |
Spandan Das | 0727ba7 | 2024-02-13 16:37:43 +0000 | [diff] [blame] | 249 | if d.shouldDisableDexpreopt { |
| 250 | return true |
| 251 | } |
| 252 | |
Jiakai Zhang | 28bc9a8 | 2021-12-20 15:08:57 +0000 | [diff] [blame] | 253 | // If the module is from a prebuilt APEX, it shouldn't be installable, but it can still be |
| 254 | // dexpreopted. |
| 255 | if !ctx.Module().(DexpreopterInterface).IsInstallable() && !forPrebuiltApex(ctx) { |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 256 | return true |
| 257 | } |
| 258 | |
Colin Cross | 38310bb | 2021-12-01 10:34:14 -0800 | [diff] [blame] | 259 | if !android.IsModulePreferred(ctx.Module()) { |
| 260 | return true |
| 261 | } |
| 262 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 263 | if _, isApex := android.ModuleProvider(ctx, android.ApexBundleInfoProvider); isApex { |
| 264 | // dexpreopt rules for system server jars can be generated in the ModuleCtx of prebuilt apexes |
| 265 | return false |
| 266 | } |
| 267 | |
Colin Cross | 38310bb | 2021-12-01 10:34:14 -0800 | [diff] [blame] | 268 | global := dexpreopt.GetGlobalConfig(ctx) |
| 269 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 270 | // Use the libName argument to determine if the library being dexpreopt'd is a system server jar |
| 271 | // ctx.ModuleName() is not safe. In case of prebuilt apexes, the dexpreopt rules of system server jars |
| 272 | // are created in the ctx object of the top-level prebuilt apex. |
| 273 | isApexSystemServerJar := global.AllApexSystemServerJars(ctx).ContainsJar(libName) |
| 274 | |
| 275 | if _, isApex := android.ModuleProvider(ctx, android.ApexBundleInfoProvider); isApex || isApexVariant(ctx) { |
| 276 | // dexpreopt rules for system server jars can be generated in the ModuleCtx of prebuilt apexes |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 277 | if !isApexSystemServerJar { |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 278 | return true |
| 279 | } |
Spandan Das | 50801e2 | 2024-05-13 18:29:45 +0000 | [diff] [blame] | 280 | ai, _ := android.ModuleProvider(ctx, android.ApexInfoProvider) |
| 281 | allApexInfos := []android.ApexInfo{} |
| 282 | if allApexInfosProvider, ok := android.ModuleProvider(ctx, android.AllApexInfoProvider); ok { |
| 283 | allApexInfos = allApexInfosProvider.ApexInfos |
| 284 | } |
| 285 | if len(allApexInfos) > 0 && !ai.MinSdkVersion.EqualTo(allApexInfos[0].MinSdkVersion) { |
| 286 | // Apex system server jars are dexpreopted and installed on to the system image. |
| 287 | // Since we can have BigAndroid and Go variants of system server jar providing apexes, |
| 288 | // and these two variants can have different min_sdk_versions, hide one of the apex variants |
| 289 | // from make to prevent collisions. |
| 290 | // |
| 291 | // Unlike cc, min_sdk_version does not have an effect on the build actions of java libraries. |
| 292 | ctx.Module().MakeUninstallable() |
| 293 | } |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 294 | } else { |
| 295 | // Don't preopt the platform variant of an APEX system server jar to avoid conflicts. |
Jiakai Zhang | 389a647 | 2021-12-14 18:54:06 +0000 | [diff] [blame] | 296 | if isApexSystemServerJar { |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 297 | return true |
| 298 | } |
Yo Chiang | dbdf8f9 | 2020-01-09 19:00:27 +0800 | [diff] [blame] | 299 | } |
| 300 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 301 | // TODO: contains no java code |
| 302 | |
| 303 | return false |
| 304 | } |
| 305 | |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 306 | func dexpreoptToolDepsMutator(ctx android.BottomUpMutatorContext) { |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 307 | if _, isApex := android.ModuleProvider(ctx, android.ApexBundleInfoProvider); isApex && dexpreopt.IsDex2oatNeeded(ctx) { |
| 308 | // prebuilt apexes can genererate rules to dexpreopt deapexed jars |
| 309 | // Add a dex2oat dep aggressively on _every_ apex module |
| 310 | dexpreopt.RegisterToolDeps(ctx) |
| 311 | return |
| 312 | } |
| 313 | if d, ok := ctx.Module().(DexpreopterInterface); !ok || d.dexpreoptDisabled(ctx, android.RemoveOptionalPrebuiltPrefix(ctx.ModuleName())) || !dexpreopt.IsDex2oatNeeded(ctx) { |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 314 | return |
| 315 | } |
| 316 | dexpreopt.RegisterToolDeps(ctx) |
| 317 | } |
| 318 | |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 319 | // Returns the install path of the dex jar of a module. |
| 320 | // |
| 321 | // Do not rely on `ApexInfo.ApexVariationName` because it can be something like "apex1000", rather |
| 322 | // than the `name` in the path `/apex/<name>` as suggested in its comment. |
| 323 | // |
| 324 | // This function is on a best-effort basis. It cannot handle the case where an APEX jar is not a |
| 325 | // system server jar, which is fine because we currently only preopt system server jars for APEXes. |
| 326 | func (d *dexpreopter) getInstallPath( |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 327 | ctx android.ModuleContext, libName string, defaultInstallPath android.InstallPath) android.InstallPath { |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 328 | global := dexpreopt.GetGlobalConfig(ctx) |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 329 | if global.AllApexSystemServerJars(ctx).ContainsJar(libName) { |
| 330 | dexLocation := dexpreopt.GetSystemServerDexLocation(ctx, global, libName) |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 331 | return android.PathForModuleInPartitionInstall(ctx, "", strings.TrimPrefix(dexLocation, "/")) |
| 332 | } |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 333 | if !d.dexpreoptDisabled(ctx, libName) && isApexVariant(ctx) && |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 334 | filepath.Base(defaultInstallPath.PartitionDir()) != "apex" { |
| 335 | ctx.ModuleErrorf("unable to get the install path of the dex jar for dexpreopt") |
| 336 | } |
| 337 | return defaultInstallPath |
Nicolas Geoffray | fa6e9ec | 2019-02-12 13:12:16 +0000 | [diff] [blame] | 338 | } |
| 339 | |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 340 | // DexpreoptPrebuiltApexSystemServerJars generates the dexpreopt artifacts from a jar file that has been deapexed from a prebuilt apex |
| 341 | func (d *Dexpreopter) DexpreoptPrebuiltApexSystemServerJars(ctx android.ModuleContext, libraryName string, di *android.DeapexerInfo) { |
| 342 | // A single prebuilt apex can have multiple apex system jars |
| 343 | // initialize the output path for this dex jar |
| 344 | dc := dexpreopt.GetGlobalConfig(ctx) |
| 345 | d.installPath = android.PathForModuleInPartitionInstall(ctx, "", strings.TrimPrefix(dexpreopt.GetSystemServerDexLocation(ctx, dc, libraryName), "/")) |
| 346 | // generate the rules for creating the .odex and .vdex files for this system server jar |
Spandan Das | 5be6333 | 2023-12-13 00:06:32 +0000 | [diff] [blame] | 347 | dexJarFile := di.PrebuiltExportPath(ApexRootRelativePathToJavaLib(libraryName)) |
Spandan Das | 2ea84dd | 2024-01-25 22:12:50 +0000 | [diff] [blame] | 348 | |
| 349 | d.inputProfilePathOnHost = nil // reset: TODO(spandandas): Make dexpreopter stateless |
| 350 | if android.InList(libraryName, di.GetDexpreoptProfileGuidedExportedModuleNames()) { |
| 351 | // Set the profile path to guide optimization |
| 352 | prof := di.PrebuiltExportPath(ApexRootRelativePathToJavaLib(libraryName) + ".prof") |
| 353 | if prof == nil { |
| 354 | ctx.ModuleErrorf("Could not find a .prof file in this prebuilt apex") |
| 355 | } |
| 356 | d.inputProfilePathOnHost = prof |
| 357 | } |
| 358 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 359 | d.dexpreopt(ctx, libraryName, dexJarFile) |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 360 | } |
| 361 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 362 | func (d *dexpreopter) dexpreopt(ctx android.ModuleContext, libName string, dexJarFile android.WritablePath) { |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 363 | global := dexpreopt.GetGlobalConfig(ctx) |
| 364 | |
Martin Stjernholm | 6d41527 | 2020-01-31 17:10:36 +0000 | [diff] [blame] | 365 | // TODO(b/148690468): The check on d.installPath is to bail out in cases where |
| 366 | // the dexpreopter struct hasn't been fully initialized before we're called, |
| 367 | // e.g. in aar.go. This keeps the behaviour that dexpreopting is effectively |
| 368 | // disabled, even if installable is true. |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 369 | if d.installPath.Base() == "." { |
| 370 | return |
| 371 | } |
| 372 | |
| 373 | dexLocation := android.InstallPathToOnDevicePath(ctx, d.installPath) |
| 374 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 375 | providesUsesLib := libName |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 376 | if ulib, ok := ctx.Module().(ProvidesUsesLib); ok { |
| 377 | name := ulib.ProvidesUsesLib() |
| 378 | if name != nil { |
| 379 | providesUsesLib = *name |
| 380 | } |
| 381 | } |
| 382 | |
Jeongik Cha | 4b073cd | 2021-06-08 11:35:00 +0900 | [diff] [blame] | 383 | // If it is test, make config files regardless of its dexpreopt setting. |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 384 | // The config files are required for apps defined in make which depend on the lib. |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 385 | if d.isTest && d.dexpreoptDisabled(ctx, libName) { |
Jaewoong Jung | 4b97a56 | 2020-12-17 09:43:28 -0800 | [diff] [blame] | 386 | return |
Nicolas Geoffray | fa6e9ec | 2019-02-12 13:12:16 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 389 | isSystemServerJar := global.AllSystemServerJars(ctx).ContainsJar(libName) |
Ulya Trafimovich | 9023b02 | 2021-03-22 16:02:28 +0000 | [diff] [blame] | 390 | |
Colin Cross | 44df581 | 2019-02-15 23:06:46 -0800 | [diff] [blame] | 391 | bootImage := defaultBootImageConfig(ctx) |
Jiakai Zhang | b879620 | 2023-03-06 19:16:48 +0000 | [diff] [blame] | 392 | // When `global.PreoptWithUpdatableBcp` is true, `bcpForDexpreopt` below includes the mainline |
| 393 | // boot jars into bootclasspath, so we should include the mainline boot image as well because it's |
| 394 | // generated from those jars. |
| 395 | if global.PreoptWithUpdatableBcp { |
| 396 | bootImage = mainlineBootImageConfig(ctx) |
| 397 | } |
Jiakai Zhang | 02669e8 | 2021-09-11 03:44:06 +0000 | [diff] [blame] | 398 | dexFiles, dexLocations := bcpForDexpreopt(ctx, global.PreoptWithUpdatableBcp) |
Ulya Trafimovich | 9023b02 | 2021-03-22 16:02:28 +0000 | [diff] [blame] | 399 | |
David Srbecky | c177ebe | 2020-02-18 20:43:06 +0000 | [diff] [blame] | 400 | targets := ctx.MultiTargets() |
| 401 | if len(targets) == 0 { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 402 | // assume this is a java library, dexpreopt for all arches for now |
| 403 | for _, target := range ctx.Config().Targets[android.Android] { |
dimitry | 1f33e40 | 2019-03-26 12:39:31 +0100 | [diff] [blame] | 404 | if target.NativeBridge == android.NativeBridgeDisabled { |
David Srbecky | c177ebe | 2020-02-18 20:43:06 +0000 | [diff] [blame] | 405 | targets = append(targets, target) |
dimitry | 1f33e40 | 2019-03-26 12:39:31 +0100 | [diff] [blame] | 406 | } |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 407 | } |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 408 | if isSystemServerJar && libName != "com.android.location.provider" { |
Jiakai Zhang | 2fbc355 | 2022-11-28 15:38:23 +0000 | [diff] [blame] | 409 | // If the module is a system server jar, only preopt for the primary arch because the jar can |
| 410 | // only be loaded by system server. "com.android.location.provider" is a special case because |
| 411 | // it's also used by apps as a shared library. |
David Srbecky | c177ebe | 2020-02-18 20:43:06 +0000 | [diff] [blame] | 412 | targets = targets[:1] |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 413 | } |
| 414 | } |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 415 | |
David Srbecky | c177ebe | 2020-02-18 20:43:06 +0000 | [diff] [blame] | 416 | var archs []android.ArchType |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 417 | var images android.Paths |
Ulya Trafimovich | 4d2eeed | 2019-11-08 10:54:21 +0000 | [diff] [blame] | 418 | var imagesDeps []android.OutputPaths |
David Srbecky | c177ebe | 2020-02-18 20:43:06 +0000 | [diff] [blame] | 419 | for _, target := range targets { |
| 420 | archs = append(archs, target.Arch.ArchType) |
| 421 | variant := bootImage.getVariant(target) |
Jeongik Cha | a596909 | 2021-05-07 18:53:21 +0900 | [diff] [blame] | 422 | images = append(images, variant.imagePathOnHost) |
David Srbecky | c177ebe | 2020-02-18 20:43:06 +0000 | [diff] [blame] | 423 | imagesDeps = append(imagesDeps, variant.imagesDeps) |
Colin Cross | c7e40aa | 2019-02-08 21:37:00 -0800 | [diff] [blame] | 424 | } |
David Srbecky | ab99498 | 2020-03-30 17:24:13 +0100 | [diff] [blame] | 425 | // The image locations for all Android variants are identical. |
Jeongik Cha | 4dda75e | 2021-04-27 23:56:44 +0900 | [diff] [blame] | 426 | hostImageLocations, deviceImageLocations := bootImage.getAnyAndroidVariant().imageLocations() |
Colin Cross | c7e40aa | 2019-02-08 21:37:00 -0800 | [diff] [blame] | 427 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 428 | var profileClassListing android.OptionalPath |
Nicolas Geoffray | e710242 | 2019-07-24 13:19:29 +0100 | [diff] [blame] | 429 | var profileBootListing android.OptionalPath |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 430 | profileIsTextListing := false |
Spandan Das | 2ea84dd | 2024-01-25 22:12:50 +0000 | [diff] [blame] | 431 | |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 432 | if d.inputProfilePathOnHost != nil { |
| 433 | profileClassListing = android.OptionalPathForPath(d.inputProfilePathOnHost) |
| 434 | } else if BoolDefault(d.dexpreoptProperties.Dex_preopt.Profile_guided, true) && !forPrebuiltApex(ctx) { |
Spandan Das | 3dbda18 | 2024-05-20 22:23:10 +0000 | [diff] [blame] | 435 | // If enable_profile_rewriting is set, use the rewritten profile instead of the checked-in profile |
| 436 | if d.EnableProfileRewriting() { |
| 437 | profileClassListing = android.OptionalPathForPath(d.GetRewrittenProfile()) |
| 438 | profileIsTextListing = true |
| 439 | } else if profile := d.GetProfile(); profile != "" { |
| 440 | // If dex_preopt.profile_guided is not set, default it based on the existence of the |
| 441 | // dexprepot.profile option or the profile class listing. |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 442 | profileClassListing = android.OptionalPathForPath( |
Spandan Das | 3dbda18 | 2024-05-20 22:23:10 +0000 | [diff] [blame] | 443 | android.PathForModuleSrc(ctx, profile)) |
Nicolas Geoffray | e710242 | 2019-07-24 13:19:29 +0100 | [diff] [blame] | 444 | profileBootListing = android.ExistentPathForSource(ctx, |
Spandan Das | 3dbda18 | 2024-05-20 22:23:10 +0000 | [diff] [blame] | 445 | ctx.ModuleDir(), profile+"-boot") |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 446 | profileIsTextListing = true |
Dan Willemsen | 78d51b0 | 2020-06-24 16:33:31 -0700 | [diff] [blame] | 447 | } else if global.ProfileDir != "" { |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 448 | profileClassListing = android.ExistentPathForSource(ctx, |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 449 | global.ProfileDir, libName+".prof") |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 450 | } |
| 451 | } |
| 452 | |
Jiakai Zhang | 9c4dc19 | 2023-02-09 00:09:24 +0800 | [diff] [blame] | 453 | d.dexpreoptProperties.Dex_preopt_result.Profile_guided = profileClassListing.Valid() |
| 454 | |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 455 | // A single apex can have multiple system server jars |
| 456 | // Use the dexJar to create a unique scope for each |
| 457 | dexJarStem := strings.TrimSuffix(dexJarFile.Base(), dexJarFile.Ext()) |
| 458 | |
Ulya Trafimovich | 76b0852 | 2021-01-14 17:52:43 +0000 | [diff] [blame] | 459 | // Full dexpreopt config, used to create dexpreopt build rules. |
Martin Stjernholm | 8d80cee | 2020-01-31 17:44:54 +0000 | [diff] [blame] | 460 | dexpreoptConfig := &dexpreopt.ModuleConfig{ |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 461 | Name: libName, |
Victor Hsieh | d181c8b | 2019-01-29 13:00:33 -0800 | [diff] [blame] | 462 | DexLocation: dexLocation, |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 463 | BuildPath: android.PathForModuleOut(ctx, "dexpreopt", dexJarStem, libName+".jar").OutputPath, |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 464 | DexPath: dexJarFile, |
Jeongik Cha | 33a3a81 | 2021-04-15 09:12:49 +0900 | [diff] [blame] | 465 | ManifestPath: android.OptionalPathForPath(d.manifestFile), |
Victor Hsieh | d181c8b | 2019-01-29 13:00:33 -0800 | [diff] [blame] | 466 | UncompressedDex: d.uncompressedDex, |
| 467 | HasApkLibraries: false, |
| 468 | PreoptFlags: nil, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 469 | |
Colin Cross | 69f59a3 | 2019-02-15 10:39:37 -0800 | [diff] [blame] | 470 | ProfileClassListing: profileClassListing, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 471 | ProfileIsTextListing: profileIsTextListing, |
Nicolas Geoffray | e710242 | 2019-07-24 13:19:29 +0100 | [diff] [blame] | 472 | ProfileBootListing: profileBootListing, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 473 | |
Ulya Trafimovich | 8c35fcf | 2021-02-17 16:23:28 +0000 | [diff] [blame] | 474 | EnforceUsesLibrariesStatusFile: dexpreopt.UsesLibrariesStatusFile(ctx), |
| 475 | EnforceUsesLibraries: d.enforceUsesLibs, |
| 476 | ProvidesUsesLibrary: providesUsesLib, |
| 477 | ClassLoaderContexts: d.classLoaderContexts, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 478 | |
Jeongik Cha | 4dda75e | 2021-04-27 23:56:44 +0900 | [diff] [blame] | 479 | Archs: archs, |
| 480 | DexPreoptImagesDeps: imagesDeps, |
| 481 | DexPreoptImageLocationsOnHost: hostImageLocations, |
| 482 | DexPreoptImageLocationsOnDevice: deviceImageLocations, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 483 | |
Ulya Trafimovich | 9023b02 | 2021-03-22 16:02:28 +0000 | [diff] [blame] | 484 | PreoptBootClassPathDexFiles: dexFiles.Paths(), |
Vladimir Marko | 40139d6 | 2020-02-06 15:14:29 +0000 | [diff] [blame] | 485 | PreoptBootClassPathDexLocations: dexLocations, |
Colin Cross | 800fe13 | 2019-02-11 14:21:24 -0800 | [diff] [blame] | 486 | |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 487 | NoCreateAppImage: !BoolDefault(d.dexpreoptProperties.Dex_preopt.App_image, true), |
| 488 | ForceCreateAppImage: BoolDefault(d.dexpreoptProperties.Dex_preopt.App_image, false), |
| 489 | |
Jaewoong Jung | ccbb393 | 2019-04-15 09:48:31 -0700 | [diff] [blame] | 490 | PresignedPrebuilt: d.isPresignedPrebuilt, |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 491 | } |
| 492 | |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 493 | d.configPath = android.PathForModuleOut(ctx, "dexpreopt", dexJarStem, "dexpreopt.config") |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 494 | dexpreopt.WriteModuleConfig(ctx, dexpreoptConfig, d.configPath) |
| 495 | |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 496 | if d.dexpreoptDisabled(ctx, libName) { |
Jeongik Cha | c624667 | 2021-04-08 00:00:19 +0900 | [diff] [blame] | 497 | return |
| 498 | } |
| 499 | |
| 500 | globalSoong := dexpreopt.GetGlobalSoongConfig(ctx) |
| 501 | |
Jiakai Zhang | 51b2a8b | 2023-06-26 16:47:38 +0100 | [diff] [blame] | 502 | // The root "product_packages.txt" is generated by `build/make/core/Makefile`. It contains a list |
| 503 | // of all packages that are installed on the device. We use `grep` to filter the list by the app's |
| 504 | // dependencies to create a per-app list, and use `rsync --checksum` to prevent the file's mtime |
| 505 | // from being changed if the contents don't change. This avoids unnecessary dexpreopt reruns. |
Jiakai Zhang | a449678 | 2023-05-17 16:57:30 +0100 | [diff] [blame] | 506 | productPackages := android.PathForModuleInPartitionInstall(ctx, "", "product_packages.txt") |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 507 | appProductPackages := android.PathForModuleOut(ctx, "dexpreopt", dexJarStem, "product_packages.txt") |
Jiakai Zhang | 51b2a8b | 2023-06-26 16:47:38 +0100 | [diff] [blame] | 508 | appProductPackagesStaging := appProductPackages.ReplaceExtension(ctx, "txt.tmp") |
| 509 | clcNames, _ := dexpreopt.ComputeClassLoaderContextDependencies(dexpreoptConfig.ClassLoaderContexts) |
| 510 | sort.Strings(clcNames) // The order needs to be deterministic. |
| 511 | productPackagesRule := android.NewRuleBuilder(pctx, ctx) |
| 512 | if len(clcNames) > 0 { |
| 513 | productPackagesRule.Command(). |
| 514 | Text("grep -F -x"). |
| 515 | FlagForEachArg("-e ", clcNames). |
| 516 | Input(productPackages). |
| 517 | FlagWithOutput("> ", appProductPackagesStaging). |
| 518 | Text("|| true") |
| 519 | } else { |
| 520 | productPackagesRule.Command(). |
| 521 | Text("rm -f").Output(appProductPackagesStaging). |
| 522 | Text("&&"). |
| 523 | Text("touch").Output(appProductPackagesStaging) |
| 524 | } |
| 525 | productPackagesRule.Command(). |
| 526 | Text("rsync --checksum"). |
| 527 | Input(appProductPackagesStaging). |
| 528 | Output(appProductPackages) |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 529 | productPackagesRule.Restat().Build("product_packages."+dexJarStem, "dexpreopt product_packages") |
Jiakai Zhang | a449678 | 2023-05-17 16:57:30 +0100 | [diff] [blame] | 530 | |
Spandan Das | 5ae65ee | 2024-04-16 22:03:26 +0000 | [diff] [blame] | 531 | // Prebuilts are active, do not copy the dexpreopt'd source javalib to out/soong/system_server_dexjars |
| 532 | // The javalib from the deapexed prebuilt will be copied to this location. |
| 533 | // TODO (b/331665856): Implement a principled solution for this. |
Spandan Das | 50801e2 | 2024-05-13 18:29:45 +0000 | [diff] [blame] | 534 | copyApexSystemServerJarDex := !disableSourceApexVariant(ctx) && !ctx.Module().IsHideFromMake() |
Jiakai Zhang | a449678 | 2023-05-17 16:57:30 +0100 | [diff] [blame] | 535 | dexpreoptRule, err := dexpreopt.GenerateDexpreoptRule( |
Spandan Das | 5ae65ee | 2024-04-16 22:03:26 +0000 | [diff] [blame] | 536 | ctx, globalSoong, global, dexpreoptConfig, appProductPackages, copyApexSystemServerJarDex) |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 537 | if err != nil { |
| 538 | ctx.ModuleErrorf("error generating dexpreopt rule: %s", err.Error()) |
Jaewoong Jung | 4b97a56 | 2020-12-17 09:43:28 -0800 | [diff] [blame] | 539 | return |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 540 | } |
| 541 | |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 542 | dexpreoptRule.Build("dexpreopt"+"."+dexJarStem, "dexpreopt") |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 543 | |
Spandan Das | 2069c3f | 2023-12-06 19:40:24 +0000 | [diff] [blame] | 544 | // The current ctx might be of a deapexer module created by a prebuilt apex |
| 545 | // Use the path of the dex file to determine the library name |
| 546 | isApexSystemServerJar := global.AllApexSystemServerJars(ctx).ContainsJar(dexJarStem) |
Jiakai Zhang | 389a647 | 2021-12-14 18:54:06 +0000 | [diff] [blame] | 547 | |
Justin Yun | 613bdc5 | 2024-06-12 21:32:10 +0900 | [diff] [blame] | 548 | dexpreoptPartition := d.installPath.Partition() |
| 549 | // dexpreoptPartition is set to empty for dexpreopts of system APEX and system_other. |
| 550 | // In case of system APEX, however, we can set it to "system" manually. |
| 551 | // TODO(b/346662300): Let dexpreopter generate the installPath for dexpreopt files instead of |
| 552 | // using the dex location to generate the installPath. |
| 553 | if isApexSystemServerJar { |
| 554 | dexpreoptPartition = "system" |
| 555 | } |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 556 | for _, install := range dexpreoptRule.Installs() { |
| 557 | // Remove the "/" prefix because the path should be relative to $ANDROID_PRODUCT_OUT. |
| 558 | installDir := strings.TrimPrefix(filepath.Dir(install.To), "/") |
Justin Yun | 613bdc5 | 2024-06-12 21:32:10 +0900 | [diff] [blame] | 559 | partition := dexpreoptPartition |
Justin Yun | 22c8aca | 2024-06-05 20:25:03 +0900 | [diff] [blame] | 560 | if strings.HasPrefix(installDir, partition+"/") { |
| 561 | installDir = strings.TrimPrefix(installDir, partition+"/") |
| 562 | } else { |
| 563 | // If the partition for the installDir is different from the install partition, set the |
| 564 | // partition empty to install the dexpreopt files to the desired partition. |
| 565 | // TODO(b/346439786): Define and use the dexpreopt module type to avoid this mismatch. |
| 566 | partition = "" |
| 567 | } |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 568 | installBase := filepath.Base(install.To) |
| 569 | arch := filepath.Base(installDir) |
Justin Yun | 22c8aca | 2024-06-05 20:25:03 +0900 | [diff] [blame] | 570 | installPath := android.PathForModuleInPartitionInstall(ctx, partition, installDir) |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 571 | isProfile := strings.HasSuffix(installBase, ".prof") |
| 572 | |
| 573 | if isProfile { |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 574 | d.outputProfilePathOnHost = install.From |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 575 | } |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 576 | |
Jiakai Zhang | 389a647 | 2021-12-14 18:54:06 +0000 | [diff] [blame] | 577 | if isApexSystemServerJar { |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 578 | // Profiles are handled separately because they are installed into the APEX. |
| 579 | if !isProfile { |
| 580 | // APEX variants of java libraries are hidden from Make, so their dexpreopt |
| 581 | // outputs need special handling. Currently, for APEX variants of java |
| 582 | // libraries, only those in the system server classpath are handled here. |
| 583 | // Preopting of boot classpath jars in the ART APEX are handled in |
| 584 | // java/dexpreopt_bootjars.go, and other APEX jars are not preopted. |
| 585 | // The installs will be handled by Make as sub-modules of the java library. |
| 586 | d.builtInstalledForApex = append(d.builtInstalledForApex, dexpreopterInstall{ |
| 587 | name: arch + "-" + installBase, |
Spandan Das | e21a8d4 | 2024-01-23 23:56:29 +0000 | [diff] [blame] | 588 | moduleName: libName, |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 589 | outputPathOnHost: install.From, |
| 590 | installDirOnDevice: installPath, |
| 591 | installFileOnDevice: installBase, |
| 592 | }) |
| 593 | } |
Colin Cross | fa9bfcd | 2021-11-10 16:42:38 -0800 | [diff] [blame] | 594 | } else if !d.preventInstall { |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 595 | ctx.InstallFile(installPath, installBase, install.From) |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 596 | } |
Colin Cross | 1d0eb7a | 2021-11-03 14:08:20 -0700 | [diff] [blame] | 597 | } |
| 598 | |
Jiakai Zhang | 389a647 | 2021-12-14 18:54:06 +0000 | [diff] [blame] | 599 | if !isApexSystemServerJar { |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 600 | d.builtInstalled = dexpreoptRule.Installs().String() |
| 601 | } |
| 602 | } |
| 603 | |
Justin Yun | 22c8aca | 2024-06-05 20:25:03 +0900 | [diff] [blame] | 604 | func getModuleInstallPathInfo(ctx android.ModuleContext, fullInstallPath string) (android.InstallPath, string, string) { |
| 605 | installPath := android.PathForModuleInstall(ctx) |
| 606 | installDir, installBase := filepath.Split(strings.TrimPrefix(fullInstallPath, "/")) |
| 607 | |
| 608 | if !strings.HasPrefix(installDir, installPath.Partition()+"/") { |
| 609 | // Return empty filename if the install partition is not for the target image. |
| 610 | return installPath, "", "" |
| 611 | } |
| 612 | relDir, err := filepath.Rel(installPath.Partition(), installDir) |
| 613 | if err != nil { |
| 614 | panic(err) |
| 615 | } |
| 616 | return installPath, relDir, installBase |
| 617 | } |
| 618 | |
| 619 | // RuleBuilder.Install() adds output-to-install copy pairs to a list for Make. To share this |
| 620 | // information with PackagingSpec in soong, call PackageFile for them. |
| 621 | // The install path and the target install partition of the module must be the same. |
| 622 | func packageFile(ctx android.ModuleContext, install android.RuleBuilderInstall) { |
| 623 | installPath, relDir, name := getModuleInstallPathInfo(ctx, install.To) |
| 624 | // Empty name means the install partition is not for the target image. |
| 625 | // For the system image, files for "apex" and "system_other" are skipped here. |
| 626 | // The skipped "apex" files are for testing only, for example, |
| 627 | // "/apex/art_boot_images/javalib/x86/boot.vdex". |
| 628 | // TODO(b/320196894): Files for "system_other" are skipped because soong creates the system |
| 629 | // image only for now. |
| 630 | if name != "" { |
| 631 | ctx.PackageFile(installPath.Join(ctx, relDir), name, install.From) |
| 632 | } |
| 633 | } |
| 634 | |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 635 | func (d *dexpreopter) DexpreoptBuiltInstalledForApex() []dexpreopterInstall { |
| 636 | return d.builtInstalledForApex |
| 637 | } |
| 638 | |
| 639 | func (d *dexpreopter) AndroidMkEntriesForApex() []android.AndroidMkEntries { |
| 640 | var entries []android.AndroidMkEntries |
| 641 | for _, install := range d.builtInstalledForApex { |
Jiakai Zhang | 6decef9 | 2022-01-12 17:56:19 +0000 | [diff] [blame] | 642 | entries = append(entries, install.ToMakeEntries()) |
Jiakai Zhang | ca9bc98 | 2021-09-09 08:09:41 +0000 | [diff] [blame] | 643 | } |
| 644 | return entries |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 645 | } |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 646 | |
Jiakai Zhang | 81e4681 | 2023-02-08 21:56:07 +0800 | [diff] [blame] | 647 | func (d *dexpreopter) OutputProfilePathOnHost() android.Path { |
| 648 | return d.outputProfilePathOnHost |
Jiakai Zhang | 3317ce7 | 2023-02-08 01:19:19 +0800 | [diff] [blame] | 649 | } |
Spandan Das | 0727ba7 | 2024-02-13 16:37:43 +0000 | [diff] [blame] | 650 | |
| 651 | func (d *dexpreopter) disableDexpreopt() { |
| 652 | d.shouldDisableDexpreopt = true |
| 653 | } |
Spandan Das | 3dbda18 | 2024-05-20 22:23:10 +0000 | [diff] [blame] | 654 | |
| 655 | func (d *dexpreopter) EnableProfileRewriting() bool { |
| 656 | return proptools.Bool(d.dexpreoptProperties.Dex_preopt.Enable_profile_rewriting) |
| 657 | } |
| 658 | |
| 659 | func (d *dexpreopter) GetProfile() string { |
| 660 | return proptools.String(d.dexpreoptProperties.Dex_preopt.Profile) |
| 661 | } |
| 662 | |
| 663 | func (d *dexpreopter) GetProfileGuided() bool { |
| 664 | return proptools.Bool(d.dexpreoptProperties.Dex_preopt.Profile_guided) |
| 665 | } |
| 666 | |
| 667 | func (d *dexpreopter) GetRewrittenProfile() android.Path { |
| 668 | return d.rewrittenProfile |
| 669 | } |
| 670 | |
| 671 | func (d *dexpreopter) SetRewrittenProfile(p android.Path) { |
| 672 | d.rewrittenProfile = p |
| 673 | } |