blob: e0e919c69d55bf61fc6d2c2a121e00fc48666756 [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 (
18 "github.com/google/blueprint"
19
20 "android/soong/cc"
21)
22
Joel Galensonfa049382021-01-14 16:03:18 -080023var CovLibraryName = "libprofile-clang-extras"
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050024var ProfilerBuiltins = "libprofiler_builtins.rust_sysroot"
Joel Galensonfa049382021-01-14 16:03:18 -080025
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -080026// Add '%c' to default specifier after we resolve http://b/210012154
Joel Galensonfa049382021-01-14 16:03:18 -080027const profileInstrFlag = "-fprofile-instr-generate=/data/misc/trace/clang-%p-%m.profraw"
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040028
29type coverage struct {
30 Properties cc.CoverageProperties
31
32 // Whether binaries containing this module need --coverage added to their ldflags
33 linkCoverage bool
34}
35
36func (cov *coverage) props() []interface{} {
37 return []interface{}{&cov.Properties}
38}
39
40func (cov *coverage) deps(ctx DepsContext, deps Deps) Deps {
41 if cov.Properties.NeedCoverageVariant {
Yu Liuf0cf1cc2024-04-18 19:35:34 +000042 if ctx.Device() {
43 ctx.AddVariationDependencies([]blueprint.Variation{
44 {Mutator: "link", Variation: "static"},
45 }, cc.CoverageDepTag, CovLibraryName)
46 }
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050047
48 // no_std modules are missing libprofiler_builtins which provides coverage, so we need to add it as a dependency.
49 if rustModule, ok := ctx.Module().(*Module); ok && rustModule.compiler.noStdlibs() {
Ivan Lozano0a468a42024-05-13 21:03:34 -040050 ctx.AddVariationDependencies([]blueprint.Variation{{Mutator: "rust_libraries", Variation: "rlib"}, {Mutator: "link", Variation: ""}}, rlibDepTag, ProfilerBuiltins)
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050051 }
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040052 }
53
54 return deps
55}
56
57func (cov *coverage) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) {
58
Colin Cross1a6acd42020-06-16 17:51:46 -070059 if !ctx.DeviceConfig().NativeCoverageEnabled() {
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040060 return flags, deps
61 }
62
63 if cov.Properties.CoverageEnabled {
64 flags.Coverage = true
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040065 flags.RustFlags = append(flags.RustFlags,
Pirama Arumuga Nainarf1f6dd12022-06-07 11:15:59 -070066 "-C instrument-coverage", "-g")
Yu Liuf0cf1cc2024-04-18 19:35:34 +000067 if ctx.Device() {
68 coverage := ctx.GetDirectDepWithTag(CovLibraryName, cc.CoverageDepTag).(cc.LinkableInterface)
69 flags.LinkFlags = append(flags.LinkFlags,
70 profileInstrFlag, "-g", coverage.OutputFile().Path().String(), "-Wl,--wrap,open")
71 deps.StaticLibs = append(deps.StaticLibs, coverage.OutputFile().Path())
72 }
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050073
74 // no_std modules are missing libprofiler_builtins which provides coverage, so we need to add it as a dependency.
75 if rustModule, ok := ctx.Module().(*Module); ok && rustModule.compiler.noStdlibs() {
76 profiler_builtins := ctx.GetDirectDepWithTag(ProfilerBuiltins, rlibDepTag).(*Module)
Wen-yi Chu41326c12023-09-22 03:58:59 +000077 deps.RLibs = append(deps.RLibs, RustLibrary{Path: profiler_builtins.OutputFile().Path(), CrateName: profiler_builtins.CrateName()})
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050078 }
79
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -080080 if cc.EnableContinuousCoverage(ctx) {
81 flags.RustFlags = append(flags.RustFlags, "-C llvm-args=--runtime-counter-relocation")
82 flags.LinkFlags = append(flags.LinkFlags, "-Wl,-mllvm,-runtime-counter-relocation")
83 }
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040084 }
85
86 return flags, deps
87}
88
89func (cov *coverage) begin(ctx BaseModuleContext) {
90 if ctx.Host() {
91 // Host coverage not yet supported.
92 } else {
93 // Update useSdk and sdkVersion args if Rust modules become SDK aware.
ThiƩbaud Weksteen1f7f70f2020-06-24 11:32:48 +020094 cov.Properties = cc.SetCoverageProperties(ctx, cov.Properties, ctx.RustModule().nativeCoverage(), false, "")
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040095 }
96}