Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1 | // 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 | |
| 15 | package rust |
| 16 | |
| 17 | import ( |
| 18 | "github.com/google/blueprint" |
| 19 | |
| 20 | "android/soong/cc" |
| 21 | ) |
| 22 | |
Joel Galenson | fa04938 | 2021-01-14 16:03:18 -0800 | [diff] [blame] | 23 | var CovLibraryName = "libprofile-clang-extras" |
Ivan Lozano | 9ef9cb8 | 2023-02-14 10:56:14 -0500 | [diff] [blame] | 24 | var ProfilerBuiltins = "libprofiler_builtins.rust_sysroot" |
Joel Galenson | fa04938 | 2021-01-14 16:03:18 -0800 | [diff] [blame] | 25 | |
Pirama Arumuga Nainar | b37ae58 | 2022-01-26 22:14:32 -0800 | [diff] [blame] | 26 | // Add '%c' to default specifier after we resolve http://b/210012154 |
Joel Galenson | fa04938 | 2021-01-14 16:03:18 -0800 | [diff] [blame] | 27 | const profileInstrFlag = "-fprofile-instr-generate=/data/misc/trace/clang-%p-%m.profraw" |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 28 | |
| 29 | type coverage struct { |
| 30 | Properties cc.CoverageProperties |
| 31 | |
| 32 | // Whether binaries containing this module need --coverage added to their ldflags |
| 33 | linkCoverage bool |
| 34 | } |
| 35 | |
| 36 | func (cov *coverage) props() []interface{} { |
| 37 | return []interface{}{&cov.Properties} |
| 38 | } |
| 39 | |
| 40 | func (cov *coverage) deps(ctx DepsContext, deps Deps) Deps { |
| 41 | if cov.Properties.NeedCoverageVariant { |
Yu Liu | f0cf1cc | 2024-04-18 19:35:34 +0000 | [diff] [blame] | 42 | if ctx.Device() { |
| 43 | ctx.AddVariationDependencies([]blueprint.Variation{ |
| 44 | {Mutator: "link", Variation: "static"}, |
| 45 | }, cc.CoverageDepTag, CovLibraryName) |
| 46 | } |
Ivan Lozano | 9ef9cb8 | 2023-02-14 10:56:14 -0500 | [diff] [blame] | 47 | |
| 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 Lozano | 0a468a4 | 2024-05-13 21:03:34 -0400 | [diff] [blame] | 50 | ctx.AddVariationDependencies([]blueprint.Variation{{Mutator: "rust_libraries", Variation: "rlib"}, {Mutator: "link", Variation: ""}}, rlibDepTag, ProfilerBuiltins) |
Ivan Lozano | 9ef9cb8 | 2023-02-14 10:56:14 -0500 | [diff] [blame] | 51 | } |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | return deps |
| 55 | } |
| 56 | |
| 57 | func (cov *coverage) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) { |
| 58 | |
Colin Cross | 1a6acd4 | 2020-06-16 17:51:46 -0700 | [diff] [blame] | 59 | if !ctx.DeviceConfig().NativeCoverageEnabled() { |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 60 | return flags, deps |
| 61 | } |
| 62 | |
| 63 | if cov.Properties.CoverageEnabled { |
| 64 | flags.Coverage = true |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 65 | flags.RustFlags = append(flags.RustFlags, |
Pirama Arumuga Nainar | f1f6dd1 | 2022-06-07 11:15:59 -0700 | [diff] [blame] | 66 | "-C instrument-coverage", "-g") |
Yu Liu | f0cf1cc | 2024-04-18 19:35:34 +0000 | [diff] [blame] | 67 | 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 Lozano | 9ef9cb8 | 2023-02-14 10:56:14 -0500 | [diff] [blame] | 73 | |
| 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 Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 77 | deps.RLibs = append(deps.RLibs, RustLibrary{Path: profiler_builtins.OutputFile().Path(), CrateName: profiler_builtins.CrateName()}) |
Ivan Lozano | 9ef9cb8 | 2023-02-14 10:56:14 -0500 | [diff] [blame] | 78 | } |
| 79 | |
Pirama Arumuga Nainar | b37ae58 | 2022-01-26 22:14:32 -0800 | [diff] [blame] | 80 | 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 Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | return flags, deps |
| 87 | } |
| 88 | |
| 89 | func (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 Weksteen | 1f7f70f | 2020-06-24 11:32:48 +0200 | [diff] [blame] | 94 | cov.Properties = cc.SetCoverageProperties(ctx, cov.Properties, ctx.RustModule().nativeCoverage(), false, "") |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 95 | } |
| 96 | } |