blob: 5216d60988f680d658217bb0217130c56adfc74b [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 {
42 ctx.AddVariationDependencies([]blueprint.Variation{
43 {Mutator: "link", Variation: "static"},
44 }, cc.CoverageDepTag, CovLibraryName)
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050045
46 // no_std modules are missing libprofiler_builtins which provides coverage, so we need to add it as a dependency.
47 if rustModule, ok := ctx.Module().(*Module); ok && rustModule.compiler.noStdlibs() {
48 ctx.AddVariationDependencies([]blueprint.Variation{{Mutator: "rust_libraries", Variation: "rlib"}}, rlibDepTag, ProfilerBuiltins)
49 }
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040050 }
51
52 return deps
53}
54
55func (cov *coverage) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) {
56
Colin Cross1a6acd42020-06-16 17:51:46 -070057 if !ctx.DeviceConfig().NativeCoverageEnabled() {
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040058 return flags, deps
59 }
60
61 if cov.Properties.CoverageEnabled {
62 flags.Coverage = true
63 coverage := ctx.GetDirectDepWithTag(CovLibraryName, cc.CoverageDepTag).(cc.LinkableInterface)
64 flags.RustFlags = append(flags.RustFlags,
Pirama Arumuga Nainarf1f6dd12022-06-07 11:15:59 -070065 "-C instrument-coverage", "-g")
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040066 flags.LinkFlags = append(flags.LinkFlags,
Pirama Arumuga Nainar668da232022-01-25 22:32:39 -080067 profileInstrFlag, "-g", coverage.OutputFile().Path().String(), "-Wl,--wrap,open")
Peter Collingbournee7c71c32023-03-31 20:21:19 -070068 deps.LibDeps = append(deps.LibDeps, coverage.OutputFile().Path())
Ivan Lozano9ef9cb82023-02-14 10:56:14 -050069
70 // no_std modules are missing libprofiler_builtins which provides coverage, so we need to add it as a dependency.
71 if rustModule, ok := ctx.Module().(*Module); ok && rustModule.compiler.noStdlibs() {
72 profiler_builtins := ctx.GetDirectDepWithTag(ProfilerBuiltins, rlibDepTag).(*Module)
73 deps.RLibs = append(deps.RLibs, RustLibrary{Path: profiler_builtins.OutputFile().Path(), CrateName: profiler_builtins.CrateName()})
74 }
75
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -080076 if cc.EnableContinuousCoverage(ctx) {
77 flags.RustFlags = append(flags.RustFlags, "-C llvm-args=--runtime-counter-relocation")
78 flags.LinkFlags = append(flags.LinkFlags, "-Wl,-mllvm,-runtime-counter-relocation")
79 }
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040080 }
81
82 return flags, deps
83}
84
85func (cov *coverage) begin(ctx BaseModuleContext) {
86 if ctx.Host() {
87 // Host coverage not yet supported.
88 } else {
89 // Update useSdk and sdkVersion args if Rust modules become SDK aware.
ThiƩbaud Weksteen1f7f70f2020-06-24 11:32:48 +020090 cov.Properties = cc.SetCoverageProperties(ctx, cov.Properties, ctx.RustModule().nativeCoverage(), false, "")
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040091 }
92}