blob: e938ed7e317cd6b7fe7983cab1c962f696932300 [file] [log] [blame]
Colin Cross4d9c2d12016-07-29 12:48:20 -07001// Copyright 2016 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
17import (
18 "fmt"
19 "path/filepath"
Yi Kong950e0ba2019-10-08 02:27:17 -070020 "regexp"
Peter Collingbourneb0e61432019-07-22 16:36:06 -070021 "strconv"
Colin Cross4d9c2d12016-07-29 12:48:20 -070022 "strings"
23
Colin Cross4b963f82016-09-29 14:06:02 -070024 "github.com/google/blueprint/proptools"
25
Colin Cross4d9c2d12016-07-29 12:48:20 -070026 "android/soong/android"
Colin Crossb98c8b02016-07-29 13:44:28 -070027 "android/soong/cc/config"
Colin Cross4d9c2d12016-07-29 12:48:20 -070028)
29
Ivan Lozanod094d402019-11-26 10:32:50 -080030var (
31 allowedManualInterfacePaths = []string{"vendor/", "hardware/"}
32)
33
Colin Cross4d9c2d12016-07-29 12:48:20 -070034// This file contains the basic C/C++/assembly to .o compliation steps
35
36type BaseCompilerProperties struct {
37 // list of source files used to compile the C/C++ module. May be .c, .cpp, or .S files.
Colin Cross068e0fe2016-12-13 15:23:47 -080038 // srcs may reference the outputs of other modules that produce source files like genrule
39 // or filegroup using the syntax ":module".
Colin Cross27b922f2019-03-04 22:35:41 -080040 Srcs []string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070041
42 // list of source files that should not be used to build the C/C++ module.
43 // This is most useful in the arch/multilib variants to remove non-common files
Colin Cross27b922f2019-03-04 22:35:41 -080044 Exclude_srcs []string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070045
46 // list of module-specific flags that will be used for C and C++ compiles.
47 Cflags []string `android:"arch_variant"`
48
49 // list of module-specific flags that will be used for C++ compiles
50 Cppflags []string `android:"arch_variant"`
51
52 // list of module-specific flags that will be used for C compiles
53 Conlyflags []string `android:"arch_variant"`
54
55 // list of module-specific flags that will be used for .S compiles
56 Asflags []string `android:"arch_variant"`
57
58 // list of module-specific flags that will be used for C and C++ compiles when
59 // compiling with clang
60 Clang_cflags []string `android:"arch_variant"`
61
62 // list of module-specific flags that will be used for .S compiles when
63 // compiling with clang
64 Clang_asflags []string `android:"arch_variant"`
65
Colin Cross4d9c2d12016-07-29 12:48:20 -070066 // the instruction set architecture to use to compile the C/C++
67 // module.
Dan Willemsen5922f3c2017-10-25 15:20:50 -070068 Instruction_set *string `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070069
70 // list of directories relative to the root of the source tree that will
71 // be added to the include path using -I.
72 // If possible, don't use this. If adding paths from the current directory use
73 // local_include_dirs, if adding paths from other modules use export_include_dirs in
74 // that module.
Colin Crossccf01e72017-04-26 17:01:07 -070075 Include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070076
77 // list of directories relative to the Blueprints file that will
78 // be added to the include path using -I
Dan Willemsen59339a22018-07-22 21:18:45 -070079 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070080
Dan Albert899c23e2018-12-06 11:04:03 -080081 // Add the directory containing the Android.bp file to the list of include
82 // directories. Defaults to true.
83 Include_build_directory *bool
84
Colin Cross4d9c2d12016-07-29 12:48:20 -070085 // list of generated sources to compile. These are the names of gensrcs or
86 // genrule modules.
87 Generated_sources []string `android:"arch_variant"`
88
Jooyung Hanac07f882020-07-05 03:54:35 +090089 // list of generated sources that should not be used to build the C/C++ module.
90 // This is most useful in the arch/multilib variants to remove non-common files
91 Exclude_generated_sources []string `android:"arch_variant"`
92
Colin Cross4d9c2d12016-07-29 12:48:20 -070093 // list of generated headers to add to the include path. These are the names
94 // of genrule modules.
95 Generated_headers []string `android:"arch_variant"`
96
97 // pass -frtti instead of -fno-rtti
98 Rtti *bool
99
Dan Albert043833c2017-02-03 16:13:38 -0800100 // C standard version to use. Can be a specific version (such as "gnu11"),
101 // "experimental" (which will use draft versions like C1x when available),
102 // or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800103 C_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800104
105 // C++ standard version to use. Can be a specific version (such as
106 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
107 // available), or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800108 Cpp_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800109
Colin Cross948f0cb2016-10-17 14:24:56 -0700110 // if set to false, use -std=c++* instead of -std=gnu++*
111 Gnu_extensions *bool
112
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700113 Yacc *YaccProperties
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200114 Lex *LexProperties
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700115
Dan Willemsene1240db2016-11-03 14:28:51 -0700116 Aidl struct {
117 // list of directories that will be added to the aidl include paths.
118 Include_dirs []string
119
120 // list of directories relative to the Blueprints file that will
121 // be added to the aidl include paths.
122 Local_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100123
124 // whether to generate traces (for systrace) for this interface
125 Generate_traces *bool
Dan Willemsene1240db2016-11-03 14:28:51 -0700126 }
127
Colin Cross2a252be2017-05-01 17:37:24 -0700128 Renderscript struct {
129 // list of directories that will be added to the llvm-rs-cc include paths
130 Include_dirs []string
131
132 // list of flags that will be passed to llvm-rs-cc
133 Flags []string
134
135 // Renderscript API level to target
136 Target_api *string
137 }
138
Colin Cross4d9c2d12016-07-29 12:48:20 -0700139 Debug, Release struct {
140 // list of module-specific flags that will be used for C and C++ compiles in debug or
141 // release builds
142 Cflags []string `android:"arch_variant"`
143 } `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700144
145 Target struct {
146 Vendor struct {
147 // list of source files that should only be used in the
148 // vendor variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800149 Srcs []string `android:"path"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700150
151 // list of source files that should not be used to
152 // build the vendor variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800153 Exclude_srcs []string `android:"path"`
Jiyong Parka622de82017-08-10 13:33:27 +0900154
155 // List of additional cflags that should be used to build the vendor
156 // variant of the C/C++ module.
157 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900158
159 // list of generated sources that should not be used to
160 // build the vendor variant of the C/C++ module.
161 Exclude_generated_sources []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700162 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900163 Recovery struct {
164 // list of source files that should only be used in the
165 // recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800166 Srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900167
168 // list of source files that should not be used to
169 // build the recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800170 Exclude_srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900171
172 // List of additional cflags that should be used to build the recovery
173 // variant of the C/C++ module.
174 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900175
176 // list of generated sources that should not be used to
177 // build the recovery variant of the C/C++ module.
178 Exclude_generated_sources []string
Jiyong Parkf9332f12018-02-01 00:54:12 +0900179 }
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700180 }
Colin Cross10d22312017-05-03 11:01:58 -0700181
Colin Cross38f794e2017-09-07 10:53:07 -0700182 Proto struct {
183 // Link statically against the protobuf runtime
Nan Zhang0007d812017-11-07 10:57:05 -0800184 Static *bool `android:"arch_variant"`
Colin Cross38f794e2017-09-07 10:53:07 -0700185 } `android:"arch_variant"`
186
Colin Cross10d22312017-05-03 11:01:58 -0700187 // Stores the original list of source files before being cleared by library reuse
188 OriginalSrcs []string `blueprint:"mutated"`
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800189
190 // Build and link with OpenMP
191 Openmp *bool `android:"arch_variant"`
Jooyung Hanc87a0592020-03-02 17:44:33 +0900192
193 // Adds __ANDROID_APEX_<APEX_MODULE_NAME>__ macro defined for apex variants in addition to __ANDROID_APEX__
194 Use_apex_name_macro *bool
Colin Cross4d9c2d12016-07-29 12:48:20 -0700195}
196
Colin Crossb916a382016-07-29 17:28:03 -0700197func NewBaseCompiler() *baseCompiler {
198 return &baseCompiler{}
199}
200
Colin Cross4d9c2d12016-07-29 12:48:20 -0700201type baseCompiler struct {
202 Properties BaseCompilerProperties
Colin Cross38f794e2017-09-07 10:53:07 -0700203 Proto android.ProtoProperties
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800204 cFlagsDeps android.Paths
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800205 pathDeps android.Paths
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800206 flags builderFlags
Colin Crossf18e1102017-11-16 14:33:08 -0800207
208 // Sources that were passed to the C/C++ compiler
209 srcs android.Paths
210
211 // Sources that were passed in the Android.bp file, including generated sources generated by
212 // other modules and filegroups. May include source files that have not yet been translated to
213 // C/C++ (.aidl, .proto, etc.)
214 srcsBeforeGen android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700215}
216
217var _ compiler = (*baseCompiler)(nil)
218
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800219type CompiledInterface interface {
220 Srcs() android.Paths
221}
222
223func (compiler *baseCompiler) Srcs() android.Paths {
Nan Zhange42777a2018-03-27 16:19:42 -0700224 return append(android.Paths{}, compiler.srcs...)
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800225}
226
Colin Cross4d9c2d12016-07-29 12:48:20 -0700227func (compiler *baseCompiler) appendCflags(flags []string) {
228 compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...)
229}
230
231func (compiler *baseCompiler) appendAsflags(flags []string) {
232 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
233}
234
Colin Cross42742b82016-08-01 13:20:05 -0700235func (compiler *baseCompiler) compilerProps() []interface{} {
Colin Cross0feb1692016-11-03 14:38:52 -0700236 return []interface{}{&compiler.Properties, &compiler.Proto}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700237}
238
Colin Cross42742b82016-08-01 13:20:05 -0700239func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700240
Colin Cross37047f12016-12-13 17:06:13 -0800241func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700242 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
Jooyung Hanac07f882020-07-05 03:54:35 +0900243 deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700244 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
245
Colin Crossfe17f6f2019-03-28 19:30:56 -0700246 android.ProtoDeps(ctx, &compiler.Proto)
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700247 if compiler.hasSrcExt(".proto") {
Nan Zhang0007d812017-11-07 10:57:05 -0800248 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
Colin Cross0c461f12016-10-20 16:11:43 -0700249 }
250
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800251 if Bool(compiler.Properties.Openmp) {
252 deps.StaticLibs = append(deps.StaticLibs, "libomp")
253 }
254
Colin Cross4d9c2d12016-07-29 12:48:20 -0700255 return deps
256}
257
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800258// Return true if the module is in the WarningAllowedProjects.
259func warningsAreAllowed(subdir string) bool {
260 subdir += "/"
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800261 return android.HasAnyPrefix(subdir, config.WarningAllowedProjects)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800262}
263
Colin Cross571cccf2019-02-04 11:22:08 -0800264func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
265 getNamedMapForConfig(ctx.Config(), key).Store(module, true)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800266}
267
Colin Cross4d9c2d12016-07-29 12:48:20 -0700268// Create a Flags struct that collects the compile flags from global values,
269// per-target values, module type values, and per-module Blueprints properties
Colin Crossf18e1102017-11-16 14:33:08 -0800270func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Colin Crossb98c8b02016-07-29 13:44:28 -0700271 tc := ctx.toolchain()
Yi Kong950e0ba2019-10-08 02:27:17 -0700272 modulePath := android.PathForModuleSrc(ctx).String()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700273
Colin Cross8a497952019-03-05 22:25:09 -0800274 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
Colin Crossf18e1102017-11-16 14:33:08 -0800275 compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
276
Colin Cross4d9c2d12016-07-29 12:48:20 -0700277 CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags)
278 CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
279 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
280 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900281 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
282 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700283
Colin Cross0b9f31f2019-02-28 11:00:01 -0800284 esc := proptools.NinjaAndShellEscapeList
Colin Cross4b963f82016-09-29 14:06:02 -0700285
Colin Cross4af21ed2019-11-04 09:37:55 -0800286 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Cflags)...)
287 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...)
288 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
289 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
290 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700291
292 flags.Yacc = compiler.Properties.Yacc
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200293 flags.Lex = compiler.Properties.Lex
Colin Cross4d9c2d12016-07-29 12:48:20 -0700294
295 // Include dir cflags
Colin Cross4d9c2d12016-07-29 12:48:20 -0700296 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700297 if len(localIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700298 f := includeDirsToFlags(localIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800299 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
300 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700301 }
302 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
303 if len(rootIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700304 f := includeDirsToFlags(rootIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800305 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
306 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700307 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700308
Dan Albert899c23e2018-12-06 11:04:03 -0800309 if compiler.Properties.Include_build_directory == nil ||
310 *compiler.Properties.Include_build_directory {
Yi Kong950e0ba2019-10-08 02:27:17 -0700311 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath)
312 flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath)
Dan Albert899c23e2018-12-06 11:04:03 -0800313 }
Colin Crossc3199482017-03-30 15:03:04 -0700314
Colin Cross87dd9632017-11-03 13:31:05 -0700315 if !(ctx.useSdk() || ctx.useVndk()) || ctx.Host() {
316 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
317 "${config.CommonGlobalIncludes}",
Orion Hodson5cffce12020-05-27 12:47:32 +0000318 tc.IncludeFlags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700319 }
320
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700321 if ctx.useSdk() {
Dan Albertfac114b2018-11-14 21:22:00 -0800322 // TODO: Switch to --sysroot.
Colin Cross4d9c2d12016-07-29 12:48:20 -0700323 // The NDK headers are installed to a common sysroot. While a more
324 // typical Soong approach would be to only make the headers for the
325 // library you're using available, we're trying to emulate the NDK
326 // behavior here, and the NDK always has all the NDK headers available.
Colin Crossc3199482017-03-30 15:03:04 -0700327 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700328 "-isystem "+getCurrentIncludePath(ctx).String(),
Chih-Hung Hsieh1e7d1bf2018-03-15 18:44:57 -0700329 "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700330 }
331
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700332 if ctx.useVndk() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800333 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__")
Dan Willemsenb916b802017-03-19 13:44:32 -0700334 }
335
Jiyong Parkd54aee52018-06-09 01:32:54 +0900336 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800337 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__")
Jiyong Parkd54aee52018-06-09 01:32:54 +0900338 }
339
Colin Crosse07f2312020-08-13 11:24:56 -0700340 if ctx.apexVariationName() != "" {
Jooyung Hanc87a0592020-03-02 17:44:33 +0900341 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__")
342 if Bool(compiler.Properties.Use_apex_name_macro) {
Colin Crosse07f2312020-08-13 11:24:56 -0700343 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX_"+makeDefineString(ctx.apexVariationName())+"__")
Jooyung Hanc87a0592020-03-02 17:44:33 +0900344 }
Jooyung Han24282772020-03-21 23:20:55 +0900345 if ctx.Device() {
346 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_SDK_VERSION__="+strconv.Itoa(ctx.apexSdkVersion()))
347 }
Jiyong Park58e364a2019-01-19 19:24:06 +0900348 }
349
Nan Zhang0007d812017-11-07 10:57:05 -0800350 instructionSet := String(compiler.Properties.Instruction_set)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700351 if flags.RequiredInstructionSet != "" {
352 instructionSet = flags.RequiredInstructionSet
353 }
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700354 instructionSetFlags, err := tc.ClangInstructionSetFlags(instructionSet)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700355 if err != nil {
356 ctx.ModuleErrorf("%s", err)
357 }
358
359 CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags)
360
361 // TODO: debug
Colin Cross4af21ed2019-11-04 09:37:55 -0800362 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Release.Cflags)...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700363
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700364 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
365 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700366
Colin Cross4af21ed2019-11-04 09:37:55 -0800367 flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags)
368 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
369 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
370 flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags)
371 flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags)
372 flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700373
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700374 target := "-target " + tc.ClangTriple()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700375 if ctx.Os().Class == android.Device {
376 version := ctx.sdkVersion()
377 if version == "" || version == "current" {
378 target += strconv.Itoa(android.FutureApiLevel)
379 } else {
380 target += version
381 }
382 }
383
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700384 gccPrefix := "-B" + config.ToolPath(tc)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700385
Colin Cross4af21ed2019-11-04 09:37:55 -0800386 flags.Global.CFlags = append(flags.Global.CFlags, target, gccPrefix)
387 flags.Global.AsFlags = append(flags.Global.AsFlags, target, gccPrefix)
388 flags.Global.LdFlags = append(flags.Global.LdFlags, target, gccPrefix)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700389
Colin Crossb98c8b02016-07-29 13:44:28 -0700390 hod := "Host"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700391 if ctx.Os().Class == android.Device {
Colin Crossb98c8b02016-07-29 13:44:28 -0700392 hod = "Device"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700393 }
394
Colin Cross4af21ed2019-11-04 09:37:55 -0800395 flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags)
396 flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...)
397 flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700398
Colin Cross4af21ed2019-11-04 09:37:55 -0800399 flags.Global.AsFlags = append(flags.Global.AsFlags, tc.ClangAsflags())
400 flags.Global.CppFlags = append([]string{"${config.CommonClangGlobalCppflags}"}, flags.Global.CppFlags...)
401 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700402 tc.ClangCflags(),
403 "${config.CommonClangGlobalCflags}",
404 fmt.Sprintf("${config.%sClangGlobalCflags}", hod))
Colin Cross4d9c2d12016-07-29 12:48:20 -0700405
Yi Kong950e0ba2019-10-08 02:27:17 -0700406 if isThirdParty(modulePath) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800407 flags.Global.CommonFlags = append([]string{"${config.ClangExternalCflags}"}, flags.Global.CommonFlags...)
Yi Kongcc80f8d2018-06-06 14:42:44 -0700408 }
409
Dan Willemsen10db3842018-10-21 18:42:46 -0700410 if tc.Bionic() {
Colin Cross87dd9632017-11-03 13:31:05 -0700411 if Bool(compiler.Properties.Rtti) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800412 flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700413 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800414 flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700415 }
416 }
417
Colin Cross4af21ed2019-11-04 09:37:55 -0800418 flags.Global.AsFlags = append(flags.Global.AsFlags, "-D__ASSEMBLY__")
Colin Cross87dd9632017-11-03 13:31:05 -0700419
Colin Cross4af21ed2019-11-04 09:37:55 -0800420 flags.Global.CppFlags = append(flags.Global.CppFlags, tc.ClangCppflags())
Colin Cross87dd9632017-11-03 13:31:05 -0700421
Colin Cross4af21ed2019-11-04 09:37:55 -0800422 flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
Colin Cross87dd9632017-11-03 13:31:05 -0700423
Colin Cross4af21ed2019-11-04 09:37:55 -0800424 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainClangCflags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700425
Elliott Hughes5789ca92018-02-16 17:15:19 -0800426 cStd := config.CStdVersion
427 if String(compiler.Properties.C_std) == "experimental" {
428 cStd = config.ExperimentalCStdVersion
429 } else if String(compiler.Properties.C_std) != "" {
430 cStd = String(compiler.Properties.C_std)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700431 }
432
Elliott Hughes5789ca92018-02-16 17:15:19 -0800433 cppStd := String(compiler.Properties.Cpp_std)
434 switch String(compiler.Properties.Cpp_std) {
435 case "":
436 cppStd = config.CppStdVersion
437 case "experimental":
438 cppStd = config.ExperimentalCppStdVersion
Elliott Hughes5789ca92018-02-16 17:15:19 -0800439 }
440
Elliott Hughes5789ca92018-02-16 17:15:19 -0800441 if compiler.Properties.Gnu_extensions != nil && *compiler.Properties.Gnu_extensions == false {
442 cStd = gnuToCReplacer.Replace(cStd)
443 cppStd = gnuToCReplacer.Replace(cppStd)
444 }
445
Colin Cross4af21ed2019-11-04 09:37:55 -0800446 flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...)
447 flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800448
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700449 if ctx.useVndk() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800450 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
Jiyong Parka622de82017-08-10 13:33:27 +0900451 }
452
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900453 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800454 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900455 }
456
Colin Cross4d9c2d12016-07-29 12:48:20 -0700457 // We can enforce some rules more strictly in the code we own. strict
458 // indicates if this is code that we can be stricter with. If we have
459 // rules that we want to apply to *our* code (but maybe can't for
460 // vendor/device specific things), we could extend this to be a ternary
461 // value.
462 strict := true
Yi Kong950e0ba2019-10-08 02:27:17 -0700463 if strings.HasPrefix(modulePath, "external/") {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700464 strict = false
465 }
466
467 // Can be used to make some annotations stricter for code we can fix
468 // (such as when we mark functions as deprecated).
469 if strict {
Colin Cross4af21ed2019-11-04 09:37:55 -0800470 flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700471 }
472
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700473 if compiler.hasSrcExt(".proto") {
Colin Cross0c461f12016-10-20 16:11:43 -0700474 flags = protoFlags(ctx, flags, &compiler.Proto)
475 }
476
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700477 if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800478 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700479 "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
480 }
481
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700482 if compiler.hasSrcExt(".mc") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800483 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700484 "-I"+android.PathForModuleGen(ctx, "windmc", ctx.ModuleDir()).String())
485 }
486
Dan Willemsene1240db2016-11-03 14:28:51 -0700487 if compiler.hasSrcExt(".aidl") {
488 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
489 localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
490 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
491 }
492 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
493 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
494 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
495 }
496
Martijn Coeneneab15642018-03-09 09:29:59 +0100497 if Bool(compiler.Properties.Aidl.Generate_traces) {
498 flags.aidlFlags = append(flags.aidlFlags, "-t")
499 }
500
Colin Cross4af21ed2019-11-04 09:37:55 -0800501 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1240db2016-11-03 14:28:51 -0700502 "-I"+android.PathForModuleGen(ctx, "aidl").String())
503 }
504
Jeff Vander Stoepd6126272019-07-15 19:08:37 -0700505 if compiler.hasSrcExt(".rscript") || compiler.hasSrcExt(".fs") {
Colin Cross2a252be2017-05-01 17:37:24 -0700506 flags = rsFlags(ctx, flags, &compiler.Properties)
507 }
508
Inseob Kim21f26902018-09-06 00:55:20 +0900509 if compiler.hasSrcExt(".sysprop") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800510 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Inseob Kim21f26902018-09-06 00:55:20 +0900511 "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
512 }
513
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800514 if len(compiler.Properties.Srcs) > 0 {
515 module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
Colin Cross4af21ed2019-11-04 09:37:55 -0800516 if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) {
Colin Cross571cccf2019-02-04 11:22:08 -0800517 addToModuleList(ctx, modulesUsingWnoErrorKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800518 } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800519 if warningsAreAllowed(ctx.ModuleDir()) {
Colin Cross571cccf2019-02-04 11:22:08 -0800520 addToModuleList(ctx, modulesAddedWallKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800521 flags.Local.CFlags = append([]string{"-Wall"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800522 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800523 flags.Local.CFlags = append([]string{"-Wall", "-Werror"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800524 }
525 }
526 }
527
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800528 if Bool(compiler.Properties.Openmp) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800529 flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp")
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800530 }
531
Colin Cross440e0d02020-06-11 11:32:11 -0700532 // Exclude directories from manual binder interface allowed list.
Ivan Lozanod094d402019-11-26 10:32:50 -0800533 //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800534 if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) {
Ivan Lozanod094d402019-11-26 10:32:50 -0800535 flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES")
536 }
537
Colin Cross4d9c2d12016-07-29 12:48:20 -0700538 return flags
539}
540
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700541func (compiler *baseCompiler) hasSrcExt(ext string) bool {
Colin Crossf18e1102017-11-16 14:33:08 -0800542 for _, src := range compiler.srcsBeforeGen {
543 if src.Ext() == ext {
544 return true
545 }
546 }
Colin Cross0c461f12016-10-20 16:11:43 -0700547 for _, src := range compiler.Properties.Srcs {
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700548 if filepath.Ext(src) == ext {
Colin Cross0c461f12016-10-20 16:11:43 -0700549 return true
550 }
551 }
Colin Cross10d22312017-05-03 11:01:58 -0700552 for _, src := range compiler.Properties.OriginalSrcs {
553 if filepath.Ext(src) == ext {
554 return true
555 }
556 }
Colin Cross0c461f12016-10-20 16:11:43 -0700557
558 return false
559}
560
Colin Crossaede88c2020-08-11 12:17:01 -0700561func (compiler *baseCompiler) uniqueApexVariations() bool {
562 return Bool(compiler.Properties.Use_apex_name_macro)
563}
564
Jooyung Han77988572019-10-18 16:26:16 +0900565// makeDefineString transforms a name of an APEX module into a value to be used as value for C define
566// For example, com.android.foo => COM_ANDROID_FOO
567func makeDefineString(name string) string {
568 return strings.ReplaceAll(strings.ToUpper(name), ".", "_")
569}
570
Colin Cross948f0cb2016-10-17 14:24:56 -0700571var gnuToCReplacer = strings.NewReplacer("gnu", "c")
572
Colin Cross4d9c2d12016-07-29 12:48:20 -0700573func ndkPathDeps(ctx ModuleContext) android.Paths {
Dan Albert92fe7402020-07-15 13:33:30 -0700574 if ctx.Module().(*Module).IsSdkVariant() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700575 // The NDK sysroot timestamp file depends on all the NDK sysroot files
576 // (headers and libraries).
Dan Albert6ab43d82017-12-13 15:05:04 -0800577 return android.Paths{getNdkBaseTimestampFile(ctx)}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700578 }
579 return nil
580}
581
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700582func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Inseob Kimd110f872019-12-06 13:15:38 +0900583 pathDeps := deps.GeneratedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700584 pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
Colin Cross2f336352016-10-26 10:03:47 -0700585
Colin Cross2f336352016-10-26 10:03:47 -0700586 buildFlags := flagsToBuilderFlags(flags)
587
Colin Crossf18e1102017-11-16 14:33:08 -0800588 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
589
David Sudd18efd2020-07-24 17:19:23 +0000590 srcs, genDeps := genSources(ctx, srcs, buildFlags)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800591 pathDeps = append(pathDeps, genDeps...)
Colin Cross2f336352016-10-26 10:03:47 -0700592
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800593 compiler.pathDeps = pathDeps
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800594 compiler.cFlagsDeps = flags.CFlagsDeps
Colin Cross2f336352016-10-26 10:03:47 -0700595
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800596 // Save src, buildFlags and context
597 compiler.srcs = srcs
598
Colin Cross4d9c2d12016-07-29 12:48:20 -0700599 // Compile files listed in c.Properties.Srcs into objects
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800600 objs := compileObjs(ctx, buildFlags, "", srcs, pathDeps, compiler.cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700601
602 if ctx.Failed() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700603 return Objects{}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700604 }
605
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700606 return objs
Colin Cross4d9c2d12016-07-29 12:48:20 -0700607}
608
609// Compile a list of source files into objects a specified subdirectory
Colin Cross2f336352016-10-26 10:03:47 -0700610func compileObjs(ctx android.ModuleContext, flags builderFlags,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800611 subdir string, srcFiles, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700612
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800613 return TransformSourceToObj(ctx, subdir, srcFiles, flags, pathDeps, cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700614}
Yi Kong950e0ba2019-10-08 02:27:17 -0700615
616var thirdPartyDirPrefixExceptions = []*regexp.Regexp{
617 regexp.MustCompile("^vendor/[^/]*google[^/]*/"),
618 regexp.MustCompile("^hardware/google/"),
619 regexp.MustCompile("^hardware/interfaces/"),
620 regexp.MustCompile("^hardware/libhardware[^/]*/"),
621 regexp.MustCompile("^hardware/ril/"),
622}
623
624func isThirdParty(path string) bool {
625 thirdPartyDirPrefixes := []string{"external/", "vendor/", "hardware/"}
626
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800627 if android.HasAnyPrefix(path, thirdPartyDirPrefixes) {
628 for _, prefix := range thirdPartyDirPrefixExceptions {
629 if prefix.MatchString(path) {
630 return false
Yi Kong950e0ba2019-10-08 02:27:17 -0700631 }
Yi Kong950e0ba2019-10-08 02:27:17 -0700632 }
633 }
Yi Kong950e0ba2019-10-08 02:27:17 -0700634 return true
635}