blob: ae95e46b1df16a68bcd7fd117d7557ec2e05461b [file] [log] [blame]
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -04001// Copyright 2020 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package rust
16
17import (
Yu Liu727204c2025-01-23 20:58:32 +000018 "android/soong/android"
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040019 "github.com/google/blueprint"
20
21 "android/soong/cc"
22)
23
Joel Galensonfa049382021-01-14 16:03:18 -080024var CovLibraryName = "libprofile-clang-extras"
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050025var ProfilerBuiltins = "libprofiler_builtins.rust_sysroot"
Joel Galensonfa049382021-01-14 16:03:18 -080026
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -080027// Add '%c' to default specifier after we resolve http://b/210012154
Joel Galensonfa049382021-01-14 16:03:18 -080028const profileInstrFlag = "-fprofile-instr-generate=/data/misc/trace/clang-%p-%m.profraw"
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040029
30type coverage struct {
31 Properties cc.CoverageProperties
32
33 // Whether binaries containing this module need --coverage added to their ldflags
34 linkCoverage bool
35}
36
37func (cov *coverage) props() []interface{} {
38 return []interface{}{&cov.Properties}
39}
40
41func (cov *coverage) deps(ctx DepsContext, deps Deps) Deps {
42 if cov.Properties.NeedCoverageVariant {
Yu Liuf0cf1cc2024-04-18 19:35:34 +000043 if ctx.Device() {
44 ctx.AddVariationDependencies([]blueprint.Variation{
45 {Mutator: "link", Variation: "static"},
46 }, cc.CoverageDepTag, CovLibraryName)
47 }
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050048
49 // no_std modules are missing libprofiler_builtins which provides coverage, so we need to add it as a dependency.
50 if rustModule, ok := ctx.Module().(*Module); ok && rustModule.compiler.noStdlibs() {
Colin Cross8a49a3d2024-05-20 12:22:27 -070051 ctx.AddVariationDependencies([]blueprint.Variation{{Mutator: "rust_libraries", Variation: "rlib"}}, rlibDepTag, ProfilerBuiltins)
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050052 }
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040053 }
54
55 return deps
56}
57
58func (cov *coverage) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) {
59
Colin Cross1a6acd42020-06-16 17:51:46 -070060 if !ctx.DeviceConfig().NativeCoverageEnabled() {
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040061 return flags, deps
62 }
63
64 if cov.Properties.CoverageEnabled {
65 flags.Coverage = true
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040066 flags.RustFlags = append(flags.RustFlags,
Pirama Arumuga Nainarf1f6dd12022-06-07 11:15:59 -070067 "-C instrument-coverage", "-g")
Yu Liuf0cf1cc2024-04-18 19:35:34 +000068 if ctx.Device() {
Yu Liu727204c2025-01-23 20:58:32 +000069 m := ctx.GetDirectDepProxyWithTag(CovLibraryName, cc.CoverageDepTag)
70 coverage := android.OtherModuleProviderOrDefault(ctx, m, cc.LinkableInfoProvider)
Yu Liuf0cf1cc2024-04-18 19:35:34 +000071 flags.LinkFlags = append(flags.LinkFlags,
Yu Liu727204c2025-01-23 20:58:32 +000072 profileInstrFlag, "-g", coverage.OutputFile.Path().String(), "-Wl,--wrap,open")
73 deps.StaticLibs = append(deps.StaticLibs, coverage.OutputFile.Path())
Yu Liuf0cf1cc2024-04-18 19:35:34 +000074 }
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050075
76 // no_std modules are missing libprofiler_builtins which provides coverage, so we need to add it as a dependency.
77 if rustModule, ok := ctx.Module().(*Module); ok && rustModule.compiler.noStdlibs() {
Yu Liu727204c2025-01-23 20:58:32 +000078 m := ctx.GetDirectDepProxyWithTag(ProfilerBuiltins, rlibDepTag)
79 profiler_builtins := android.OtherModuleProviderOrDefault(ctx, m, cc.LinkableInfoProvider)
80 deps.RLibs = append(deps.RLibs, RustLibrary{Path: profiler_builtins.OutputFile.Path(), CrateName: profiler_builtins.CrateName})
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050081 }
82
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -080083 if cc.EnableContinuousCoverage(ctx) {
84 flags.RustFlags = append(flags.RustFlags, "-C llvm-args=--runtime-counter-relocation")
85 flags.LinkFlags = append(flags.LinkFlags, "-Wl,-mllvm,-runtime-counter-relocation")
86 }
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040087 }
88
89 return flags, deps
90}
91
92func (cov *coverage) begin(ctx BaseModuleContext) {
Yifeng Zengd1419122024-04-29 10:59:20 -070093 // Update useSdk and sdkVersion args if Rust modules become SDK aware.
94 cov.Properties = cc.SetCoverageProperties(ctx, cov.Properties, ctx.RustModule().nativeCoverage(), false, "")
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040095}