blob: 44c3f48a08b8224e197017644430476ce0b32633 [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
Dan Willemsen17f05262016-05-31 16:27:00 -0700530 Native bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800531}
532
533func (a Arch) String() string {
Colin Crossd3ba0392015-05-07 14:11:29 -0700534 s := a.ArchType.String()
Colin Cross3f40fa42015-01-30 17:27:36 -0800535 if a.ArchVariant != "" {
536 s += "_" + a.ArchVariant
537 }
538 if a.CpuVariant != "" {
539 s += "_" + a.CpuVariant
540 }
541 return s
542}
543
544type ArchType struct {
Colin Crossec193632015-07-06 17:49:43 -0700545 Name string
Dan Willemsenb1957a52016-06-23 23:44:54 -0700546 Field string
Colin Crossec193632015-07-06 17:49:43 -0700547 Multilib string
Colin Cross3f40fa42015-01-30 17:27:36 -0800548}
549
Colin Crossec193632015-07-06 17:49:43 -0700550func newArch(name, multilib string) ArchType {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700551 archType := ArchType{
Colin Crossec193632015-07-06 17:49:43 -0700552 Name: name,
Dan Willemsenb1957a52016-06-23 23:44:54 -0700553 Field: proptools.FieldNameForProperty(name),
Colin Crossec193632015-07-06 17:49:43 -0700554 Multilib: multilib,
Colin Cross3f40fa42015-01-30 17:27:36 -0800555 }
Dan Willemsenb1957a52016-06-23 23:44:54 -0700556 archTypeList = append(archTypeList, archType)
557 return archType
Colin Cross3f40fa42015-01-30 17:27:36 -0800558}
559
560func (a ArchType) String() string {
561 return a.Name
562}
563
Colin Cross74ba9622019-02-11 15:11:14 -0800564var _ encoding.TextMarshaler = ArchType{}
565
566func (a ArchType) MarshalText() ([]byte, error) {
567 return []byte(strconv.Quote(a.String())), nil
568}
569
570var _ encoding.TextUnmarshaler = &ArchType{}
571
572func (a *ArchType) UnmarshalText(text []byte) error {
573 if u, ok := archTypeMap[string(text)]; ok {
574 *a = u
575 return nil
576 }
577
578 return fmt.Errorf("unknown ArchType %q", text)
579}
580
Colin Crossa1ad8d12016-06-01 17:09:44 -0700581var BuildOs = func() OsType {
Dan Willemsen490fd492015-11-24 17:53:15 -0800582 switch runtime.GOOS {
583 case "linux":
584 return Linux
585 case "darwin":
586 return Darwin
587 default:
588 panic(fmt.Sprintf("unsupported OS: %s", runtime.GOOS))
589 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700590}()
591
592var (
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800593 osTypeList []OsType
594 commonTargetMap = make(map[string]Target)
Colin Crossa1ad8d12016-06-01 17:09:44 -0700595
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800596 NoOsType OsType
Dan Willemsen866b5632017-09-22 12:28:24 -0700597 Linux = NewOsType("linux_glibc", Host, false)
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800598 Darwin = NewOsType("darwin", Host, false)
Dan Willemsen9ff34c02018-10-10 17:58:19 -0700599 LinuxBionic = NewOsType("linux_bionic", Host, false)
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800600 Windows = NewOsType("windows", HostCross, true)
601 Android = NewOsType("android", Device, false)
Doug Horn21b94272019-01-16 12:06:11 -0800602 Fuchsia = NewOsType("fuchsia", Device, false)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700603
604 osArchTypeMap = map[OsType][]ArchType{
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800605 Linux: []ArchType{X86, X86_64},
606 LinuxBionic: []ArchType{X86_64},
Dan Willemsene97e68a2018-08-28 17:12:56 -0700607 Darwin: []ArchType{X86_64},
Dan Willemsen00fcbde2016-11-17 00:25:59 -0800608 Windows: []ArchType{X86, X86_64},
609 Android: []ArchType{Arm, Arm64, Mips, Mips64, X86, X86_64},
Doug Horn21b94272019-01-16 12:06:11 -0800610 Fuchsia: []ArchType{Arm64, X86_64},
Dan Willemsenb1957a52016-06-23 23:44:54 -0700611 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700612)
613
614type OsType struct {
615 Name, Field string
616 Class OsClass
Dan Willemsen0a37a2a2016-11-13 10:16:05 -0800617
618 DefaultDisabled bool
Dan Willemsen490fd492015-11-24 17:53:15 -0800619}
620
Colin Crossa1ad8d12016-06-01 17:09:44 -0700621type OsClass int
622
623const (
Dan Willemsen0e2d97b2016-11-28 17:50:06 -0800624 Generic OsClass = iota
625 Device
Colin Crossa1ad8d12016-06-01 17:09:44 -0700626 Host
627 HostCross
628)
629
Colin Cross67a5c132017-05-09 13:45:28 -0700630func (class OsClass) String() string {
631 switch class {
632 case Generic:
633 return "generic"
634 case Device:
635 return "device"
636 case Host:
637 return "host"
638 case HostCross:
639 return "host cross"
640 default:
641 panic(fmt.Errorf("unknown class %d", class))
642 }
643}
644
Colin Crossa1ad8d12016-06-01 17:09:44 -0700645func (os OsType) String() string {
646 return os.Name
Colin Cross54c71122016-06-01 17:09:44 -0700647}
648
Dan Willemsen866b5632017-09-22 12:28:24 -0700649func (os OsType) Bionic() bool {
650 return os == Android || os == LinuxBionic
651}
652
653func (os OsType) Linux() bool {
654 return os == Android || os == Linux || os == LinuxBionic
655}
656
Dan Willemsen0a37a2a2016-11-13 10:16:05 -0800657func NewOsType(name string, class OsClass, defDisabled bool) OsType {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700658 os := OsType{
659 Name: name,
660 Field: strings.Title(name),
661 Class: class,
Dan Willemsen0a37a2a2016-11-13 10:16:05 -0800662
663 DefaultDisabled: defDisabled,
Colin Cross54c71122016-06-01 17:09:44 -0700664 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700665 osTypeList = append(osTypeList, os)
Nan Zhangdb0b9a32017-02-27 10:12:13 -0800666
667 if _, found := commonTargetMap[name]; found {
668 panic(fmt.Errorf("Found Os type duplicate during OsType registration: %q", name))
669 } else {
670 commonTargetMap[name] = Target{Os: os, Arch: Arch{ArchType: Common}}
671 }
672
Colin Crossa1ad8d12016-06-01 17:09:44 -0700673 return os
674}
675
676func osByName(name string) OsType {
677 for _, os := range osTypeList {
678 if os.Name == name {
679 return os
680 }
681 }
682
683 return NoOsType
Dan Willemsen490fd492015-11-24 17:53:15 -0800684}
685
dimitry1f33e402019-03-26 12:39:31 +0100686type NativeBridgeSupport bool
687
688const (
689 NativeBridgeDisabled NativeBridgeSupport = false
690 NativeBridgeEnabled NativeBridgeSupport = true
691)
692
Colin Crossa1ad8d12016-06-01 17:09:44 -0700693type Target struct {
dimitry8d6dde82019-07-11 10:23:53 +0200694 Os OsType
695 Arch Arch
696 NativeBridge NativeBridgeSupport
697 NativeBridgeHostArchName string
698 NativeBridgeRelativePath string
Colin Crossd3ba0392015-05-07 14:11:29 -0700699}
700
Colin Crossa1ad8d12016-06-01 17:09:44 -0700701func (target Target) String() string {
dimitry1f33e402019-03-26 12:39:31 +0100702 variant := ""
703 if target.NativeBridge {
704 variant = "native_bridge_"
705 }
706 return target.Os.String() + "_" + variant + target.Arch.String()
Dan Willemsen490fd492015-11-24 17:53:15 -0800707}
708
Colin Crossee0bc3b2018-10-02 22:01:37 -0700709// archMutator splits a module into a variant for each Target requested by the module. Target selection
710// for a module is in three levels, OsClass, mulitlib, and then Target.
711// OsClass selection is determined by:
712// - The HostOrDeviceSupported value passed in to InitAndroidArchModule by the module type factory, which selects
713// whether the module type can compile for host, device or both.
714// - The host_supported and device_supported properties on the module.
Roland Levillainf5b635d2019-06-05 14:42:57 +0100715// 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 -0700716// for the module, the Device OsClass is selected.
717// Within each selected OsClass, the multilib selection is determined by:
Jaewoong Jung02b2d4d2019-06-06 15:19:57 -0700718// - The compile_multilib property if it set (which may be overridden by target.android.compile_multilib or
Colin Crossee0bc3b2018-10-02 22:01:37 -0700719// target.host.compile_multilib).
720// - The default multilib passed to InitAndroidArchModule if compile_multilib was not set.
721// Valid multilib values include:
722// "both": compile for all Targets supported by the OsClass (generally x86_64 and x86, or arm64 and arm).
723// "first": compile for only a single preferred Target supported by the OsClass. This is generally x86_64 or arm64,
724// but may be arm for a 32-bit only build or a build with TARGET_PREFER_32_BIT=true set.
725// "32": compile for only a single 32-bit Target supported by the OsClass.
726// "64": compile for only a single 64-bit Target supported by the OsClass.
727// "common": compile a for a single Target that will work on all Targets suported by the OsClass (for example Java).
728//
729// Once the list of Targets is determined, the module is split into a variant for each Target.
730//
731// Modules can be initialized with InitAndroidMultiTargetsArchModule, in which case they will be split by OsClass,
732// 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 -0700733func archMutator(mctx BottomUpMutatorContext) {
Colin Cross635c3b02016-05-18 15:37:25 -0700734 var module Module
Colin Cross3f40fa42015-01-30 17:27:36 -0800735 var ok bool
Colin Cross635c3b02016-05-18 15:37:25 -0700736 if module, ok = mctx.Module().(Module); !ok {
Colin Cross3f40fa42015-01-30 17:27:36 -0800737 return
738 }
739
Colin Cross5eca7cb2018-10-02 14:02:10 -0700740 base := module.base()
741
742 if !base.ArchSpecific() {
Colin Crossb9db4802016-06-03 01:50:47 +0000743 return
744 }
745
Colin Crossa1ad8d12016-06-01 17:09:44 -0700746 var moduleTargets []Target
Colin Crossee0bc3b2018-10-02 22:01:37 -0700747 moduleMultiTargets := make(map[int][]Target)
Colin Cross8b74d172016-09-13 09:59:14 -0700748 primaryModules := make(map[int]bool)
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700749 osClasses := base.OsClassSupported()
Colin Crossa1ad8d12016-06-01 17:09:44 -0700750
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700751 for _, os := range osTypeList {
752 supportedClass := false
753 for _, osClass := range osClasses {
754 if os.Class == osClass {
755 supportedClass = true
756 }
757 }
758 if !supportedClass {
759 continue
760 }
761
762 osTargets := mctx.Config().Targets[os]
763 if len(osTargets) == 0 {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700764 continue
765 }
Colin Crossee0bc3b2018-10-02 22:01:37 -0700766
dimitry1f33e402019-03-26 12:39:31 +0100767 // Filter NativeBridge targets unless they are explicitly supported
768 if os == Android && !Bool(base.commonProperties.Native_bridge_supported) {
769 var targets []Target
770 for _, t := range osTargets {
771 if !t.NativeBridge {
772 targets = append(targets, t)
773 }
774 }
775
776 osTargets = targets
777 }
778
Colin Cross5eca7cb2018-10-02 14:02:10 -0700779 // only the primary arch in the recovery partition
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700780 if os == Android && module.InstallInRecovery() {
781 osTargets = []Target{osTargets[0]}
Colin Cross5eca7cb2018-10-02 14:02:10 -0700782 }
783
Colin Crossa9d8bee2018-10-02 13:59:46 -0700784 prefer32 := false
785 if base.prefer32 != nil {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700786 prefer32 = base.prefer32(mctx, base, os.Class)
Colin Cross8b74d172016-09-13 09:59:14 -0700787 }
Colin Crossa9d8bee2018-10-02 13:59:46 -0700788
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700789 multilib, extraMultilib := decodeMultilib(base, os.Class)
790 targets, err := decodeMultilibTargets(multilib, osTargets, prefer32)
Colin Crossa1ad8d12016-06-01 17:09:44 -0700791 if err != nil {
792 mctx.ModuleErrorf("%s", err.Error())
793 }
Colin Crossee0bc3b2018-10-02 22:01:37 -0700794
795 var multiTargets []Target
796 if extraMultilib != "" {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700797 multiTargets, err = decodeMultilibTargets(extraMultilib, osTargets, prefer32)
Colin Crossee0bc3b2018-10-02 22:01:37 -0700798 if err != nil {
799 mctx.ModuleErrorf("%s", err.Error())
800 }
801 }
802
Colin Cross8b74d172016-09-13 09:59:14 -0700803 if len(targets) > 0 {
804 primaryModules[len(moduleTargets)] = true
Colin Crossee0bc3b2018-10-02 22:01:37 -0700805 moduleMultiTargets[len(moduleTargets)] = multiTargets
Colin Cross8b74d172016-09-13 09:59:14 -0700806 moduleTargets = append(moduleTargets, targets...)
807 }
Colin Crossb9db4802016-06-03 01:50:47 +0000808 }
809
Dan Willemsen3f32f032016-07-11 14:36:48 -0700810 if len(moduleTargets) == 0 {
Colin Cross5eca7cb2018-10-02 14:02:10 -0700811 base.commonProperties.Enabled = boolPtr(false)
Dan Willemsen3f32f032016-07-11 14:36:48 -0700812 return
813 }
814
Colin Crossa1ad8d12016-06-01 17:09:44 -0700815 targetNames := make([]string, len(moduleTargets))
Colin Crossb9db4802016-06-03 01:50:47 +0000816
Colin Crossa1ad8d12016-06-01 17:09:44 -0700817 for i, target := range moduleTargets {
818 targetNames[i] = target.String()
819 }
820
821 modules := mctx.CreateVariations(targetNames...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800822 for i, m := range modules {
Colin Crossee0bc3b2018-10-02 22:01:37 -0700823 m.(Module).base().SetTarget(moduleTargets[i], moduleMultiTargets[i], primaryModules[i])
Colin Cross635c3b02016-05-18 15:37:25 -0700824 m.(Module).base().setArchProperties(mctx)
Colin Cross3f40fa42015-01-30 17:27:36 -0800825 }
826}
827
Colin Crossee0bc3b2018-10-02 22:01:37 -0700828func decodeMultilib(base *ModuleBase, class OsClass) (multilib, extraMultilib string) {
829 switch class {
830 case Device:
831 multilib = String(base.commonProperties.Target.Android.Compile_multilib)
832 case Host, HostCross:
833 multilib = String(base.commonProperties.Target.Host.Compile_multilib)
834 }
835 if multilib == "" {
836 multilib = String(base.commonProperties.Compile_multilib)
837 }
838 if multilib == "" {
839 multilib = base.commonProperties.Default_multilib
840 }
841
842 if base.commonProperties.UseTargetVariants {
843 return multilib, ""
844 } else {
845 // For app modules a single arch variant will be created per OS class which is expected to handle all the
846 // selected arches. Return the common-type as multilib and any Android.bp provided multilib as extraMultilib
847 if multilib == base.commonProperties.Default_multilib {
848 multilib = "first"
849 }
850 return base.commonProperties.Default_multilib, multilib
851 }
852}
853
Colin Crosscb988072019-01-24 14:58:11 -0800854func filterArchStructFields(fields []reflect.StructField) (filteredFields []reflect.StructField, filtered bool) {
Colin Crossc17727d2018-10-24 12:42:09 -0700855 for _, field := range fields {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700856 if !proptools.HasTag(field, "android", "arch_variant") {
Colin Crosscb988072019-01-24 14:58:11 -0800857 filtered = true
Dan Willemsenb1957a52016-06-23 23:44:54 -0700858 continue
859 }
860
861 // The arch_variant field isn't necessary past this point
862 // Instead of wasting space, just remove it. Go also has a
863 // 16-bit limit on structure name length. The name is constructed
864 // based on the Go source representation of the structure, so
865 // the tag names count towards that length.
866 //
867 // TODO: handle the uncommon case of other tags being involved
868 if field.Tag == `android:"arch_variant"` {
869 field.Tag = ""
870 }
871
872 // Recurse into structs
873 switch field.Type.Kind() {
874 case reflect.Struct:
Colin Crosscb988072019-01-24 14:58:11 -0800875 var subFiltered bool
876 field.Type, subFiltered = filterArchStruct(field.Type)
877 filtered = filtered || subFiltered
878 if field.Type == nil {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700879 continue
880 }
881 case reflect.Ptr:
882 if field.Type.Elem().Kind() == reflect.Struct {
Colin Crosscb988072019-01-24 14:58:11 -0800883 nestedType, subFiltered := filterArchStruct(field.Type.Elem())
884 filtered = filtered || subFiltered
885 if nestedType == nil {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700886 continue
887 }
888 field.Type = reflect.PtrTo(nestedType)
889 }
890 case reflect.Interface:
891 panic("Interfaces are not supported in arch_variant properties")
892 }
893
Colin Crosscb988072019-01-24 14:58:11 -0800894 filteredFields = append(filteredFields, field)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700895 }
Colin Crossc17727d2018-10-24 12:42:09 -0700896
Colin Crosscb988072019-01-24 14:58:11 -0800897 return filteredFields, filtered
Colin Crossc17727d2018-10-24 12:42:09 -0700898}
899
Colin Crosscb988072019-01-24 14:58:11 -0800900// filterArchStruct takes a reflect.Type that is either a sturct or a pointer to a struct, and returns a reflect.Type
901// that only contains the fields in the original type that have an `android:"arch_variant"` struct tag, and a bool
902// that is true if the new struct type has fewer fields than the original type. If there are no fields in the
903// original type with the struct tag it returns nil and true.
904func filterArchStruct(prop reflect.Type) (filteredProp reflect.Type, filtered bool) {
Colin Crossc17727d2018-10-24 12:42:09 -0700905 var fields []reflect.StructField
906
907 ptr := prop.Kind() == reflect.Ptr
908 if ptr {
909 prop = prop.Elem()
910 }
911
912 for i := 0; i < prop.NumField(); i++ {
913 fields = append(fields, prop.Field(i))
914 }
915
Colin Crosscb988072019-01-24 14:58:11 -0800916 filteredFields, filtered := filterArchStructFields(fields)
Colin Crossc17727d2018-10-24 12:42:09 -0700917
Colin Crosscb988072019-01-24 14:58:11 -0800918 if len(filteredFields) == 0 {
919 return nil, true
Dan Willemsenb1957a52016-06-23 23:44:54 -0700920 }
921
Colin Crosscb988072019-01-24 14:58:11 -0800922 if !filtered {
923 if ptr {
924 return reflect.PtrTo(prop), false
925 }
926 return prop, false
927 }
928
929 ret := reflect.StructOf(filteredFields)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700930 if ptr {
931 ret = reflect.PtrTo(ret)
932 }
Colin Crossc17727d2018-10-24 12:42:09 -0700933
Dan Willemsenb1957a52016-06-23 23:44:54 -0700934 return ret, true
935}
936
Colin Crosscb988072019-01-24 14:58:11 -0800937// filterArchStruct takes a reflect.Type that is either a sturct or a pointer to a struct, and returns a list of
938// reflect.Type that only contains the fields in the original type that have an `android:"arch_variant"` struct tag,
939// and a bool that is true if the new struct type has fewer fields than the original type. If there are no fields in
940// the original type with the struct tag it returns nil and true. Each returned struct type will have a maximum of
941// 10 top level fields in it to attempt to avoid hitting the reflect.StructOf name length limit, although the limit
942// can still be reached with a single struct field with many fields in it.
943func filterArchStructSharded(prop reflect.Type) (filteredProp []reflect.Type, filtered bool) {
Colin Crossc17727d2018-10-24 12:42:09 -0700944 var fields []reflect.StructField
945
946 ptr := prop.Kind() == reflect.Ptr
947 if ptr {
948 prop = prop.Elem()
949 }
950
951 for i := 0; i < prop.NumField(); i++ {
952 fields = append(fields, prop.Field(i))
953 }
954
Colin Crosscb988072019-01-24 14:58:11 -0800955 fields, filtered = filterArchStructFields(fields)
956 if !filtered {
957 if ptr {
958 return []reflect.Type{reflect.PtrTo(prop)}, false
959 }
960 return []reflect.Type{prop}, false
961 }
Colin Crossc17727d2018-10-24 12:42:09 -0700962
963 if len(fields) == 0 {
Colin Crosscb988072019-01-24 14:58:11 -0800964 return nil, true
Colin Crossc17727d2018-10-24 12:42:09 -0700965 }
966
967 shards := shardFields(fields, 10)
968
Colin Crossc17727d2018-10-24 12:42:09 -0700969 for _, shard := range shards {
970 s := reflect.StructOf(shard)
971 if ptr {
972 s = reflect.PtrTo(s)
973 }
Colin Crosscb988072019-01-24 14:58:11 -0800974 filteredProp = append(filteredProp, s)
Colin Crossc17727d2018-10-24 12:42:09 -0700975 }
976
Colin Crosscb988072019-01-24 14:58:11 -0800977 return filteredProp, true
Colin Crossc17727d2018-10-24 12:42:09 -0700978}
979
980func shardFields(fields []reflect.StructField, shardSize int) [][]reflect.StructField {
981 ret := make([][]reflect.StructField, 0, (len(fields)+shardSize-1)/shardSize)
982 for len(fields) > shardSize {
983 ret = append(ret, fields[0:shardSize])
984 fields = fields[shardSize:]
985 }
986 if len(fields) > 0 {
987 ret = append(ret, fields)
988 }
989 return ret
990}
991
Colin Crosscb988072019-01-24 14:58:11 -0800992// createArchType takes a reflect.Type that is either a struct or a pointer to a struct, and returns a list of
993// reflect.Type that contains the arch-variant properties inside structs for each architecture, os, target, multilib,
994// etc.
Colin Crossc17727d2018-10-24 12:42:09 -0700995func createArchType(props reflect.Type) []reflect.Type {
Colin Crosscb988072019-01-24 14:58:11 -0800996 propShards, _ := filterArchStructSharded(props)
997 if len(propShards) == 0 {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700998 return nil
999 }
1000
Colin Crossc17727d2018-10-24 12:42:09 -07001001 var ret []reflect.Type
1002 for _, props := range propShards {
Dan Willemsenb1957a52016-06-23 23:44:54 -07001003
Colin Crossc17727d2018-10-24 12:42:09 -07001004 variantFields := func(names []string) []reflect.StructField {
1005 ret := make([]reflect.StructField, len(names))
Dan Willemsenb1957a52016-06-23 23:44:54 -07001006
Colin Crossc17727d2018-10-24 12:42:09 -07001007 for i, name := range names {
1008 ret[i].Name = name
1009 ret[i].Type = props
Dan Willemsen866b5632017-09-22 12:28:24 -07001010 }
Colin Crossc17727d2018-10-24 12:42:09 -07001011
1012 return ret
1013 }
1014
1015 archFields := make([]reflect.StructField, len(archTypeList))
1016 for i, arch := range archTypeList {
1017 variants := []string{}
1018
1019 for _, archVariant := range archVariants[arch] {
1020 archVariant := variantReplacer.Replace(archVariant)
1021 variants = append(variants, proptools.FieldNameForProperty(archVariant))
1022 }
1023 for _, feature := range archFeatures[arch] {
1024 feature := variantReplacer.Replace(feature)
1025 variants = append(variants, proptools.FieldNameForProperty(feature))
1026 }
1027
1028 fields := variantFields(variants)
1029
1030 fields = append([]reflect.StructField{{
1031 Name: "BlueprintEmbed",
1032 Type: props,
1033 Anonymous: true,
1034 }}, fields...)
1035
1036 archFields[i] = reflect.StructField{
1037 Name: arch.Field,
1038 Type: reflect.StructOf(fields),
1039 }
1040 }
1041 archType := reflect.StructOf(archFields)
1042
1043 multilibType := reflect.StructOf(variantFields([]string{"Lib32", "Lib64"}))
1044
1045 targets := []string{
1046 "Host",
1047 "Android64",
1048 "Android32",
1049 "Bionic",
1050 "Linux",
1051 "Not_windows",
1052 "Arm_on_x86",
1053 "Arm_on_x86_64",
1054 }
1055 for _, os := range osTypeList {
1056 targets = append(targets, os.Field)
1057
1058 for _, archType := range osArchTypeMap[os] {
1059 targets = append(targets, os.Field+"_"+archType.Name)
1060
1061 if os.Linux() {
1062 target := "Linux_" + archType.Name
1063 if !InList(target, targets) {
1064 targets = append(targets, target)
1065 }
1066 }
1067 if os.Bionic() {
1068 target := "Bionic_" + archType.Name
1069 if !InList(target, targets) {
1070 targets = append(targets, target)
1071 }
Dan Willemsen866b5632017-09-22 12:28:24 -07001072 }
1073 }
Dan Willemsenb1957a52016-06-23 23:44:54 -07001074 }
Dan Willemsenb1957a52016-06-23 23:44:54 -07001075
Colin Crossc17727d2018-10-24 12:42:09 -07001076 targetType := reflect.StructOf(variantFields(targets))
1077 ret = append(ret, reflect.StructOf([]reflect.StructField{
1078 {
1079 Name: "Arch",
1080 Type: archType,
1081 },
1082 {
1083 Name: "Multilib",
1084 Type: multilibType,
1085 },
1086 {
1087 Name: "Target",
1088 Type: targetType,
1089 },
1090 }))
1091 }
1092 return ret
Dan Willemsenb1957a52016-06-23 23:44:54 -07001093}
1094
1095var archPropTypeMap OncePer
1096
Colin Cross36242852017-06-23 15:06:31 -07001097func InitArchModule(m Module) {
Colin Cross3f40fa42015-01-30 17:27:36 -08001098
1099 base := m.base()
1100
Colin Cross36242852017-06-23 15:06:31 -07001101 base.generalProperties = m.GetProperties()
Colin Cross3f40fa42015-01-30 17:27:36 -08001102
1103 for _, properties := range base.generalProperties {
1104 propertiesValue := reflect.ValueOf(properties)
Colin Cross62496a02016-08-08 15:49:17 -07001105 t := propertiesValue.Type()
Colin Cross3f40fa42015-01-30 17:27:36 -08001106 if propertiesValue.Kind() != reflect.Ptr {
Colin Crossca860ac2016-01-04 14:34:37 -08001107 panic(fmt.Errorf("properties must be a pointer to a struct, got %T",
1108 propertiesValue.Interface()))
Colin Cross3f40fa42015-01-30 17:27:36 -08001109 }
1110
1111 propertiesValue = propertiesValue.Elem()
1112 if propertiesValue.Kind() != reflect.Struct {
Colin Crossca860ac2016-01-04 14:34:37 -08001113 panic(fmt.Errorf("properties must be a pointer to a struct, got %T",
1114 propertiesValue.Interface()))
Colin Cross3f40fa42015-01-30 17:27:36 -08001115 }
1116
Colin Cross571cccf2019-02-04 11:22:08 -08001117 archPropTypes := archPropTypeMap.Once(NewCustomOnceKey(t), func() interface{} {
Dan Willemsenb1957a52016-06-23 23:44:54 -07001118 return createArchType(t)
Colin Crossc17727d2018-10-24 12:42:09 -07001119 }).([]reflect.Type)
Colin Cross3f40fa42015-01-30 17:27:36 -08001120
Colin Crossc17727d2018-10-24 12:42:09 -07001121 var archProperties []interface{}
1122 for _, t := range archPropTypes {
1123 archProperties = append(archProperties, reflect.New(t).Interface())
Dan Willemsenb1957a52016-06-23 23:44:54 -07001124 }
Colin Crossc17727d2018-10-24 12:42:09 -07001125 base.archProperties = append(base.archProperties, archProperties)
1126 m.AddProperties(archProperties...)
Colin Cross3f40fa42015-01-30 17:27:36 -08001127 }
1128
Colin Cross36242852017-06-23 15:06:31 -07001129 base.customizableProperties = m.GetProperties()
Colin Cross3f40fa42015-01-30 17:27:36 -08001130}
1131
Colin Crossa716add2015-12-16 11:07:39 -08001132var variantReplacer = strings.NewReplacer("-", "_", ".", "_")
Colin Crossec193632015-07-06 17:49:43 -07001133
Colin Cross4157e882019-06-06 16:57:04 -07001134func (m *ModuleBase) appendProperties(ctx BottomUpMutatorContext,
Dan Willemsenb1957a52016-06-23 23:44:54 -07001135 dst interface{}, src reflect.Value, field, srcPrefix string) reflect.Value {
Colin Cross06a931b2015-10-28 17:23:31 -07001136
Dan Willemsenb1957a52016-06-23 23:44:54 -07001137 src = src.FieldByName(field)
1138 if !src.IsValid() {
Colin Crosseeabb892015-11-20 13:07:51 -08001139 ctx.ModuleErrorf("field %q does not exist", srcPrefix)
Dan Willemsenb1957a52016-06-23 23:44:54 -07001140 return src
Colin Cross85a88972015-11-23 13:29:51 -08001141 }
1142
Dan Willemsenb1957a52016-06-23 23:44:54 -07001143 ret := src
Colin Cross85a88972015-11-23 13:29:51 -08001144
Dan Willemsenb1957a52016-06-23 23:44:54 -07001145 if src.Kind() == reflect.Struct {
1146 src = src.FieldByName("BlueprintEmbed")
Colin Cross06a931b2015-10-28 17:23:31 -07001147 }
1148
Colin Cross6ee75b62016-05-05 15:57:15 -07001149 order := func(property string,
1150 dstField, srcField reflect.StructField,
1151 dstValue, srcValue interface{}) (proptools.Order, error) {
1152 if proptools.HasTag(dstField, "android", "variant_prepend") {
1153 return proptools.Prepend, nil
1154 } else {
1155 return proptools.Append, nil
1156 }
1157 }
1158
Dan Willemsenb1957a52016-06-23 23:44:54 -07001159 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, order)
Colin Cross06a931b2015-10-28 17:23:31 -07001160 if err != nil {
1161 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
1162 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
1163 } else {
1164 panic(err)
1165 }
1166 }
Colin Cross85a88972015-11-23 13:29:51 -08001167
Dan Willemsenb1957a52016-06-23 23:44:54 -07001168 return ret
Colin Cross06a931b2015-10-28 17:23:31 -07001169}
1170
Colin Cross3f40fa42015-01-30 17:27:36 -08001171// Rewrite the module's properties structs to contain arch-specific values.
Colin Cross4157e882019-06-06 16:57:04 -07001172func (m *ModuleBase) setArchProperties(ctx BottomUpMutatorContext) {
1173 arch := m.Arch()
1174 os := m.Os()
Colin Crossd3ba0392015-05-07 14:11:29 -07001175
Colin Cross4157e882019-06-06 16:57:04 -07001176 for i := range m.generalProperties {
1177 genProps := m.generalProperties[i]
1178 if m.archProperties[i] == nil {
Dan Willemsenb1957a52016-06-23 23:44:54 -07001179 continue
1180 }
Colin Cross4157e882019-06-06 16:57:04 -07001181 for _, archProperties := range m.archProperties[i] {
Colin Crossc17727d2018-10-24 12:42:09 -07001182 archPropValues := reflect.ValueOf(archProperties).Elem()
Dan Willemsenb1957a52016-06-23 23:44:54 -07001183
Colin Crossc17727d2018-10-24 12:42:09 -07001184 archProp := archPropValues.FieldByName("Arch")
1185 multilibProp := archPropValues.FieldByName("Multilib")
1186 targetProp := archPropValues.FieldByName("Target")
Dan Willemsenb1957a52016-06-23 23:44:54 -07001187
Colin Crossc17727d2018-10-24 12:42:09 -07001188 var field string
1189 var prefix string
Colin Crossd5934c82017-10-02 13:55:26 -07001190
Colin Crossc17727d2018-10-24 12:42:09 -07001191 // Handle arch-specific properties in the form:
Colin Crossd5934c82017-10-02 13:55:26 -07001192 // arch: {
Colin Crossc17727d2018-10-24 12:42:09 -07001193 // arm64: {
Colin Crossd5934c82017-10-02 13:55:26 -07001194 // key: value,
1195 // },
1196 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001197 t := arch.ArchType
1198
1199 if arch.ArchType != Common {
1200 field := proptools.FieldNameForProperty(t.Name)
1201 prefix := "arch." + t.Name
Colin Cross4157e882019-06-06 16:57:04 -07001202 archStruct := m.appendProperties(ctx, genProps, archProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001203
1204 // Handle arch-variant-specific properties in the form:
1205 // arch: {
1206 // variant: {
1207 // key: value,
1208 // },
1209 // },
1210 v := variantReplacer.Replace(arch.ArchVariant)
1211 if v != "" {
1212 field := proptools.FieldNameForProperty(v)
1213 prefix := "arch." + t.Name + "." + v
Colin Cross4157e882019-06-06 16:57:04 -07001214 m.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001215 }
1216
1217 // Handle cpu-variant-specific properties in the form:
1218 // arch: {
1219 // variant: {
1220 // key: value,
1221 // },
1222 // },
1223 if arch.CpuVariant != arch.ArchVariant {
1224 c := variantReplacer.Replace(arch.CpuVariant)
1225 if c != "" {
1226 field := proptools.FieldNameForProperty(c)
1227 prefix := "arch." + t.Name + "." + c
Colin Cross4157e882019-06-06 16:57:04 -07001228 m.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001229 }
1230 }
1231
1232 // Handle arch-feature-specific properties in the form:
1233 // arch: {
1234 // feature: {
1235 // key: value,
1236 // },
1237 // },
1238 for _, feature := range arch.ArchFeatures {
1239 field := proptools.FieldNameForProperty(feature)
1240 prefix := "arch." + t.Name + "." + feature
Colin Cross4157e882019-06-06 16:57:04 -07001241 m.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001242 }
1243
1244 // Handle multilib-specific properties in the form:
1245 // multilib: {
1246 // lib32: {
1247 // key: value,
1248 // },
1249 // },
1250 field = proptools.FieldNameForProperty(t.Multilib)
1251 prefix = "multilib." + t.Multilib
Colin Cross4157e882019-06-06 16:57:04 -07001252 m.appendProperties(ctx, genProps, multilibProp, field, prefix)
Colin Cross08016332016-12-20 09:53:14 -08001253 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001254
Colin Crossc17727d2018-10-24 12:42:09 -07001255 // Handle host-specific properties in the form:
1256 // target: {
1257 // host: {
Colin Crossd5934c82017-10-02 13:55:26 -07001258 // key: value,
1259 // },
1260 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001261 if os.Class == Host || os.Class == HostCross {
1262 field = "Host"
1263 prefix = "target.host"
Colin Cross4157e882019-06-06 16:57:04 -07001264 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001265 }
1266
1267 // Handle target OS generalities of the form:
1268 // target: {
1269 // bionic: {
1270 // key: value,
1271 // },
1272 // bionic_x86: {
1273 // key: value,
1274 // },
1275 // }
1276 if os.Linux() {
1277 field = "Linux"
1278 prefix = "target.linux"
Colin Cross4157e882019-06-06 16:57:04 -07001279 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001280
1281 if arch.ArchType != Common {
1282 field = "Linux_" + arch.ArchType.Name
1283 prefix = "target.linux_" + arch.ArchType.Name
Colin Cross4157e882019-06-06 16:57:04 -07001284 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossd5934c82017-10-02 13:55:26 -07001285 }
1286 }
Colin Crossc5c24ad2015-11-20 15:35:00 -08001287
Colin Crossc17727d2018-10-24 12:42:09 -07001288 if os.Bionic() {
1289 field = "Bionic"
1290 prefix = "target.bionic"
Colin Cross4157e882019-06-06 16:57:04 -07001291 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001292
1293 if arch.ArchType != Common {
1294 field = "Bionic_" + t.Name
1295 prefix = "target.bionic_" + t.Name
Colin Cross4157e882019-06-06 16:57:04 -07001296 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001297 }
1298 }
1299
1300 // Handle target OS properties in the form:
1301 // target: {
1302 // linux_glibc: {
1303 // key: value,
1304 // },
1305 // not_windows: {
1306 // key: value,
1307 // },
1308 // linux_glibc_x86: {
1309 // key: value,
1310 // },
1311 // linux_glibc_arm: {
1312 // key: value,
1313 // },
1314 // android {
1315 // key: value,
1316 // },
1317 // android_arm {
1318 // key: value,
1319 // },
1320 // android_x86 {
Colin Crossd5934c82017-10-02 13:55:26 -07001321 // key: value,
1322 // },
1323 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001324 field = os.Field
1325 prefix = "target." + os.Name
Colin Cross4157e882019-06-06 16:57:04 -07001326 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001327
1328 if arch.ArchType != Common {
1329 field = os.Field + "_" + t.Name
1330 prefix = "target." + os.Name + "_" + t.Name
Colin Cross4157e882019-06-06 16:57:04 -07001331 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossd5934c82017-10-02 13:55:26 -07001332 }
1333
Colin Crossc17727d2018-10-24 12:42:09 -07001334 if (os.Class == Host || os.Class == HostCross) && os != Windows {
1335 field := "Not_windows"
1336 prefix := "target.not_windows"
Colin Cross4157e882019-06-06 16:57:04 -07001337 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001338 }
1339
1340 // Handle 64-bit device properties in the form:
1341 // target {
1342 // android64 {
1343 // key: value,
1344 // },
1345 // android32 {
Colin Crossd5934c82017-10-02 13:55:26 -07001346 // key: value,
1347 // },
1348 // },
Colin Crossc17727d2018-10-24 12:42:09 -07001349 // WARNING: this is probably not what you want to use in your blueprints file, it selects
1350 // options for all targets on a device that supports 64-bit binaries, not just the targets
1351 // that are being compiled for 64-bit. Its expected use case is binaries like linker and
1352 // debuggerd that need to know when they are a 32-bit process running on a 64-bit device
1353 if os.Class == Device {
1354 if ctx.Config().Android64() {
1355 field := "Android64"
1356 prefix := "target.android64"
Colin Cross4157e882019-06-06 16:57:04 -07001357 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001358 } else {
1359 field := "Android32"
1360 prefix := "target.android32"
Colin Cross4157e882019-06-06 16:57:04 -07001361 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001362 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001363
Colin Crossc17727d2018-10-24 12:42:09 -07001364 if (arch.ArchType == X86 && (hasArmAbi(arch) ||
1365 hasArmAndroidArch(ctx.Config().Targets[Android]))) ||
1366 (arch.ArchType == Arm &&
1367 hasX86AndroidArch(ctx.Config().Targets[Android])) {
1368 field := "Arm_on_x86"
1369 prefix := "target.arm_on_x86"
Colin Cross4157e882019-06-06 16:57:04 -07001370 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001371 }
1372 if (arch.ArchType == X86_64 && (hasArmAbi(arch) ||
1373 hasArmAndroidArch(ctx.Config().Targets[Android]))) ||
1374 (arch.ArchType == Arm &&
1375 hasX8664AndroidArch(ctx.Config().Targets[Android])) {
1376 field := "Arm_on_x86_64"
1377 prefix := "target.arm_on_x86_64"
Colin Cross4157e882019-06-06 16:57:04 -07001378 m.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossc17727d2018-10-24 12:42:09 -07001379 }
Colin Cross4247f0d2017-04-13 16:56:14 -07001380 }
Colin Crossbb2e2b72016-12-08 17:23:53 -08001381 }
Colin Cross3f40fa42015-01-30 17:27:36 -08001382 }
1383}
1384
1385func forEachInterface(v reflect.Value, f func(reflect.Value)) {
1386 switch v.Kind() {
1387 case reflect.Interface:
1388 f(v)
1389 case reflect.Struct:
1390 for i := 0; i < v.NumField(); i++ {
1391 forEachInterface(v.Field(i), f)
1392 }
1393 case reflect.Ptr:
1394 forEachInterface(v.Elem(), f)
1395 default:
1396 panic(fmt.Errorf("Unsupported kind %s", v.Kind()))
1397 }
1398}
Colin Cross4225f652015-09-17 14:33:42 -07001399
Colin Crossa1ad8d12016-06-01 17:09:44 -07001400// Convert the arch product variables into a list of targets for each os class structs
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001401func decodeTargetProductVariables(config *config) (map[OsType][]Target, error) {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001402 variables := config.productVariables
Dan Willemsen490fd492015-11-24 17:53:15 -08001403
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001404 targets := make(map[OsType][]Target)
Colin Crossa1ad8d12016-06-01 17:09:44 -07001405 var targetErr error
1406
dimitry1f33e402019-03-26 12:39:31 +01001407 addTarget := func(os OsType, archName string, archVariant, cpuVariant *string, abi []string,
dimitry8d6dde82019-07-11 10:23:53 +02001408 nativeBridgeEnabled NativeBridgeSupport, nativeBridgeHostArchName *string,
1409 nativeBridgeRelativePath *string) {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001410 if targetErr != nil {
1411 return
Dan Willemsen490fd492015-11-24 17:53:15 -08001412 }
Colin Crossa1ad8d12016-06-01 17:09:44 -07001413
Dan Willemsen01a3c252019-01-11 19:02:16 -08001414 arch, err := decodeArch(os, archName, archVariant, cpuVariant, abi)
Colin Crossa1ad8d12016-06-01 17:09:44 -07001415 if err != nil {
1416 targetErr = err
1417 return
1418 }
dimitry8d6dde82019-07-11 10:23:53 +02001419 nativeBridgeRelativePathStr := String(nativeBridgeRelativePath)
1420 nativeBridgeHostArchNameStr := String(nativeBridgeHostArchName)
1421
1422 // Use guest arch as relative install path by default
1423 if nativeBridgeEnabled && nativeBridgeRelativePathStr == "" {
1424 nativeBridgeRelativePathStr = arch.ArchType.String()
1425 }
Colin Crossa1ad8d12016-06-01 17:09:44 -07001426
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001427 targets[os] = append(targets[os],
Colin Crossa1ad8d12016-06-01 17:09:44 -07001428 Target{
dimitry8d6dde82019-07-11 10:23:53 +02001429 Os: os,
1430 Arch: arch,
1431 NativeBridge: nativeBridgeEnabled,
1432 NativeBridgeHostArchName: nativeBridgeHostArchNameStr,
1433 NativeBridgeRelativePath: nativeBridgeRelativePathStr,
Colin Crossa1ad8d12016-06-01 17:09:44 -07001434 })
Dan Willemsen490fd492015-11-24 17:53:15 -08001435 }
1436
Colin Cross4225f652015-09-17 14:33:42 -07001437 if variables.HostArch == nil {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001438 return nil, fmt.Errorf("No host primary architecture set")
Colin Cross4225f652015-09-17 14:33:42 -07001439 }
1440
dimitry8d6dde82019-07-11 10:23:53 +02001441 addTarget(BuildOs, *variables.HostArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Colin Cross4225f652015-09-17 14:33:42 -07001442
Colin Crosseeabb892015-11-20 13:07:51 -08001443 if variables.HostSecondaryArch != nil && *variables.HostSecondaryArch != "" {
dimitry8d6dde82019-07-11 10:23:53 +02001444 addTarget(BuildOs, *variables.HostSecondaryArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -08001445 }
1446
Colin Crossff3ae9d2018-04-10 16:15:18 -07001447 if Bool(config.Host_bionic) {
dimitry8d6dde82019-07-11 10:23:53 +02001448 addTarget(LinuxBionic, "x86_64", nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen01a405a2016-06-13 17:19:03 -07001449 }
1450
Colin Crossff3ae9d2018-04-10 16:15:18 -07001451 if String(variables.CrossHost) != "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001452 crossHostOs := osByName(*variables.CrossHost)
1453 if crossHostOs == NoOsType {
1454 return nil, fmt.Errorf("Unknown cross host OS %q", *variables.CrossHost)
1455 }
1456
Colin Crossff3ae9d2018-04-10 16:15:18 -07001457 if String(variables.CrossHostArch) == "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001458 return nil, fmt.Errorf("No cross-host primary architecture set")
Dan Willemsen490fd492015-11-24 17:53:15 -08001459 }
1460
dimitry8d6dde82019-07-11 10:23:53 +02001461 addTarget(crossHostOs, *variables.CrossHostArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -08001462
1463 if variables.CrossHostSecondaryArch != nil && *variables.CrossHostSecondaryArch != "" {
dimitry8d6dde82019-07-11 10:23:53 +02001464 addTarget(crossHostOs, *variables.CrossHostSecondaryArch, nil, nil, nil, NativeBridgeDisabled, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -08001465 }
1466 }
1467
Dan Willemsen3f32f032016-07-11 14:36:48 -07001468 if variables.DeviceArch != nil && *variables.DeviceArch != "" {
Doug Horn21b94272019-01-16 12:06:11 -08001469 var target = Android
1470 if Bool(variables.Fuchsia) {
1471 target = Fuchsia
1472 }
1473
1474 addTarget(target, *variables.DeviceArch, variables.DeviceArchVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001475 variables.DeviceCpuVariant, variables.DeviceAbi, NativeBridgeDisabled, nil, nil)
Colin Cross4225f652015-09-17 14:33:42 -07001476
Dan Willemsen3f32f032016-07-11 14:36:48 -07001477 if variables.DeviceSecondaryArch != nil && *variables.DeviceSecondaryArch != "" {
1478 addTarget(Android, *variables.DeviceSecondaryArch,
1479 variables.DeviceSecondaryArchVariant, variables.DeviceSecondaryCpuVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001480 variables.DeviceSecondaryAbi, NativeBridgeDisabled, nil, nil)
Colin Cross4225f652015-09-17 14:33:42 -07001481
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001482 deviceArches := targets[Android]
Dan Willemsen3f32f032016-07-11 14:36:48 -07001483 if deviceArches[0].Arch.ArchType.Multilib == deviceArches[1].Arch.ArchType.Multilib {
1484 deviceArches[1].Arch.Native = false
1485 }
Colin Cross4225f652015-09-17 14:33:42 -07001486 }
dimitry1f33e402019-03-26 12:39:31 +01001487
1488 if variables.NativeBridgeArch != nil && *variables.NativeBridgeArch != "" {
1489 addTarget(Android, *variables.NativeBridgeArch,
1490 variables.NativeBridgeArchVariant, variables.NativeBridgeCpuVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001491 variables.NativeBridgeAbi, NativeBridgeEnabled, variables.DeviceArch,
1492 variables.NativeBridgeRelativePath)
dimitry1f33e402019-03-26 12:39:31 +01001493 }
1494
1495 if variables.DeviceSecondaryArch != nil && *variables.DeviceSecondaryArch != "" &&
1496 variables.NativeBridgeSecondaryArch != nil && *variables.NativeBridgeSecondaryArch != "" {
1497 addTarget(Android, *variables.NativeBridgeSecondaryArch,
1498 variables.NativeBridgeSecondaryArchVariant,
1499 variables.NativeBridgeSecondaryCpuVariant,
dimitry8d6dde82019-07-11 10:23:53 +02001500 variables.NativeBridgeSecondaryAbi,
1501 NativeBridgeEnabled,
1502 variables.DeviceSecondaryArch,
1503 variables.NativeBridgeSecondaryRelativePath)
dimitry1f33e402019-03-26 12:39:31 +01001504 }
Colin Cross4225f652015-09-17 14:33:42 -07001505 }
1506
Colin Crossa1ad8d12016-06-01 17:09:44 -07001507 if targetErr != nil {
1508 return nil, targetErr
1509 }
1510
1511 return targets, nil
Colin Cross4225f652015-09-17 14:33:42 -07001512}
1513
Colin Crossbb2e2b72016-12-08 17:23:53 -08001514// hasArmAbi returns true if arch has at least one arm ABI
1515func hasArmAbi(arch Arch) bool {
1516 for _, abi := range arch.Abi {
1517 if strings.HasPrefix(abi, "arm") {
1518 return true
1519 }
1520 }
1521 return false
1522}
1523
dimitry628db6f2019-05-22 17:16:21 +02001524// hasArmArch returns true if targets has at least non-native_bridge arm Android arch
Colin Cross4247f0d2017-04-13 16:56:14 -07001525func hasArmAndroidArch(targets []Target) bool {
1526 for _, target := range targets {
dimitry628db6f2019-05-22 17:16:21 +02001527 if target.Os == Android && target.Arch.ArchType == Arm && target.NativeBridge == NativeBridgeDisabled {
Colin Cross4247f0d2017-04-13 16:56:14 -07001528 return true
1529 }
1530 }
1531 return false
1532}
1533
Victor Khimenko5eb8ec12018-03-21 20:30:54 +01001534// hasX86Arch returns true if targets has at least x86 Android arch
1535func hasX86AndroidArch(targets []Target) bool {
1536 for _, target := range targets {
1537 if target.Os == Android && target.Arch.ArchType == X86 {
1538 return true
1539 }
1540 }
1541 return false
1542}
1543
1544// hasX8664Arch returns true if targets has at least x86_64 Android arch
1545func hasX8664AndroidArch(targets []Target) bool {
1546 for _, target := range targets {
1547 if target.Os == Android && target.Arch.ArchType == X86_64 {
1548 return true
1549 }
1550 }
1551 return false
1552}
1553
Dan Albert4098deb2016-10-19 14:04:41 -07001554type archConfig struct {
1555 arch string
1556 archVariant string
1557 cpuVariant string
1558 abi []string
1559}
1560
1561func getMegaDeviceConfig() []archConfig {
1562 return []archConfig{
Dan Albert8818f492019-02-19 13:53:01 -08001563 {"arm", "armv7-a", "generic", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -08001564 {"arm", "armv7-a-neon", "generic", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001565 {"arm", "armv7-a-neon", "cortex-a7", []string{"armeabi-v7a"}},
1566 {"arm", "armv7-a-neon", "cortex-a8", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -08001567 {"arm", "armv7-a-neon", "cortex-a9", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001568 {"arm", "armv7-a-neon", "cortex-a15", []string{"armeabi-v7a"}},
1569 {"arm", "armv7-a-neon", "cortex-a53", []string{"armeabi-v7a"}},
1570 {"arm", "armv7-a-neon", "cortex-a53.a57", []string{"armeabi-v7a"}},
Richard Fungeb37ed32018-09-24 16:33:45 -07001571 {"arm", "armv7-a-neon", "cortex-a72", []string{"armeabi-v7a"}},
Jake Weinstein6600a442017-05-15 18:27:12 -04001572 {"arm", "armv7-a-neon", "cortex-a73", []string{"armeabi-v7a"}},
Christopher Ferrisba14a8f2018-04-23 18:15:25 -07001573 {"arm", "armv7-a-neon", "cortex-a75", []string{"armeabi-v7a"}},
Haibo Huanga31e2bd2018-10-09 14:27:28 -07001574 {"arm", "armv7-a-neon", "cortex-a76", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001575 {"arm", "armv7-a-neon", "krait", []string{"armeabi-v7a"}},
Alex Naidisae4fc182016-08-20 00:14:56 +02001576 {"arm", "armv7-a-neon", "kryo", []string{"armeabi-v7a"}},
Artem Serovd3072b02018-11-15 15:21:51 +00001577 {"arm", "armv7-a-neon", "kryo385", []string{"armeabi-v7a"}},
Junmo Park8ea49592017-07-24 07:14:55 +09001578 {"arm", "armv7-a-neon", "exynos-m1", []string{"armeabi-v7a"}},
Junmo Parkd86c9022017-07-21 09:07:47 +09001579 {"arm", "armv7-a-neon", "exynos-m2", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -08001580 {"arm64", "armv8-a", "cortex-a53", []string{"arm64-v8a"}},
Richard Fungeb37ed32018-09-24 16:33:45 -07001581 {"arm64", "armv8-a", "cortex-a72", []string{"arm64-v8a"}},
Jake Weinstein6600a442017-05-15 18:27:12 -04001582 {"arm64", "armv8-a", "cortex-a73", []string{"arm64-v8a"}},
Alex Naidisac01ff52016-08-30 15:56:33 +02001583 {"arm64", "armv8-a", "kryo", []string{"arm64-v8a"}},
Junmo Park8ea49592017-07-24 07:14:55 +09001584 {"arm64", "armv8-a", "exynos-m1", []string{"arm64-v8a"}},
Junmo Parkd86c9022017-07-21 09:07:47 +09001585 {"arm64", "armv8-a", "exynos-m2", []string{"arm64-v8a"}},
Christopher Ferrisba14a8f2018-04-23 18:15:25 -07001586 {"arm64", "armv8-2a", "cortex-a75", []string{"arm64-v8a"}},
Haibo Huanga31e2bd2018-10-09 14:27:28 -07001587 {"arm64", "armv8-2a", "cortex-a76", []string{"arm64-v8a"}},
Artem Serovd3072b02018-11-15 15:21:51 +00001588 {"arm64", "armv8-2a", "kryo385", []string{"arm64-v8a"}},
Dan Willemsen468cc312016-01-13 23:25:19 -08001589 {"mips", "mips32-fp", "", []string{"mips"}},
1590 {"mips", "mips32r2-fp", "", []string{"mips"}},
1591 {"mips", "mips32r2-fp-xburst", "", []string{"mips"}},
Dan Willemsen65fb9812016-07-19 21:37:28 -07001592 //{"mips", "mips32r6", "", []string{"mips"}},
Colin Cross1837b802017-04-26 19:10:34 -07001593 {"mips", "mips32r2dsp-fp", "", []string{"mips"}},
1594 {"mips", "mips32r2dspr2-fp", "", []string{"mips"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001595 // mips64r2 is mismatching 64r2 and 64r6 libraries during linking to libgcc
1596 //{"mips64", "mips64r2", "", []string{"mips64"}},
1597 {"mips64", "mips64r6", "", []string{"mips64"}},
1598 {"x86", "", "", []string{"x86"}},
1599 {"x86", "atom", "", []string{"x86"}},
1600 {"x86", "haswell", "", []string{"x86"}},
1601 {"x86", "ivybridge", "", []string{"x86"}},
1602 {"x86", "sandybridge", "", []string{"x86"}},
1603 {"x86", "silvermont", "", []string{"x86"}},
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -07001604 {"x86", "stoneyridge", "", []string{"x86"}},
Dan Willemsen8a354052016-05-10 14:30:51 -07001605 {"x86", "x86_64", "", []string{"x86"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001606 {"x86_64", "", "", []string{"x86_64"}},
1607 {"x86_64", "haswell", "", []string{"x86_64"}},
1608 {"x86_64", "ivybridge", "", []string{"x86_64"}},
1609 {"x86_64", "sandybridge", "", []string{"x86_64"}},
1610 {"x86_64", "silvermont", "", []string{"x86_64"}},
Benjamin Gordon87e7f2f2019-02-14 10:59:48 -07001611 {"x86_64", "stoneyridge", "", []string{"x86_64"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -08001612 }
Dan Albert4098deb2016-10-19 14:04:41 -07001613}
Dan Willemsen322acaf2016-01-12 23:07:05 -08001614
Dan Albert4098deb2016-10-19 14:04:41 -07001615func getNdkAbisConfig() []archConfig {
1616 return []archConfig{
Dan Albert8818f492019-02-19 13:53:01 -08001617 {"arm", "armv7-a", "", []string{"armeabi"}},
Dan Albert4098deb2016-10-19 14:04:41 -07001618 {"arm64", "armv8-a", "", []string{"arm64-v8a"}},
Dan Albert4098deb2016-10-19 14:04:41 -07001619 {"x86", "", "", []string{"x86"}},
1620 {"x86_64", "", "", []string{"x86_64"}},
1621 }
1622}
1623
Dan Willemsen01a3c252019-01-11 19:02:16 -08001624func decodeArchSettings(os OsType, archConfigs []archConfig) ([]Target, error) {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001625 var ret []Target
Dan Willemsen322acaf2016-01-12 23:07:05 -08001626
Dan Albert4098deb2016-10-19 14:04:41 -07001627 for _, config := range archConfigs {
Dan Willemsen01a3c252019-01-11 19:02:16 -08001628 arch, err := decodeArch(os, config.arch, &config.archVariant,
Colin Crossa74ca042019-01-31 14:31:51 -08001629 &config.cpuVariant, config.abi)
Dan Willemsen322acaf2016-01-12 23:07:05 -08001630 if err != nil {
1631 return nil, err
1632 }
Dan Willemsen17f05262016-05-31 16:27:00 -07001633 arch.Native = false
Colin Crossa1ad8d12016-06-01 17:09:44 -07001634 ret = append(ret, Target{
1635 Os: Android,
1636 Arch: arch,
1637 })
Dan Willemsen322acaf2016-01-12 23:07:05 -08001638 }
1639
1640 return ret, nil
1641}
1642
Colin Cross4225f652015-09-17 14:33:42 -07001643// Convert a set of strings from product variables into a single Arch struct
Colin Crossa74ca042019-01-31 14:31:51 -08001644func decodeArch(os OsType, arch string, archVariant, cpuVariant *string, abi []string) (Arch, error) {
Colin Cross4225f652015-09-17 14:33:42 -07001645 stringPtr := func(p *string) string {
1646 if p != nil {
1647 return *p
1648 }
1649 return ""
1650 }
1651
Colin Crosseeabb892015-11-20 13:07:51 -08001652 archType, ok := archTypeMap[arch]
1653 if !ok {
1654 return Arch{}, fmt.Errorf("unknown arch %q", arch)
1655 }
Colin Cross4225f652015-09-17 14:33:42 -07001656
Colin Crosseeabb892015-11-20 13:07:51 -08001657 a := Arch{
Colin Cross4225f652015-09-17 14:33:42 -07001658 ArchType: archType,
1659 ArchVariant: stringPtr(archVariant),
1660 CpuVariant: stringPtr(cpuVariant),
Colin Crossa74ca042019-01-31 14:31:51 -08001661 Abi: abi,
Dan Willemsen17f05262016-05-31 16:27:00 -07001662 Native: true,
Colin Crosseeabb892015-11-20 13:07:51 -08001663 }
1664
1665 if a.ArchVariant == a.ArchType.Name || a.ArchVariant == "generic" {
1666 a.ArchVariant = ""
1667 }
1668
1669 if a.CpuVariant == a.ArchType.Name || a.CpuVariant == "generic" {
1670 a.CpuVariant = ""
1671 }
1672
1673 for i := 0; i < len(a.Abi); i++ {
1674 if a.Abi[i] == "" {
1675 a.Abi = append(a.Abi[:i], a.Abi[i+1:]...)
1676 i--
1677 }
1678 }
1679
Dan Willemsen01a3c252019-01-11 19:02:16 -08001680 if a.ArchVariant == "" {
1681 if featureMap, ok := defaultArchFeatureMap[os]; ok {
1682 a.ArchFeatures = featureMap[archType]
1683 }
1684 } else {
1685 if featureMap, ok := archFeatureMap[archType]; ok {
1686 a.ArchFeatures = featureMap[a.ArchVariant]
1687 }
Colin Crossc5c24ad2015-11-20 15:35:00 -08001688 }
1689
Colin Crosseeabb892015-11-20 13:07:51 -08001690 return a, nil
Colin Cross4225f652015-09-17 14:33:42 -07001691}
1692
Colin Cross69617d32016-09-06 10:39:07 -07001693func filterMultilibTargets(targets []Target, multilib string) []Target {
1694 var ret []Target
1695 for _, t := range targets {
1696 if t.Arch.ArchType.Multilib == multilib {
1697 ret = append(ret, t)
1698 }
1699 }
1700 return ret
1701}
1702
Nan Zhangdb0b9a32017-02-27 10:12:13 -08001703func getCommonTargets(targets []Target) []Target {
1704 var ret []Target
1705 set := make(map[string]bool)
1706
1707 for _, t := range targets {
1708 if _, found := set[t.Os.String()]; !found {
1709 set[t.Os.String()] = true
1710 ret = append(ret, commonTargetMap[t.Os.String()])
1711 }
1712 }
1713
1714 return ret
1715}
1716
Colin Cross3dceee32018-09-06 10:19:57 -07001717func firstTarget(targets []Target, filters ...string) []Target {
Colin Cross6b4a32d2017-12-05 13:42:45 -08001718 for _, filter := range filters {
1719 buildTargets := filterMultilibTargets(targets, filter)
1720 if len(buildTargets) > 0 {
Colin Cross3dceee32018-09-06 10:19:57 -07001721 return buildTargets[:1]
Colin Cross6b4a32d2017-12-05 13:42:45 -08001722 }
1723 }
1724 return nil
1725}
1726
Colin Crossa1ad8d12016-06-01 17:09:44 -07001727// Use the module multilib setting to select one or more targets from a target list
Colin Crossee0bc3b2018-10-02 22:01:37 -07001728func decodeMultilibTargets(multilib string, targets []Target, prefer32 bool) ([]Target, error) {
Colin Crossa1ad8d12016-06-01 17:09:44 -07001729 buildTargets := []Target{}
Colin Cross6b4a32d2017-12-05 13:42:45 -08001730
Colin Cross4225f652015-09-17 14:33:42 -07001731 switch multilib {
1732 case "common":
Colin Cross6b4a32d2017-12-05 13:42:45 -08001733 buildTargets = getCommonTargets(targets)
1734 case "common_first":
1735 buildTargets = getCommonTargets(targets)
1736 if prefer32 {
Colin Cross3dceee32018-09-06 10:19:57 -07001737 buildTargets = append(buildTargets, firstTarget(targets, "lib32", "lib64")...)
Colin Cross6b4a32d2017-12-05 13:42:45 -08001738 } else {
Colin Cross3dceee32018-09-06 10:19:57 -07001739 buildTargets = append(buildTargets, firstTarget(targets, "lib64", "lib32")...)
Colin Cross6b4a32d2017-12-05 13:42:45 -08001740 }
Colin Cross4225f652015-09-17 14:33:42 -07001741 case "both":
Colin Cross8b74d172016-09-13 09:59:14 -07001742 if prefer32 {
1743 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib32")...)
1744 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib64")...)
1745 } else {
1746 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib64")...)
1747 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib32")...)
1748 }
Colin Cross4225f652015-09-17 14:33:42 -07001749 case "32":
Colin Cross69617d32016-09-06 10:39:07 -07001750 buildTargets = filterMultilibTargets(targets, "lib32")
Colin Cross4225f652015-09-17 14:33:42 -07001751 case "64":
Colin Cross69617d32016-09-06 10:39:07 -07001752 buildTargets = filterMultilibTargets(targets, "lib64")
Colin Cross6b4a32d2017-12-05 13:42:45 -08001753 case "first":
1754 if prefer32 {
Colin Cross3dceee32018-09-06 10:19:57 -07001755 buildTargets = firstTarget(targets, "lib32", "lib64")
Colin Cross6b4a32d2017-12-05 13:42:45 -08001756 } else {
Colin Cross3dceee32018-09-06 10:19:57 -07001757 buildTargets = firstTarget(targets, "lib64", "lib32")
Colin Cross6b4a32d2017-12-05 13:42:45 -08001758 }
Colin Cross69617d32016-09-06 10:39:07 -07001759 case "prefer32":
Colin Cross3dceee32018-09-06 10:19:57 -07001760 buildTargets = filterMultilibTargets(targets, "lib32")
1761 if len(buildTargets) == 0 {
1762 buildTargets = filterMultilibTargets(targets, "lib64")
1763 }
Colin Cross4225f652015-09-17 14:33:42 -07001764 default:
Colin Cross69617d32016-09-06 10:39:07 -07001765 return nil, fmt.Errorf(`compile_multilib must be "both", "first", "32", "64", or "prefer32" found %q`,
Colin Cross4225f652015-09-17 14:33:42 -07001766 multilib)
Colin Cross4225f652015-09-17 14:33:42 -07001767 }
1768
Colin Crossa1ad8d12016-06-01 17:09:44 -07001769 return buildTargets, nil
Colin Cross4225f652015-09-17 14:33:42 -07001770}