2017-02-10 01:16:31 +01: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 (
|
2018-12-11 00:12:40 +01:00
|
|
|
"strconv"
|
|
|
|
|
2017-02-10 01:16:31 +01:00
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CoverageProperties struct {
|
|
|
|
Native_coverage *bool
|
|
|
|
|
2018-12-11 00:12:40 +01:00
|
|
|
CoverageEnabled bool `blueprint:"mutated"`
|
|
|
|
IsCoverageVariant bool `blueprint:"mutated"`
|
2017-02-10 01:16:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type coverage struct {
|
|
|
|
Properties CoverageProperties
|
|
|
|
|
|
|
|
// Whether binaries containing this module need --coverage added to their ldflags
|
|
|
|
linkCoverage bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cov *coverage) props() []interface{} {
|
|
|
|
return []interface{}{&cov.Properties}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cov *coverage) begin(ctx BaseModuleContext) {}
|
|
|
|
|
|
|
|
func (cov *coverage) deps(ctx BaseModuleContext, deps Deps) Deps {
|
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cov *coverage) flags(ctx ModuleContext, flags Flags) Flags {
|
|
|
|
if !ctx.DeviceConfig().NativeCoverageEnabled() {
|
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
if cov.Properties.CoverageEnabled {
|
|
|
|
flags.Coverage = true
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, "--coverage", "-O0")
|
|
|
|
cov.linkCoverage = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Even if we don't have coverage enabled, if any of our object files were compiled
|
|
|
|
// with coverage, then we need to add --coverage to our ldflags.
|
|
|
|
if !cov.linkCoverage {
|
|
|
|
if ctx.static() && !ctx.staticBinary() {
|
|
|
|
// For static libraries, the only thing that changes our object files
|
|
|
|
// are included whole static libraries, so check to see if any of
|
|
|
|
// those have coverage enabled.
|
2017-12-31 02:54:27 +01:00
|
|
|
ctx.VisitDirectDepsWithTag(wholeStaticDepTag, func(m android.Module) {
|
2017-02-10 01:16:31 +01:00
|
|
|
if cc, ok := m.(*Module); ok && cc.coverage != nil {
|
|
|
|
if cc.coverage.linkCoverage {
|
|
|
|
cov.linkCoverage = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
// For executables and shared libraries, we need to check all of
|
|
|
|
// our static dependencies.
|
2017-10-24 02:59:01 +02:00
|
|
|
ctx.VisitDirectDeps(func(m android.Module) {
|
2017-02-10 01:16:31 +01:00
|
|
|
cc, ok := m.(*Module)
|
|
|
|
if !ok || cc.coverage == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if static, ok := cc.linker.(libraryInterface); !ok || !static.static() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if cc.coverage.linkCoverage {
|
|
|
|
cov.linkCoverage = true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if cov.linkCoverage {
|
|
|
|
flags.LdFlags = append(flags.LdFlags, "--coverage")
|
|
|
|
}
|
|
|
|
|
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
2018-12-11 00:12:40 +01:00
|
|
|
func coverageMutator(mctx android.BottomUpMutatorContext) {
|
|
|
|
// Coverage is disabled globally
|
|
|
|
if !mctx.DeviceConfig().NativeCoverageEnabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if c, ok := mctx.Module().(*Module); ok {
|
|
|
|
var needCoverageVariant bool
|
|
|
|
var needCoverageBuild bool
|
2017-02-10 01:16:31 +01:00
|
|
|
|
2018-12-11 00:12:40 +01:00
|
|
|
if mctx.Host() {
|
2018-04-24 00:44:39 +02:00
|
|
|
// TODO(dwillemsen): because of -nodefaultlibs, we must depend on libclang_rt.profile-*.a
|
|
|
|
// Just turn off for now.
|
2019-02-15 00:38:02 +01:00
|
|
|
} else if c.IsStubs() {
|
|
|
|
// Do not enable coverage for platform stub libraries
|
2018-12-11 00:12:40 +01:00
|
|
|
} else if c.isNDKStubLibrary() {
|
|
|
|
// Do not enable coverage for NDK stub libraries
|
|
|
|
} else if c.coverage != nil {
|
|
|
|
// Check if Native_coverage is set to false. This property defaults to true.
|
|
|
|
needCoverageVariant = BoolDefault(c.coverage.Properties.Native_coverage, true)
|
|
|
|
|
|
|
|
if sdk_version := String(c.Properties.Sdk_version); sdk_version != "current" {
|
|
|
|
// Native coverage is not supported for SDK versions < 23
|
|
|
|
if fromApi, err := strconv.Atoi(sdk_version); err == nil && fromApi < 23 {
|
|
|
|
needCoverageVariant = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if needCoverageVariant {
|
|
|
|
// Coverage variant is actually built with coverage if enabled for its module path
|
|
|
|
needCoverageBuild = mctx.DeviceConfig().CoverageEnabledForPath(mctx.ModuleDir())
|
|
|
|
}
|
2017-02-10 01:16:31 +01:00
|
|
|
}
|
|
|
|
|
2018-12-11 00:12:40 +01:00
|
|
|
if needCoverageVariant {
|
|
|
|
m := mctx.CreateVariations("", "cov")
|
|
|
|
|
|
|
|
// Setup the non-coverage version and set HideFromMake and
|
|
|
|
// PreventInstall to true.
|
|
|
|
m[0].(*Module).coverage.Properties.CoverageEnabled = false
|
|
|
|
m[0].(*Module).coverage.Properties.IsCoverageVariant = false
|
|
|
|
m[0].(*Module).Properties.HideFromMake = true
|
|
|
|
m[0].(*Module).Properties.PreventInstall = true
|
|
|
|
|
|
|
|
// The coverage-enabled version inherits HideFromMake,
|
|
|
|
// PreventInstall from the original module.
|
|
|
|
m[1].(*Module).coverage.Properties.CoverageEnabled = needCoverageBuild
|
|
|
|
m[1].(*Module).coverage.Properties.IsCoverageVariant = true
|
2017-02-10 01:16:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|