blob: b0389560bdaa719057367fdad54a267d907c87fb [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
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Cross3f40fa42015-01-30 17:27:36 -080016
17import (
Colin Cross74ba9622019-02-11 15:11:14 -080018 "encoding"
Colin Cross3f40fa42015-01-30 17:27:36 -080019 "fmt"
20 "reflect"
21 "runtime"
Colin Cross74ba9622019-02-11 15:11:14 -080022 "strconv"
Colin Cross3f40fa42015-01-30 17:27:36 -080023 "strings"
Colin Crossf6566ed2015-03-24 11:13:38 -070024
Colin Crossf6566ed2015-03-24 11:13:38 -070025 "github.com/google/blueprint/proptools"
Colin Cross3f40fa42015-01-30 17:27:36 -080026)
27
28var (
Dan Willemsenb1957a52016-06-23 23:44:54 -070029 archTypeList []ArchType
30
Colin Crossec193632015-07-06 17:49:43 -070031 Arm = newArch("arm", "lib32")
32 Arm64 = newArch("arm64", "lib64")
33 Mips = newArch("mips", "lib32")
34 Mips64 = newArch("mips64", "lib64")
35 X86 = newArch("x86", "lib32")
36 X86_64 = newArch("x86_64", "lib64")
Colin Cross2fe66872015-03-30 17:20:39 -070037
38 Common = ArchType{
39 Name: "common",
40 }
Colin Cross3f40fa42015-01-30 17:27:36 -080041)
42
Colin Cross4225f652015-09-17 14:33:42 -070043var archTypeMap = map[string]ArchType{
44 "arm": Arm,
45 "arm64": Arm64,
46 "mips": Mips,
Colin Cross3b336c22015-11-23 16:28:31 -080047 "mips64": Mips64,
Colin Cross4225f652015-09-17 14:33:42 -070048 "x86": X86,
49 "x86_64": X86_64,
50}
51
Colin Cross3f40fa42015-01-30 17:27:36 -080052/*
53Example blueprints file containing all variant property groups, with comment listing what type
54of variants get properties in that group:
55
56module {
57 arch: {
58 arm: {
59 // Host or device variants with arm architecture
60 },
61 arm64: {
62 // Host or device variants with arm64 architecture
63 },
64 mips: {
65 // Host or device variants with mips architecture
66 },
67 mips64: {
68 // Host or device variants with mips64 architecture
69 },
70 x86: {
71 // Host or device variants with x86 architecture
72 },
73 x86_64: {
74 // Host or device variants with x86_64 architecture
75 },
76 },
77 multilib: {
78 lib32: {
79 // Host or device variants for 32-bit architectures
80 },
81 lib64: {
82 // Host or device variants for 64-bit architectures
83 },
84 },
85 target: {
86 android: {
87 // Device variants
88 },
89 host: {
90 // Host variants
91 },
Dan Willemsen5746bd42017-10-02 19:42:01 -070092 linux_glibc: {
Colin Cross3f40fa42015-01-30 17:27:36 -080093 // Linux host variants
94 },
95 darwin: {
96 // Darwin host variants
97 },
98 windows: {
99 // Windows host variants
100 },
101 not_windows: {
102 // Non-windows host variants
103 },
104 },
105}
106*/
Colin Cross7d5136f2015-05-11 13:39:40 -0700107
Jaewoong Junge46114c2019-01-16 14:33:13 -0800108var archVariants = map[ArchType][]string{
109 Arm: {
Dan Albert8818f492019-02-19 13:53:01 -0800110 "armv7-a",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800111 "armv7-a-neon",
112 "armv8-a",
113 "armv8-2a",
114 "cortex-a7",
115 "cortex-a8",
116 "cortex-a9",
117 "cortex-a15",
118 "cortex-a53",
119 "cortex-a53-a57",
120 "cortex-a55",
121 "cortex-a72",
122 "cortex-a73",
123 "cortex-a75",
124 "cortex-a76",
125 "krait",
126 "kryo",
127 "kryo385",
128 "exynos-m1",
129 "exynos-m2",
130 },
131 Arm64: {
132 "armv8_a",
133 "armv8_2a",
134 "cortex-a53",
135 "cortex-a55",
136 "cortex-a72",
137 "cortex-a73",
138 "cortex-a75",
139 "cortex-a76",
140 "kryo",
141 "kryo385",
142 "exynos-m1",
143 "exynos-m2",
144 },
145 Mips: {
146 "mips32_fp",
147 "mips32r2_fp",
148 "mips32r2_fp_xburst",
149 "mips32r2dsp_fp",
150 "mips32r2dspr2_fp",
151 "mips32r6",
152 },
153 Mips64: {
154 "mips64r2",
155 "mips64r6",
156 },
157 X86: {
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530158 "amberlake",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800159 "atom",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530160 "broadwell",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800161 "haswell",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530162 "icelake",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800163 "ivybridge",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530164 "kabylake",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800165 "sandybridge",
166 "silvermont",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530167 "skylake",
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -0700168 "stoneyridge",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530169 "tigerlake",
170 "whiskeylake",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800171 "x86_64",
172 },
173 X86_64: {
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530174 "amberlake",
175 "broadwell",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800176 "haswell",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530177 "icelake",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800178 "ivybridge",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530179 "kabylake",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800180 "sandybridge",
181 "silvermont",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530182 "skylake",
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -0700183 "stoneyridge",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530184 "tigerlake",
185 "whiskeylake",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800186 },
187}
188
189var archFeatures = map[ArchType][]string{
190 Arm: {
191 "neon",
192 },
193 Mips: {
194 "dspr2",
195 "rev6",
196 "msa",
197 },
198 Mips64: {
199 "rev6",
200 "msa",
201 },
202 X86: {
203 "ssse3",
204 "sse4",
205 "sse4_1",
206 "sse4_2",
207 "aes_ni",
208 "avx",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530209 "avx2",
210 "avx512",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800211 "popcnt",
212 "movbe",
213 },
214 X86_64: {
215 "ssse3",
216 "sse4",
217 "sse4_1",
218 "sse4_2",
219 "aes_ni",
220 "avx",
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530221 "avx2",
222 "avx512",
Jaewoong Junge46114c2019-01-16 14:33:13 -0800223 "popcnt",
224 },
225}
226
227var archFeatureMap = map[ArchType]map[string][]string{
228 Arm: {
229 "armv7-a-neon": {
230 "neon",
231 },
232 "armv8-a": {
233 "neon",
234 },
235 "armv8-2a": {
236 "neon",
237 },
238 },
239 Mips: {
240 "mips32r2dspr2_fp": {
241 "dspr2",
242 },
243 "mips32r6": {
244 "rev6",
245 },
246 },
247 Mips64: {
248 "mips64r6": {
249 "rev6",
250 },
251 },
252 X86: {
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530253 "amberlake": {
254 "ssse3",
255 "sse4",
256 "sse4_1",
257 "sse4_2",
258 "avx",
259 "avx2",
260 "aes_ni",
261 "popcnt",
262 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800263 "atom": {
264 "ssse3",
265 "movbe",
266 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530267 "broadwell": {
268 "ssse3",
269 "sse4",
270 "sse4_1",
271 "sse4_2",
272 "avx",
273 "avx2",
274 "aes_ni",
275 "popcnt",
276 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800277 "haswell": {
278 "ssse3",
279 "sse4",
280 "sse4_1",
281 "sse4_2",
282 "aes_ni",
283 "avx",
284 "popcnt",
285 "movbe",
286 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530287 "icelake": {
288 "ssse3",
289 "sse4",
290 "sse4_1",
291 "sse4_2",
292 "avx",
293 "avx2",
294 "avx512",
295 "aes_ni",
296 "popcnt",
297 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800298 "ivybridge": {
299 "ssse3",
300 "sse4",
301 "sse4_1",
302 "sse4_2",
303 "aes_ni",
304 "avx",
305 "popcnt",
306 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530307 "kabylake": {
308 "ssse3",
309 "sse4",
310 "sse4_1",
311 "sse4_2",
312 "avx",
313 "avx2",
314 "aes_ni",
315 "popcnt",
316 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800317 "sandybridge": {
318 "ssse3",
319 "sse4",
320 "sse4_1",
321 "sse4_2",
322 "popcnt",
323 },
324 "silvermont": {
325 "ssse3",
326 "sse4",
327 "sse4_1",
328 "sse4_2",
329 "aes_ni",
330 "popcnt",
331 "movbe",
332 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530333 "skylake": {
334 "ssse3",
335 "sse4",
336 "sse4_1",
337 "sse4_2",
338 "avx",
339 "avx2",
340 "avx512",
341 "aes_ni",
342 "popcnt",
343 },
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -0700344 "stoneyridge": {
345 "ssse3",
346 "sse4",
347 "sse4_1",
348 "sse4_2",
349 "aes_ni",
350 "avx",
351 "avx2",
352 "popcnt",
353 "movbe",
354 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530355 "tigerlake": {
356 "ssse3",
357 "sse4",
358 "sse4_1",
359 "sse4_2",
360 "avx",
361 "avx2",
362 "avx512",
363 "aes_ni",
364 "popcnt",
365 },
366 "whiskeylake": {
367 "ssse3",
368 "sse4",
369 "sse4_1",
370 "sse4_2",
371 "avx",
372 "avx2",
373 "avx512",
374 "aes_ni",
375 "popcnt",
376 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800377 "x86_64": {
378 "ssse3",
379 "sse4",
380 "sse4_1",
381 "sse4_2",
382 "popcnt",
383 },
384 },
385 X86_64: {
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530386 "amberlake": {
387 "ssse3",
388 "sse4",
389 "sse4_1",
390 "sse4_2",
391 "avx",
392 "avx2",
393 "aes_ni",
394 "popcnt",
395 },
396 "broadwell": {
397 "ssse3",
398 "sse4",
399 "sse4_1",
400 "sse4_2",
401 "avx",
402 "avx2",
403 "aes_ni",
404 "popcnt",
405 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800406 "haswell": {
407 "ssse3",
408 "sse4",
409 "sse4_1",
410 "sse4_2",
411 "aes_ni",
412 "avx",
413 "popcnt",
414 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530415 "icelake": {
416 "ssse3",
417 "sse4",
418 "sse4_1",
419 "sse4_2",
420 "avx",
421 "avx2",
422 "avx512",
423 "aes_ni",
424 "popcnt",
425 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800426 "ivybridge": {
427 "ssse3",
428 "sse4",
429 "sse4_1",
430 "sse4_2",
431 "aes_ni",
432 "avx",
433 "popcnt",
434 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530435 "kabylake": {
436 "ssse3",
437 "sse4",
438 "sse4_1",
439 "sse4_2",
440 "avx",
441 "avx2",
442 "aes_ni",
443 "popcnt",
444 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800445 "sandybridge": {
446 "ssse3",
447 "sse4",
448 "sse4_1",
449 "sse4_2",
450 "popcnt",
451 },
452 "silvermont": {
453 "ssse3",
454 "sse4",
455 "sse4_1",
456 "sse4_2",
457 "aes_ni",
458 "popcnt",
459 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530460 "skylake": {
461 "ssse3",
462 "sse4",
463 "sse4_1",
464 "sse4_2",
465 "avx",
466 "avx2",
467 "avx512",
468 "aes_ni",
469 "popcnt",
470 },
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -0700471 "stoneyridge": {
472 "ssse3",
473 "sse4",
474 "sse4_1",
475 "sse4_2",
476 "aes_ni",
477 "avx",
478 "avx2",
479 "popcnt",
480 },
Shalini Salomi Bodapati4a0459d2019-01-22 10:00:15 +0530481 "tigerlake": {
482 "ssse3",
483 "sse4",
484 "sse4_1",
485 "sse4_2",
486 "avx",
487 "avx2",
488 "avx512",
489 "aes_ni",
490 "popcnt",
491 },
492 "whiskeylake": {
493 "ssse3",
494 "sse4",
495 "sse4_1",
496 "sse4_2",
497 "avx",
498 "avx2",
499 "avx512",
500 "aes_ni",
501 "popcnt",
502 },
Jaewoong Junge46114c2019-01-16 14:33:13 -0800503 },
504}
505
Dan Willemsen01a3c252019-01-11 19:02:16 -0800506var defaultArchFeatureMap = map[OsType]map[ArchType][]string{}
Colin Crossc5c24ad2015-11-20 15:35:00 -0800507
Dan Willemsen01a3c252019-01-11 19:02:16 -0800508func RegisterDefaultArchVariantFeatures(os OsType, arch ArchType, features ...string) {
509 checkCalledFromInit()
510
511 for _, feature := range features {
512 if !InList(feature, archFeatures[arch]) {
513 panic(fmt.Errorf("Invalid feature %q for arch %q variant \"\"", feature, arch))
514 }
515 }
516
517 if defaultArchFeatureMap[os] == nil {
518 defaultArchFeatureMap[os] = make(map[ArchType][]string)
519 }
520 defaultArchFeatureMap[os][arch] = features
521}
522
Colin Cross3f40fa42015-01-30 17:27:36 -0800523// An Arch indicates a single CPU architecture.
524type Arch struct {
Colin Crossc5c24ad2015-11-20 15:35:00 -0800525 ArchType ArchType
526 ArchVariant string
527 CpuVariant string
528 Abi []string
529 ArchFeatures []string
Colin Cross3f40fa42015-01-30 17:27:36 -0800530}
531
532func (a Arch) String() string {
Colin Crossd3ba0392015-05-07 14:11:29 -0700533 s := a.ArchType.String()
Colin Cross3f40fa42015-01-30 17:27:36 -0800534 if a.ArchVariant != "" {
535 s += "_" + a.ArchVariant
536 }
537 if a.CpuVariant != "" {
538 s += "_" + a.CpuVariant
539 }
540 return s
541}
542
543type ArchType struct {
Colin Crossec193632015-07-06 17:49:43 -0700544 Name string
Dan Willemsenb1957a52016-06-23 23:44:54 -0700545 Field string
Colin Crossec193632015-07-06 17:49:43 -0700546 Multilib string
Colin Cross3f40fa42015-01-30 17:27:36 -0800547}
548
Colin Crossec193632015-07-06 17:49:43 -0700549func newArch(name, multilib string) ArchType {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700550 archType := ArchType{
Colin Crossec193632015-07-06 17:49:43 -0700551 Name: name,
Dan Willemsenb1957a52016-06-23 23:44:54 -0700552 Field: proptools.FieldNameForProperty(name),
Colin Crossec193632015-07-06 17:49:43 -0700553 Multilib: multilib,
Colin Cross3f40fa42015-01-30 17:27:36 -0800554 }
Dan Willemsenb1957a52016-06-23 23:44:54 -0700555 archTypeList = append(archTypeList, archType)
556 return archType
Colin Cross3f40fa42015-01-30 17:27:36 -0800557}
558
Jaewoong Jung1ce9ac62019-08-13 14:11:33 -0700559func ArchTypeList() []ArchType {
560 return append([]ArchType(nil), archTypeList...)
561}
562
Colin Cross3f40fa42015-01-30 17:27:36 -0800563func (a ArchType) String() string {
564 return a.Name
565}
566
Colin Cross74ba9622019-02-11 15:11:14 -0800567var _ encoding.TextMarshaler = ArchType{}
568
569func (a ArchType) MarshalText() ([]byte, error) {
570 return []byte(strconv.Quote(a.String())), nil
571}
572
573var _ encoding.TextUnmarshaler = &ArchType{}
574
575func (a *ArchType) UnmarshalText(text []byte) error {
576 if u, ok := archTypeMap[string(text)]; ok {
577 *a = u
578 return nil
579 }
580
581 return fmt.Errorf("unknown ArchType %q", text)
582}
583
Colin Crossa1ad8d12016-06-01 17:09:44 -0700584var BuildOs = func() OsType {
Dan Willemsen490fd492015-11-24 17:53:15 -0800585 switch runtime.GOOS {
586 case "linux":
587 return Linux
588 case "darwin":
589 return Darwin
590 default:
591 panic(fmt.Sprintf("unsupported OS: %s", runtime.GOOS))
592 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700593}()
594
595var (
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800596 osTypeList []OsType
597 commonTargetMap = make(map[string]Target)
Colin Crossa1ad8d12016-06-01 17:09:44 -0700598
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800599 NoOsType OsType
Dan Willemsen866b5632017-09-22 12:28:24 -0700600 Linux = NewOsType("linux_glibc", Host, false)
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800601 Darwin = NewOsType("darwin", Host, false)
Dan Willemsen9ff34c02018-10-10 17:58:19 -0700602 LinuxBionic = NewOsType("linux_bionic", Host, false)
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800603 Windows = NewOsType("windows", HostCross, true)
604 Android = NewOsType("android", Device, false)
Doug Horn21b94272019-01-16 12:06:11 -0800605 Fuchsia = NewOsType("fuchsia", Device, false)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700606
607 osArchTypeMap = map[OsType][]ArchType{
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800608 Linux: []ArchType{X86, X86_64},
609 LinuxBionic: []ArchType{X86_64},
Dan Willemsene97e68a2018-08-28 17:12:56 -0700610 Darwin: []ArchType{X86_64},
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800611 Windows: []ArchType{X86, X86_64},
612 Android: []ArchType{Arm, Arm64, Mips, Mips64, X86, X86_64},
Doug Horn21b94272019-01-16 12:06:11 -0800613 Fuchsia: []ArchType{Arm64, X86_64},
Dan Willemsenb1957a52016-06-23 23:44:54 -0700614 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700615)
616
617type OsType struct {
618 Name, Field string
619 Class OsClass
Dan Willemsen0a37a2a2016-11-13 10:16:05 -0800620
621 DefaultDisabled bool
Dan Willemsen490fd492015-11-24 17:53:15 -0800622}
623
Colin Crossa1ad8d12016-06-01 17:09:44 -0700624type OsClass int
625
626const (
Dan Willemsen0e2d97b2016-11-28 17:50:06 -0800627 Generic OsClass = iota
628 Device
Colin Crossa1ad8d12016-06-01 17:09:44 -0700629 Host
630 HostCross
631)
632
Colin Cross67a5c132017-05-09 13:45:28 -0700633func (class OsClass) String() string {
634 switch class {
635 case Generic:
636 return "generic"
637 case Device:
638 return "device"
639 case Host:
640 return "host"
641 case HostCross:
642 return "host cross"
643 default:
644 panic(fmt.Errorf("unknown class %d", class))
645 }
646}
647
Colin Crossa1ad8d12016-06-01 17:09:44 -0700648func (os OsType) String() string {
649 return os.Name
Colin Cross54c71122016-06-01 17:09:44 -0700650}
651
Dan Willemsen866b5632017-09-22 12:28:24 -0700652func (os OsType) Bionic() bool {
653 return os == Android || os == LinuxBionic
654}
655
656func (os OsType) Linux() bool {
657 return os == Android || os == Linux || os == LinuxBionic
658}
659
Dan Willemsen0a37a2a2016-11-13 10:16:05 -0800660func NewOsType(name string, class OsClass, defDisabled bool) OsType {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700661 os := OsType{
662 Name: name,
663 Field: strings.Title(name),
664 Class: class,
Dan Willemsen0a37a2a2016-11-13 10:16:05 -0800665
666 DefaultDisabled: defDisabled,
Colin Cross54c71122016-06-01 17:09:44 -0700667 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700668 osTypeList = append(osTypeList, os)
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800669
670 if _, found := commonTargetMap[name]; found {
671 panic(fmt.Errorf("Found Os type duplicate during OsType registration: %q", name))
672 } else {
673 commonTargetMap[name] = Target{Os: os, Arch: Arch{ArchType: Common}}
674 }
675
Colin Crossa1ad8d12016-06-01 17:09:44 -0700676 return os
677}
678
679func osByName(name string) OsType {
680 for _, os := range osTypeList {
681 if os.Name == name {
682 return os
683 }
684 }
685
686 return NoOsType
Dan Willemsen490fd492015-11-24 17:53:15 -0800687}
688
dimitry1f33e402019-03-26 12:39:31 +0100689type NativeBridgeSupport bool
690
691const (
692 NativeBridgeDisabled NativeBridgeSupport = false
693 NativeBridgeEnabled NativeBridgeSupport = true
694)
695
Colin Crossa1ad8d12016-06-01 17:09:44 -0700696type Target struct {
dimitry8d6dde82019-07-11 10:23:53 +0200697 Os OsType
698 Arch Arch
699 NativeBridge NativeBridgeSupport
700 NativeBridgeHostArchName string
701 NativeBridgeRelativePath string
Colin Crossd3ba0392015-05-07 14:11:29 -0700702}
703
Colin Crossa1ad8d12016-06-01 17:09:44 -0700704func (target Target) String() string {
dimitry1f33e402019-03-26 12:39:31 +0100705 variant := ""
706 if target.NativeBridge {
707 variant = "native_bridge_"
708 }
709 return target.Os.String() + "_" + variant + target.Arch.String()
Dan Willemsen490fd492015-11-24 17:53:15 -0800710}
711
Colin Crossee0bc3b2018-10-02 22:01:37 -0700712// archMutator splits a module into a variant for each Target requested by the module. Target selection
713// for a module is in three levels, OsClass, mulitlib, and then Target.
714// OsClass selection is determined by:
715// - The HostOrDeviceSupported value passed in to InitAndroidArchModule by the module type factory, which selects
716// whether the module type can compile for host, device or both.
717// - The host_supported and device_supported properties on the module.
Roland Levillainf5b635d2019-06-05 14:42:57 +0100718// If host is supported for the module, the Host and HostCross OsClasses are selected. If device is supported
Colin Crossee0bc3b2018-10-02 22:01:37 -0700719// for the module, the Device OsClass is selected.
720// Within each selected OsClass, the multilib selection is determined by:
Jaewoong Jung02b2d4d2019-06-06 15:19:57 -0700721// - The compile_multilib property if it set (which may be overridden by target.android.compile_multilib or
Colin Crossee0bc3b2018-10-02 22:01:37 -0700722// target.host.compile_multilib).
723// - The default multilib passed to InitAndroidArchModule if compile_multilib was not set.
724// Valid multilib values include:
725// "both": compile for all Targets supported by the OsClass (generally x86_64 and x86, or arm64 and arm).
726// "first": compile for only a single preferred Target supported by the OsClass. This is generally x86_64 or arm64,
727// but may be arm for a 32-bit only build or a build with TARGET_PREFER_32_BIT=true set.
728// "32": compile for only a single 32-bit Target supported by the OsClass.
729// "64": compile for only a single 64-bit Target supported by the OsClass.
730// "common": compile a for a single Target that will work on all Targets suported by the OsClass (for example Java).
731//
732// Once the list of Targets is determined, the module is split into a variant for each Target.
733//
734// Modules can be initialized with InitAndroidMultiTargetsArchModule, in which case they will be split by OsClass,
735// but will have a common Target that is expected to handle all other selected Targets via ctx.MultiTargets().
Colin Cross1e676be2016-10-12 14:38:15 -0700736func archMutator(mctx BottomUpMutatorContext) {
Colin Cross635c3b02016-05-18 15:37:25 -0700737 var module Module
Colin Cross3f40fa42015-01-30 17:27:36 -0800738 var ok bool
Colin Cross635c3b02016-05-18 15:37:25 -0700739 if module, ok = mctx.Module().(Module); !ok {
Colin Cross3f40fa42015-01-30 17:27:36 -0800740 return
741 }
742
Colin Cross5eca7cb2018-10-02 14:02:10 -0700743 base := module.base()
744
745 if !base.ArchSpecific() {
Colin Crossb9db4802016-06-03 01:50:47 +0000746 return
747 }
748
Colin Crossa1ad8d12016-06-01 17:09:44 -0700749 var moduleTargets []Target
Colin Crossee0bc3b2018-10-02 22:01:37 -0700750 moduleMultiTargets := make(map[int][]Target)
Colin Cross8b74d172016-09-13 09:59:14 -0700751 primaryModules := make(map[int]bool)
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700752 osClasses := base.OsClassSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -0700753
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700754 for _, os := range osTypeList {
755 supportedClass := false
756 for _, osClass := range osClasses {
757 if os.Class == osClass {
758 supportedClass = true
759 }
760 }
761 if !supportedClass {
762 continue
763 }
764
765 osTargets := mctx.Config().Targets[os]
766 if len(osTargets) == 0 {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700767 continue
768 }
Colin Crossee0bc3b2018-10-02 22:01:37 -0700769
dimitry1f33e402019-03-26 12:39:31 +0100770 // Filter NativeBridge targets unless they are explicitly supported
771 if os == Android && !Bool(base.commonProperties.Native_bridge_supported) {
772 var targets []Target
773 for _, t := range osTargets {
774 if !t.NativeBridge {
775 targets = append(targets, t)
776 }
777 }
778
779 osTargets = targets
780 }
781
Colin Cross5eca7cb2018-10-02 14:02:10 -0700782 // only the primary arch in the recovery partition
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700783 if os == Android && module.InstallInRecovery() {
784 osTargets = []Target{osTargets[0]}
Colin Cross5eca7cb2018-10-02 14:02:10 -0700785 }
786
Colin Crossa9d8bee2018-10-02 13:59:46 -0700787 prefer32 := false
788 if base.prefer32 != nil {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700789 prefer32 = base.prefer32(mctx, base, os.Class)
Colin Cross8b74d172016-09-13 09:59:14 -0700790 }
Colin Crossa9d8bee2018-10-02 13:59:46 -0700791
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700792 multilib, extraMultilib := decodeMultilib(base, os.Class)
793 targets, err := decodeMultilibTargets(multilib, osTargets, prefer32)
Colin Crossa1ad8d12016-06-01 17:09:44 -0700794 if err != nil {
795 mctx.ModuleErrorf("%s", err.Error())
796 }
Colin Crossee0bc3b2018-10-02 22:01:37 -0700797
798 var multiTargets []Target
799 if extraMultilib != "" {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700800 multiTargets, err = decodeMultilibTargets(extraMultilib, osTargets, prefer32)
Colin Crossee0bc3b2018-10-02 22:01:37 -0700801 if err != nil {
802 mctx.ModuleErrorf("%s", err.Error())
803 }
804 }
805
Colin Cross8b74d172016-09-13 09:59:14 -0700806 if len(targets) > 0 {
807 primaryModules[len(moduleTargets)] = true
Colin Crossee0bc3b2018-10-02 22:01:37 -0700808 moduleMultiTargets[len(moduleTargets)] = multiTargets
Colin Cross8b74d172016-09-13 09:59:14 -0700809 moduleTargets = append(moduleTargets, targets...)
810 }
Colin Crossb9db4802016-06-03 01:50:47 +0000811 }
812
Dan Willemsen3f32f032016-07-11 14:36:48 -0700813 if len(moduleTargets) == 0 {
Colin Cross5eca7cb2018-10-02 14:02:10 -0700814 base.commonProperties.Enabled = boolPtr(false)
Dan Willemsen3f32f032016-07-11 14:36:48 -0700815 return
816 }
817
Colin Crossa1ad8d12016-06-01 17:09:44 -0700818 targetNames := make([]string, len(moduleTargets))
Colin Crossb9db4802016-06-03 01:50:47 +0000819
Colin Crossa1ad8d12016-06-01 17:09:44 -0700820 for i, target := range moduleTargets {
821 targetNames[i] = target.String()
822 }
823
824 modules := mctx.CreateVariations(targetNames...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800825 for i, m := range modules {
Colin Crossee0bc3b2018-10-02 22:01:37 -0700826 m.(Module).base().SetTarget(moduleTargets[i], moduleMultiTargets[i], primaryModules[i])
Colin Cross635c3b02016-05-18 15:37:25 -0700827 m.(Module).base().setArchProperties(mctx)
Colin Cross3f40fa42015-01-30 17:27:36 -0800828 }
829}
830
Colin Crossee0bc3b2018-10-02 22:01:37 -0700831func decodeMultilib(base *ModuleBase, class OsClass) (multilib, extraMultilib string) {
832 switch class {
833 case Device:
834 multilib = String(base.commonProperties.Target.Android.Compile_multilib)
835 case Host, HostCross:
836 multilib = String(base.commonProperties.Target.Host.Compile_multilib)
837 }
838 if multilib == "" {
839 multilib = String(base.commonProperties.Compile_multilib)
840 }
841 if multilib == "" {
842 multilib = base.commonProperties.Default_multilib
843 }
844
845 if base.commonProperties.UseTargetVariants {
846 return multilib, ""
847 } else {
848 // For app modules a single arch variant will be created per OS class which is expected to handle all the
849 // selected arches. Return the common-type as multilib and any Android.bp provided multilib as extraMultilib
850 if multilib == base.commonProperties.Default_multilib {
851 multilib = "first"
852 }
853 return base.commonProperties.Default_multilib, multilib
854 }
855}
856
Colin Crosscb988072019-01-24 14:58:11 -0800857func filterArchStructFields(fields []reflect.StructField) (filteredFields []reflect.StructField, filtered bool) {
Colin Crossc17727d2018-10-24 12:42:09 -0700858 for _, field := range fields {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700859 if !proptools.HasTag(field, "android", "arch_variant") {
Colin Crosscb988072019-01-24 14:58:11 -0800860 filtered = true
Dan Willemsenb1957a52016-06-23 23:44:54 -0700861 continue
862 }
863
864 // The arch_variant field isn't necessary past this point
865 // Instead of wasting space, just remove it. Go also has a
866 // 16-bit limit on structure name length. The name is constructed
867 // based on the Go source representation of the structure, so
868 // the tag names count towards that length.
869 //
870 // TODO: handle the uncommon case of other tags being involved
871 if field.Tag == `android:"arch_variant"` {
872 field.Tag = ""
873 }
874
875 // Recurse into structs
876 switch field.Type.Kind() {
877 case reflect.Struct:
Colin Crosscb988072019-01-24 14:58:11 -0800878 var subFiltered bool
879 field.Type, subFiltered = filterArchStruct(field.Type)
880 filtered = filtered || subFiltered
881 if field.Type == nil {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700882 continue
883 }
884 case reflect.Ptr:
885 if field.Type.Elem().Kind() == reflect.Struct {
Colin Crosscb988072019-01-24 14:58:11 -0800886 nestedType, subFiltered := filterArchStruct(field.Type.Elem())
887 filtered = filtered || subFiltered
888 if nestedType == nil {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700889 continue
890 }
891 field.Type = reflect.PtrTo(nestedType)
892 }
893 case reflect.Interface:
894 panic("Interfaces are not supported in arch_variant properties")
895 }
896
Colin Crosscb988072019-01-24 14:58:11 -0800897 filteredFields = append(filteredFields, field)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700898 }
Colin Crossc17727d2018-10-24 12:42:09 -0700899
Colin Crosscb988072019-01-24 14:58:11 -0800900 return filteredFields, filtered
Colin Crossc17727d2018-10-24 12:42:09 -0700901}
902
Colin Crosscb988072019-01-24 14:58:11 -0800903// filterArchStruct takes a reflect.Type that is either a sturct or a pointer to a struct, and returns a reflect.Type
904// that only contains the fields in the original type that have an `android:"arch_variant"` struct tag, and a bool
905// that is true if the new struct type has fewer fields than the original type. If there are no fields in the
906// original type with the struct tag it returns nil and true.
907func filterArchStruct(prop reflect.Type) (filteredProp reflect.Type, filtered bool) {
Colin Crossc17727d2018-10-24 12:42:09 -0700908 var fields []reflect.StructField
909
910 ptr := prop.Kind() == reflect.Ptr
911 if ptr {
912 prop = prop.Elem()
913 }
914
915 for i := 0; i < prop.NumField(); i++ {
916 fields = append(fields, prop.Field(i))
917 }
918
Colin Crosscb988072019-01-24 14:58:11 -0800919 filteredFields, filtered := filterArchStructFields(fields)
Colin Crossc17727d2018-10-24 12:42:09 -0700920
Colin Crosscb988072019-01-24 14:58:11 -0800921 if len(filteredFields) == 0 {
922 return nil, true
Dan Willemsenb1957a52016-06-23 23:44:54 -0700923 }
924
Colin Crosscb988072019-01-24 14:58:11 -0800925 if !filtered {
926 if ptr {
927 return reflect.PtrTo(prop), false
928 }
929 return prop, false
930 }
931
932 ret := reflect.StructOf(filteredFields)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700933 if ptr {
934 ret = reflect.PtrTo(ret)
935 }
Colin Crossc17727d2018-10-24 12:42:09 -0700936
Dan Willemsenb1957a52016-06-23 23:44:54 -0700937 return ret, true
938}
939
Colin Crosscb988072019-01-24 14:58:11 -0800940// filterArchStruct takes a reflect.Type that is either a sturct or a pointer to a struct, and returns a list of
941// reflect.Type that only contains the fields in the original type that have an `android:"arch_variant"` struct tag,
942// and a bool that is true if the new struct type has fewer fields than the original type. If there are no fields in
943// the original type with the struct tag it returns nil and true. Each returned struct type will have a maximum of
944// 10 top level fields in it to attempt to avoid hitting the reflect.StructOf name length limit, although the limit
945// can still be reached with a single struct field with many fields in it.
946func filterArchStructSharded(prop reflect.Type) (filteredProp []reflect.Type, filtered bool) {
Colin Crossc17727d2018-10-24 12:42:09 -0700947 var fields []reflect.StructField
948
949 ptr := prop.Kind() == reflect.Ptr
950 if ptr {
951 prop = prop.Elem()
952 }
953
954 for i := 0; i < prop.NumField(); i++ {
955 fields = append(fields, prop.Field(i))
956 }
957
Colin Crosscb988072019-01-24 14:58:11 -0800958 fields, filtered = filterArchStructFields(fields)
959 if !filtered {
960 if ptr {
961 return []reflect.Type{reflect.PtrTo(prop)}, false
962 }
963 return []reflect.Type{prop}, false
964 }
Colin Crossc17727d2018-10-24 12:42:09 -0700965
966 if len(fields) == 0 {
Colin Crosscb988072019-01-24 14:58:11 -0800967 return nil, true
Colin Crossc17727d2018-10-24 12:42:09 -0700968 }
969
970 shards := shardFields(fields, 10)
971
Colin Crossc17727d2018-10-24 12:42:09 -0700972 for _, shard := range shards {
973 s := reflect.StructOf(shard)
974 if ptr {
975 s = reflect.PtrTo(s)
976 }
Colin Crosscb988072019-01-24 14:58:11 -0800977 filteredProp = append(filteredProp, s)
Colin Crossc17727d2018-10-24 12:42:09 -0700978 }
979
Colin Crosscb988072019-01-24 14:58:11 -0800980 return filteredProp, true
Colin Crossc17727d2018-10-24 12:42:09 -0700981}
982
983func shardFields(fields []reflect.StructField, shardSize int) [][]reflect.StructField {
984 ret := make([][]reflect.StructField, 0, (len(fields)+shardSize-1)/shardSize)
985 for len(fields) > shardSize {
986 ret = append(ret, fields[0:shardSize])
987 fields = fields[shardSize:]
988 }
989 if len(fields) > 0 {
990 ret = append(ret, fields)
991 }
992 return ret
993}
994
Colin Crosscb988072019-01-24 14:58:11 -0800995// createArchType takes a reflect.Type that is either a struct or a pointer to a struct, and returns a list of
996// reflect.Type that contains the arch-variant properties inside structs for each architecture, os, target, multilib,
997// etc.
Colin Crossc17727d2018-10-24 12:42:09 -0700998func createArchType(props reflect.Type) []reflect.Type {
Colin Crosscb988072019-01-24 14:58:11 -0800999 propShards, _ := filterArchStructSharded(props)
1000 if len(propShards) == 0 {
Dan Willemsenb1957a52016-06-23 23:44:54 -07001001 return nil
1002 }
1003
Colin Crossc17727d2018-10-24 12:42:09 -07001004 var ret []reflect.Type
1005 for _, props := range propShards {
Dan Willemsenb1957a52016-06-23 23:44:54 -07001006
Colin Crossc17727d2018-10-24 12:42:09 -07001007 variantFields := func(names []string) []reflect.StructField {
1008 ret := make([]reflect.StructField, len(names))
Dan Willemsenb1957a52016-06-23 23:44:54 -07001009
Colin Crossc17727d2018-10-24 12:42:09 -07001010 for i, name := range names {
1011 ret[i].Name = name
1012 ret[i].Type = props
Dan Willemsen866b5632017-09-22 12:28:24 -07001013 }
Colin Crossc17727d2018-10-24 12:42:09 -07001014
1015 return ret
1016 }
1017
1018 archFields := make([]reflect.StructField, len(archTypeList))
1019 for i, arch := range archTypeList {
1020 variants := []string{}
1021
1022 for _, archVariant := range archVariants[arch] {
1023 archVariant := variantReplacer.Replace(archVariant)
1024 variants = append(variants, proptools.FieldNameForProperty(archVariant))
1025 }
1026 for _, feature := range archFeatures[arch] {
1027 feature := variantReplacer.Replace(feature)
1028 variants = append(variants, proptools.FieldNameForProperty(feature))
1029 }
1030
1031 fields := variantFields(variants)
1032
1033 fields = append([]reflect.StructField{{
1034 Name: "BlueprintEmbed",
1035 Type: props,
1036 Anonymous: true,
1037 }}, fields...)
1038
1039 archFields[i] = reflect.StructField{
1040 Name: arch.Field,
1041 Type: reflect.StructOf(fields),
1042 }
1043 }
1044 archType := reflect.StructOf(archFields)
1045
1046 multilibType := reflect.StructOf(variantFields([]string{"Lib32", "Lib64"}))
1047
1048 targets := []string{
1049 "Host",
1050 "Android64",
1051 "Android32",
1052 "Bionic",
1053 "Linux",
1054 "Not_windows",
1055 "Arm_on_x86",
1056 "Arm_on_x86_64",
1057 }
1058 for _, os := range osTypeList {
1059 targets = append(targets, os.Field)
1060
1061 for _, archType := range osArchTypeMap[os] {
1062 targets = append(targets, os.Field+"_"+archType.Name)
1063
1064 if os.Linux() {
1065 target := "Linux_" + archType.Name
1066 if !InList(target, targets) {
1067 targets = append(targets, target)
1068 }
1069 }
1070 if os.Bionic() {
1071 target := "Bionic_" + archType.Name
1072 if !InList(target, targets) {
1073 targets = append(targets, target)
1074 }
Dan Willemsen866b5632017-09-22 12:28:24 -07001075 }
1076 }
Dan Willemsenb1957a52016-06-23 23:44:54 -07001077 }
Dan Willemsenb1957a52016-06-23 23:44:54 -07001078
Colin Crossc17727d2018-10-24 12:42:09 -07001079 targetType := reflect.StructOf(variantFields(targets))
1080 ret = append(ret, reflect.StructOf([]reflect.StructField{
1081 {
1082 Name: "Arch",
1083 Type: archType,
1084 },
1085 {
1086 Name: "Multilib",
1087 Type: multilibType,
1088 },
1089 {
1090 Name: "Target",
1091 Type: targetType,
1092 },
1093 }))
1094 }
1095 return ret
Dan Willemsenb1957a52016-06-23 23:44:54 -07001096}
1097
1098var archPropTypeMap OncePer
1099
Colin Cross36242852017-06-23 15:06:31 -07001100func InitArchModule(m Module) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001101
1102 base := m.base()
1103
Colin Cross36242852017-06-23 15:06:31 -07001104 base.generalProperties = m.GetProperties()
Colin Cross3f40fa42015-01-30 17:27:36 -08001105
1106 for _, properties := range base.generalProperties {
1107 propertiesValue := reflect.ValueOf(properties)
Colin Cross62496a02016-08-08 15:49:17 -07001108 t := propertiesValue.Type()
Colin Cross3f40fa42015-01-30 17:27:36 -08001109 if propertiesValue.Kind() != reflect.Ptr {
Colin Crossca860ac2016-01-04 14:34:37 -08001110 panic(fmt.Errorf("properties must be a pointer to a struct, got %T",
1111 propertiesValue.Interface()))
Colin Cross3f40fa42015-01-30 17:27:36 -08001112 }
1113
1114 propertiesValue = propertiesValue.Elem()
1115 if propertiesValue.Kind() != reflect.Struct {
Colin Crossca860ac2016-01-04 14:34:37 -08001116 panic(fmt.Errorf("properties must be a pointer to a struct, got %T",
1117 propertiesValue.Interface()))
Colin Cross3f40fa42015-01-30 17:27:36 -08001118 }
1119
Colin Cross571cccf2019-02-04 11:22:08 -08001120 archPropTypes := archPropTypeMap.Once(NewCustomOnceKey(t), func() interface{} {
Dan Willemsenb1957a52016-06-23 23:44:54 -07001121 return createArchType(t)
Colin Crossc17727d2018-10-24 12:42:09 -07001122 }).([]reflect.Type)
Colin Cross3f40fa42015-01-30 17:27:36 -08001123
Colin Crossc17727d2018-10-24 12:42:09 -07001124 var archProperties []interface{}
1125 for _, t := range archPropTypes {
1126 archProperties = append(archProperties, reflect.New(t).Interface())
Dan Willemsenb1957a52016-06-23 23:44:54 -07001127 }
Colin Crossc17727d2018-10-24 12:42:09 -07001128 base.archProperties = append(base.archProperties, archProperties)
1129 m.AddProperties(archProperties...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001130 }
1131
Colin Cross36242852017-06-23 15:06:31 -07001132 base.customizableProperties = m.GetProperties()
Colin Cross3f40fa42015-01-30 17:27:36 -08001133}
1134
Colin Crossa716add2015-12-16 11:07:39 -08001135var variantReplacer = strings.NewReplacer("-", "_", ".", "_")
Colin Crossec193632015-07-06 17:49:43 -07001136
Colin Cross4157e882019-06-06 16:57:04 -07001137func (m *ModuleBase) appendProperties(ctx BottomUpMutatorContext,
Dan Willemsenb1957a52016-06-23 23:44:54 -07001138 dst interface{}, src reflect.Value, field, srcPrefix string) reflect.Value {
Colin Cross06a931b2015-10-28 17:23:31 -07001139
Dan Willemsenb1957a52016-06-23 23:44:54 -07001140 src = src.FieldByName(field)
1141 if !src.IsValid() {
Colin Crosseeabb892015-11-20 13:07:51 -08001142 ctx.ModuleErrorf("field %q does not exist", srcPrefix)
Dan Willemsenb1957a52016-06-23 23:44:54 -07001143 return src
Colin Cross85a88972015-11-23 13:29:51 -08001144 }
1145
Dan Willemsenb1957a52016-06-23 23:44:54 -07001146 ret := src
Colin Cross85a88972015-11-23 13:29:51 -08001147
Dan Willemsenb1957a52016-06-23 23:44:54 -07001148 if src.Kind() == reflect.Struct {
1149 src = src.FieldByName("BlueprintEmbed")
Colin Cross06a931b2015-10-28 17:23:31 -07001150 }
1151
Colin Cross6ee75b62016-05-05 15:57:15 -07001152 order := func(property string,
1153 dstField, srcField reflect.StructField,
1154 dstValue, srcValue interface{}) (proptools.Order, error) {
1155 if proptools.HasTag(dstField, "android", "variant_prepend") {
1156 return proptools.Prepend, nil
1157 } else {
1158 return proptools.Append, nil
1159 }
1160 }
1161
Dan Willemsenb1957a52016-06-23 23:44:54 -07001162 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, order)
Colin Cross06a931b2015-10-28 17:23:31 -07001163 if err != nil {
1164 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1165 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1166 } else {
1167 panic(err)
1168 }
1169 }
Colin Cross85a88972015-11-23 13:29:51 -08001170
Dan Willemsenb1957a52016-06-23 23:44:54 -07001171 return ret
Colin Cross06a931b2015-10-28 17:23:31 -07001172}
1173
Colin Cross3f40fa42015-01-30 17:27:36 -08001174// Rewrite the module's properties structs to contain arch-specific values.
Colin Cross4157e882019-06-06 16:57:04 -07001175func (m *ModuleBase) setArchProperties(ctx BottomUpMutatorContext) {
1176 arch := m.Arch()
1177 os := m.Os()
Colin Crossd3ba0392015-05-07 14:11:29 -07001178
Colin Cross4157e882019-06-06 16:57:04 -07001179 for i := range m.generalProperties {
1180 genProps := m.generalProperties[i]
1181 if m.archProperties[i] == nil {
Dan Willemsenb1957a52016-06-23 23:44:54 -07001182 continue
1183 }
Colin Cross4157e882019-06-06 16:57:04 -07001184 for _, archProperties := range m.archProperties[i] {
Colin Crossc17727d2018-10-24 12:42:09 -07001185 archPropValues := reflect.ValueOf(archProperties).Elem()
Dan Willemsenb1957a52016-06-23 23:44:54 -07001186
Colin Crossc17727d2018-10-24 12:42:09 -07001187 archProp := archPropValues.FieldByName("Arch")
1188 multilibProp := archPropValues.FieldByName("Multilib")
1189 targetProp := archPropValues.FieldByName("Target")
Dan Willemsenb1957a52016-06-23 23:44:54 -07001190
Colin Crossc17727d2018-10-24 12:42:09 -07001191 var field string
1192 var prefix string
Colin Crossd5934c82017-10-02 13:55:26 -07001193
Colin Crossc17727d2018-10-24 12:42:09 -07001194 // Handle arch-specific properties in the form:
Colin Crossd5934c82017-10-02 13:55:26 -07001195 // arch: {
Colin Crossc17727d2018-10-24 12:42:09 -07001196 // arm64: {
Colin Crossd5934c82017-10-02 13:55:26 -07001197 // key: value,
1198 // },
1199 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001200 t := arch.ArchType
1201
1202 if arch.ArchType != Common {
1203 field := proptools.FieldNameForProperty(t.Name)
1204 prefix := "arch." + t.Name
Colin Cross4157e882019-06-06 16:57:04 -07001205 archStruct := m.appendProperties(ctx, genProps, archProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001206
1207 // Handle arch-variant-specific properties in the form:
1208 // arch: {
1209 // variant: {
1210 // key: value,
1211 // },
1212 // },
1213 v := variantReplacer.Replace(arch.ArchVariant)
1214 if v != "" {
1215 field := proptools.FieldNameForProperty(v)
1216 prefix := "arch." + t.Name + "." + v
Colin Cross4157e882019-06-06 16:57:04 -07001217 m.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001218 }
1219
1220 // Handle cpu-variant-specific properties in the form:
1221 // arch: {
1222 // variant: {
1223 // key: value,
1224 // },
1225 // },
1226 if arch.CpuVariant != arch.ArchVariant {
1227 c := variantReplacer.Replace(arch.CpuVariant)
1228 if c != "" {
1229 field := proptools.FieldNameForProperty(c)
1230 prefix := "arch." + t.Name + "." + c
Colin Cross4157e882019-06-06 16:57:04 -07001231 m.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001232 }
1233 }
1234
1235 // Handle arch-feature-specific properties in the form:
1236 // arch: {
1237 // feature: {
1238 // key: value,
1239 // },
1240 // },
1241 for _, feature := range arch.ArchFeatures {
1242 field := proptools.FieldNameForProperty(feature)
1243 prefix := "arch." + t.Name + "." + feature
Colin Cross4157e882019-06-06 16:57:04 -07001244 m.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001245 }
1246
1247 // Handle multilib-specific properties in the form:
1248 // multilib: {
1249 // lib32: {
1250 // key: value,
1251 // },
1252 // },
1253 field = proptools.FieldNameForProperty(t.Multilib)
1254 prefix = "multilib." + t.Multilib
Colin Cross4157e882019-06-06 16:57:04 -07001255 m.appendProperties(ctx, genProps, multilibProp, field, prefix)
Colin Cross08016332016-12-20 09:53:14 -08001256 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001257
Colin Crossc17727d2018-10-24 12:42:09 -07001258 // Handle host-specific properties in the form:
1259 // target: {
1260 // host: {
Colin Crossd5934c82017-10-02 13:55:26 -07001261 // key: value,
1262 // },
1263 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001264 if os.Class == Host || os.Class == HostCross {
1265 field = "Host"
1266 prefix = "target.host"
Colin Cross4157e882019-06-06 16:57:04 -07001267 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001268 }
1269
1270 // Handle target OS generalities of the form:
1271 // target: {
1272 // bionic: {
1273 // key: value,
1274 // },
1275 // bionic_x86: {
1276 // key: value,
1277 // },
1278 // }
1279 if os.Linux() {
1280 field = "Linux"
1281 prefix = "target.linux"
Colin Cross4157e882019-06-06 16:57:04 -07001282 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001283
1284 if arch.ArchType != Common {
1285 field = "Linux_" + arch.ArchType.Name
1286 prefix = "target.linux_" + arch.ArchType.Name
Colin Cross4157e882019-06-06 16:57:04 -07001287 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossd5934c82017-10-02 13:55:26 -07001288 }
1289 }
Colin Crossc5c24ad2015-11-20 15:35:00 -08001290
Colin Crossc17727d2018-10-24 12:42:09 -07001291 if os.Bionic() {
1292 field = "Bionic"
1293 prefix = "target.bionic"
Colin Cross4157e882019-06-06 16:57:04 -07001294 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001295
1296 if arch.ArchType != Common {
1297 field = "Bionic_" + t.Name
1298 prefix = "target.bionic_" + t.Name
Colin Cross4157e882019-06-06 16:57:04 -07001299 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001300 }
1301 }
1302
1303 // Handle target OS properties in the form:
1304 // target: {
1305 // linux_glibc: {
1306 // key: value,
1307 // },
1308 // not_windows: {
1309 // key: value,
1310 // },
1311 // linux_glibc_x86: {
1312 // key: value,
1313 // },
1314 // linux_glibc_arm: {
1315 // key: value,
1316 // },
1317 // android {
1318 // key: value,
1319 // },
1320 // android_arm {
1321 // key: value,
1322 // },
1323 // android_x86 {
Colin Crossd5934c82017-10-02 13:55:26 -07001324 // key: value,
1325 // },
1326 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001327 field = os.Field
1328 prefix = "target." + os.Name
Colin Cross4157e882019-06-06 16:57:04 -07001329 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001330
1331 if arch.ArchType != Common {
1332 field = os.Field + "_" + t.Name
1333 prefix = "target." + os.Name + "_" + t.Name
Colin Cross4157e882019-06-06 16:57:04 -07001334 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossd5934c82017-10-02 13:55:26 -07001335 }
1336
Colin Crossc17727d2018-10-24 12:42:09 -07001337 if (os.Class == Host || os.Class == HostCross) && os != Windows {
1338 field := "Not_windows"
1339 prefix := "target.not_windows"
Colin Cross4157e882019-06-06 16:57:04 -07001340 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001341 }
1342
1343 // Handle 64-bit device properties in the form:
1344 // target {
1345 // android64 {
1346 // key: value,
1347 // },
1348 // android32 {
Colin Crossd5934c82017-10-02 13:55:26 -07001349 // key: value,
1350 // },
1351 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001352 // WARNING: this is probably not what you want to use in your blueprints file, it selects
1353 // options for all targets on a device that supports 64-bit binaries, not just the targets
1354 // that are being compiled for 64-bit. Its expected use case is binaries like linker and
1355 // debuggerd that need to know when they are a 32-bit process running on a 64-bit device
1356 if os.Class == Device {
1357 if ctx.Config().Android64() {
1358 field := "Android64"
1359 prefix := "target.android64"
Colin Cross4157e882019-06-06 16:57:04 -07001360 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001361 } else {
1362 field := "Android32"
1363 prefix := "target.android32"
Colin Cross4157e882019-06-06 16:57:04 -07001364 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001365 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001366
Colin Crossc17727d2018-10-24 12:42:09 -07001367 if (arch.ArchType == X86 && (hasArmAbi(arch) ||
1368 hasArmAndroidArch(ctx.Config().Targets[Android]))) ||
1369 (arch.ArchType == Arm &&
1370 hasX86AndroidArch(ctx.Config().Targets[Android])) {
1371 field := "Arm_on_x86"
1372 prefix := "target.arm_on_x86"
Colin Cross4157e882019-06-06 16:57:04 -07001373 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001374 }
1375 if (arch.ArchType == X86_64 && (hasArmAbi(arch) ||
1376 hasArmAndroidArch(ctx.Config().Targets[Android]))) ||
1377 (arch.ArchType == Arm &&
1378 hasX8664AndroidArch(ctx.Config().Targets[Android])) {
1379 field := "Arm_on_x86_64"
1380 prefix := "target.arm_on_x86_64"
Colin Cross4157e882019-06-06 16:57:04 -07001381 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001382 }
Colin Cross4247f0d2017-04-13 16:56:14 -07001383 }
Colin Crossbb2e2b72016-12-08 17:23:53 -08001384 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001385 }
1386}
1387
1388func forEachInterface(v reflect.Value, f func(reflect.Value)) {
1389 switch v.Kind() {
1390 case reflect.Interface:
1391 f(v)
1392 case reflect.Struct:
1393 for i := 0; i < v.NumField(); i++ {
1394 forEachInterface(v.Field(i), f)
1395 }
1396 case reflect.Ptr:
1397 forEachInterface(v.Elem(), f)
1398 default:
1399 panic(fmt.Errorf("Unsupported kind %s", v.Kind()))
1400 }
1401}
Colin Cross4225f652015-09-17 14:33:42 -07001402
Colin Crossa1ad8d12016-06-01 17:09:44 -07001403// Convert the arch product variables into a list of targets for each os class structs
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001404func decodeTargetProductVariables(config *config) (map[OsType][]Target, error) {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001405 variables := config.productVariables
Dan Willemsen490fd492015-11-24 17:53:15 -08001406
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001407 targets := make(map[OsType][]Target)
Colin Crossa1ad8d12016-06-01 17:09:44 -07001408 var targetErr error
1409
dimitry1f33e402019-03-26 12:39:31 +01001410 addTarget := func(os OsType, archName string, archVariant, cpuVariant *string, abi []string,
dimitry8d6dde82019-07-11 10:23:53 +02001411 nativeBridgeEnabled NativeBridgeSupport, nativeBridgeHostArchName *string,
1412 nativeBridgeRelativePath *string) {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001413 if targetErr != nil {
1414 return
Dan Willemsen490fd492015-11-24 17:53:15 -08001415 }
Colin Crossa1ad8d12016-06-01 17:09:44 -07001416
Dan Willemsen01a3c252019-01-11 19:02:16 -08001417 arch, err := decodeArch(os, archName, archVariant, cpuVariant, abi)
Colin Crossa1ad8d12016-06-01 17:09:44 -07001418 if err != nil {
1419 targetErr = err
1420 return
1421 }
dimitry8d6dde82019-07-11 10:23:53 +02001422 nativeBridgeRelativePathStr := String(nativeBridgeRelativePath)
1423 nativeBridgeHostArchNameStr := String(nativeBridgeHostArchName)
1424
1425 // Use guest arch as relative install path by default
1426 if nativeBridgeEnabled && nativeBridgeRelativePathStr == "" {
1427 nativeBridgeRelativePathStr = arch.ArchType.String()
1428 }
Colin Crossa1ad8d12016-06-01 17:09:44 -07001429
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001430 targets[os] = append(targets[os],
Colin Crossa1ad8d12016-06-01 17:09:44 -07001431 Target{
dimitry8d6dde82019-07-11 10:23:53 +02001432 Os: os,
1433 Arch: arch,
1434 NativeBridge: nativeBridgeEnabled,
1435 NativeBridgeHostArchName: nativeBridgeHostArchNameStr,
1436 NativeBridgeRelativePath: nativeBridgeRelativePathStr,
Colin Crossa1ad8d12016-06-01 17:09:44 -07001437 })
Dan Willemsen490fd492015-11-24 17:53:15 -08001438 }
1439
Colin Cross4225f652015-09-17 14:33:42 -07001440 if variables.HostArch == nil {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001441 return nil, fmt.Errorf("No host primary architecture set")
Colin Cross4225f652015-09-17 14:33:42 -07001442 }
1443
dimitry8d6dde82019-07-11 10:23:53 +02001444 addTarget(BuildOs, *variables.HostArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Colin Cross4225f652015-09-17 14:33:42 -07001445
Colin Crosseeabb892015-11-20 13:07:51 -08001446 if variables.HostSecondaryArch != nil && *variables.HostSecondaryArch != "" {
dimitry8d6dde82019-07-11 10:23:53 +02001447 addTarget(BuildOs, *variables.HostSecondaryArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -08001448 }
1449
Colin Crossff3ae9d2018-04-10 16:15:18 -07001450 if Bool(config.Host_bionic) {
dimitry8d6dde82019-07-11 10:23:53 +02001451 addTarget(LinuxBionic, "x86_64", nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen01a405a2016-06-13 17:19:03 -07001452 }
1453
Colin Crossff3ae9d2018-04-10 16:15:18 -07001454 if String(variables.CrossHost) != "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001455 crossHostOs := osByName(*variables.CrossHost)
1456 if crossHostOs == NoOsType {
1457 return nil, fmt.Errorf("Unknown cross host OS %q", *variables.CrossHost)
1458 }
1459
Colin Crossff3ae9d2018-04-10 16:15:18 -07001460 if String(variables.CrossHostArch) == "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001461 return nil, fmt.Errorf("No cross-host primary architecture set")
Dan Willemsen490fd492015-11-24 17:53:15 -08001462 }
1463
dimitry8d6dde82019-07-11 10:23:53 +02001464 addTarget(crossHostOs, *variables.CrossHostArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -08001465
1466 if variables.CrossHostSecondaryArch != nil && *variables.CrossHostSecondaryArch != "" {
dimitry8d6dde82019-07-11 10:23:53 +02001467 addTarget(crossHostOs, *variables.CrossHostSecondaryArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -08001468 }
1469 }
1470
Dan Willemsen3f32f032016-07-11 14:36:48 -07001471 if variables.DeviceArch != nil && *variables.DeviceArch != "" {
Doug Horn21b94272019-01-16 12:06:11 -08001472 var target = Android
1473 if Bool(variables.Fuchsia) {
1474 target = Fuchsia
1475 }
1476
1477 addTarget(target, *variables.DeviceArch, variables.DeviceArchVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001478 variables.DeviceCpuVariant, variables.DeviceAbi, NativeBridgeDisabled, nil, nil)
Colin Cross4225f652015-09-17 14:33:42 -07001479
Dan Willemsen3f32f032016-07-11 14:36:48 -07001480 if variables.DeviceSecondaryArch != nil && *variables.DeviceSecondaryArch != "" {
1481 addTarget(Android, *variables.DeviceSecondaryArch,
1482 variables.DeviceSecondaryArchVariant, variables.DeviceSecondaryCpuVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001483 variables.DeviceSecondaryAbi, NativeBridgeDisabled, nil, nil)
Colin Cross4225f652015-09-17 14:33:42 -07001484 }
dimitry1f33e402019-03-26 12:39:31 +01001485
1486 if variables.NativeBridgeArch != nil && *variables.NativeBridgeArch != "" {
1487 addTarget(Android, *variables.NativeBridgeArch,
1488 variables.NativeBridgeArchVariant, variables.NativeBridgeCpuVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001489 variables.NativeBridgeAbi, NativeBridgeEnabled, variables.DeviceArch,
1490 variables.NativeBridgeRelativePath)
dimitry1f33e402019-03-26 12:39:31 +01001491 }
1492
1493 if variables.DeviceSecondaryArch != nil && *variables.DeviceSecondaryArch != "" &&
1494 variables.NativeBridgeSecondaryArch != nil && *variables.NativeBridgeSecondaryArch != "" {
1495 addTarget(Android, *variables.NativeBridgeSecondaryArch,
1496 variables.NativeBridgeSecondaryArchVariant,
1497 variables.NativeBridgeSecondaryCpuVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001498 variables.NativeBridgeSecondaryAbi,
1499 NativeBridgeEnabled,
1500 variables.DeviceSecondaryArch,
1501 variables.NativeBridgeSecondaryRelativePath)
dimitry1f33e402019-03-26 12:39:31 +01001502 }
Colin Cross4225f652015-09-17 14:33:42 -07001503 }
1504
Colin Crossa1ad8d12016-06-01 17:09:44 -07001505 if targetErr != nil {
1506 return nil, targetErr
1507 }
1508
1509 return targets, nil
Colin Cross4225f652015-09-17 14:33:42 -07001510}
1511
Colin Crossbb2e2b72016-12-08 17:23:53 -08001512// hasArmAbi returns true if arch has at least one arm ABI
1513func hasArmAbi(arch Arch) bool {
1514 for _, abi := range arch.Abi {
1515 if strings.HasPrefix(abi, "arm") {
1516 return true
1517 }
1518 }
1519 return false
1520}
1521
dimitry628db6f2019-05-22 17:16:21 +02001522// hasArmArch returns true if targets has at least non-native_bridge arm Android arch
Colin Cross4247f0d2017-04-13 16:56:14 -07001523func hasArmAndroidArch(targets []Target) bool {
1524 for _, target := range targets {
dimitry628db6f2019-05-22 17:16:21 +02001525 if target.Os == Android && target.Arch.ArchType == Arm && target.NativeBridge == NativeBridgeDisabled {
Colin Cross4247f0d2017-04-13 16:56:14 -07001526 return true
1527 }
1528 }
1529 return false
1530}
1531
Victor Khimenko5eb8ec12018-03-21 20:30:54 +01001532// hasX86Arch returns true if targets has at least x86 Android arch
1533func hasX86AndroidArch(targets []Target) bool {
1534 for _, target := range targets {
1535 if target.Os == Android && target.Arch.ArchType == X86 {
1536 return true
1537 }
1538 }
1539 return false
1540}
1541
1542// hasX8664Arch returns true if targets has at least x86_64 Android arch
1543func hasX8664AndroidArch(targets []Target) bool {
1544 for _, target := range targets {
1545 if target.Os == Android && target.Arch.ArchType == X86_64 {
1546 return true
1547 }
1548 }
1549 return false
1550}
1551
Dan Albert4098deb2016-10-19 14:04:41 -07001552type archConfig struct {
1553 arch string
1554 archVariant string
1555 cpuVariant string
1556 abi []string
1557}
1558
1559func getMegaDeviceConfig() []archConfig {
1560 return []archConfig{
Dan Albert8818f492019-02-19 13:53:01 -08001561 {"arm", "armv7-a", "generic", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -08001562 {"arm", "armv7-a-neon", "generic", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001563 {"arm", "armv7-a-neon", "cortex-a7", []string{"armeabi-v7a"}},
1564 {"arm", "armv7-a-neon", "cortex-a8", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -08001565 {"arm", "armv7-a-neon", "cortex-a9", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001566 {"arm", "armv7-a-neon", "cortex-a15", []string{"armeabi-v7a"}},
1567 {"arm", "armv7-a-neon", "cortex-a53", []string{"armeabi-v7a"}},
1568 {"arm", "armv7-a-neon", "cortex-a53.a57", []string{"armeabi-v7a"}},
Richard Fungeb37ed32018-09-24 16:33:45 -07001569 {"arm", "armv7-a-neon", "cortex-a72", []string{"armeabi-v7a"}},
Jake Weinstein6600a442017-05-15 18:27:12 -04001570 {"arm", "armv7-a-neon", "cortex-a73", []string{"armeabi-v7a"}},
Christopher Ferrisba14a8f2018-04-23 18:15:25 -07001571 {"arm", "armv7-a-neon", "cortex-a75", []string{"armeabi-v7a"}},
Haibo Huanga31e2bd2018-10-09 14:27:28 -07001572 {"arm", "armv7-a-neon", "cortex-a76", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001573 {"arm", "armv7-a-neon", "krait", []string{"armeabi-v7a"}},
Alex Naidisae4fc182016-08-20 00:14:56 +02001574 {"arm", "armv7-a-neon", "kryo", []string{"armeabi-v7a"}},
Artem Serovd3072b02018-11-15 15:21:51 +00001575 {"arm", "armv7-a-neon", "kryo385", []string{"armeabi-v7a"}},
Junmo Park8ea49592017-07-24 07:14:55 +09001576 {"arm", "armv7-a-neon", "exynos-m1", []string{"armeabi-v7a"}},
Junmo Parkd86c9022017-07-21 09:07:47 +09001577 {"arm", "armv7-a-neon", "exynos-m2", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -08001578 {"arm64", "armv8-a", "cortex-a53", []string{"arm64-v8a"}},
Richard Fungeb37ed32018-09-24 16:33:45 -07001579 {"arm64", "armv8-a", "cortex-a72", []string{"arm64-v8a"}},
Jake Weinstein6600a442017-05-15 18:27:12 -04001580 {"arm64", "armv8-a", "cortex-a73", []string{"arm64-v8a"}},
Alex Naidisac01ff52016-08-30 15:56:33 +02001581 {"arm64", "armv8-a", "kryo", []string{"arm64-v8a"}},
Junmo Park8ea49592017-07-24 07:14:55 +09001582 {"arm64", "armv8-a", "exynos-m1", []string{"arm64-v8a"}},
Junmo Parkd86c9022017-07-21 09:07:47 +09001583 {"arm64", "armv8-a", "exynos-m2", []string{"arm64-v8a"}},
Christopher Ferrisba14a8f2018-04-23 18:15:25 -07001584 {"arm64", "armv8-2a", "cortex-a75", []string{"arm64-v8a"}},
Haibo Huanga31e2bd2018-10-09 14:27:28 -07001585 {"arm64", "armv8-2a", "cortex-a76", []string{"arm64-v8a"}},
Artem Serovd3072b02018-11-15 15:21:51 +00001586 {"arm64", "armv8-2a", "kryo385", []string{"arm64-v8a"}},
Dan Willemsen468cc312016-01-13 23:25:19 -08001587 {"mips", "mips32-fp", "", []string{"mips"}},
1588 {"mips", "mips32r2-fp", "", []string{"mips"}},
1589 {"mips", "mips32r2-fp-xburst", "", []string{"mips"}},
Dan Willemsen65fb9812016-07-19 21:37:28 -07001590 //{"mips", "mips32r6", "", []string{"mips"}},
Colin Cross1837b802017-04-26 19:10:34 -07001591 {"mips", "mips32r2dsp-fp", "", []string{"mips"}},
1592 {"mips", "mips32r2dspr2-fp", "", []string{"mips"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001593 // mips64r2 is mismatching 64r2 and 64r6 libraries during linking to libgcc
1594 //{"mips64", "mips64r2", "", []string{"mips64"}},
1595 {"mips64", "mips64r6", "", []string{"mips64"}},
1596 {"x86", "", "", []string{"x86"}},
1597 {"x86", "atom", "", []string{"x86"}},
1598 {"x86", "haswell", "", []string{"x86"}},
1599 {"x86", "ivybridge", "", []string{"x86"}},
1600 {"x86", "sandybridge", "", []string{"x86"}},
1601 {"x86", "silvermont", "", []string{"x86"}},
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -07001602 {"x86", "stoneyridge", "", []string{"x86"}},
Dan Willemsen8a354052016-05-10 14:30:51 -07001603 {"x86", "x86_64", "", []string{"x86"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001604 {"x86_64", "", "", []string{"x86_64"}},
1605 {"x86_64", "haswell", "", []string{"x86_64"}},
1606 {"x86_64", "ivybridge", "", []string{"x86_64"}},
1607 {"x86_64", "sandybridge", "", []string{"x86_64"}},
1608 {"x86_64", "silvermont", "", []string{"x86_64"}},
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -07001609 {"x86_64", "stoneyridge", "", []string{"x86_64"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001610 }
Dan Albert4098deb2016-10-19 14:04:41 -07001611}
Dan Willemsen322acaf2016-01-12 23:07:05 -08001612
Dan Albert4098deb2016-10-19 14:04:41 -07001613func getNdkAbisConfig() []archConfig {
1614 return []archConfig{
Dan Albert8818f492019-02-19 13:53:01 -08001615 {"arm", "armv7-a", "", []string{"armeabi"}},
Dan Albert4098deb2016-10-19 14:04:41 -07001616 {"arm64", "armv8-a", "", []string{"arm64-v8a"}},
Dan Albert4098deb2016-10-19 14:04:41 -07001617 {"x86", "", "", []string{"x86"}},
1618 {"x86_64", "", "", []string{"x86_64"}},
1619 }
1620}
1621
Dan Willemsen01a3c252019-01-11 19:02:16 -08001622func decodeArchSettings(os OsType, archConfigs []archConfig) ([]Target, error) {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001623 var ret []Target
Dan Willemsen322acaf2016-01-12 23:07:05 -08001624
Dan Albert4098deb2016-10-19 14:04:41 -07001625 for _, config := range archConfigs {
Dan Willemsen01a3c252019-01-11 19:02:16 -08001626 arch, err := decodeArch(os, config.arch, &config.archVariant,
Colin Crossa74ca042019-01-31 14:31:51 -08001627 &config.cpuVariant, config.abi)
Dan Willemsen322acaf2016-01-12 23:07:05 -08001628 if err != nil {
1629 return nil, err
1630 }
Colin Cross3b19f5d2019-09-17 14:45:31 -07001631
Colin Crossa1ad8d12016-06-01 17:09:44 -07001632 ret = append(ret, Target{
1633 Os: Android,
1634 Arch: arch,
1635 })
Dan Willemsen322acaf2016-01-12 23:07:05 -08001636 }
1637
1638 return ret, nil
1639}
1640
Colin Cross4225f652015-09-17 14:33:42 -07001641// Convert a set of strings from product variables into a single Arch struct
Colin Crossa74ca042019-01-31 14:31:51 -08001642func decodeArch(os OsType, arch string, archVariant, cpuVariant *string, abi []string) (Arch, error) {
Colin Cross4225f652015-09-17 14:33:42 -07001643 stringPtr := func(p *string) string {
1644 if p != nil {
1645 return *p
1646 }
1647 return ""
1648 }
1649
Colin Crosseeabb892015-11-20 13:07:51 -08001650 archType, ok := archTypeMap[arch]
1651 if !ok {
1652 return Arch{}, fmt.Errorf("unknown arch %q", arch)
1653 }
Colin Cross4225f652015-09-17 14:33:42 -07001654
Colin Crosseeabb892015-11-20 13:07:51 -08001655 a := Arch{
Colin Cross4225f652015-09-17 14:33:42 -07001656 ArchType: archType,
1657 ArchVariant: stringPtr(archVariant),
1658 CpuVariant: stringPtr(cpuVariant),
Colin Crossa74ca042019-01-31 14:31:51 -08001659 Abi: abi,
Colin Crosseeabb892015-11-20 13:07:51 -08001660 }
1661
1662 if a.ArchVariant == a.ArchType.Name || a.ArchVariant == "generic" {
1663 a.ArchVariant = ""
1664 }
1665
1666 if a.CpuVariant == a.ArchType.Name || a.CpuVariant == "generic" {
1667 a.CpuVariant = ""
1668 }
1669
1670 for i := 0; i < len(a.Abi); i++ {
1671 if a.Abi[i] == "" {
1672 a.Abi = append(a.Abi[:i], a.Abi[i+1:]...)
1673 i--
1674 }
1675 }
1676
Dan Willemsen01a3c252019-01-11 19:02:16 -08001677 if a.ArchVariant == "" {
1678 if featureMap, ok := defaultArchFeatureMap[os]; ok {
1679 a.ArchFeatures = featureMap[archType]
1680 }
1681 } else {
1682 if featureMap, ok := archFeatureMap[archType]; ok {
1683 a.ArchFeatures = featureMap[a.ArchVariant]
1684 }
Colin Crossc5c24ad2015-11-20 15:35:00 -08001685 }
1686
Colin Crosseeabb892015-11-20 13:07:51 -08001687 return a, nil
Colin Cross4225f652015-09-17 14:33:42 -07001688}
1689
Colin Cross69617d32016-09-06 10:39:07 -07001690func filterMultilibTargets(targets []Target, multilib string) []Target {
1691 var ret []Target
1692 for _, t := range targets {
1693 if t.Arch.ArchType.Multilib == multilib {
1694 ret = append(ret, t)
1695 }
1696 }
1697 return ret
1698}
1699
Nan Zhangdb0b9a32017-02-27 10:12:13 -08001700func getCommonTargets(targets []Target) []Target {
1701 var ret []Target
1702 set := make(map[string]bool)
1703
1704 for _, t := range targets {
1705 if _, found := set[t.Os.String()]; !found {
1706 set[t.Os.String()] = true
1707 ret = append(ret, commonTargetMap[t.Os.String()])
1708 }
1709 }
1710
1711 return ret
1712}
1713
Colin Cross3dceee32018-09-06 10:19:57 -07001714func firstTarget(targets []Target, filters ...string) []Target {
Colin Cross6b4a32d2017-12-05 13:42:45 -08001715 for _, filter := range filters {
1716 buildTargets := filterMultilibTargets(targets, filter)
1717 if len(buildTargets) > 0 {
Colin Cross3dceee32018-09-06 10:19:57 -07001718 return buildTargets[:1]
Colin Cross6b4a32d2017-12-05 13:42:45 -08001719 }
1720 }
1721 return nil
1722}
1723
Colin Crossa1ad8d12016-06-01 17:09:44 -07001724// Use the module multilib setting to select one or more targets from a target list
Colin Crossee0bc3b2018-10-02 22:01:37 -07001725func decodeMultilibTargets(multilib string, targets []Target, prefer32 bool) ([]Target, error) {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001726 buildTargets := []Target{}
Colin Cross6b4a32d2017-12-05 13:42:45 -08001727
Colin Cross4225f652015-09-17 14:33:42 -07001728 switch multilib {
1729 case "common":
Colin Cross6b4a32d2017-12-05 13:42:45 -08001730 buildTargets = getCommonTargets(targets)
1731 case "common_first":
1732 buildTargets = getCommonTargets(targets)
1733 if prefer32 {
Colin Cross3dceee32018-09-06 10:19:57 -07001734 buildTargets = append(buildTargets, firstTarget(targets, "lib32", "lib64")...)
Colin Cross6b4a32d2017-12-05 13:42:45 -08001735 } else {
Colin Cross3dceee32018-09-06 10:19:57 -07001736 buildTargets = append(buildTargets, firstTarget(targets, "lib64", "lib32")...)
Colin Cross6b4a32d2017-12-05 13:42:45 -08001737 }
Colin Cross4225f652015-09-17 14:33:42 -07001738 case "both":
Colin Cross8b74d172016-09-13 09:59:14 -07001739 if prefer32 {
1740 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib32")...)
1741 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib64")...)
1742 } else {
1743 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib64")...)
1744 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib32")...)
1745 }
Colin Cross4225f652015-09-17 14:33:42 -07001746 case "32":
Colin Cross69617d32016-09-06 10:39:07 -07001747 buildTargets = filterMultilibTargets(targets, "lib32")
Colin Cross4225f652015-09-17 14:33:42 -07001748 case "64":
Colin Cross69617d32016-09-06 10:39:07 -07001749 buildTargets = filterMultilibTargets(targets, "lib64")
Colin Cross6b4a32d2017-12-05 13:42:45 -08001750 case "first":
1751 if prefer32 {
Colin Cross3dceee32018-09-06 10:19:57 -07001752 buildTargets = firstTarget(targets, "lib32", "lib64")
Colin Cross6b4a32d2017-12-05 13:42:45 -08001753 } else {
Colin Cross3dceee32018-09-06 10:19:57 -07001754 buildTargets = firstTarget(targets, "lib64", "lib32")
Colin Cross6b4a32d2017-12-05 13:42:45 -08001755 }
Colin Cross69617d32016-09-06 10:39:07 -07001756 case "prefer32":
Colin Cross3dceee32018-09-06 10:19:57 -07001757 buildTargets = filterMultilibTargets(targets, "lib32")
1758 if len(buildTargets) == 0 {
1759 buildTargets = filterMultilibTargets(targets, "lib64")
1760 }
Colin Cross4225f652015-09-17 14:33:42 -07001761 default:
Colin Cross69617d32016-09-06 10:39:07 -07001762 return nil, fmt.Errorf(`compile_multilib must be "both", "first", "32", "64", or "prefer32" found %q`,
Colin Cross4225f652015-09-17 14:33:42 -07001763 multilib)
Colin Cross4225f652015-09-17 14:33:42 -07001764 }
1765
Colin Crossa1ad8d12016-06-01 17:09:44 -07001766 return buildTargets, nil
Colin Cross4225f652015-09-17 14:33:42 -07001767}