blob: 6b139f489886303b813d2a4f37e3062072c196bf [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// Copyright 2015 Google Inc. All rights reserved.
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 cc
16
17// This file generates the final rules for compiling all C/C++. All properties related to
18// compiling should have been translated into builderFlags or another argument to the Transform*
19// functions.
20
21import (
Colin Cross0af4b842015-04-30 16:36:18 -070022 "fmt"
Colin Crossb98c8b02016-07-29 13:44:28 -070023 "path/filepath"
Colin Cross0af4b842015-04-30 16:36:18 -070024 "runtime"
25 "strconv"
Colin Cross3f40fa42015-01-30 17:27:36 -080026 "strings"
Colin Crossed4cf0b2015-03-26 14:43:45 -070027
28 "github.com/google/blueprint"
Pirama Arumuga Nainar3c21c0b2019-02-28 15:52:05 -080029 "github.com/google/blueprint/pathtools"
Colin Crossb98c8b02016-07-29 13:44:28 -070030
31 "android/soong/android"
32 "android/soong/cc/config"
Colin Cross3f40fa42015-01-30 17:27:36 -080033)
34
35const (
Dan Albertc3144b12015-04-28 18:17:56 -070036 objectExtension = ".o"
Colin Cross3f40fa42015-01-30 17:27:36 -080037 staticLibraryExtension = ".a"
38)
39
40var (
Jayant Chowdharya3bb1b32017-11-01 11:12:15 -070041 abiCheckAllowFlags = []string{
Jayant Chowdharya3bb1b32017-11-01 11:12:15 -070042 "-allow-unreferenced-changes",
43 "-allow-unreferenced-elf-symbol-changes",
44 }
45)
46
47var (
Colin Cross635c3b02016-05-18 15:37:25 -070048 pctx = android.NewPackageContext("android/soong/cc")
Colin Cross3f40fa42015-01-30 17:27:36 -080049
Colin Cross9d45bb72016-08-29 16:14:13 -070050 cc = pctx.AndroidGomaStaticRule("cc",
Colin Cross3f40fa42015-01-30 17:27:36 -080051 blueprint.RuleParams{
52 Depfile: "${out}.d",
53 Deps: blueprint.DepsGCC,
Alistair Strachan777475c2016-08-26 12:55:49 -070054 Command: "$relPwd ${config.CcWrapper}$ccCmd -c $cFlags -MD -MF ${out}.d -o $out $in",
Dan Willemsenc94a7682015-11-17 15:27:28 -080055 CommandDeps: []string{"$ccCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080056 },
Dan Willemsen322a0a62015-11-17 15:19:46 -080057 "ccCmd", "cFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080058
Dan Willemsenfcabb1c2019-01-03 23:25:11 -080059 ccNoDeps = pctx.AndroidGomaStaticRule("ccNoDeps",
60 blueprint.RuleParams{
61 Command: "$relPwd ${config.CcWrapper}$ccCmd -c $cFlags -o $out $in",
62 CommandDeps: []string{"$ccCmd"},
63 },
64 "ccCmd", "cFlags")
65
Colin Cross9d45bb72016-08-29 16:14:13 -070066 ld = pctx.AndroidStaticRule("ld",
Colin Cross3f40fa42015-01-30 17:27:36 -080067 blueprint.RuleParams{
Dan Albertce2b8392016-07-21 13:16:49 -070068 Command: "$ldCmd ${crtBegin} @${out}.rsp " +
Colin Cross28344522015-04-22 13:07:53 -070069 "${libFlags} ${crtEnd} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080070 CommandDeps: []string{"$ldCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070071 Rspfile: "${out}.rsp",
72 RspfileContent: "${in}",
Colin Cross36ae1352019-03-29 15:55:30 -070073 // clang -Wl,--out-implib doesn't update its output file if it hasn't changed.
74 Restat: true,
Colin Cross3f40fa42015-01-30 17:27:36 -080075 },
Dan Albertce2b8392016-07-21 13:16:49 -070076 "ldCmd", "crtBegin", "libFlags", "crtEnd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080077
Colin Cross9d45bb72016-08-29 16:14:13 -070078 partialLd = pctx.AndroidStaticRule("partialLd",
Colin Cross3f40fa42015-01-30 17:27:36 -080079 blueprint.RuleParams{
Chih-Hung Hsieh3ede2942018-01-10 14:30:44 -080080 // Without -no-pie, clang 7.0 adds -pie to link Android files,
81 // but -r and -pie cannot be used together.
82 Command: "$ldCmd -nostdlib -no-pie -Wl,-r ${in} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080083 CommandDeps: []string{"$ldCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080084 },
Colin Cross41280a42015-11-23 14:01:42 -080085 "ldCmd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080086
Colin Cross9d45bb72016-08-29 16:14:13 -070087 ar = pctx.AndroidStaticRule("ar",
Colin Cross3f40fa42015-01-30 17:27:36 -080088 blueprint.RuleParams{
Colin Cross7d21c442015-03-30 17:47:53 -070089 Command: "rm -f ${out} && $arCmd $arFlags $out @${out}.rsp",
Dan Willemsenc94a7682015-11-17 15:27:28 -080090 CommandDeps: []string{"$arCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070091 Rspfile: "${out}.rsp",
92 RspfileContent: "${in}",
Colin Cross3f40fa42015-01-30 17:27:36 -080093 },
94 "arCmd", "arFlags")
95
Colin Cross9d45bb72016-08-29 16:14:13 -070096 darwinAr = pctx.AndroidStaticRule("darwinAr",
Colin Cross0af4b842015-04-30 16:36:18 -070097 blueprint.RuleParams{
Colin Crossb98c8b02016-07-29 13:44:28 -070098 Command: "rm -f ${out} && ${config.MacArPath} $arFlags $out $in",
99 CommandDeps: []string{"${config.MacArPath}"},
Colin Cross0af4b842015-04-30 16:36:18 -0700100 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700101 "arFlags")
Colin Cross0af4b842015-04-30 16:36:18 -0700102
Colin Cross9d45bb72016-08-29 16:14:13 -0700103 darwinAppendAr = pctx.AndroidStaticRule("darwinAppendAr",
Colin Cross0af4b842015-04-30 16:36:18 -0700104 blueprint.RuleParams{
Colin Crossb98c8b02016-07-29 13:44:28 -0700105 Command: "cp -f ${inAr} ${out}.tmp && ${config.MacArPath} $arFlags ${out}.tmp $in && mv ${out}.tmp ${out}",
106 CommandDeps: []string{"${config.MacArPath}", "${inAr}"},
Colin Cross0af4b842015-04-30 16:36:18 -0700107 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700108 "arFlags", "inAr")
109
Colin Cross9d45bb72016-08-29 16:14:13 -0700110 darwinStrip = pctx.AndroidStaticRule("darwinStrip",
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700111 blueprint.RuleParams{
Colin Crossa24166b2016-08-01 15:42:38 -0700112 Command: "${config.MacStripPath} -u -r -o $out $in",
113 CommandDeps: []string{"${config.MacStripPath}"},
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700114 })
Colin Cross0af4b842015-04-30 16:36:18 -0700115
Colin Cross9d45bb72016-08-29 16:14:13 -0700116 prefixSymbols = pctx.AndroidStaticRule("prefixSymbols",
Colin Crossbfae8852015-03-26 14:44:11 -0700117 blueprint.RuleParams{
118 Command: "$objcopyCmd --prefix-symbols=${prefix} ${in} ${out}",
Dan Willemsenc94a7682015-11-17 15:27:28 -0800119 CommandDeps: []string{"$objcopyCmd"},
Colin Crossbfae8852015-03-26 14:44:11 -0700120 },
121 "objcopyCmd", "prefix")
122
Nan Zhang43a485c2017-03-27 14:27:58 -0700123 _ = pctx.SourcePathVariable("stripPath", "build/soong/scripts/strip.sh")
Dan Willemsen8fec83a2018-03-09 10:47:52 -0800124 _ = pctx.SourcePathVariable("xzCmd", "prebuilts/build-tools/${config.HostPrebuiltTag}/bin/xz")
Colin Cross665dce92016-04-28 14:50:03 -0700125
Colin Cross9d45bb72016-08-29 16:14:13 -0700126 strip = pctx.AndroidStaticRule("strip",
Colin Cross665dce92016-04-28 14:50:03 -0700127 blueprint.RuleParams{
128 Depfile: "${out}.d",
129 Deps: blueprint.DepsGCC,
Chih-Hung Hsieh30485c92018-06-04 10:37:43 -0700130 Command: "CROSS_COMPILE=$crossCompile XZ=$xzCmd CLANG_BIN=${config.ClangBin} $stripPath ${args} -i ${in} -o ${out} -d ${out}.d",
Dan Willemsen8fec83a2018-03-09 10:47:52 -0800131 CommandDeps: []string{"$stripPath", "$xzCmd"},
Colin Cross665dce92016-04-28 14:50:03 -0700132 },
133 "args", "crossCompile")
134
Colin Cross9d45bb72016-08-29 16:14:13 -0700135 emptyFile = pctx.AndroidStaticRule("emptyFile",
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700136 blueprint.RuleParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700137 Command: "rm -f $out && touch $out",
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700138 })
139
Nan Zhang43a485c2017-03-27 14:27:58 -0700140 _ = pctx.SourcePathVariable("tocPath", "build/soong/scripts/toc.sh")
Colin Cross26c34ed2016-09-30 17:10:16 -0700141
142 toc = pctx.AndroidStaticRule("toc",
143 blueprint.RuleParams{
144 Depfile: "${out}.d",
145 Deps: blueprint.DepsGCC,
Colin Crossb496cfd2018-09-10 16:50:05 -0700146 Command: "CROSS_COMPILE=$crossCompile $tocPath $format -i ${in} -o ${out} -d ${out}.d",
Colin Cross26c34ed2016-09-30 17:10:16 -0700147 CommandDeps: []string{"$tocPath"},
148 Restat: true,
149 },
Colin Crossb496cfd2018-09-10 16:50:05 -0700150 "crossCompile", "format")
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700151
152 clangTidy = pctx.AndroidStaticRule("clangTidy",
153 blueprint.RuleParams{
Chih-Hung Hsiehb699c432018-08-27 16:19:59 -0700154 Command: "rm -f $out && CLANG_TIDY=${config.ClangBin}/clang-tidy ${config.ClangTidyShellPath} $tidyFlags $in -- $cFlags && touch $out",
155 CommandDeps: []string{"${config.ClangBin}/clang-tidy", "${config.ClangTidyShellPath}"},
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700156 },
157 "cFlags", "tidyFlags")
Colin Cross91e90042016-12-02 17:13:24 -0800158
Nan Zhang43a485c2017-03-27 14:27:58 -0700159 _ = pctx.SourcePathVariable("yasmCmd", "prebuilts/misc/${config.HostPrebuiltTag}/yasm/yasm")
Colin Cross91e90042016-12-02 17:13:24 -0800160
161 yasm = pctx.AndroidStaticRule("yasm",
162 blueprint.RuleParams{
Dan Willemsen1d3e5452017-08-22 20:53:45 -0700163 Command: "$yasmCmd $asFlags -o $out $in && $yasmCmd $asFlags -M $in >$out.d",
Colin Cross91e90042016-12-02 17:13:24 -0800164 CommandDeps: []string{"$yasmCmd"},
Dan Willemsen1d3e5452017-08-22 20:53:45 -0700165 Depfile: "$out.d",
166 Deps: blueprint.DepsGCC,
Colin Cross91e90042016-12-02 17:13:24 -0800167 },
168 "asFlags")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800169
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700170 windres = pctx.AndroidStaticRule("windres",
171 blueprint.RuleParams{
172 Command: "$windresCmd $flags -I$$(dirname $in) -i $in -o $out",
173 CommandDeps: []string{"$windresCmd"},
174 },
175 "windresCmd", "flags")
176
Jayant Chowdharya4c6df52018-02-20 12:36:51 -0800177 _ = pctx.SourcePathVariable("sAbiDumper", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-dumper")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800178
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700179 // -w has been added since header-abi-dumper does not need to produce any sort of diagnostic information.
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800180 sAbiDump = pctx.AndroidStaticRule("sAbiDump",
181 blueprint.RuleParams{
Logan Chien3ff624f2018-10-08 11:49:32 +0800182 Command: "rm -f $out && $sAbiDumper -o ${out} $in $exportDirs -- $cFlags -w -isystem prebuilts/clang-tools/${config.HostPrebuiltTag}/clang-headers",
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800183 CommandDeps: []string{"$sAbiDumper"},
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800184 },
185 "cFlags", "exportDirs")
186
Jayant Chowdharya4c6df52018-02-20 12:36:51 -0800187 _ = pctx.SourcePathVariable("sAbiLinker", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-linker")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800188
189 sAbiLink = pctx.AndroidStaticRule("sAbiLink",
190 blueprint.RuleParams{
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800191 Command: "$sAbiLinker -o ${out} $symbolFilter -arch $arch $exportedHeaderFlags @${out}.rsp ",
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800192 CommandDeps: []string{"$sAbiLinker"},
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800193 Rspfile: "${out}.rsp",
194 RspfileContent: "${in}",
195 },
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800196 "symbolFilter", "arch", "exportedHeaderFlags")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800197
Jayant Chowdharya4c6df52018-02-20 12:36:51 -0800198 _ = pctx.SourcePathVariable("sAbiDiffer", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-diff")
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700199
Jayant Chowdhary219139d2017-11-27 14:52:21 -0800200 sAbiDiff = pctx.AndroidRuleFunc("sAbiDiff",
Dan Willemsen54daaf02018-03-12 13:24:09 -0700201 func(ctx android.PackageRuleContext) blueprint.RuleParams {
Jayant Chowdhary39d167a2018-05-17 16:45:51 -0700202 // TODO(b/78139997): Add -check-all-apis back
Logan Chien6227fed2019-02-18 13:12:21 +0800203 commandStr := "($sAbiDiffer ${allowFlags} -lib ${libName} -arch ${arch} -o ${out} -new ${in} -old ${referenceDump})"
204 commandStr += "|| (echo 'error: Please update ABI references with: $$ANDROID_BUILD_TOP/development/vndk/tools/header-checker/utils/create_reference_dumps.py ${createReferenceDumpFlags} -l ${libName}'"
Logan Chien8f74fe62019-01-28 12:14:54 +0800205 commandStr += " && (mkdir -p $$DIST_DIR/abidiffs && cp ${out} $$DIST_DIR/abidiffs/)"
Jayant Chowdharyd8b70a32018-02-01 17:23:09 -0800206 commandStr += " && exit 1)"
Jayant Chowdhary219139d2017-11-27 14:52:21 -0800207 return blueprint.RuleParams{
208 Command: commandStr,
209 CommandDeps: []string{"$sAbiDiffer"},
Dan Willemsen54daaf02018-03-12 13:24:09 -0700210 }
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800211 },
Logan Chien6227fed2019-02-18 13:12:21 +0800212 "allowFlags", "referenceDump", "libName", "arch", "createReferenceDumpFlags")
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700213
214 unzipRefSAbiDump = pctx.AndroidStaticRule("unzipRefSAbiDump",
215 blueprint.RuleParams{
216 Command: "gunzip -c $in > $out",
217 })
Colin Cross3f40fa42015-01-30 17:27:36 -0800218)
219
Dan Willemsen322a0a62015-11-17 15:19:46 -0800220func init() {
221 // We run gcc/clang with PWD=/proc/self/cwd to remove $TOP from the
222 // debug output. That way two builds in two different directories will
223 // create the same output.
224 if runtime.GOOS != "darwin" {
225 pctx.StaticVariable("relPwd", "PWD=/proc/self/cwd")
226 } else {
227 // Darwin doesn't have /proc
228 pctx.StaticVariable("relPwd", "")
229 }
230}
231
Colin Cross3f40fa42015-01-30 17:27:36 -0800232type builderFlags struct {
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700233 globalFlags string
234 arFlags string
235 asFlags string
236 cFlags string
237 toolingCFlags string // A separate set of cFlags for clang LibTooling tools
238 toolingCppFlags string // A separate set of cppFlags for clang LibTooling tools
239 conlyFlags string
240 cppFlags string
241 ldFlags string
242 libFlags string
243 yaccFlags string
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700244 tidyFlags string
245 sAbiFlags string
246 yasmFlags string
247 aidlFlags string
248 rsFlags string
249 toolchain config.Toolchain
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700250 tidy bool
251 coverage bool
252 sAbiDump bool
Colin Cross665dce92016-04-28 14:50:03 -0700253
Colin Crossc3199482017-03-30 15:03:04 -0700254 systemIncludeFlags string
255
Colin Cross18c0c5a2016-12-01 14:45:23 -0800256 groupStaticLibs bool
257
Colin Cross665dce92016-04-28 14:50:03 -0700258 stripKeepSymbols bool
259 stripKeepMiniDebugInfo bool
260 stripAddGnuDebuglink bool
Yi Kongb5c34d72018-11-07 16:28:49 -0800261 stripUseGnuStrip bool
Dan Willemsen60e62f02018-11-16 21:05:32 -0800262
263 protoDeps android.Paths
Colin Cross19878da2019-03-28 14:45:07 -0700264 proto android.ProtoFlags
Dan Willemsen60e62f02018-11-16 21:05:32 -0800265 protoC bool
266 protoOptionsFile bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800267}
268
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700269type Objects struct {
Dan Willemsen581341d2017-02-09 16:16:31 -0800270 objFiles android.Paths
271 tidyFiles android.Paths
272 coverageFiles android.Paths
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800273 sAbiDumpFiles android.Paths
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700274}
275
276func (a Objects) Copy() Objects {
277 return Objects{
Dan Willemsen581341d2017-02-09 16:16:31 -0800278 objFiles: append(android.Paths{}, a.objFiles...),
279 tidyFiles: append(android.Paths{}, a.tidyFiles...),
280 coverageFiles: append(android.Paths{}, a.coverageFiles...),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800281 sAbiDumpFiles: append(android.Paths{}, a.sAbiDumpFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700282 }
283}
284
285func (a Objects) Append(b Objects) Objects {
286 return Objects{
Dan Willemsen581341d2017-02-09 16:16:31 -0800287 objFiles: append(a.objFiles, b.objFiles...),
288 tidyFiles: append(a.tidyFiles, b.tidyFiles...),
289 coverageFiles: append(a.coverageFiles, b.coverageFiles...),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800290 sAbiDumpFiles: append(a.sAbiDumpFiles, b.sAbiDumpFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700291 }
292}
293
Colin Cross3f40fa42015-01-30 17:27:36 -0800294// Generate rules for compiling multiple .c, .cpp, or .S files to individual .o files
Colin Cross635c3b02016-05-18 15:37:25 -0700295func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles android.Paths,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800296 flags builderFlags, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross581c1892015-04-07 16:50:10 -0700297
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700298 objFiles := make(android.Paths, len(srcFiles))
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700299 var tidyFiles android.Paths
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700300 if flags.tidy {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700301 tidyFiles = make(android.Paths, 0, len(srcFiles))
302 }
Dan Willemsen581341d2017-02-09 16:16:31 -0800303 var coverageFiles android.Paths
304 if flags.coverage {
305 coverageFiles = make(android.Paths, 0, len(srcFiles))
306 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800307
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700308 commonFlags := strings.Join([]string{
Colin Crossc3199482017-03-30 15:03:04 -0700309 flags.globalFlags,
310 flags.systemIncludeFlags,
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700311 }, " ")
312
313 toolingCflags := strings.Join([]string{
314 commonFlags,
315 flags.toolingCFlags,
316 flags.conlyFlags,
317 }, " ")
318
319 cflags := strings.Join([]string{
320 commonFlags,
Colin Crossc3199482017-03-30 15:03:04 -0700321 flags.cFlags,
322 flags.conlyFlags,
323 }, " ")
324
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700325 toolingCppflags := strings.Join([]string{
326 commonFlags,
327 flags.toolingCFlags,
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700328 flags.toolingCppFlags,
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700329 }, " ")
330
Colin Crossc3199482017-03-30 15:03:04 -0700331 cppflags := strings.Join([]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700332 commonFlags,
Colin Crossc3199482017-03-30 15:03:04 -0700333 flags.cFlags,
334 flags.cppFlags,
335 }, " ")
336
337 asflags := strings.Join([]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700338 commonFlags,
Colin Crossc3199482017-03-30 15:03:04 -0700339 flags.asFlags,
340 }, " ")
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700341
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800342 var sAbiDumpFiles android.Paths
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700343 if flags.sAbiDump {
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800344 sAbiDumpFiles = make(android.Paths, 0, len(srcFiles))
345 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800346
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700347 cflags += " ${config.NoOverrideClangGlobalCflags}"
348 toolingCflags += " ${config.NoOverrideClangGlobalCflags}"
349 cppflags += " ${config.NoOverrideClangGlobalCflags}"
350 toolingCppflags += " ${config.NoOverrideClangGlobalCflags}"
Dan Willemsenbe03f342016-03-03 17:21:04 -0800351
Colin Cross3f40fa42015-01-30 17:27:36 -0800352 for i, srcFile := range srcFiles {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700353 objFile := android.ObjPathWithExt(ctx, subdir, srcFile, "o")
Colin Cross3f40fa42015-01-30 17:27:36 -0800354
355 objFiles[i] = objFile
356
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700357 switch srcFile.Ext() {
358 case ".asm":
Colin Crossae887032017-10-23 17:16:14 -0700359 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700360 Rule: yasm,
361 Description: "yasm " + srcFile.Rel(),
362 Output: objFile,
363 Input: srcFile,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800364 Implicits: cFlagsDeps,
365 OrderOnly: pathDeps,
Colin Cross91e90042016-12-02 17:13:24 -0800366 Args: map[string]string{
367 "asFlags": flags.yasmFlags,
368 },
369 })
370 continue
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700371 case ".rc":
Colin Crossae887032017-10-23 17:16:14 -0700372 ctx.Build(pctx, android.BuildParams{
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700373 Rule: windres,
374 Description: "windres " + srcFile.Rel(),
375 Output: objFile,
376 Input: srcFile,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800377 Implicits: cFlagsDeps,
378 OrderOnly: pathDeps,
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700379 Args: map[string]string{
380 "windresCmd": gccCmd(flags.toolchain, "windres"),
381 "flags": flags.toolchain.WindresFlags(),
382 },
383 })
384 continue
Colin Cross91e90042016-12-02 17:13:24 -0800385 }
386
Colin Cross3f40fa42015-01-30 17:27:36 -0800387 var moduleCflags string
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700388 var moduleToolingCflags string
Colin Cross3f40fa42015-01-30 17:27:36 -0800389 var ccCmd string
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700390 tidy := flags.tidy
Dan Willemsen581341d2017-02-09 16:16:31 -0800391 coverage := flags.coverage
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700392 dump := flags.sAbiDump
Dan Willemsenfcabb1c2019-01-03 23:25:11 -0800393 rule := cc
Colin Cross3f40fa42015-01-30 17:27:36 -0800394
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700395 switch srcFile.Ext() {
Dan Willemsenfcabb1c2019-01-03 23:25:11 -0800396 case ".s":
397 rule = ccNoDeps
398 fallthrough
399 case ".S":
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700400 ccCmd = "clang"
Colin Cross3f40fa42015-01-30 17:27:36 -0800401 moduleCflags = asflags
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700402 tidy = false
Dan Willemsen581341d2017-02-09 16:16:31 -0800403 coverage = false
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800404 dump = false
Colin Cross3f40fa42015-01-30 17:27:36 -0800405 case ".c":
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700406 ccCmd = "clang"
Colin Cross3f40fa42015-01-30 17:27:36 -0800407 moduleCflags = cflags
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700408 moduleToolingCflags = toolingCflags
Colin Cross9978ffe2016-12-01 15:31:22 -0800409 case ".cpp", ".cc", ".mm":
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700410 ccCmd = "clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800411 moduleCflags = cppflags
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700412 moduleToolingCflags = toolingCppflags
Colin Cross3f40fa42015-01-30 17:27:36 -0800413 default:
414 ctx.ModuleErrorf("File %s has unknown extension", srcFile)
415 continue
416 }
417
Colin Cross67a5c132017-05-09 13:45:28 -0700418 ccDesc := ccCmd
419
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700420 ccCmd = "${config.ClangBin}/" + ccCmd
Colin Cross3f40fa42015-01-30 17:27:36 -0800421
Dan Willemsen581341d2017-02-09 16:16:31 -0800422 var implicitOutputs android.WritablePaths
423 if coverage {
424 gcnoFile := android.ObjPathWithExt(ctx, subdir, srcFile, "gcno")
425 implicitOutputs = append(implicitOutputs, gcnoFile)
426 coverageFiles = append(coverageFiles, gcnoFile)
427 }
428
Colin Crossae887032017-10-23 17:16:14 -0700429 ctx.Build(pctx, android.BuildParams{
Dan Willemsenfcabb1c2019-01-03 23:25:11 -0800430 Rule: rule,
Colin Cross67a5c132017-05-09 13:45:28 -0700431 Description: ccDesc + " " + srcFile.Rel(),
Dan Willemsen581341d2017-02-09 16:16:31 -0800432 Output: objFile,
433 ImplicitOutputs: implicitOutputs,
434 Input: srcFile,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800435 Implicits: cFlagsDeps,
436 OrderOnly: pathDeps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800437 Args: map[string]string{
Colin Cross28344522015-04-22 13:07:53 -0700438 "cFlags": moduleCflags,
439 "ccCmd": ccCmd,
Colin Cross3f40fa42015-01-30 17:27:36 -0800440 },
441 })
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700442
443 if tidy {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700444 tidyFile := android.ObjPathWithExt(ctx, subdir, srcFile, "tidy")
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700445 tidyFiles = append(tidyFiles, tidyFile)
446
Colin Crossae887032017-10-23 17:16:14 -0700447 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700448 Rule: clangTidy,
449 Description: "clang-tidy " + srcFile.Rel(),
450 Output: tidyFile,
451 Input: srcFile,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700452 // We must depend on objFile, since clang-tidy doesn't
453 // support exporting dependencies.
454 Implicit: objFile,
455 Args: map[string]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700456 "cFlags": moduleToolingCflags,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700457 "tidyFlags": flags.tidyFlags,
458 },
459 })
460 }
461
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800462 if dump {
463 sAbiDumpFile := android.ObjPathWithExt(ctx, subdir, srcFile, "sdump")
464 sAbiDumpFiles = append(sAbiDumpFiles, sAbiDumpFile)
465
Colin Crossae887032017-10-23 17:16:14 -0700466 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700467 Rule: sAbiDump,
468 Description: "header-abi-dumper " + srcFile.Rel(),
469 Output: sAbiDumpFile,
470 Input: srcFile,
471 Implicit: objFile,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800472 Args: map[string]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700473 "cFlags": moduleToolingCflags,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800474 "exportDirs": flags.sAbiFlags,
475 },
476 })
477 }
478
Colin Cross3f40fa42015-01-30 17:27:36 -0800479 }
480
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700481 return Objects{
Dan Willemsen581341d2017-02-09 16:16:31 -0800482 objFiles: objFiles,
483 tidyFiles: tidyFiles,
484 coverageFiles: coverageFiles,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800485 sAbiDumpFiles: sAbiDumpFiles,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700486 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800487}
488
489// Generate a rule for compiling multiple .o files to a static library (.a)
Colin Cross635c3b02016-05-18 15:37:25 -0700490func TransformObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700491 flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800492
Dan Willemsen581341d2017-02-09 16:16:31 -0800493 if ctx.Darwin() {
494 transformDarwinObjToStaticLib(ctx, objFiles, flags, outputFile, deps)
495 return
496 }
497
Stephen Hinesf1addeb2018-01-09 23:29:04 -0800498 arCmd := "${config.ClangBin}/llvm-ar"
499 arFlags := "crsD"
500 if !ctx.Darwin() {
501 arFlags += " -format=gnu"
502 }
Vishwath Mohan83d9f712017-03-16 11:01:23 -0700503 if flags.arFlags != "" {
504 arFlags += " " + flags.arFlags
505 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800506
Colin Crossae887032017-10-23 17:16:14 -0700507 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700508 Rule: ar,
509 Description: "static link " + outputFile.Base(),
510 Output: outputFile,
511 Inputs: objFiles,
512 Implicits: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800513 Args: map[string]string{
514 "arFlags": arFlags,
515 "arCmd": arCmd,
516 },
517 })
518}
519
Colin Cross0af4b842015-04-30 16:36:18 -0700520// Generate a rule for compiling multiple .o files to a static library (.a) on
521// darwin. The darwin ar tool doesn't support @file for list files, and has a
522// very small command line length limit, so we have to split the ar into multiple
523// steps, each appending to the previous one.
Dan Willemsen581341d2017-02-09 16:16:31 -0800524func transformDarwinObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Colin Cross5b529592017-05-09 13:34:34 -0700525 flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) {
Colin Cross0af4b842015-04-30 16:36:18 -0700526
Colin Cross0af4b842015-04-30 16:36:18 -0700527 arFlags := "cqs"
528
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700529 if len(objFiles) == 0 {
Colin Cross635c3b02016-05-18 15:37:25 -0700530 dummy := android.PathForModuleOut(ctx, "dummy"+objectExtension)
531 dummyAr := android.PathForModuleOut(ctx, "dummy"+staticLibraryExtension)
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700532
Colin Crossae887032017-10-23 17:16:14 -0700533 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700534 Rule: emptyFile,
535 Description: "empty object file",
536 Output: dummy,
537 Implicits: deps,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700538 })
539
Colin Crossae887032017-10-23 17:16:14 -0700540 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700541 Rule: darwinAr,
542 Description: "empty static archive",
543 Output: dummyAr,
544 Input: dummy,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700545 Args: map[string]string{
546 "arFlags": arFlags,
547 },
548 })
549
Colin Crossae887032017-10-23 17:16:14 -0700550 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700551 Rule: darwinAppendAr,
552 Description: "static link " + outputFile.Base(),
553 Output: outputFile,
554 Input: dummy,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700555 Args: map[string]string{
556 "arFlags": "d",
557 "inAr": dummyAr.String(),
558 },
559 })
560
561 return
562 }
563
Colin Cross0af4b842015-04-30 16:36:18 -0700564 // ARG_MAX on darwin is 262144, use half that to be safe
Colin Cross5b529592017-05-09 13:34:34 -0700565 objFilesLists, err := splitListForSize(objFiles, 131072)
Colin Cross0af4b842015-04-30 16:36:18 -0700566 if err != nil {
567 ctx.ModuleErrorf("%s", err.Error())
568 }
569
Colin Cross5b529592017-05-09 13:34:34 -0700570 var in, out android.WritablePath
Colin Cross0af4b842015-04-30 16:36:18 -0700571 for i, l := range objFilesLists {
572 in = out
573 out = outputFile
574 if i != len(objFilesLists)-1 {
Colin Cross5b529592017-05-09 13:34:34 -0700575 out = android.PathForModuleOut(ctx, outputFile.Base()+strconv.Itoa(i))
Colin Cross0af4b842015-04-30 16:36:18 -0700576 }
577
Colin Crossae887032017-10-23 17:16:14 -0700578 build := android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700579 Rule: darwinAr,
580 Description: "static link " + out.Base(),
581 Output: out,
582 Inputs: l,
583 Implicits: deps,
Colin Cross5b529592017-05-09 13:34:34 -0700584 Args: map[string]string{
585 "arFlags": arFlags,
586 },
Colin Cross0af4b842015-04-30 16:36:18 -0700587 }
Colin Cross5b529592017-05-09 13:34:34 -0700588 if i != 0 {
589 build.Rule = darwinAppendAr
590 build.Args["inAr"] = in.String()
591 }
Colin Crossae887032017-10-23 17:16:14 -0700592 ctx.Build(pctx, build)
Colin Cross0af4b842015-04-30 16:36:18 -0700593 }
594}
595
Colin Cross3f40fa42015-01-30 17:27:36 -0800596// Generate a rule for compiling multiple .o files, plus static libraries, whole static libraries,
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700597// and shared libraries, to a shared library (.so) or dynamic executable
Colin Cross635c3b02016-05-18 15:37:25 -0700598func TransformObjToDynamicBinary(ctx android.ModuleContext,
599 objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps android.Paths,
Pirama Arumuga Nainar3c21c0b2019-02-28 15:52:05 -0800600 crtBegin, crtEnd android.OptionalPath, groupLate bool, flags builderFlags, outputFile android.WritablePath, implicitOutputs android.WritablePaths) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800601
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700602 ldCmd := "${config.ClangBin}/clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800603
Colin Cross3f40fa42015-01-30 17:27:36 -0800604 var libFlagsList []string
605
Colin Cross16b23492016-01-06 14:41:07 -0800606 if len(flags.libFlags) > 0 {
607 libFlagsList = append(libFlagsList, flags.libFlags)
608 }
609
Colin Cross3f40fa42015-01-30 17:27:36 -0800610 if len(wholeStaticLibs) > 0 {
Dan Willemsen490fd492015-11-24 17:53:15 -0800611 if ctx.Host() && ctx.Darwin() {
Colin Cross635c3b02016-05-18 15:37:25 -0700612 libFlagsList = append(libFlagsList, android.JoinWithPrefix(wholeStaticLibs.Strings(), "-force_load "))
Colin Cross0af4b842015-04-30 16:36:18 -0700613 } else {
614 libFlagsList = append(libFlagsList, "-Wl,--whole-archive ")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700615 libFlagsList = append(libFlagsList, wholeStaticLibs.Strings()...)
Colin Cross0af4b842015-04-30 16:36:18 -0700616 libFlagsList = append(libFlagsList, "-Wl,--no-whole-archive ")
617 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800618 }
619
Colin Cross7a7cf972016-12-05 18:47:39 -0800620 if flags.groupStaticLibs && !ctx.Darwin() && len(staticLibs) > 0 {
Colin Cross18c0c5a2016-12-01 14:45:23 -0800621 libFlagsList = append(libFlagsList, "-Wl,--start-group")
622 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700623 libFlagsList = append(libFlagsList, staticLibs.Strings()...)
Colin Cross7a7cf972016-12-05 18:47:39 -0800624 if flags.groupStaticLibs && !ctx.Darwin() && len(staticLibs) > 0 {
Colin Cross18c0c5a2016-12-01 14:45:23 -0800625 libFlagsList = append(libFlagsList, "-Wl,--end-group")
626 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800627
Stephen Hines10347862016-07-18 15:54:54 -0700628 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700629 libFlagsList = append(libFlagsList, "-Wl,--start-group")
630 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700631 libFlagsList = append(libFlagsList, lateStaticLibs.Strings()...)
Stephen Hines10347862016-07-18 15:54:54 -0700632 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700633 libFlagsList = append(libFlagsList, "-Wl,--end-group")
634 }
635
Colin Cross3f40fa42015-01-30 17:27:36 -0800636 for _, lib := range sharedLibs {
Pirama Arumuga Nainar3c21c0b2019-02-28 15:52:05 -0800637 libFile := lib.String()
638 if ctx.Windows() {
639 libFile = pathtools.ReplaceExtension(libFile, "a")
640 }
641 libFlagsList = append(libFlagsList, libFile)
Colin Cross3f40fa42015-01-30 17:27:36 -0800642 }
643
Colin Cross3f40fa42015-01-30 17:27:36 -0800644 deps = append(deps, staticLibs...)
Colin Cross3075ad02015-03-17 10:47:08 -0700645 deps = append(deps, lateStaticLibs...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800646 deps = append(deps, wholeStaticLibs...)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700647 if crtBegin.Valid() {
648 deps = append(deps, crtBegin.Path(), crtEnd.Path())
Colin Cross3f40fa42015-01-30 17:27:36 -0800649 }
650
Colin Crossae887032017-10-23 17:16:14 -0700651 ctx.Build(pctx, android.BuildParams{
Pirama Arumuga Nainar3c21c0b2019-02-28 15:52:05 -0800652 Rule: ld,
653 Description: "link " + outputFile.Base(),
654 Output: outputFile,
655 ImplicitOutputs: implicitOutputs,
656 Inputs: objFiles,
657 Implicits: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800658 Args: map[string]string{
Dan Albertce2b8392016-07-21 13:16:49 -0700659 "ldCmd": ldCmd,
660 "crtBegin": crtBegin.String(),
661 "libFlags": strings.Join(libFlagsList, " "),
662 "ldFlags": flags.ldFlags,
663 "crtEnd": crtEnd.String(),
Colin Cross3f40fa42015-01-30 17:27:36 -0800664 },
665 })
666}
667
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800668// Generate a rule to combine .dump sAbi dump files from multiple source files
669// into a single .ldump sAbi dump file
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700670func TransformDumpToLinkedDump(ctx android.ModuleContext, sAbiDumps android.Paths, soFile android.Path,
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800671 baseName, exportedHeaderFlags string, symbolFile android.OptionalPath,
672 excludedSymbolVersions, excludedSymbolTags []string) android.OptionalPath {
673
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800674 outputFile := android.PathForModuleOut(ctx, baseName+".lsdump")
Jayant Chowdharydcd33b62018-02-23 16:43:23 -0800675 sabiLock.Lock()
676 lsdumpPaths = append(lsdumpPaths, outputFile.String())
677 sabiLock.Unlock()
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800678
679 implicits := android.Paths{soFile}
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800680 symbolFilterStr := "-so " + soFile.String()
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800681
682 if symbolFile.Valid() {
683 implicits = append(implicits, symbolFile.Path())
684 symbolFilterStr += " -v " + symbolFile.String()
685 }
686 for _, ver := range excludedSymbolVersions {
687 symbolFilterStr += " --exclude-symbol-version " + ver
688 }
689 for _, tag := range excludedSymbolTags {
690 symbolFilterStr += " --exclude-symbol-tag " + tag
691 }
Colin Crossae887032017-10-23 17:16:14 -0700692 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700693 Rule: sAbiLink,
694 Description: "header-abi-linker " + outputFile.Base(),
695 Output: outputFile,
696 Inputs: sAbiDumps,
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800697 Implicits: implicits,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800698 Args: map[string]string{
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800699 "symbolFilter": symbolFilterStr,
700 "arch": ctx.Arch().ArchType.Name,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800701 "exportedHeaderFlags": exportedHeaderFlags,
702 },
703 })
704 return android.OptionalPathForPath(outputFile)
705}
706
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700707func UnzipRefDump(ctx android.ModuleContext, zippedRefDump android.Path, baseName string) android.Path {
708 outputFile := android.PathForModuleOut(ctx, baseName+"_ref.lsdump")
Colin Crossae887032017-10-23 17:16:14 -0700709 ctx.Build(pctx, android.BuildParams{
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700710 Rule: unzipRefSAbiDump,
711 Description: "gunzip" + outputFile.Base(),
712 Output: outputFile,
713 Input: zippedRefDump,
714 })
715 return outputFile
716}
717
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800718func SourceAbiDiff(ctx android.ModuleContext, inputDump android.Path, referenceDump android.Path,
Logan Chien6227fed2019-02-18 13:12:21 +0800719 baseName, exportedHeaderFlags string, isLlndk, isVndkExt bool) android.OptionalPath {
Logan Chienf3511742017-10-31 18:04:35 +0800720
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800721 outputFile := android.PathForModuleOut(ctx, baseName+".abidiff")
Jayant Chowdharyc7434e22018-05-31 15:42:26 -0700722 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
Logan Chien6227fed2019-02-18 13:12:21 +0800723 createReferenceDumpFlags := ""
724
Jayant Chowdharye4499502018-01-17 13:13:33 -0800725 localAbiCheckAllowFlags := append([]string(nil), abiCheckAllowFlags...)
726 if exportedHeaderFlags == "" {
727 localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-advice-only")
728 }
Logan Chien6227fed2019-02-18 13:12:21 +0800729 if isLlndk {
Jayant Chowdharyc7434e22018-05-31 15:42:26 -0700730 localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-consider-opaque-types-different")
Logan Chien6227fed2019-02-18 13:12:21 +0800731 createReferenceDumpFlags = "--llndk"
Jayant Chowdharyc7434e22018-05-31 15:42:26 -0700732 }
Logan Chienf3511742017-10-31 18:04:35 +0800733 if isVndkExt {
734 localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-allow-extensions")
735 }
736
Colin Crossae887032017-10-23 17:16:14 -0700737 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700738 Rule: sAbiDiff,
739 Description: "header-abi-diff " + outputFile.Base(),
740 Output: outputFile,
741 Input: inputDump,
742 Implicit: referenceDump,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800743 Args: map[string]string{
Logan Chien6227fed2019-02-18 13:12:21 +0800744 "referenceDump": referenceDump.String(),
745 "libName": libName,
746 "arch": ctx.Arch().ArchType.Name,
747 "allowFlags": strings.Join(localAbiCheckAllowFlags, " "),
748 "createReferenceDumpFlags": createReferenceDumpFlags,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800749 },
750 })
751 return android.OptionalPathForPath(outputFile)
752}
753
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700754// Generate a rule for extracting a table of contents from a shared library (.so)
755func TransformSharedObjectToToc(ctx android.ModuleContext, inputFile android.Path,
Colin Cross26c34ed2016-09-30 17:10:16 -0700756 outputFile android.WritablePath, flags builderFlags) {
757
Colin Crossb496cfd2018-09-10 16:50:05 -0700758 var format string
759 var crossCompile string
760 if ctx.Darwin() {
761 format = "--macho"
762 crossCompile = "${config.MacToolPath}"
763 } else if ctx.Windows() {
764 format = "--pe"
765 crossCompile = gccCmd(flags.toolchain, "")
766 } else {
767 format = "--elf"
768 crossCompile = gccCmd(flags.toolchain, "")
769 }
Colin Cross26c34ed2016-09-30 17:10:16 -0700770
Colin Crossae887032017-10-23 17:16:14 -0700771 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700772 Rule: toc,
773 Description: "generate toc " + inputFile.Base(),
774 Output: outputFile,
775 Input: inputFile,
Colin Cross26c34ed2016-09-30 17:10:16 -0700776 Args: map[string]string{
777 "crossCompile": crossCompile,
Colin Crossb496cfd2018-09-10 16:50:05 -0700778 "format": format,
Colin Cross26c34ed2016-09-30 17:10:16 -0700779 },
780 })
781}
782
Colin Cross3f40fa42015-01-30 17:27:36 -0800783// Generate a rule for compiling multiple .o files to a .o using ld partial linking
Colin Cross635c3b02016-05-18 15:37:25 -0700784func TransformObjsToObj(ctx android.ModuleContext, objFiles android.Paths,
785 flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800786
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700787 ldCmd := "${config.ClangBin}/clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800788
Colin Crossae887032017-10-23 17:16:14 -0700789 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700790 Rule: partialLd,
791 Description: "link " + outputFile.Base(),
792 Output: outputFile,
793 Inputs: objFiles,
Colin Cross3f40fa42015-01-30 17:27:36 -0800794 Args: map[string]string{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700795 "ldCmd": ldCmd,
Colin Cross41280a42015-11-23 14:01:42 -0800796 "ldFlags": flags.ldFlags,
Colin Cross3f40fa42015-01-30 17:27:36 -0800797 },
798 })
799}
800
Colin Crossbfae8852015-03-26 14:44:11 -0700801// Generate a rule for runing objcopy --prefix-symbols on a binary
Colin Cross635c3b02016-05-18 15:37:25 -0700802func TransformBinaryPrefixSymbols(ctx android.ModuleContext, prefix string, inputFile android.Path,
803 flags builderFlags, outputFile android.WritablePath) {
Colin Crossbfae8852015-03-26 14:44:11 -0700804
805 objcopyCmd := gccCmd(flags.toolchain, "objcopy")
806
Colin Crossae887032017-10-23 17:16:14 -0700807 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700808 Rule: prefixSymbols,
809 Description: "prefix symbols " + outputFile.Base(),
810 Output: outputFile,
811 Input: inputFile,
Colin Crossbfae8852015-03-26 14:44:11 -0700812 Args: map[string]string{
813 "objcopyCmd": objcopyCmd,
814 "prefix": prefix,
815 },
816 })
817}
818
Colin Cross635c3b02016-05-18 15:37:25 -0700819func TransformStrip(ctx android.ModuleContext, inputFile android.Path,
820 outputFile android.WritablePath, flags builderFlags) {
Colin Cross665dce92016-04-28 14:50:03 -0700821
822 crossCompile := gccCmd(flags.toolchain, "")
823 args := ""
824 if flags.stripAddGnuDebuglink {
825 args += " --add-gnu-debuglink"
826 }
827 if flags.stripKeepMiniDebugInfo {
828 args += " --keep-mini-debug-info"
829 }
830 if flags.stripKeepSymbols {
831 args += " --keep-symbols"
832 }
Yi Kongb5c34d72018-11-07 16:28:49 -0800833 if flags.stripUseGnuStrip {
834 args += " --use-gnu-strip"
Chih-Hung Hsieh30485c92018-06-04 10:37:43 -0700835 }
Colin Cross665dce92016-04-28 14:50:03 -0700836
Colin Crossae887032017-10-23 17:16:14 -0700837 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700838 Rule: strip,
839 Description: "strip " + outputFile.Base(),
840 Output: outputFile,
841 Input: inputFile,
Colin Cross665dce92016-04-28 14:50:03 -0700842 Args: map[string]string{
843 "crossCompile": crossCompile,
844 "args": args,
845 },
846 })
847}
848
Colin Cross635c3b02016-05-18 15:37:25 -0700849func TransformDarwinStrip(ctx android.ModuleContext, inputFile android.Path,
850 outputFile android.WritablePath) {
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700851
Colin Crossae887032017-10-23 17:16:14 -0700852 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700853 Rule: darwinStrip,
854 Description: "strip " + outputFile.Base(),
855 Output: outputFile,
856 Input: inputFile,
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700857 })
858}
859
Dan Willemsen581341d2017-02-09 16:16:31 -0800860func TransformCoverageFilesToLib(ctx android.ModuleContext,
861 inputs Objects, flags builderFlags, baseName string) android.OptionalPath {
862
863 if len(inputs.coverageFiles) > 0 {
864 outputFile := android.PathForModuleOut(ctx, baseName+".gcnodir")
865
866 TransformObjToStaticLib(ctx, inputs.coverageFiles, flags, outputFile, nil)
867
868 return android.OptionalPathForPath(outputFile)
869 }
870
871 return android.OptionalPath{}
872}
873
Colin Crossb98c8b02016-07-29 13:44:28 -0700874func gccCmd(toolchain config.Toolchain, cmd string) string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800875 return filepath.Join(toolchain.GccRoot(), "bin", toolchain.GccTriple()+"-"+cmd)
876}
Colin Cross0af4b842015-04-30 16:36:18 -0700877
Colin Cross5b529592017-05-09 13:34:34 -0700878func splitListForSize(list android.Paths, limit int) (lists []android.Paths, err error) {
Colin Cross0af4b842015-04-30 16:36:18 -0700879 var i int
880
881 start := 0
882 bytes := 0
883 for i = range list {
Colin Cross5b529592017-05-09 13:34:34 -0700884 l := len(list[i].String())
Colin Cross0af4b842015-04-30 16:36:18 -0700885 if l > limit {
886 return nil, fmt.Errorf("list element greater than size limit (%d)", limit)
887 }
888 if bytes+l > limit {
889 lists = append(lists, list[start:i])
890 start = i
891 bytes = 0
892 }
893 bytes += l + 1 // count a space between each list element
894 }
895
896 lists = append(lists, list[start:])
897
898 totalLen := 0
899 for _, l := range lists {
900 totalLen += len(l)
901 }
902 if totalLen != len(list) {
903 panic(fmt.Errorf("Failed breaking up list, %d != %d", len(list), totalLen))
904 }
905 return lists, nil
906}