2017-05-10 00:44:35 +02:00
|
|
|
// Copyright 2017 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 cc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
// LTO (link-time optimization) allows the compiler to optimize and generate
|
|
|
|
// code for the entire module at link time, rather than per-compilation
|
|
|
|
// unit. LTO is required for Clang CFI and other whole-program optimization
|
|
|
|
// techniques. LTO also allows cross-compilation unit optimizations that should
|
|
|
|
// result in faster and smaller code, at the expense of additional compilation
|
|
|
|
// time.
|
|
|
|
//
|
|
|
|
// To properly build a module with LTO, the module and all recursive static
|
|
|
|
// dependencies should be compiled with -flto which directs the compiler to emit
|
|
|
|
// bitcode rather than native object files. These bitcode files are then passed
|
|
|
|
// by the linker to the LLVM plugin for compilation at link time. Static
|
|
|
|
// dependencies not built as bitcode will still function correctly but cannot be
|
|
|
|
// optimized at link time and may not be compatible with features that require
|
|
|
|
// LTO, such as CFI.
|
|
|
|
//
|
|
|
|
// This file adds support to soong to automatically propogate LTO options to a
|
|
|
|
// new variant of all static dependencies for each module with LTO enabled.
|
|
|
|
|
|
|
|
type LTOProperties struct {
|
|
|
|
// Lto must violate capitialization style for acronyms so that it can be
|
|
|
|
// referred to in blueprint files as "lto"
|
2017-08-29 05:10:09 +02:00
|
|
|
Lto struct {
|
2017-09-28 02:01:15 +02:00
|
|
|
Never *bool `android:"arch_variant"`
|
|
|
|
Full *bool `android:"arch_variant"`
|
|
|
|
Thin *bool `android:"arch_variant"`
|
2017-08-29 05:10:09 +02:00
|
|
|
} `android:"arch_variant"`
|
2017-09-28 02:01:15 +02:00
|
|
|
|
|
|
|
// Dep properties indicate that this module needs to be built with LTO
|
|
|
|
// since it is an object dependency of an LTO module.
|
|
|
|
FullDep bool `blueprint:"mutated"`
|
|
|
|
ThinDep bool `blueprint:"mutated"`
|
2018-04-03 20:33:34 +02:00
|
|
|
|
|
|
|
// Use clang lld instead of gnu ld.
|
|
|
|
Use_clang_lld *bool
|
2017-05-10 00:44:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type lto struct {
|
|
|
|
Properties LTOProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lto *lto) props() []interface{} {
|
|
|
|
return []interface{}{<o.Properties}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lto *lto) begin(ctx BaseModuleContext) {
|
2018-02-01 00:15:08 +01:00
|
|
|
if ctx.Config().IsEnvTrue("DISABLE_LTO") {
|
|
|
|
lto.Properties.Lto.Never = boolPtr(true)
|
|
|
|
}
|
2017-05-10 00:44:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (lto *lto) deps(ctx BaseModuleContext, deps Deps) Deps {
|
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
2018-04-03 20:33:34 +02:00
|
|
|
func (lto *lto) useClangLld(ctx BaseModuleContext) bool {
|
|
|
|
if lto.Properties.Use_clang_lld != nil {
|
|
|
|
return Bool(lto.Properties.Use_clang_lld)
|
|
|
|
}
|
2018-10-22 04:47:01 +02:00
|
|
|
return true
|
2018-04-03 20:33:34 +02:00
|
|
|
}
|
|
|
|
|
2017-05-10 00:44:35 +02:00
|
|
|
func (lto *lto) flags(ctx BaseModuleContext, flags Flags) Flags {
|
2019-08-03 01:57:55 +02:00
|
|
|
// TODO(b/131771163): Disable LTO when using explicit fuzzing configurations.
|
|
|
|
// LTO breaks fuzzer builds.
|
2019-11-04 18:37:55 +01:00
|
|
|
if inList("-fsanitize=fuzzer-no-link", flags.Local.CFlags) {
|
2019-08-03 01:57:55 +02:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
2017-08-29 05:10:09 +02:00
|
|
|
if lto.LTO() {
|
|
|
|
var ltoFlag string
|
|
|
|
if Bool(lto.Properties.Lto.Thin) {
|
2019-03-05 23:11:41 +01:00
|
|
|
ltoFlag = "-flto=thin -fsplit-lto-unit"
|
2017-08-29 05:10:09 +02:00
|
|
|
} else {
|
|
|
|
ltoFlag = "-flto"
|
|
|
|
}
|
|
|
|
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.CFlags = append(flags.Local.CFlags, ltoFlag)
|
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags, ltoFlag)
|
2018-02-16 13:36:16 +01:00
|
|
|
|
2019-03-23 05:28:39 +01:00
|
|
|
if ctx.Config().IsEnvTrue("USE_THINLTO_CACHE") && Bool(lto.Properties.Lto.Thin) && lto.useClangLld(ctx) {
|
2018-02-16 13:36:16 +01:00
|
|
|
// Set appropriate ThinLTO cache policy
|
2019-03-23 05:28:39 +01:00
|
|
|
cacheDirFormat := "-Wl,--thinlto-cache-dir="
|
2018-02-16 13:36:16 +01:00
|
|
|
cacheDir := android.PathForOutput(ctx, "thinlto-cache").String()
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags, cacheDirFormat+cacheDir)
|
2018-02-16 13:36:16 +01:00
|
|
|
|
|
|
|
// Limit the size of the ThinLTO cache to the lesser of 10% of available
|
|
|
|
// disk space and 10GB.
|
2019-03-23 05:28:39 +01:00
|
|
|
cachePolicyFormat := "-Wl,--thinlto-cache-policy="
|
2018-02-16 13:36:16 +01:00
|
|
|
policy := "cache_size=10%:cache_size_bytes=10g"
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags, cachePolicyFormat+policy)
|
2018-02-16 13:36:16 +01:00
|
|
|
}
|
|
|
|
|
2018-02-14 11:16:12 +01:00
|
|
|
// If the module does not have a profile, be conservative and do not inline
|
|
|
|
// or unroll loops during LTO, in order to prevent significant size bloat.
|
2019-03-23 05:28:39 +01:00
|
|
|
if !ctx.isPgoCompile() {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags,
|
|
|
|
"-Wl,-plugin-opt,-inline-threshold=0",
|
|
|
|
"-Wl,-plugin-opt,-unroll-threshold=0")
|
2018-02-14 11:16:12 +01:00
|
|
|
}
|
2017-05-10 00:44:35 +02:00
|
|
|
}
|
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can be called with a null receiver
|
|
|
|
func (lto *lto) LTO() bool {
|
2017-09-28 02:01:15 +02:00
|
|
|
if lto == nil || lto.Disabled() {
|
2017-05-10 00:44:35 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-08-29 05:10:09 +02:00
|
|
|
full := Bool(lto.Properties.Lto.Full)
|
|
|
|
thin := Bool(lto.Properties.Lto.Thin)
|
|
|
|
return full || thin
|
2017-05-10 00:44:35 +02:00
|
|
|
}
|
|
|
|
|
2017-09-28 02:01:15 +02:00
|
|
|
// Is lto.never explicitly set to true?
|
|
|
|
func (lto *lto) Disabled() bool {
|
|
|
|
return lto.Properties.Lto.Never != nil && *lto.Properties.Lto.Never
|
|
|
|
}
|
|
|
|
|
2017-05-10 00:44:35 +02:00
|
|
|
// Propagate lto requirements down from binaries
|
|
|
|
func ltoDepsMutator(mctx android.TopDownMutatorContext) {
|
2017-09-28 02:01:15 +02:00
|
|
|
if m, ok := mctx.Module().(*Module); ok && m.lto.LTO() {
|
|
|
|
full := Bool(m.lto.Properties.Lto.Full)
|
|
|
|
thin := Bool(m.lto.Properties.Lto.Thin)
|
2017-08-29 05:10:09 +02:00
|
|
|
if full && thin {
|
|
|
|
mctx.PropertyErrorf("LTO", "FullLTO and ThinLTO are mutually exclusive")
|
|
|
|
}
|
|
|
|
|
2017-09-28 02:01:15 +02:00
|
|
|
mctx.WalkDeps(func(dep android.Module, parent android.Module) bool {
|
|
|
|
tag := mctx.OtherModuleDependencyTag(dep)
|
2020-07-28 06:26:48 +02:00
|
|
|
libTag, isLibTag := tag.(libraryDependencyTag)
|
|
|
|
|
|
|
|
// Do not recurse down non-static dependencies
|
|
|
|
if isLibTag {
|
2020-07-29 21:55:55 +02:00
|
|
|
if !libTag.static() {
|
2020-07-28 06:26:48 +02:00
|
|
|
return false
|
2017-05-10 00:44:35 +02:00
|
|
|
}
|
2020-07-28 06:26:48 +02:00
|
|
|
} else {
|
|
|
|
if tag != objDepTag && tag != reuseObjTag {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2017-09-28 02:01:15 +02:00
|
|
|
|
2020-07-28 06:26:48 +02:00
|
|
|
if dep, ok := dep.(*Module); ok && dep.lto != nil &&
|
|
|
|
!dep.lto.Disabled() {
|
|
|
|
if full && !Bool(dep.lto.Properties.Lto.Full) {
|
|
|
|
dep.lto.Properties.FullDep = true
|
|
|
|
}
|
|
|
|
if thin && !Bool(dep.lto.Properties.Lto.Thin) {
|
|
|
|
dep.lto.Properties.ThinDep = true
|
|
|
|
}
|
2017-05-10 00:44:35 +02:00
|
|
|
}
|
2017-09-28 02:01:15 +02:00
|
|
|
|
2020-07-28 06:26:48 +02:00
|
|
|
// Recursively walk static dependencies
|
|
|
|
return true
|
2017-05-10 00:44:35 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create lto variants for modules that need them
|
|
|
|
func ltoMutator(mctx android.BottomUpMutatorContext) {
|
2017-09-28 02:01:15 +02:00
|
|
|
if m, ok := mctx.Module().(*Module); ok && m.lto != nil {
|
|
|
|
// Create variations for LTO types required as static
|
|
|
|
// dependencies
|
|
|
|
variationNames := []string{""}
|
|
|
|
if m.lto.Properties.FullDep && !Bool(m.lto.Properties.Lto.Full) {
|
|
|
|
variationNames = append(variationNames, "lto-full")
|
|
|
|
}
|
|
|
|
if m.lto.Properties.ThinDep && !Bool(m.lto.Properties.Lto.Thin) {
|
|
|
|
variationNames = append(variationNames, "lto-thin")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use correct dependencies if LTO property is explicitly set
|
|
|
|
// (mutually exclusive)
|
|
|
|
if Bool(m.lto.Properties.Lto.Full) {
|
|
|
|
mctx.SetDependencyVariation("lto-full")
|
|
|
|
}
|
|
|
|
if Bool(m.lto.Properties.Lto.Thin) {
|
|
|
|
mctx.SetDependencyVariation("lto-thin")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(variationNames) > 1 {
|
|
|
|
modules := mctx.CreateVariations(variationNames...)
|
|
|
|
for i, name := range variationNames {
|
|
|
|
variation := modules[i].(*Module)
|
|
|
|
// Default module which will be
|
|
|
|
// installed. Variation set above according to
|
|
|
|
// explicit LTO properties
|
|
|
|
if name == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// LTO properties for dependencies
|
|
|
|
if name == "lto-full" {
|
|
|
|
variation.lto.Properties.Lto.Full = boolPtr(true)
|
|
|
|
variation.lto.Properties.Lto.Thin = boolPtr(false)
|
|
|
|
}
|
|
|
|
if name == "lto-thin" {
|
|
|
|
variation.lto.Properties.Lto.Full = boolPtr(false)
|
|
|
|
variation.lto.Properties.Lto.Thin = boolPtr(true)
|
|
|
|
}
|
|
|
|
variation.Properties.PreventInstall = true
|
|
|
|
variation.Properties.HideFromMake = true
|
|
|
|
variation.lto.Properties.FullDep = false
|
|
|
|
variation.lto.Properties.ThinDep = false
|
|
|
|
}
|
2017-05-10 00:44:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|