blob: d2727b3bf03fc204c89ae1e54dce964220881d19 [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"
Colin Crossb98c8b02016-07-29 13:44:28 -070029
30 "android/soong/android"
31 "android/soong/cc/config"
Colin Cross3f40fa42015-01-30 17:27:36 -080032)
33
34const (
Dan Albertc3144b12015-04-28 18:17:56 -070035 objectExtension = ".o"
Colin Cross3f40fa42015-01-30 17:27:36 -080036 staticLibraryExtension = ".a"
37)
38
39var (
Jayant Chowdharya3bb1b32017-11-01 11:12:15 -070040 abiCheckAllowFlags = []string{
Jayant Chowdharya3bb1b32017-11-01 11:12:15 -070041 "-allow-unreferenced-changes",
42 "-allow-unreferenced-elf-symbol-changes",
43 }
44)
45
46var (
Colin Cross635c3b02016-05-18 15:37:25 -070047 pctx = android.NewPackageContext("android/soong/cc")
Colin Cross3f40fa42015-01-30 17:27:36 -080048
Colin Cross9d45bb72016-08-29 16:14:13 -070049 cc = pctx.AndroidGomaStaticRule("cc",
Colin Cross3f40fa42015-01-30 17:27:36 -080050 blueprint.RuleParams{
51 Depfile: "${out}.d",
52 Deps: blueprint.DepsGCC,
Alistair Strachan777475c2016-08-26 12:55:49 -070053 Command: "$relPwd ${config.CcWrapper}$ccCmd -c $cFlags -MD -MF ${out}.d -o $out $in",
Dan Willemsenc94a7682015-11-17 15:27:28 -080054 CommandDeps: []string{"$ccCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080055 },
Dan Willemsen322a0a62015-11-17 15:19:46 -080056 "ccCmd", "cFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080057
Dan Willemsenfcabb1c2019-01-03 23:25:11 -080058 ccNoDeps = pctx.AndroidGomaStaticRule("ccNoDeps",
59 blueprint.RuleParams{
60 Command: "$relPwd ${config.CcWrapper}$ccCmd -c $cFlags -o $out $in",
61 CommandDeps: []string{"$ccCmd"},
62 },
63 "ccCmd", "cFlags")
64
Colin Cross9d45bb72016-08-29 16:14:13 -070065 ld = pctx.AndroidStaticRule("ld",
Colin Cross3f40fa42015-01-30 17:27:36 -080066 blueprint.RuleParams{
Dan Albertce2b8392016-07-21 13:16:49 -070067 Command: "$ldCmd ${crtBegin} @${out}.rsp " +
Colin Cross28344522015-04-22 13:07:53 -070068 "${libFlags} ${crtEnd} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080069 CommandDeps: []string{"$ldCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070070 Rspfile: "${out}.rsp",
71 RspfileContent: "${in}",
Colin Cross36ae1352019-03-29 15:55:30 -070072 // clang -Wl,--out-implib doesn't update its output file if it hasn't changed.
73 Restat: true,
Colin Cross3f40fa42015-01-30 17:27:36 -080074 },
Dan Albertce2b8392016-07-21 13:16:49 -070075 "ldCmd", "crtBegin", "libFlags", "crtEnd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080076
Colin Cross9d45bb72016-08-29 16:14:13 -070077 partialLd = pctx.AndroidStaticRule("partialLd",
Colin Cross3f40fa42015-01-30 17:27:36 -080078 blueprint.RuleParams{
Chih-Hung Hsieh3ede2942018-01-10 14:30:44 -080079 // Without -no-pie, clang 7.0 adds -pie to link Android files,
80 // but -r and -pie cannot be used together.
81 Command: "$ldCmd -nostdlib -no-pie -Wl,-r ${in} -o ${out} ${ldFlags}",
Dan Willemsenc94a7682015-11-17 15:27:28 -080082 CommandDeps: []string{"$ldCmd"},
Colin Cross3f40fa42015-01-30 17:27:36 -080083 },
Colin Cross41280a42015-11-23 14:01:42 -080084 "ldCmd", "ldFlags")
Colin Cross3f40fa42015-01-30 17:27:36 -080085
Colin Cross9d45bb72016-08-29 16:14:13 -070086 ar = pctx.AndroidStaticRule("ar",
Colin Cross3f40fa42015-01-30 17:27:36 -080087 blueprint.RuleParams{
Colin Cross7d21c442015-03-30 17:47:53 -070088 Command: "rm -f ${out} && $arCmd $arFlags $out @${out}.rsp",
Dan Willemsenc94a7682015-11-17 15:27:28 -080089 CommandDeps: []string{"$arCmd"},
Colin Cross7d21c442015-03-30 17:47:53 -070090 Rspfile: "${out}.rsp",
91 RspfileContent: "${in}",
Colin Cross3f40fa42015-01-30 17:27:36 -080092 },
93 "arCmd", "arFlags")
94
Colin Cross9d45bb72016-08-29 16:14:13 -070095 darwinAr = pctx.AndroidStaticRule("darwinAr",
Colin Cross0af4b842015-04-30 16:36:18 -070096 blueprint.RuleParams{
Colin Crossb98c8b02016-07-29 13:44:28 -070097 Command: "rm -f ${out} && ${config.MacArPath} $arFlags $out $in",
98 CommandDeps: []string{"${config.MacArPath}"},
Colin Cross0af4b842015-04-30 16:36:18 -070099 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700100 "arFlags")
Colin Cross0af4b842015-04-30 16:36:18 -0700101
Colin Cross9d45bb72016-08-29 16:14:13 -0700102 darwinAppendAr = pctx.AndroidStaticRule("darwinAppendAr",
Colin Cross0af4b842015-04-30 16:36:18 -0700103 blueprint.RuleParams{
Colin Crossb98c8b02016-07-29 13:44:28 -0700104 Command: "cp -f ${inAr} ${out}.tmp && ${config.MacArPath} $arFlags ${out}.tmp $in && mv ${out}.tmp ${out}",
105 CommandDeps: []string{"${config.MacArPath}", "${inAr}"},
Colin Cross0af4b842015-04-30 16:36:18 -0700106 },
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700107 "arFlags", "inAr")
108
Colin Cross9d45bb72016-08-29 16:14:13 -0700109 darwinStrip = pctx.AndroidStaticRule("darwinStrip",
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700110 blueprint.RuleParams{
Colin Crossa24166b2016-08-01 15:42:38 -0700111 Command: "${config.MacStripPath} -u -r -o $out $in",
112 CommandDeps: []string{"${config.MacStripPath}"},
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700113 })
Colin Cross0af4b842015-04-30 16:36:18 -0700114
Colin Cross9d45bb72016-08-29 16:14:13 -0700115 prefixSymbols = pctx.AndroidStaticRule("prefixSymbols",
Colin Crossbfae8852015-03-26 14:44:11 -0700116 blueprint.RuleParams{
117 Command: "$objcopyCmd --prefix-symbols=${prefix} ${in} ${out}",
Dan Willemsenc94a7682015-11-17 15:27:28 -0800118 CommandDeps: []string{"$objcopyCmd"},
Colin Crossbfae8852015-03-26 14:44:11 -0700119 },
120 "objcopyCmd", "prefix")
121
Nan Zhang43a485c2017-03-27 14:27:58 -0700122 _ = pctx.SourcePathVariable("stripPath", "build/soong/scripts/strip.sh")
Dan Willemsen8fec83a2018-03-09 10:47:52 -0800123 _ = pctx.SourcePathVariable("xzCmd", "prebuilts/build-tools/${config.HostPrebuiltTag}/bin/xz")
Colin Cross665dce92016-04-28 14:50:03 -0700124
Colin Crossee3ea312019-05-17 15:36:46 -0700125 // b/132822437: objcopy uses a file descriptor per .o file when called on .a files, which runs the system out of
Colin Crossbadf8d62019-05-22 13:25:50 -0700126 // file descriptors on darwin. Limit concurrent calls to 5 on darwin.
Colin Crossee3ea312019-05-17 15:36:46 -0700127 darwinStripPool = func() blueprint.Pool {
128 if runtime.GOOS == "darwin" {
129 return pctx.StaticPool("darwinStripPool", blueprint.PoolParams{
Colin Crossbadf8d62019-05-22 13:25:50 -0700130 Depth: 5,
Colin Crossee3ea312019-05-17 15:36:46 -0700131 })
132 } else {
133 return nil
134 }
135 }()
136
Colin Cross9d45bb72016-08-29 16:14:13 -0700137 strip = pctx.AndroidStaticRule("strip",
Colin Cross665dce92016-04-28 14:50:03 -0700138 blueprint.RuleParams{
139 Depfile: "${out}.d",
140 Deps: blueprint.DepsGCC,
Chih-Hung Hsieh30485c92018-06-04 10:37:43 -0700141 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 -0800142 CommandDeps: []string{"$stripPath", "$xzCmd"},
Colin Crossee3ea312019-05-17 15:36:46 -0700143 Pool: darwinStripPool,
Colin Cross665dce92016-04-28 14:50:03 -0700144 },
145 "args", "crossCompile")
146
Colin Cross9d45bb72016-08-29 16:14:13 -0700147 emptyFile = pctx.AndroidStaticRule("emptyFile",
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700148 blueprint.RuleParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700149 Command: "rm -f $out && touch $out",
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700150 })
151
Nan Zhang43a485c2017-03-27 14:27:58 -0700152 _ = pctx.SourcePathVariable("tocPath", "build/soong/scripts/toc.sh")
Colin Cross26c34ed2016-09-30 17:10:16 -0700153
154 toc = pctx.AndroidStaticRule("toc",
155 blueprint.RuleParams{
156 Depfile: "${out}.d",
157 Deps: blueprint.DepsGCC,
Colin Crossb496cfd2018-09-10 16:50:05 -0700158 Command: "CROSS_COMPILE=$crossCompile $tocPath $format -i ${in} -o ${out} -d ${out}.d",
Colin Cross26c34ed2016-09-30 17:10:16 -0700159 CommandDeps: []string{"$tocPath"},
160 Restat: true,
161 },
Colin Crossb496cfd2018-09-10 16:50:05 -0700162 "crossCompile", "format")
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700163
164 clangTidy = pctx.AndroidStaticRule("clangTidy",
165 blueprint.RuleParams{
George Burgess IVc4624c02019-04-04 16:22:37 -0700166 Command: "rm -f $out && ${config.ClangBin}/clang-tidy $tidyFlags $in -- $cFlags && touch $out",
167 CommandDeps: []string{"${config.ClangBin}/clang-tidy"},
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700168 },
169 "cFlags", "tidyFlags")
Colin Cross91e90042016-12-02 17:13:24 -0800170
Nan Zhang43a485c2017-03-27 14:27:58 -0700171 _ = pctx.SourcePathVariable("yasmCmd", "prebuilts/misc/${config.HostPrebuiltTag}/yasm/yasm")
Colin Cross91e90042016-12-02 17:13:24 -0800172
173 yasm = pctx.AndroidStaticRule("yasm",
174 blueprint.RuleParams{
Dan Willemsen1d3e5452017-08-22 20:53:45 -0700175 Command: "$yasmCmd $asFlags -o $out $in && $yasmCmd $asFlags -M $in >$out.d",
Colin Cross91e90042016-12-02 17:13:24 -0800176 CommandDeps: []string{"$yasmCmd"},
Dan Willemsen1d3e5452017-08-22 20:53:45 -0700177 Depfile: "$out.d",
178 Deps: blueprint.DepsGCC,
Colin Cross91e90042016-12-02 17:13:24 -0800179 },
180 "asFlags")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800181
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700182 windres = pctx.AndroidStaticRule("windres",
183 blueprint.RuleParams{
184 Command: "$windresCmd $flags -I$$(dirname $in) -i $in -o $out",
185 CommandDeps: []string{"$windresCmd"},
186 },
187 "windresCmd", "flags")
188
Jayant Chowdharya4c6df52018-02-20 12:36:51 -0800189 _ = pctx.SourcePathVariable("sAbiDumper", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-dumper")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800190
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700191 // -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 -0800192 sAbiDump = pctx.AndroidStaticRule("sAbiDump",
193 blueprint.RuleParams{
Logan Chien3ff624f2018-10-08 11:49:32 +0800194 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 -0800195 CommandDeps: []string{"$sAbiDumper"},
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800196 },
197 "cFlags", "exportDirs")
198
Jayant Chowdharya4c6df52018-02-20 12:36:51 -0800199 _ = pctx.SourcePathVariable("sAbiLinker", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-linker")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800200
201 sAbiLink = pctx.AndroidStaticRule("sAbiLink",
202 blueprint.RuleParams{
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800203 Command: "$sAbiLinker -o ${out} $symbolFilter -arch $arch $exportedHeaderFlags @${out}.rsp ",
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800204 CommandDeps: []string{"$sAbiLinker"},
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800205 Rspfile: "${out}.rsp",
206 RspfileContent: "${in}",
207 },
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800208 "symbolFilter", "arch", "exportedHeaderFlags")
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800209
Jayant Chowdharya4c6df52018-02-20 12:36:51 -0800210 _ = pctx.SourcePathVariable("sAbiDiffer", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-diff")
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700211
Jayant Chowdhary219139d2017-11-27 14:52:21 -0800212 sAbiDiff = pctx.AndroidRuleFunc("sAbiDiff",
Dan Willemsen54daaf02018-03-12 13:24:09 -0700213 func(ctx android.PackageRuleContext) blueprint.RuleParams {
Jayant Chowdhary39d167a2018-05-17 16:45:51 -0700214 // TODO(b/78139997): Add -check-all-apis back
Logan Chien6227fed2019-02-18 13:12:21 +0800215 commandStr := "($sAbiDiffer ${allowFlags} -lib ${libName} -arch ${arch} -o ${out} -new ${in} -old ${referenceDump})"
216 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 +0800217 commandStr += " && (mkdir -p $$DIST_DIR/abidiffs && cp ${out} $$DIST_DIR/abidiffs/)"
Jayant Chowdharyd8b70a32018-02-01 17:23:09 -0800218 commandStr += " && exit 1)"
Jayant Chowdhary219139d2017-11-27 14:52:21 -0800219 return blueprint.RuleParams{
220 Command: commandStr,
221 CommandDeps: []string{"$sAbiDiffer"},
Dan Willemsen54daaf02018-03-12 13:24:09 -0700222 }
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800223 },
Logan Chien6227fed2019-02-18 13:12:21 +0800224 "allowFlags", "referenceDump", "libName", "arch", "createReferenceDumpFlags")
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700225
226 unzipRefSAbiDump = pctx.AndroidStaticRule("unzipRefSAbiDump",
227 blueprint.RuleParams{
228 Command: "gunzip -c $in > $out",
229 })
Colin Cross3f40fa42015-01-30 17:27:36 -0800230)
231
Dan Willemsen322a0a62015-11-17 15:19:46 -0800232func init() {
233 // We run gcc/clang with PWD=/proc/self/cwd to remove $TOP from the
234 // debug output. That way two builds in two different directories will
235 // create the same output.
236 if runtime.GOOS != "darwin" {
237 pctx.StaticVariable("relPwd", "PWD=/proc/self/cwd")
238 } else {
239 // Darwin doesn't have /proc
240 pctx.StaticVariable("relPwd", "")
241 }
242}
243
Colin Cross3f40fa42015-01-30 17:27:36 -0800244type builderFlags struct {
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700245 globalFlags string
246 arFlags string
247 asFlags string
248 cFlags string
249 toolingCFlags string // A separate set of cFlags for clang LibTooling tools
250 toolingCppFlags string // A separate set of cppFlags for clang LibTooling tools
251 conlyFlags string
252 cppFlags string
253 ldFlags string
254 libFlags string
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700255 tidyFlags string
256 sAbiFlags string
257 yasmFlags string
258 aidlFlags string
259 rsFlags string
260 toolchain config.Toolchain
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700261 tidy bool
262 coverage bool
263 sAbiDump bool
Colin Cross665dce92016-04-28 14:50:03 -0700264
Colin Crossc3199482017-03-30 15:03:04 -0700265 systemIncludeFlags string
266
Colin Cross18c0c5a2016-12-01 14:45:23 -0800267 groupStaticLibs bool
268
Christopher Ferrisb43fe7a2019-05-17 16:39:54 -0700269 stripKeepSymbols bool
270 stripKeepSymbolsList string
271 stripKeepSymbolsAndDebugFrame bool
272 stripKeepMiniDebugInfo bool
273 stripAddGnuDebuglink bool
274 stripUseGnuStrip bool
Dan Willemsen60e62f02018-11-16 21:05:32 -0800275
Colin Cross19878da2019-03-28 14:45:07 -0700276 proto android.ProtoFlags
Dan Willemsen60e62f02018-11-16 21:05:32 -0800277 protoC bool
278 protoOptionsFile bool
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700279
280 yacc *YaccProperties
Colin Cross3f40fa42015-01-30 17:27:36 -0800281}
282
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700283type Objects struct {
Dan Willemsen581341d2017-02-09 16:16:31 -0800284 objFiles android.Paths
285 tidyFiles android.Paths
286 coverageFiles android.Paths
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800287 sAbiDumpFiles android.Paths
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700288}
289
290func (a Objects) Copy() Objects {
291 return Objects{
Dan Willemsen581341d2017-02-09 16:16:31 -0800292 objFiles: append(android.Paths{}, a.objFiles...),
293 tidyFiles: append(android.Paths{}, a.tidyFiles...),
294 coverageFiles: append(android.Paths{}, a.coverageFiles...),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800295 sAbiDumpFiles: append(android.Paths{}, a.sAbiDumpFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700296 }
297}
298
299func (a Objects) Append(b Objects) Objects {
300 return Objects{
Dan Willemsen581341d2017-02-09 16:16:31 -0800301 objFiles: append(a.objFiles, b.objFiles...),
302 tidyFiles: append(a.tidyFiles, b.tidyFiles...),
303 coverageFiles: append(a.coverageFiles, b.coverageFiles...),
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800304 sAbiDumpFiles: append(a.sAbiDumpFiles, b.sAbiDumpFiles...),
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700305 }
306}
307
Colin Cross3f40fa42015-01-30 17:27:36 -0800308// Generate rules for compiling multiple .c, .cpp, or .S files to individual .o files
Colin Cross635c3b02016-05-18 15:37:25 -0700309func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles android.Paths,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800310 flags builderFlags, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross581c1892015-04-07 16:50:10 -0700311
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700312 objFiles := make(android.Paths, len(srcFiles))
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700313 var tidyFiles android.Paths
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700314 if flags.tidy {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700315 tidyFiles = make(android.Paths, 0, len(srcFiles))
316 }
Dan Willemsen581341d2017-02-09 16:16:31 -0800317 var coverageFiles android.Paths
318 if flags.coverage {
319 coverageFiles = make(android.Paths, 0, len(srcFiles))
320 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800321
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700322 commonFlags := strings.Join([]string{
Colin Crossc3199482017-03-30 15:03:04 -0700323 flags.globalFlags,
324 flags.systemIncludeFlags,
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700325 }, " ")
326
327 toolingCflags := strings.Join([]string{
328 commonFlags,
329 flags.toolingCFlags,
330 flags.conlyFlags,
331 }, " ")
332
333 cflags := strings.Join([]string{
334 commonFlags,
Colin Crossc3199482017-03-30 15:03:04 -0700335 flags.cFlags,
336 flags.conlyFlags,
337 }, " ")
338
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700339 toolingCppflags := strings.Join([]string{
340 commonFlags,
341 flags.toolingCFlags,
Chih-Hung Hsieh9e88ba92018-08-22 14:18:04 -0700342 flags.toolingCppFlags,
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700343 }, " ")
344
Colin Crossc3199482017-03-30 15:03:04 -0700345 cppflags := strings.Join([]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700346 commonFlags,
Colin Crossc3199482017-03-30 15:03:04 -0700347 flags.cFlags,
348 flags.cppFlags,
349 }, " ")
350
351 asflags := strings.Join([]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700352 commonFlags,
Colin Crossc3199482017-03-30 15:03:04 -0700353 flags.asFlags,
354 }, " ")
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700355
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800356 var sAbiDumpFiles android.Paths
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700357 if flags.sAbiDump {
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800358 sAbiDumpFiles = make(android.Paths, 0, len(srcFiles))
359 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800360
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700361 cflags += " ${config.NoOverrideClangGlobalCflags}"
362 toolingCflags += " ${config.NoOverrideClangGlobalCflags}"
363 cppflags += " ${config.NoOverrideClangGlobalCflags}"
364 toolingCppflags += " ${config.NoOverrideClangGlobalCflags}"
Dan Willemsenbe03f342016-03-03 17:21:04 -0800365
Colin Cross3f40fa42015-01-30 17:27:36 -0800366 for i, srcFile := range srcFiles {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700367 objFile := android.ObjPathWithExt(ctx, subdir, srcFile, "o")
Colin Cross3f40fa42015-01-30 17:27:36 -0800368
369 objFiles[i] = objFile
370
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700371 switch srcFile.Ext() {
372 case ".asm":
Colin Crossae887032017-10-23 17:16:14 -0700373 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700374 Rule: yasm,
375 Description: "yasm " + srcFile.Rel(),
376 Output: objFile,
377 Input: srcFile,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800378 Implicits: cFlagsDeps,
379 OrderOnly: pathDeps,
Colin Cross91e90042016-12-02 17:13:24 -0800380 Args: map[string]string{
381 "asFlags": flags.yasmFlags,
382 },
383 })
384 continue
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700385 case ".rc":
Colin Crossae887032017-10-23 17:16:14 -0700386 ctx.Build(pctx, android.BuildParams{
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700387 Rule: windres,
388 Description: "windres " + srcFile.Rel(),
389 Output: objFile,
390 Input: srcFile,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800391 Implicits: cFlagsDeps,
392 OrderOnly: pathDeps,
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700393 Args: map[string]string{
394 "windresCmd": gccCmd(flags.toolchain, "windres"),
395 "flags": flags.toolchain.WindresFlags(),
396 },
397 })
398 continue
Colin Cross91e90042016-12-02 17:13:24 -0800399 }
400
Colin Cross3f40fa42015-01-30 17:27:36 -0800401 var moduleCflags string
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700402 var moduleToolingCflags string
Colin Cross3f40fa42015-01-30 17:27:36 -0800403 var ccCmd string
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700404 tidy := flags.tidy
Dan Willemsen581341d2017-02-09 16:16:31 -0800405 coverage := flags.coverage
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700406 dump := flags.sAbiDump
Dan Willemsenfcabb1c2019-01-03 23:25:11 -0800407 rule := cc
Colin Cross3f40fa42015-01-30 17:27:36 -0800408
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700409 switch srcFile.Ext() {
Dan Willemsenfcabb1c2019-01-03 23:25:11 -0800410 case ".s":
411 rule = ccNoDeps
412 fallthrough
413 case ".S":
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700414 ccCmd = "clang"
Colin Cross3f40fa42015-01-30 17:27:36 -0800415 moduleCflags = asflags
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700416 tidy = false
Dan Willemsen581341d2017-02-09 16:16:31 -0800417 coverage = false
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800418 dump = false
Colin Cross3f40fa42015-01-30 17:27:36 -0800419 case ".c":
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700420 ccCmd = "clang"
Colin Cross3f40fa42015-01-30 17:27:36 -0800421 moduleCflags = cflags
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700422 moduleToolingCflags = toolingCflags
Colin Cross9978ffe2016-12-01 15:31:22 -0800423 case ".cpp", ".cc", ".mm":
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700424 ccCmd = "clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800425 moduleCflags = cppflags
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700426 moduleToolingCflags = toolingCppflags
Colin Cross3f40fa42015-01-30 17:27:36 -0800427 default:
428 ctx.ModuleErrorf("File %s has unknown extension", srcFile)
429 continue
430 }
431
Colin Cross67a5c132017-05-09 13:45:28 -0700432 ccDesc := ccCmd
433
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700434 ccCmd = "${config.ClangBin}/" + ccCmd
Colin Cross3f40fa42015-01-30 17:27:36 -0800435
Dan Willemsen581341d2017-02-09 16:16:31 -0800436 var implicitOutputs android.WritablePaths
437 if coverage {
438 gcnoFile := android.ObjPathWithExt(ctx, subdir, srcFile, "gcno")
439 implicitOutputs = append(implicitOutputs, gcnoFile)
440 coverageFiles = append(coverageFiles, gcnoFile)
441 }
442
Colin Crossae887032017-10-23 17:16:14 -0700443 ctx.Build(pctx, android.BuildParams{
Dan Willemsenfcabb1c2019-01-03 23:25:11 -0800444 Rule: rule,
Colin Cross67a5c132017-05-09 13:45:28 -0700445 Description: ccDesc + " " + srcFile.Rel(),
Dan Willemsen581341d2017-02-09 16:16:31 -0800446 Output: objFile,
447 ImplicitOutputs: implicitOutputs,
448 Input: srcFile,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800449 Implicits: cFlagsDeps,
450 OrderOnly: pathDeps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800451 Args: map[string]string{
Colin Cross28344522015-04-22 13:07:53 -0700452 "cFlags": moduleCflags,
453 "ccCmd": ccCmd,
Colin Cross3f40fa42015-01-30 17:27:36 -0800454 },
455 })
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700456
457 if tidy {
Dan Willemsen21ec4902016-11-02 20:43:13 -0700458 tidyFile := android.ObjPathWithExt(ctx, subdir, srcFile, "tidy")
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700459 tidyFiles = append(tidyFiles, tidyFile)
460
Colin Crossae887032017-10-23 17:16:14 -0700461 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700462 Rule: clangTidy,
463 Description: "clang-tidy " + srcFile.Rel(),
464 Output: tidyFile,
465 Input: srcFile,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700466 // We must depend on objFile, since clang-tidy doesn't
467 // support exporting dependencies.
468 Implicit: objFile,
469 Args: map[string]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700470 "cFlags": moduleToolingCflags,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700471 "tidyFlags": flags.tidyFlags,
472 },
473 })
474 }
475
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800476 if dump {
477 sAbiDumpFile := android.ObjPathWithExt(ctx, subdir, srcFile, "sdump")
478 sAbiDumpFiles = append(sAbiDumpFiles, sAbiDumpFile)
479
Colin Crossae887032017-10-23 17:16:14 -0700480 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700481 Rule: sAbiDump,
482 Description: "header-abi-dumper " + srcFile.Rel(),
483 Output: sAbiDumpFile,
484 Input: srcFile,
485 Implicit: objFile,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800486 Args: map[string]string{
Jayant Chowdhary9677e8c2017-06-15 14:45:18 -0700487 "cFlags": moduleToolingCflags,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800488 "exportDirs": flags.sAbiFlags,
489 },
490 })
491 }
492
Colin Cross3f40fa42015-01-30 17:27:36 -0800493 }
494
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700495 return Objects{
Dan Willemsen581341d2017-02-09 16:16:31 -0800496 objFiles: objFiles,
497 tidyFiles: tidyFiles,
498 coverageFiles: coverageFiles,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800499 sAbiDumpFiles: sAbiDumpFiles,
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700500 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800501}
502
503// Generate a rule for compiling multiple .o files to a static library (.a)
Colin Cross635c3b02016-05-18 15:37:25 -0700504func TransformObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700505 flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800506
Dan Willemsen581341d2017-02-09 16:16:31 -0800507 if ctx.Darwin() {
508 transformDarwinObjToStaticLib(ctx, objFiles, flags, outputFile, deps)
509 return
510 }
511
Stephen Hinesf1addeb2018-01-09 23:29:04 -0800512 arCmd := "${config.ClangBin}/llvm-ar"
513 arFlags := "crsD"
514 if !ctx.Darwin() {
515 arFlags += " -format=gnu"
516 }
Vishwath Mohan83d9f712017-03-16 11:01:23 -0700517 if flags.arFlags != "" {
518 arFlags += " " + flags.arFlags
519 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800520
Colin Crossae887032017-10-23 17:16:14 -0700521 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700522 Rule: ar,
523 Description: "static link " + outputFile.Base(),
524 Output: outputFile,
525 Inputs: objFiles,
526 Implicits: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800527 Args: map[string]string{
528 "arFlags": arFlags,
529 "arCmd": arCmd,
530 },
531 })
532}
533
Colin Cross0af4b842015-04-30 16:36:18 -0700534// Generate a rule for compiling multiple .o files to a static library (.a) on
535// darwin. The darwin ar tool doesn't support @file for list files, and has a
536// very small command line length limit, so we have to split the ar into multiple
537// steps, each appending to the previous one.
Dan Willemsen581341d2017-02-09 16:16:31 -0800538func transformDarwinObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths,
Colin Cross5b529592017-05-09 13:34:34 -0700539 flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) {
Colin Cross0af4b842015-04-30 16:36:18 -0700540
Colin Cross0af4b842015-04-30 16:36:18 -0700541 arFlags := "cqs"
542
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700543 if len(objFiles) == 0 {
Colin Cross635c3b02016-05-18 15:37:25 -0700544 dummy := android.PathForModuleOut(ctx, "dummy"+objectExtension)
545 dummyAr := android.PathForModuleOut(ctx, "dummy"+staticLibraryExtension)
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700546
Colin Crossae887032017-10-23 17:16:14 -0700547 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700548 Rule: emptyFile,
549 Description: "empty object file",
550 Output: dummy,
551 Implicits: deps,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700552 })
553
Colin Crossae887032017-10-23 17:16:14 -0700554 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700555 Rule: darwinAr,
556 Description: "empty static archive",
557 Output: dummyAr,
558 Input: dummy,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700559 Args: map[string]string{
560 "arFlags": arFlags,
561 },
562 })
563
Colin Crossae887032017-10-23 17:16:14 -0700564 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700565 Rule: darwinAppendAr,
566 Description: "static link " + outputFile.Base(),
567 Output: outputFile,
568 Input: dummy,
Dan Willemsen9f0b5502016-05-13 14:05:09 -0700569 Args: map[string]string{
570 "arFlags": "d",
571 "inAr": dummyAr.String(),
572 },
573 })
574
575 return
576 }
577
Colin Cross0af4b842015-04-30 16:36:18 -0700578 // ARG_MAX on darwin is 262144, use half that to be safe
Colin Cross5b529592017-05-09 13:34:34 -0700579 objFilesLists, err := splitListForSize(objFiles, 131072)
Colin Cross0af4b842015-04-30 16:36:18 -0700580 if err != nil {
581 ctx.ModuleErrorf("%s", err.Error())
582 }
583
Colin Cross5b529592017-05-09 13:34:34 -0700584 var in, out android.WritablePath
Colin Cross0af4b842015-04-30 16:36:18 -0700585 for i, l := range objFilesLists {
586 in = out
587 out = outputFile
588 if i != len(objFilesLists)-1 {
Colin Cross5b529592017-05-09 13:34:34 -0700589 out = android.PathForModuleOut(ctx, outputFile.Base()+strconv.Itoa(i))
Colin Cross0af4b842015-04-30 16:36:18 -0700590 }
591
Colin Crossae887032017-10-23 17:16:14 -0700592 build := android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700593 Rule: darwinAr,
594 Description: "static link " + out.Base(),
595 Output: out,
596 Inputs: l,
597 Implicits: deps,
Colin Cross5b529592017-05-09 13:34:34 -0700598 Args: map[string]string{
599 "arFlags": arFlags,
600 },
Colin Cross0af4b842015-04-30 16:36:18 -0700601 }
Colin Cross5b529592017-05-09 13:34:34 -0700602 if i != 0 {
603 build.Rule = darwinAppendAr
604 build.Args["inAr"] = in.String()
605 }
Colin Crossae887032017-10-23 17:16:14 -0700606 ctx.Build(pctx, build)
Colin Cross0af4b842015-04-30 16:36:18 -0700607 }
608}
609
Colin Cross3f40fa42015-01-30 17:27:36 -0800610// Generate a rule for compiling multiple .o files, plus static libraries, whole static libraries,
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700611// and shared libraries, to a shared library (.so) or dynamic executable
Colin Cross635c3b02016-05-18 15:37:25 -0700612func TransformObjToDynamicBinary(ctx android.ModuleContext,
613 objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps android.Paths,
Josh Gaob20200b2019-06-07 12:30:30 -0700614 crtBegin, crtEnd android.OptionalPath, groupLate bool, flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800615
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700616 ldCmd := "${config.ClangBin}/clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800617
Colin Cross3f40fa42015-01-30 17:27:36 -0800618 var libFlagsList []string
619
Colin Cross16b23492016-01-06 14:41:07 -0800620 if len(flags.libFlags) > 0 {
621 libFlagsList = append(libFlagsList, flags.libFlags)
622 }
623
Colin Cross3f40fa42015-01-30 17:27:36 -0800624 if len(wholeStaticLibs) > 0 {
Dan Willemsen490fd492015-11-24 17:53:15 -0800625 if ctx.Host() && ctx.Darwin() {
Colin Cross635c3b02016-05-18 15:37:25 -0700626 libFlagsList = append(libFlagsList, android.JoinWithPrefix(wholeStaticLibs.Strings(), "-force_load "))
Colin Cross0af4b842015-04-30 16:36:18 -0700627 } else {
628 libFlagsList = append(libFlagsList, "-Wl,--whole-archive ")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700629 libFlagsList = append(libFlagsList, wholeStaticLibs.Strings()...)
Colin Cross0af4b842015-04-30 16:36:18 -0700630 libFlagsList = append(libFlagsList, "-Wl,--no-whole-archive ")
631 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800632 }
633
Colin Cross7a7cf972016-12-05 18:47:39 -0800634 if flags.groupStaticLibs && !ctx.Darwin() && len(staticLibs) > 0 {
Colin Cross18c0c5a2016-12-01 14:45:23 -0800635 libFlagsList = append(libFlagsList, "-Wl,--start-group")
636 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700637 libFlagsList = append(libFlagsList, staticLibs.Strings()...)
Colin Cross7a7cf972016-12-05 18:47:39 -0800638 if flags.groupStaticLibs && !ctx.Darwin() && len(staticLibs) > 0 {
Colin Cross18c0c5a2016-12-01 14:45:23 -0800639 libFlagsList = append(libFlagsList, "-Wl,--end-group")
640 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800641
Stephen Hines10347862016-07-18 15:54:54 -0700642 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700643 libFlagsList = append(libFlagsList, "-Wl,--start-group")
644 }
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700645 libFlagsList = append(libFlagsList, lateStaticLibs.Strings()...)
Stephen Hines10347862016-07-18 15:54:54 -0700646 if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 {
Dan Willemsenedc385f2015-07-08 13:02:23 -0700647 libFlagsList = append(libFlagsList, "-Wl,--end-group")
648 }
649
Colin Cross3f40fa42015-01-30 17:27:36 -0800650 for _, lib := range sharedLibs {
Josh Gaob20200b2019-06-07 12:30:30 -0700651 libFlagsList = append(libFlagsList, lib.String())
Colin Cross3f40fa42015-01-30 17:27:36 -0800652 }
653
Colin Cross3f40fa42015-01-30 17:27:36 -0800654 deps = append(deps, staticLibs...)
Colin Cross3075ad02015-03-17 10:47:08 -0700655 deps = append(deps, lateStaticLibs...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800656 deps = append(deps, wholeStaticLibs...)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700657 if crtBegin.Valid() {
658 deps = append(deps, crtBegin.Path(), crtEnd.Path())
Colin Cross3f40fa42015-01-30 17:27:36 -0800659 }
660
Colin Crossae887032017-10-23 17:16:14 -0700661 ctx.Build(pctx, android.BuildParams{
Josh Gaob20200b2019-06-07 12:30:30 -0700662 Rule: ld,
663 Description: "link " + outputFile.Base(),
664 Output: outputFile,
665 Inputs: objFiles,
666 Implicits: deps,
Colin Cross3f40fa42015-01-30 17:27:36 -0800667 Args: map[string]string{
Dan Albertce2b8392016-07-21 13:16:49 -0700668 "ldCmd": ldCmd,
669 "crtBegin": crtBegin.String(),
670 "libFlags": strings.Join(libFlagsList, " "),
671 "ldFlags": flags.ldFlags,
672 "crtEnd": crtEnd.String(),
Colin Cross3f40fa42015-01-30 17:27:36 -0800673 },
674 })
675}
676
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800677// Generate a rule to combine .dump sAbi dump files from multiple source files
678// into a single .ldump sAbi dump file
Jayant Chowdhary6ab3d842017-06-26 12:52:58 -0700679func TransformDumpToLinkedDump(ctx android.ModuleContext, sAbiDumps android.Paths, soFile android.Path,
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800680 baseName, exportedHeaderFlags string, symbolFile android.OptionalPath,
681 excludedSymbolVersions, excludedSymbolTags []string) android.OptionalPath {
682
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800683 outputFile := android.PathForModuleOut(ctx, baseName+".lsdump")
Jayant Chowdharydcd33b62018-02-23 16:43:23 -0800684 sabiLock.Lock()
685 lsdumpPaths = append(lsdumpPaths, outputFile.String())
686 sabiLock.Unlock()
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800687
688 implicits := android.Paths{soFile}
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800689 symbolFilterStr := "-so " + soFile.String()
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800690
691 if symbolFile.Valid() {
692 implicits = append(implicits, symbolFile.Path())
693 symbolFilterStr += " -v " + symbolFile.String()
694 }
695 for _, ver := range excludedSymbolVersions {
696 symbolFilterStr += " --exclude-symbol-version " + ver
697 }
698 for _, tag := range excludedSymbolTags {
699 symbolFilterStr += " --exclude-symbol-tag " + tag
700 }
Colin Crossae887032017-10-23 17:16:14 -0700701 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700702 Rule: sAbiLink,
703 Description: "header-abi-linker " + outputFile.Base(),
704 Output: outputFile,
705 Inputs: sAbiDumps,
Logan Chiene3d7a0d2019-01-17 00:18:02 +0800706 Implicits: implicits,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800707 Args: map[string]string{
Jayant Chowdharydf344d52018-01-17 11:11:42 -0800708 "symbolFilter": symbolFilterStr,
709 "arch": ctx.Arch().ArchType.Name,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800710 "exportedHeaderFlags": exportedHeaderFlags,
711 },
712 })
713 return android.OptionalPathForPath(outputFile)
714}
715
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700716func UnzipRefDump(ctx android.ModuleContext, zippedRefDump android.Path, baseName string) android.Path {
717 outputFile := android.PathForModuleOut(ctx, baseName+"_ref.lsdump")
Colin Crossae887032017-10-23 17:16:14 -0700718 ctx.Build(pctx, android.BuildParams{
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700719 Rule: unzipRefSAbiDump,
720 Description: "gunzip" + outputFile.Base(),
721 Output: outputFile,
722 Input: zippedRefDump,
723 })
724 return outputFile
725}
726
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800727func SourceAbiDiff(ctx android.ModuleContext, inputDump android.Path, referenceDump android.Path,
Logan Chien62f1f942019-02-18 15:40:42 +0800728 baseName, exportedHeaderFlags string, isLlndk, isNdk, isVndkExt bool) android.OptionalPath {
Logan Chienf3511742017-10-31 18:04:35 +0800729
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800730 outputFile := android.PathForModuleOut(ctx, baseName+".abidiff")
Jayant Chowdharyc7434e22018-05-31 15:42:26 -0700731 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
Logan Chien6227fed2019-02-18 13:12:21 +0800732 createReferenceDumpFlags := ""
733
Jayant Chowdharye4499502018-01-17 13:13:33 -0800734 localAbiCheckAllowFlags := append([]string(nil), abiCheckAllowFlags...)
735 if exportedHeaderFlags == "" {
736 localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-advice-only")
737 }
Logan Chien62f1f942019-02-18 15:40:42 +0800738 if isLlndk || isNdk {
Logan Chien6227fed2019-02-18 13:12:21 +0800739 createReferenceDumpFlags = "--llndk"
Logan Chien62f1f942019-02-18 15:40:42 +0800740 if isLlndk {
741 // TODO(b/130324828): "-consider-opaque-types-different" should apply to
742 // both LLNDK and NDK shared libs. However, a known issue in header-abi-diff
743 // breaks libaaudio. Remove the if-guard after the issue is fixed.
744 localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-consider-opaque-types-different")
745 }
Jayant Chowdharyc7434e22018-05-31 15:42:26 -0700746 }
Logan Chienf3511742017-10-31 18:04:35 +0800747 if isVndkExt {
748 localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-allow-extensions")
749 }
750
Colin Crossae887032017-10-23 17:16:14 -0700751 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700752 Rule: sAbiDiff,
753 Description: "header-abi-diff " + outputFile.Base(),
754 Output: outputFile,
755 Input: inputDump,
756 Implicit: referenceDump,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800757 Args: map[string]string{
Logan Chien6227fed2019-02-18 13:12:21 +0800758 "referenceDump": referenceDump.String(),
759 "libName": libName,
760 "arch": ctx.Arch().ArchType.Name,
761 "allowFlags": strings.Join(localAbiCheckAllowFlags, " "),
762 "createReferenceDumpFlags": createReferenceDumpFlags,
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800763 },
764 })
765 return android.OptionalPathForPath(outputFile)
766}
767
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700768// Generate a rule for extracting a table of contents from a shared library (.so)
769func TransformSharedObjectToToc(ctx android.ModuleContext, inputFile android.Path,
Colin Cross26c34ed2016-09-30 17:10:16 -0700770 outputFile android.WritablePath, flags builderFlags) {
771
Colin Crossb496cfd2018-09-10 16:50:05 -0700772 var format string
773 var crossCompile string
774 if ctx.Darwin() {
775 format = "--macho"
776 crossCompile = "${config.MacToolPath}"
777 } else if ctx.Windows() {
778 format = "--pe"
779 crossCompile = gccCmd(flags.toolchain, "")
780 } else {
781 format = "--elf"
782 crossCompile = gccCmd(flags.toolchain, "")
783 }
Colin Cross26c34ed2016-09-30 17:10:16 -0700784
Colin Crossae887032017-10-23 17:16:14 -0700785 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700786 Rule: toc,
787 Description: "generate toc " + inputFile.Base(),
788 Output: outputFile,
789 Input: inputFile,
Colin Cross26c34ed2016-09-30 17:10:16 -0700790 Args: map[string]string{
791 "crossCompile": crossCompile,
Colin Crossb496cfd2018-09-10 16:50:05 -0700792 "format": format,
Colin Cross26c34ed2016-09-30 17:10:16 -0700793 },
794 })
795}
796
Colin Cross3f40fa42015-01-30 17:27:36 -0800797// Generate a rule for compiling multiple .o files to a .o using ld partial linking
Colin Cross635c3b02016-05-18 15:37:25 -0700798func TransformObjsToObj(ctx android.ModuleContext, objFiles android.Paths,
799 flags builderFlags, outputFile android.WritablePath) {
Colin Cross3f40fa42015-01-30 17:27:36 -0800800
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700801 ldCmd := "${config.ClangBin}/clang++"
Colin Cross3f40fa42015-01-30 17:27:36 -0800802
Colin Crossae887032017-10-23 17:16:14 -0700803 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700804 Rule: partialLd,
805 Description: "link " + outputFile.Base(),
806 Output: outputFile,
807 Inputs: objFiles,
Colin Cross3f40fa42015-01-30 17:27:36 -0800808 Args: map[string]string{
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700809 "ldCmd": ldCmd,
Colin Cross41280a42015-11-23 14:01:42 -0800810 "ldFlags": flags.ldFlags,
Colin Cross3f40fa42015-01-30 17:27:36 -0800811 },
812 })
813}
814
Colin Crossbfae8852015-03-26 14:44:11 -0700815// Generate a rule for runing objcopy --prefix-symbols on a binary
Colin Cross635c3b02016-05-18 15:37:25 -0700816func TransformBinaryPrefixSymbols(ctx android.ModuleContext, prefix string, inputFile android.Path,
817 flags builderFlags, outputFile android.WritablePath) {
Colin Crossbfae8852015-03-26 14:44:11 -0700818
819 objcopyCmd := gccCmd(flags.toolchain, "objcopy")
820
Colin Crossae887032017-10-23 17:16:14 -0700821 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700822 Rule: prefixSymbols,
823 Description: "prefix symbols " + outputFile.Base(),
824 Output: outputFile,
825 Input: inputFile,
Colin Crossbfae8852015-03-26 14:44:11 -0700826 Args: map[string]string{
827 "objcopyCmd": objcopyCmd,
828 "prefix": prefix,
829 },
830 })
831}
832
Colin Cross635c3b02016-05-18 15:37:25 -0700833func TransformStrip(ctx android.ModuleContext, inputFile android.Path,
834 outputFile android.WritablePath, flags builderFlags) {
Colin Cross665dce92016-04-28 14:50:03 -0700835
836 crossCompile := gccCmd(flags.toolchain, "")
837 args := ""
838 if flags.stripAddGnuDebuglink {
839 args += " --add-gnu-debuglink"
840 }
841 if flags.stripKeepMiniDebugInfo {
842 args += " --keep-mini-debug-info"
843 }
844 if flags.stripKeepSymbols {
845 args += " --keep-symbols"
846 }
Yi Kongacee27c2019-03-29 20:05:14 -0700847 if flags.stripKeepSymbolsList != "" {
848 args += " -k" + flags.stripKeepSymbolsList
849 }
Christopher Ferrisb43fe7a2019-05-17 16:39:54 -0700850 if flags.stripKeepSymbolsAndDebugFrame {
851 args += " --keep-symbols-and-debug-frame"
852 }
Yi Kongb5c34d72018-11-07 16:28:49 -0800853 if flags.stripUseGnuStrip {
854 args += " --use-gnu-strip"
Chih-Hung Hsieh30485c92018-06-04 10:37:43 -0700855 }
Colin Cross665dce92016-04-28 14:50:03 -0700856
Colin Crossae887032017-10-23 17:16:14 -0700857 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700858 Rule: strip,
859 Description: "strip " + outputFile.Base(),
860 Output: outputFile,
861 Input: inputFile,
Colin Cross665dce92016-04-28 14:50:03 -0700862 Args: map[string]string{
863 "crossCompile": crossCompile,
864 "args": args,
865 },
866 })
867}
868
Colin Cross635c3b02016-05-18 15:37:25 -0700869func TransformDarwinStrip(ctx android.ModuleContext, inputFile android.Path,
870 outputFile android.WritablePath) {
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700871
Colin Crossae887032017-10-23 17:16:14 -0700872 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700873 Rule: darwinStrip,
874 Description: "strip " + outputFile.Base(),
875 Output: outputFile,
876 Input: inputFile,
Colin Crossb8ecdfe2016-05-03 15:10:29 -0700877 })
878}
879
Dan Willemsen581341d2017-02-09 16:16:31 -0800880func TransformCoverageFilesToLib(ctx android.ModuleContext,
881 inputs Objects, flags builderFlags, baseName string) android.OptionalPath {
882
883 if len(inputs.coverageFiles) > 0 {
884 outputFile := android.PathForModuleOut(ctx, baseName+".gcnodir")
885
886 TransformObjToStaticLib(ctx, inputs.coverageFiles, flags, outputFile, nil)
887
888 return android.OptionalPathForPath(outputFile)
889 }
890
891 return android.OptionalPath{}
892}
893
Colin Crossb98c8b02016-07-29 13:44:28 -0700894func gccCmd(toolchain config.Toolchain, cmd string) string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800895 return filepath.Join(toolchain.GccRoot(), "bin", toolchain.GccTriple()+"-"+cmd)
896}
Colin Cross0af4b842015-04-30 16:36:18 -0700897
Colin Cross5b529592017-05-09 13:34:34 -0700898func splitListForSize(list android.Paths, limit int) (lists []android.Paths, err error) {
Colin Cross0af4b842015-04-30 16:36:18 -0700899 var i int
900
901 start := 0
902 bytes := 0
903 for i = range list {
Colin Cross5b529592017-05-09 13:34:34 -0700904 l := len(list[i].String())
Colin Cross0af4b842015-04-30 16:36:18 -0700905 if l > limit {
906 return nil, fmt.Errorf("list element greater than size limit (%d)", limit)
907 }
908 if bytes+l > limit {
909 lists = append(lists, list[start:i])
910 start = i
911 bytes = 0
912 }
913 bytes += l + 1 // count a space between each list element
914 }
915
916 lists = append(lists, list[start:])
917
918 totalLen := 0
919 for _, l := range lists {
920 totalLen += len(l)
921 }
922 if totalLen != len(list) {
923 panic(fmt.Errorf("Failed breaking up list, %d != %d", len(list), totalLen))
924 }
925 return lists, nil
926}