2019-02-12 06:21:24 +08:00
|
|
|
// Copyright 2019 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package java
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
2019-02-27 13:13:48 +08:00
|
|
|
"sort"
|
2019-02-12 06:21:24 +08:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/dexpreopt"
|
|
|
|
|
|
|
|
"github.com/google/blueprint/pathtools"
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
android.RegisterSingletonType("dex_bootjars", dexpreoptBootJarsFactory)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The image "location" is a symbolic path that with multiarchitecture
|
|
|
|
// support doesn't really exist on the device. Typically it is
|
|
|
|
// /system/framework/boot.art and should be the same for all supported
|
|
|
|
// architectures on the device. The concrete architecture specific
|
|
|
|
// content actually ends up in a "filename" that contains an
|
|
|
|
// architecture specific directory name such as arm, arm64, mips,
|
|
|
|
// mips64, x86, x86_64.
|
|
|
|
//
|
|
|
|
// Here are some example values for an x86_64 / x86 configuration:
|
|
|
|
//
|
|
|
|
// bootImages["x86_64"] = "out/soong/generic_x86_64/dex_bootjars/system/framework/x86_64/boot.art"
|
|
|
|
// dexpreopt.PathToLocation(bootImages["x86_64"], "x86_64") = "out/soong/generic_x86_64/dex_bootjars/system/framework/boot.art"
|
|
|
|
//
|
|
|
|
// bootImages["x86"] = "out/soong/generic_x86_64/dex_bootjars/system/framework/x86/boot.art"
|
|
|
|
// dexpreopt.PathToLocation(bootImages["x86"])= "out/soong/generic_x86_64/dex_bootjars/system/framework/boot.art"
|
|
|
|
//
|
|
|
|
// The location is passed as an argument to the ART tools like dex2oat instead of the real path. The ART tools
|
|
|
|
// will then reconstruct the real path, so the rules must have a dependency on the real path.
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
type bootImageConfig struct {
|
|
|
|
name string
|
2019-11-08 18:51:01 +08:00
|
|
|
stem string
|
2019-02-16 15:06:46 +08:00
|
|
|
modules []string
|
|
|
|
dexLocations []string
|
|
|
|
dexPaths android.WritablePaths
|
|
|
|
dir android.OutputPath
|
|
|
|
symbolsDir android.OutputPath
|
2019-05-09 06:18:22 +08:00
|
|
|
targets []android.Target
|
2019-02-16 15:06:46 +08:00
|
|
|
images map[android.ArchType]android.OutputPath
|
2019-06-14 05:44:53 +08:00
|
|
|
imagesDeps map[android.ArchType]android.Paths
|
2019-04-10 06:29:41 +08:00
|
|
|
zip android.WritablePath
|
2019-02-16 15:06:46 +08:00
|
|
|
}
|
|
|
|
|
2019-06-14 05:44:53 +08:00
|
|
|
func (image bootImageConfig) moduleFiles(ctx android.PathContext, dir android.OutputPath, exts ...string) []android.OutputPath {
|
|
|
|
ret := make([]android.OutputPath, 0, len(image.modules)*len(exts))
|
|
|
|
|
|
|
|
// dex preopt on the bootclasspath produces multiple files. The first dex file
|
|
|
|
// is converted into to 'name'.art (to match the legacy assumption that 'name'.art
|
|
|
|
// exists), and the rest are converted to 'name'-<jar>.art.
|
|
|
|
// In addition, each .art file has an associated .oat and .vdex file, and an
|
|
|
|
// unstripped .oat file
|
|
|
|
for i, m := range image.modules {
|
2019-11-08 18:51:01 +08:00
|
|
|
name := image.stem
|
2019-06-14 05:44:53 +08:00
|
|
|
if i != 0 {
|
2019-10-29 10:23:10 +08:00
|
|
|
name += "-" + stemOf(m)
|
2019-06-14 05:44:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, ext := range exts {
|
|
|
|
ret = append(ret, dir.Join(ctx, name+ext))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
type bootImage struct {
|
|
|
|
bootImageConfig
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
installs map[android.ArchType]android.RuleBuilderInstalls
|
2019-02-12 06:21:24 +08:00
|
|
|
vdexInstalls map[android.ArchType]android.RuleBuilderInstalls
|
|
|
|
unstrippedInstalls map[android.ArchType]android.RuleBuilderInstalls
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
profileInstalls android.RuleBuilderInstalls
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
func newBootImage(ctx android.PathContext, config bootImageConfig) *bootImage {
|
|
|
|
image := &bootImage{
|
2019-02-22 23:34:40 +08:00
|
|
|
bootImageConfig: config,
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
installs: make(map[android.ArchType]android.RuleBuilderInstalls),
|
|
|
|
vdexInstalls: make(map[android.ArchType]android.RuleBuilderInstalls),
|
|
|
|
unstrippedInstalls: make(map[android.ArchType]android.RuleBuilderInstalls),
|
|
|
|
}
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
return image
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func concat(lists ...[]string) []string {
|
|
|
|
var size int
|
|
|
|
for _, l := range lists {
|
|
|
|
size += len(l)
|
|
|
|
}
|
|
|
|
ret := make([]string, 0, size)
|
|
|
|
for _, l := range lists {
|
|
|
|
ret = append(ret, l...)
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func dexpreoptBootJarsFactory() android.Singleton {
|
2019-02-16 15:06:46 +08:00
|
|
|
return &dexpreoptBootJars{}
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func skipDexpreoptBootJars(ctx android.PathContext) bool {
|
2019-11-02 01:57:29 +08:00
|
|
|
if dexpreoptGlobalConfig(ctx).DisablePreopt {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-02-12 06:21:24 +08:00
|
|
|
if ctx.Config().UnbundledBuild() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(ctx.Config().Targets[android.Android]) == 0 {
|
|
|
|
// Host-only build
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-11-08 18:51:01 +08:00
|
|
|
func skipDexpreoptArtBootJars(ctx android.BuilderContext) bool {
|
|
|
|
// with EMMA_INSTRUMENT_FRAMEWORK=true ART boot class path libraries have dependencies on framework,
|
|
|
|
// therefore dexpreopt ART libraries cannot be dexpreopted in isolation => no ART boot image
|
|
|
|
return ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK")
|
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
type dexpreoptBootJars struct {
|
|
|
|
defaultBootImage *bootImage
|
2019-02-22 23:34:40 +08:00
|
|
|
otherImages []*bootImage
|
2019-05-10 12:50:00 +08:00
|
|
|
|
|
|
|
dexpreoptConfigForMake android.WritablePath
|
2019-02-16 15:06:46 +08:00
|
|
|
}
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-11-08 18:51:01 +08:00
|
|
|
// Accessor function for the apex package. Returns nil if dexpreopt is disabled.
|
|
|
|
func DexpreoptedArtApexJars(ctx android.BuilderContext) map[android.ArchType]android.Paths {
|
|
|
|
if skipDexpreoptBootJars(ctx) || skipDexpreoptArtBootJars(ctx) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return artBootImageConfig(ctx).imagesDeps
|
|
|
|
}
|
|
|
|
|
2019-02-12 06:21:24 +08:00
|
|
|
// dexpreoptBoot singleton rules
|
2019-02-16 15:06:46 +08:00
|
|
|
func (d *dexpreoptBootJars) GenerateBuildActions(ctx android.SingletonContext) {
|
2019-02-12 06:21:24 +08:00
|
|
|
if skipDexpreoptBootJars(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-10 12:50:00 +08:00
|
|
|
d.dexpreoptConfigForMake = android.PathForOutput(ctx, ctx.Config().DeviceName(), "dexpreopt.config")
|
|
|
|
writeGlobalConfigForMake(ctx, d.dexpreoptConfigForMake)
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
global := dexpreoptGlobalConfig(ctx)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
|
|
|
// Skip recompiling the boot image for the second sanitization phase. We'll get separate paths
|
|
|
|
// and invalidate first-stage artifacts which are crucial to SANITIZE_LITE builds.
|
|
|
|
// Note: this is technically incorrect. Compiled code contains stack checks which may depend
|
|
|
|
// on ASAN settings.
|
|
|
|
if len(ctx.Config().SanitizeDevice()) == 1 &&
|
|
|
|
ctx.Config().SanitizeDevice()[0] == "address" &&
|
2019-02-16 15:06:46 +08:00
|
|
|
global.SanitizeLite {
|
2019-02-12 06:21:24 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
// Always create the default boot image first, to get a unique profile rule for all images.
|
2019-02-16 15:06:46 +08:00
|
|
|
d.defaultBootImage = buildBootImage(ctx, defaultBootImageConfig(ctx))
|
2019-11-08 18:51:01 +08:00
|
|
|
if !skipDexpreoptArtBootJars(ctx) {
|
|
|
|
// Create boot image for the ART apex (build artifacts are accessed via the global boot image config).
|
|
|
|
buildBootImage(ctx, artBootImageConfig(ctx))
|
|
|
|
}
|
2019-02-22 23:34:40 +08:00
|
|
|
if global.GenerateApexImage {
|
2019-11-08 18:51:01 +08:00
|
|
|
// Create boot images for the JIT-zygote experiment.
|
2019-02-22 23:34:40 +08:00
|
|
|
d.otherImages = append(d.otherImages, buildBootImage(ctx, apexBootImageConfig(ctx)))
|
|
|
|
}
|
2019-02-27 13:13:48 +08:00
|
|
|
|
|
|
|
dumpOatRules(ctx, d.defaultBootImage)
|
2019-02-16 15:06:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// buildBootImage takes a bootImageConfig, creates rules to build it, and returns a *bootImage.
|
|
|
|
func buildBootImage(ctx android.SingletonContext, config bootImageConfig) *bootImage {
|
|
|
|
image := newBootImage(ctx, config)
|
|
|
|
|
|
|
|
bootDexJars := make(android.Paths, len(image.modules))
|
2019-02-12 06:21:24 +08:00
|
|
|
|
|
|
|
ctx.VisitAllModules(func(module android.Module) {
|
|
|
|
// Collect dex jar paths for the modules listed above.
|
2019-02-22 10:12:14 +08:00
|
|
|
if j, ok := module.(interface{ DexJar() android.Path }); ok {
|
2019-02-12 06:21:24 +08:00
|
|
|
name := ctx.ModuleName(module)
|
2019-02-16 15:06:46 +08:00
|
|
|
if i := android.IndexList(name, image.modules); i != -1 {
|
2019-02-12 06:21:24 +08:00
|
|
|
bootDexJars[i] = j.DexJar()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
var missingDeps []string
|
|
|
|
// Ensure all modules were converted to paths
|
|
|
|
for i := range bootDexJars {
|
|
|
|
if bootDexJars[i] == nil {
|
|
|
|
if ctx.Config().AllowMissingDependencies() {
|
2019-02-16 15:06:46 +08:00
|
|
|
missingDeps = append(missingDeps, image.modules[i])
|
2019-02-12 06:21:24 +08:00
|
|
|
bootDexJars[i] = android.PathForOutput(ctx, "missing")
|
|
|
|
} else {
|
|
|
|
ctx.Errorf("failed to find dex jar path for module %q",
|
2019-02-16 15:06:46 +08:00
|
|
|
image.modules[i])
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The path to bootclasspath dex files needs to be known at module GenerateAndroidBuildAction time, before
|
|
|
|
// the bootclasspath modules have been compiled. Copy the dex jars there so the module rules that have
|
|
|
|
// already been set up can find them.
|
|
|
|
for i := range bootDexJars {
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Cp,
|
|
|
|
Input: bootDexJars[i],
|
2019-02-16 15:06:46 +08:00
|
|
|
Output: image.dexPaths[i],
|
2019-02-12 06:21:24 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
profile := bootImageProfileRule(ctx, image, missingDeps)
|
2019-07-24 20:19:29 +08:00
|
|
|
bootFrameworkProfileRule(ctx, image, missingDeps)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-04-10 06:29:41 +08:00
|
|
|
var allFiles android.Paths
|
2019-11-08 18:51:01 +08:00
|
|
|
for _, target := range image.targets {
|
|
|
|
files := buildBootImageRuleForArch(ctx, image, target.Arch.ArchType, profile, missingDeps)
|
|
|
|
allFiles = append(allFiles, files.Paths()...)
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
2019-02-16 15:06:46 +08:00
|
|
|
|
2019-04-10 06:29:41 +08:00
|
|
|
if image.zip != nil {
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
rule.Command().
|
2019-07-09 08:08:34 +08:00
|
|
|
BuiltTool(ctx, "soong_zip").
|
2019-04-10 06:29:41 +08:00
|
|
|
FlagWithOutput("-o ", image.zip).
|
|
|
|
FlagWithArg("-C ", image.dir.String()).
|
|
|
|
FlagWithInputList("-f ", allFiles, " -f ")
|
|
|
|
|
|
|
|
rule.Build(pctx, ctx, "zip_"+image.name, "zip "+image.name+" image")
|
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
return image
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
func buildBootImageRuleForArch(ctx android.SingletonContext, image *bootImage,
|
2019-04-10 06:29:41 +08:00
|
|
|
arch android.ArchType, profile android.Path, missingDeps []string) android.WritablePaths {
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
global := dexpreoptGlobalConfig(ctx)
|
|
|
|
|
|
|
|
symbolsDir := image.symbolsDir.Join(ctx, "system/framework", arch.String())
|
2019-11-08 18:51:01 +08:00
|
|
|
symbolsFile := symbolsDir.Join(ctx, image.stem+".oat")
|
2019-02-16 15:06:46 +08:00
|
|
|
outputDir := image.dir.Join(ctx, "system/framework", arch.String())
|
|
|
|
outputPath := image.images[arch]
|
2019-02-16 02:39:37 +08:00
|
|
|
oatLocation := pathtools.ReplaceExtension(dexpreopt.PathToLocation(outputPath, arch), "oat")
|
2019-02-12 06:21:24 +08:00
|
|
|
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
rule.MissingDeps(missingDeps)
|
|
|
|
|
|
|
|
rule.Command().Text("mkdir").Flag("-p").Flag(symbolsDir.String())
|
|
|
|
rule.Command().Text("rm").Flag("-f").
|
|
|
|
Flag(symbolsDir.Join(ctx, "*.art").String()).
|
|
|
|
Flag(symbolsDir.Join(ctx, "*.oat").String()).
|
|
|
|
Flag(symbolsDir.Join(ctx, "*.invocation").String())
|
|
|
|
rule.Command().Text("rm").Flag("-f").
|
|
|
|
Flag(outputDir.Join(ctx, "*.art").String()).
|
|
|
|
Flag(outputDir.Join(ctx, "*.oat").String()).
|
|
|
|
Flag(outputDir.Join(ctx, "*.invocation").String())
|
|
|
|
|
|
|
|
cmd := rule.Command()
|
|
|
|
|
|
|
|
extraFlags := ctx.Config().Getenv("ART_BOOT_IMAGE_EXTRA_ARGS")
|
|
|
|
if extraFlags == "" {
|
|
|
|
// Use ANDROID_LOG_TAGS to suppress most logging by default...
|
|
|
|
cmd.Text(`ANDROID_LOG_TAGS="*:e"`)
|
|
|
|
} else {
|
|
|
|
// ...unless the boot image is generated specifically for testing, then allow all logging.
|
|
|
|
cmd.Text(`ANDROID_LOG_TAGS="*:v"`)
|
|
|
|
}
|
|
|
|
|
|
|
|
invocationPath := outputPath.ReplaceExtension(ctx, "invocation")
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
cmd.Tool(global.Tools.Dex2oat).
|
2019-02-12 06:21:24 +08:00
|
|
|
Flag("--avoid-storing-invocation").
|
2019-02-16 02:39:37 +08:00
|
|
|
FlagWithOutput("--write-invocation-to=", invocationPath).ImplicitOutput(invocationPath).
|
2019-02-16 15:06:46 +08:00
|
|
|
Flag("--runtime-arg").FlagWithArg("-Xms", global.Dex2oatImageXms).
|
|
|
|
Flag("--runtime-arg").FlagWithArg("-Xmx", global.Dex2oatImageXmx)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-16 02:39:37 +08:00
|
|
|
if profile != nil {
|
2019-02-12 06:21:24 +08:00
|
|
|
cmd.FlagWithArg("--compiler-filter=", "speed-profile")
|
2019-02-16 02:39:37 +08:00
|
|
|
cmd.FlagWithInput("--profile-file=", profile)
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
if global.DirtyImageObjects.Valid() {
|
|
|
|
cmd.FlagWithInput("--dirty-image-objects=", global.DirtyImageObjects.Path())
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd.
|
2019-02-16 15:06:46 +08:00
|
|
|
FlagForEachInput("--dex-file=", image.dexPaths.Paths()).
|
|
|
|
FlagForEachArg("--dex-location=", image.dexLocations).
|
2019-02-12 06:21:24 +08:00
|
|
|
Flag("--generate-debug-info").
|
|
|
|
Flag("--generate-build-id").
|
2019-07-27 04:50:04 +08:00
|
|
|
Flag("--image-format=lz4hc").
|
2019-02-16 02:39:37 +08:00
|
|
|
FlagWithOutput("--oat-symbols=", symbolsFile).
|
2019-02-12 06:21:24 +08:00
|
|
|
Flag("--strip").
|
2019-02-16 02:39:37 +08:00
|
|
|
FlagWithOutput("--oat-file=", outputPath.ReplaceExtension(ctx, "oat")).
|
2019-02-12 06:21:24 +08:00
|
|
|
FlagWithArg("--oat-location=", oatLocation).
|
2019-02-16 02:39:37 +08:00
|
|
|
FlagWithOutput("--image=", outputPath).
|
2019-02-12 06:21:24 +08:00
|
|
|
FlagWithArg("--base=", ctx.Config().LibartImgDeviceBaseAddress()).
|
|
|
|
FlagWithArg("--instruction-set=", arch.String()).
|
2019-02-16 15:06:46 +08:00
|
|
|
FlagWithArg("--instruction-set-variant=", global.CpuVariant[arch]).
|
|
|
|
FlagWithArg("--instruction-set-features=", global.InstructionSetFeatures[arch]).
|
|
|
|
FlagWithArg("--android-root=", global.EmptyDirectory).
|
2019-02-12 06:21:24 +08:00
|
|
|
FlagWithArg("--no-inline-from=", "core-oj.jar").
|
|
|
|
Flag("--abort-on-hard-verifier-error")
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
if global.BootFlags != "" {
|
|
|
|
cmd.Flag(global.BootFlags)
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if extraFlags != "" {
|
|
|
|
cmd.Flag(extraFlags)
|
|
|
|
}
|
|
|
|
|
2019-03-01 03:00:01 +08:00
|
|
|
cmd.Textf(`|| ( echo %s ; false )`, proptools.ShellEscape(failureMessage))
|
2019-02-12 06:21:24 +08:00
|
|
|
|
|
|
|
installDir := filepath.Join("/system/framework", arch.String())
|
|
|
|
vdexInstallDir := filepath.Join("/system/framework")
|
|
|
|
|
|
|
|
var vdexInstalls android.RuleBuilderInstalls
|
|
|
|
var unstrippedInstalls android.RuleBuilderInstalls
|
|
|
|
|
2019-04-10 06:29:41 +08:00
|
|
|
var zipFiles android.WritablePaths
|
|
|
|
|
2019-06-14 05:44:53 +08:00
|
|
|
for _, artOrOat := range image.moduleFiles(ctx, outputDir, ".art", ".oat") {
|
|
|
|
cmd.ImplicitOutput(artOrOat)
|
|
|
|
zipFiles = append(zipFiles, artOrOat)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-06-14 05:44:53 +08:00
|
|
|
// Install the .oat and .art files
|
|
|
|
rule.Install(artOrOat, filepath.Join(installDir, artOrOat.Base()))
|
|
|
|
}
|
2019-04-10 06:29:41 +08:00
|
|
|
|
2019-06-14 05:44:53 +08:00
|
|
|
for _, vdex := range image.moduleFiles(ctx, outputDir, ".vdex") {
|
|
|
|
cmd.ImplicitOutput(vdex)
|
|
|
|
zipFiles = append(zipFiles, vdex)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
|
|
|
// The vdex files are identical between architectures, install them to a shared location. The Make rules will
|
|
|
|
// only use the install rules for one architecture, and will create symlinks into the architecture-specific
|
|
|
|
// directories.
|
|
|
|
vdexInstalls = append(vdexInstalls,
|
2019-02-16 02:39:37 +08:00
|
|
|
android.RuleBuilderInstall{vdex, filepath.Join(vdexInstallDir, vdex.Base())})
|
2019-06-14 05:44:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, unstrippedOat := range image.moduleFiles(ctx, symbolsDir, ".oat") {
|
|
|
|
cmd.ImplicitOutput(unstrippedOat)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
|
|
|
// Install the unstripped oat files. The Make rules will put these in $(TARGET_OUT_UNSTRIPPED)
|
|
|
|
unstrippedInstalls = append(unstrippedInstalls,
|
2019-02-16 02:39:37 +08:00
|
|
|
android.RuleBuilderInstall{unstrippedOat, filepath.Join(installDir, unstrippedOat.Base())})
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
rule.Build(pctx, ctx, image.name+"JarsDexpreopt_"+arch.String(), "dexpreopt "+image.name+" jars "+arch.String())
|
2019-02-12 06:21:24 +08:00
|
|
|
|
|
|
|
// save output and installed files for makevars
|
2019-02-16 15:06:46 +08:00
|
|
|
image.installs[arch] = rule.Installs()
|
|
|
|
image.vdexInstalls[arch] = vdexInstalls
|
|
|
|
image.unstrippedInstalls[arch] = unstrippedInstalls
|
2019-04-10 06:29:41 +08:00
|
|
|
|
|
|
|
return zipFiles
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const failureMessage = `ERROR: Dex2oat failed to compile a boot image.
|
|
|
|
It is likely that the boot classpath is inconsistent.
|
|
|
|
Rebuild with ART_BOOT_IMAGE_EXTRA_ARGS="--runtime-arg -verbose:verifier" to see verification errors.`
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
func bootImageProfileRule(ctx android.SingletonContext, image *bootImage, missingDeps []string) android.WritablePath {
|
2019-02-25 00:04:52 +08:00
|
|
|
global := dexpreoptGlobalConfig(ctx)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-06-27 01:01:36 +08:00
|
|
|
if global.DisableGenerateProfile || ctx.Config().IsPdkBuild() || ctx.Config().UnbundledBuild() {
|
2019-02-25 00:04:52 +08:00
|
|
|
return nil
|
|
|
|
}
|
2019-11-08 18:51:01 +08:00
|
|
|
profile := ctx.Config().Once(bootImageProfileRuleKey, func() interface{} {
|
2019-02-22 23:34:40 +08:00
|
|
|
tools := global.Tools
|
2019-11-08 18:51:01 +08:00
|
|
|
defaultProfile := "frameworks/base/config/boot-image-profile.txt"
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
rule.MissingDeps(missingDeps)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
var bootImageProfile android.Path
|
|
|
|
if len(global.BootImageProfiles) > 1 {
|
|
|
|
combinedBootImageProfile := image.dir.Join(ctx, "boot-image-profile.txt")
|
|
|
|
rule.Command().Text("cat").Inputs(global.BootImageProfiles).Text(">").Output(combinedBootImageProfile)
|
|
|
|
bootImageProfile = combinedBootImageProfile
|
|
|
|
} else if len(global.BootImageProfiles) == 1 {
|
|
|
|
bootImageProfile = global.BootImageProfiles[0]
|
2019-11-08 18:51:01 +08:00
|
|
|
} else if path := android.ExistentPathForSource(ctx, defaultProfile); path.Valid() {
|
|
|
|
bootImageProfile = path.Path()
|
2019-02-16 02:39:37 +08:00
|
|
|
} else {
|
2019-11-08 18:51:01 +08:00
|
|
|
// No profile (not even a default one, which is the case on some branches
|
|
|
|
// like master-art-host that don't have frameworks/base).
|
|
|
|
// Return nil and continue without profile.
|
|
|
|
return nil
|
2019-02-16 02:39:37 +08:00
|
|
|
}
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
profile := image.dir.Join(ctx, "boot.prof")
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
rule.Command().
|
|
|
|
Text(`ANDROID_LOG_TAGS="*:e"`).
|
|
|
|
Tool(tools.Profman).
|
|
|
|
FlagWithInput("--create-profile-from=", bootImageProfile).
|
|
|
|
FlagForEachInput("--apk=", image.dexPaths.Paths()).
|
|
|
|
FlagForEachArg("--dex-location=", image.dexLocations).
|
|
|
|
FlagWithOutput("--reference-profile-file=", profile)
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
rule.Install(profile, "/system/etc/boot-image.prof")
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
rule.Build(pctx, ctx, "bootJarsProfile", "profile boot jars")
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
image.profileInstalls = rule.Installs()
|
2019-02-12 06:21:24 +08:00
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
return profile
|
2019-11-08 18:51:01 +08:00
|
|
|
})
|
|
|
|
if profile == nil {
|
|
|
|
return nil // wrap nil into a typed pointer with value nil
|
|
|
|
}
|
|
|
|
return profile.(android.WritablePath)
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
|
2019-02-22 23:34:40 +08:00
|
|
|
var bootImageProfileRuleKey = android.NewOnceKey("bootImageProfileRule")
|
|
|
|
|
2019-07-24 20:19:29 +08:00
|
|
|
func bootFrameworkProfileRule(ctx android.SingletonContext, image *bootImage, missingDeps []string) android.WritablePath {
|
|
|
|
global := dexpreoptGlobalConfig(ctx)
|
|
|
|
|
|
|
|
if global.DisableGenerateProfile || ctx.Config().IsPdkBuild() || ctx.Config().UnbundledBuild() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return ctx.Config().Once(bootFrameworkProfileRuleKey, func() interface{} {
|
|
|
|
tools := global.Tools
|
|
|
|
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
rule.MissingDeps(missingDeps)
|
|
|
|
|
|
|
|
// Some branches like master-art-host don't have frameworks/base, so manually
|
|
|
|
// handle the case that the default is missing. Those branches won't attempt to build the profile rule,
|
|
|
|
// and if they do they'll get a missing deps error.
|
|
|
|
defaultProfile := "frameworks/base/config/boot-profile.txt"
|
|
|
|
path := android.ExistentPathForSource(ctx, defaultProfile)
|
|
|
|
var bootFrameworkProfile android.Path
|
|
|
|
if path.Valid() {
|
|
|
|
bootFrameworkProfile = path.Path()
|
|
|
|
} else {
|
|
|
|
missingDeps = append(missingDeps, defaultProfile)
|
|
|
|
bootFrameworkProfile = android.PathForOutput(ctx, "missing")
|
|
|
|
}
|
|
|
|
|
|
|
|
profile := image.dir.Join(ctx, "boot.bprof")
|
|
|
|
|
|
|
|
rule.Command().
|
|
|
|
Text(`ANDROID_LOG_TAGS="*:e"`).
|
|
|
|
Tool(tools.Profman).
|
|
|
|
Flag("--generate-boot-profile").
|
|
|
|
FlagWithInput("--create-profile-from=", bootFrameworkProfile).
|
|
|
|
FlagForEachInput("--apk=", image.dexPaths.Paths()).
|
|
|
|
FlagForEachArg("--dex-location=", image.dexLocations).
|
|
|
|
FlagWithOutput("--reference-profile-file=", profile)
|
|
|
|
|
|
|
|
rule.Install(profile, "/system/etc/boot-image.bprof")
|
|
|
|
rule.Build(pctx, ctx, "bootFrameworkProfile", "profile boot framework jars")
|
|
|
|
image.profileInstalls = append(image.profileInstalls, rule.Installs()...)
|
|
|
|
|
|
|
|
return profile
|
|
|
|
}).(android.WritablePath)
|
|
|
|
}
|
|
|
|
|
|
|
|
var bootFrameworkProfileRuleKey = android.NewOnceKey("bootFrameworkProfileRule")
|
|
|
|
|
2019-02-27 13:13:48 +08:00
|
|
|
func dumpOatRules(ctx android.SingletonContext, image *bootImage) {
|
|
|
|
var archs []android.ArchType
|
|
|
|
for arch := range image.images {
|
|
|
|
archs = append(archs, arch)
|
|
|
|
}
|
|
|
|
sort.Slice(archs, func(i, j int) bool { return archs[i].String() < archs[j].String() })
|
|
|
|
|
|
|
|
var allPhonies android.Paths
|
|
|
|
for _, arch := range archs {
|
|
|
|
// Create a rule to call oatdump.
|
|
|
|
output := android.PathForOutput(ctx, "boot."+arch.String()+".oatdump.txt")
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
rule.Command().
|
|
|
|
// TODO: for now, use the debug version for better error reporting
|
2019-07-09 08:08:34 +08:00
|
|
|
BuiltTool(ctx, "oatdumpd").
|
2019-02-27 13:13:48 +08:00
|
|
|
FlagWithInputList("--runtime-arg -Xbootclasspath:", image.dexPaths.Paths(), ":").
|
|
|
|
FlagWithList("--runtime-arg -Xbootclasspath-locations:", image.dexLocations, ":").
|
|
|
|
FlagWithArg("--image=", dexpreopt.PathToLocation(image.images[arch], arch)).Implicit(image.images[arch]).
|
|
|
|
FlagWithOutput("--output=", output).
|
|
|
|
FlagWithArg("--instruction-set=", arch.String())
|
|
|
|
rule.Build(pctx, ctx, "dump-oat-boot-"+arch.String(), "dump oat boot "+arch.String())
|
|
|
|
|
|
|
|
// Create a phony rule that depends on the output file and prints the path.
|
|
|
|
phony := android.PathForPhony(ctx, "dump-oat-boot-"+arch.String())
|
|
|
|
rule = android.NewRuleBuilder()
|
|
|
|
rule.Command().
|
|
|
|
Implicit(output).
|
|
|
|
ImplicitOutput(phony).
|
|
|
|
Text("echo").FlagWithArg("Output in ", output.String())
|
|
|
|
rule.Build(pctx, ctx, "phony-dump-oat-boot-"+arch.String(), "dump oat boot "+arch.String())
|
|
|
|
|
|
|
|
allPhonies = append(allPhonies, phony)
|
|
|
|
}
|
|
|
|
|
|
|
|
phony := android.PathForPhony(ctx, "dump-oat-boot")
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Phony,
|
|
|
|
Output: phony,
|
|
|
|
Inputs: allPhonies,
|
|
|
|
Description: "dump-oat-boot",
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-10 12:50:00 +08:00
|
|
|
func writeGlobalConfigForMake(ctx android.SingletonContext, path android.WritablePath) {
|
|
|
|
data := dexpreoptGlobalConfigRaw(ctx).data
|
|
|
|
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.WriteFile,
|
|
|
|
Output: path,
|
|
|
|
Args: map[string]string{
|
|
|
|
"content": string(data),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
// Export paths for default boot image to Make
|
|
|
|
func (d *dexpreoptBootJars) MakeVars(ctx android.MakeVarsContext) {
|
2019-05-10 12:50:00 +08:00
|
|
|
if d.dexpreoptConfigForMake != nil {
|
|
|
|
ctx.Strict("DEX_PREOPT_CONFIG_FOR_MAKE", d.dexpreoptConfigForMake.String())
|
|
|
|
}
|
|
|
|
|
2019-02-16 15:06:46 +08:00
|
|
|
image := d.defaultBootImage
|
|
|
|
if image != nil {
|
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_PROFILE_BUILT_INSTALLED", image.profileInstalls.String())
|
|
|
|
ctx.Strict("DEXPREOPT_BOOTCLASSPATH_DEX_FILES", strings.Join(image.dexPaths.Strings(), " "))
|
|
|
|
ctx.Strict("DEXPREOPT_BOOTCLASSPATH_DEX_LOCATIONS", strings.Join(image.dexLocations, " "))
|
2019-04-10 06:29:41 +08:00
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_ZIP_"+image.name, image.zip.String())
|
2019-02-22 23:34:40 +08:00
|
|
|
|
|
|
|
var imageNames []string
|
|
|
|
for _, current := range append(d.otherImages, image) {
|
|
|
|
imageNames = append(imageNames, current.name)
|
2019-04-12 05:07:04 +08:00
|
|
|
var arches []android.ArchType
|
2019-02-22 23:34:40 +08:00
|
|
|
for arch, _ := range current.images {
|
2019-04-12 05:07:04 +08:00
|
|
|
arches = append(arches, arch)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Slice(arches, func(i, j int) bool { return arches[i].String() < arches[j].String() })
|
|
|
|
|
|
|
|
for _, arch := range arches {
|
2019-02-22 23:34:40 +08:00
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_VDEX_BUILT_INSTALLED_"+current.name+"_"+arch.String(), current.vdexInstalls[arch].String())
|
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_"+current.name+"_"+arch.String(), current.images[arch].String())
|
2019-06-14 05:44:53 +08:00
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_DEPS_"+current.name+"_"+arch.String(), strings.Join(current.imagesDeps[arch].Strings(), " "))
|
2019-02-22 23:34:40 +08:00
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_BUILT_INSTALLED_"+current.name+"_"+arch.String(), current.installs[arch].String())
|
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_UNSTRIPPED_BUILT_INSTALLED_"+current.name+"_"+arch.String(), current.unstrippedInstalls[arch].String())
|
2019-04-10 06:29:41 +08:00
|
|
|
if current.zip != nil {
|
|
|
|
}
|
2019-02-22 23:34:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Strict("DEXPREOPT_IMAGE_NAMES", strings.Join(imageNames, " "))
|
2019-02-12 06:21:24 +08:00
|
|
|
}
|
|
|
|
}
|