blob: 61564d84b20cc6a355ec6843abf9de548195ab56 [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 Cross3f40fa42015-01-30 17:27:36 -080018 "fmt"
19 "reflect"
20 "runtime"
21 "strings"
Colin Crossf6566ed2015-03-24 11:13:38 -070022
23 "github.com/google/blueprint"
24 "github.com/google/blueprint/proptools"
Colin Cross3f40fa42015-01-30 17:27:36 -080025)
26
27var (
Dan Willemsenb1957a52016-06-23 23:44:54 -070028 archTypeList []ArchType
29
Colin Crossec193632015-07-06 17:49:43 -070030 Arm = newArch("arm", "lib32")
31 Arm64 = newArch("arm64", "lib64")
32 Mips = newArch("mips", "lib32")
33 Mips64 = newArch("mips64", "lib64")
34 X86 = newArch("x86", "lib32")
35 X86_64 = newArch("x86_64", "lib64")
Colin Cross2fe66872015-03-30 17:20:39 -070036
37 Common = ArchType{
38 Name: "common",
39 }
Colin Cross3f40fa42015-01-30 17:27:36 -080040)
41
Colin Cross4225f652015-09-17 14:33:42 -070042var archTypeMap = map[string]ArchType{
43 "arm": Arm,
44 "arm64": Arm64,
45 "mips": Mips,
Colin Cross3b336c22015-11-23 16:28:31 -080046 "mips64": Mips64,
Colin Cross4225f652015-09-17 14:33:42 -070047 "x86": X86,
48 "x86_64": X86_64,
49}
50
Colin Cross3f40fa42015-01-30 17:27:36 -080051/*
52Example blueprints file containing all variant property groups, with comment listing what type
53of variants get properties in that group:
54
55module {
56 arch: {
57 arm: {
58 // Host or device variants with arm architecture
59 },
60 arm64: {
61 // Host or device variants with arm64 architecture
62 },
63 mips: {
64 // Host or device variants with mips architecture
65 },
66 mips64: {
67 // Host or device variants with mips64 architecture
68 },
69 x86: {
70 // Host or device variants with x86 architecture
71 },
72 x86_64: {
73 // Host or device variants with x86_64 architecture
74 },
75 },
76 multilib: {
77 lib32: {
78 // Host or device variants for 32-bit architectures
79 },
80 lib64: {
81 // Host or device variants for 64-bit architectures
82 },
83 },
84 target: {
85 android: {
86 // Device variants
87 },
88 host: {
89 // Host variants
90 },
91 linux: {
92 // Linux host variants
93 },
94 darwin: {
95 // Darwin host variants
96 },
97 windows: {
98 // Windows host variants
99 },
100 not_windows: {
101 // Non-windows host variants
102 },
103 },
104}
105*/
Colin Cross7d5136f2015-05-11 13:39:40 -0700106
Dan Willemsenb1957a52016-06-23 23:44:54 -0700107var archVariants = map[ArchType][]string{}
108var archFeatures = map[ArchType][]string{}
Colin Crossc5c24ad2015-11-20 15:35:00 -0800109var archFeatureMap = map[ArchType]map[string][]string{}
110
Dan Willemsenb1957a52016-06-23 23:44:54 -0700111func RegisterArchVariants(arch ArchType, variants ...string) {
112 checkCalledFromInit()
113 archVariants[arch] = append(archVariants[arch], variants...)
114}
115
116func RegisterArchFeatures(arch ArchType, features ...string) {
117 checkCalledFromInit()
118 archFeatures[arch] = append(archFeatures[arch], features...)
119}
120
121func RegisterArchVariantFeatures(arch ArchType, variant string, features ...string) {
122 checkCalledFromInit()
123 if variant != "" && !inList(variant, archVariants[arch]) {
124 panic(fmt.Errorf("Invalid variant %q for arch %q", variant, arch))
Colin Crossc5c24ad2015-11-20 15:35:00 -0800125 }
Dan Willemsenb1957a52016-06-23 23:44:54 -0700126
Colin Crossc5c24ad2015-11-20 15:35:00 -0800127 for _, feature := range features {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700128 if !inList(feature, archFeatures[arch]) {
Colin Crossc5c24ad2015-11-20 15:35:00 -0800129 panic(fmt.Errorf("Invalid feature %q for arch %q variant %q", feature, arch, variant))
130 }
131 }
Dan Willemsenb1957a52016-06-23 23:44:54 -0700132
Colin Crossc5c24ad2015-11-20 15:35:00 -0800133 if archFeatureMap[arch] == nil {
134 archFeatureMap[arch] = make(map[string][]string)
135 }
136 archFeatureMap[arch][variant] = features
137}
138
Colin Cross3f40fa42015-01-30 17:27:36 -0800139// An Arch indicates a single CPU architecture.
140type Arch struct {
Colin Crossc5c24ad2015-11-20 15:35:00 -0800141 ArchType ArchType
142 ArchVariant string
143 CpuVariant string
144 Abi []string
145 ArchFeatures []string
Dan Willemsen17f05262016-05-31 16:27:00 -0700146 Native bool
Colin Cross3f40fa42015-01-30 17:27:36 -0800147}
148
149func (a Arch) String() string {
Colin Crossd3ba0392015-05-07 14:11:29 -0700150 s := a.ArchType.String()
Colin Cross3f40fa42015-01-30 17:27:36 -0800151 if a.ArchVariant != "" {
152 s += "_" + a.ArchVariant
153 }
154 if a.CpuVariant != "" {
155 s += "_" + a.CpuVariant
156 }
157 return s
158}
159
160type ArchType struct {
Colin Crossec193632015-07-06 17:49:43 -0700161 Name string
Dan Willemsenb1957a52016-06-23 23:44:54 -0700162 Field string
Colin Crossec193632015-07-06 17:49:43 -0700163 Multilib string
Colin Cross3f40fa42015-01-30 17:27:36 -0800164}
165
Colin Crossec193632015-07-06 17:49:43 -0700166func newArch(name, multilib string) ArchType {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700167 archType := ArchType{
Colin Crossec193632015-07-06 17:49:43 -0700168 Name: name,
Dan Willemsenb1957a52016-06-23 23:44:54 -0700169 Field: proptools.FieldNameForProperty(name),
Colin Crossec193632015-07-06 17:49:43 -0700170 Multilib: multilib,
Colin Cross3f40fa42015-01-30 17:27:36 -0800171 }
Dan Willemsenb1957a52016-06-23 23:44:54 -0700172 archTypeList = append(archTypeList, archType)
173 return archType
Colin Cross3f40fa42015-01-30 17:27:36 -0800174}
175
176func (a ArchType) String() string {
177 return a.Name
178}
179
Colin Crossa1ad8d12016-06-01 17:09:44 -0700180var BuildOs = func() OsType {
Dan Willemsen490fd492015-11-24 17:53:15 -0800181 switch runtime.GOOS {
182 case "linux":
183 return Linux
184 case "darwin":
185 return Darwin
186 default:
187 panic(fmt.Sprintf("unsupported OS: %s", runtime.GOOS))
188 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700189}()
190
191var (
192 osTypeList []OsType
193
194 NoOsType OsType
195 Linux = NewOsType("linux", Host)
196 Darwin = NewOsType("darwin", Host)
197 Windows = NewOsType("windows", HostCross)
198 Android = NewOsType("android", Device)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700199
200 osArchTypeMap = map[OsType][]ArchType{
201 Linux: []ArchType{X86, X86_64},
202 Darwin: []ArchType{X86, X86_64},
203 Windows: []ArchType{X86, X86_64},
204 Android: []ArchType{Arm, Arm64, Mips, Mips64, X86, X86_64},
205 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700206)
207
208type OsType struct {
209 Name, Field string
210 Class OsClass
Dan Willemsen490fd492015-11-24 17:53:15 -0800211}
212
Colin Crossa1ad8d12016-06-01 17:09:44 -0700213type OsClass int
214
215const (
216 Device OsClass = iota
217 Host
218 HostCross
219)
220
221func (os OsType) String() string {
222 return os.Name
Colin Cross54c71122016-06-01 17:09:44 -0700223}
224
Colin Crossa1ad8d12016-06-01 17:09:44 -0700225func NewOsType(name string, class OsClass) OsType {
226 os := OsType{
227 Name: name,
228 Field: strings.Title(name),
229 Class: class,
Colin Cross54c71122016-06-01 17:09:44 -0700230 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700231 osTypeList = append(osTypeList, os)
232 return os
233}
234
235func osByName(name string) OsType {
236 for _, os := range osTypeList {
237 if os.Name == name {
238 return os
239 }
240 }
241
242 return NoOsType
Dan Willemsen490fd492015-11-24 17:53:15 -0800243}
244
Colin Cross3f40fa42015-01-30 17:27:36 -0800245var (
Colin Crossa1ad8d12016-06-01 17:09:44 -0700246 commonTarget = Target{
247 Os: Android,
248 Arch: Arch{
249 ArchType: Common,
250 },
Colin Cross2fe66872015-03-30 17:20:39 -0700251 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800252)
253
Colin Crossa1ad8d12016-06-01 17:09:44 -0700254type Target struct {
255 Os OsType
256 Arch Arch
Colin Crossd3ba0392015-05-07 14:11:29 -0700257}
258
Colin Crossa1ad8d12016-06-01 17:09:44 -0700259func (target Target) String() string {
260 return target.Os.String() + "_" + target.Arch.String()
Dan Willemsen490fd492015-11-24 17:53:15 -0800261}
262
Colin Cross1e676be2016-10-12 14:38:15 -0700263func archMutator(mctx BottomUpMutatorContext) {
Colin Cross635c3b02016-05-18 15:37:25 -0700264 var module Module
Colin Cross3f40fa42015-01-30 17:27:36 -0800265 var ok bool
Colin Cross635c3b02016-05-18 15:37:25 -0700266 if module, ok = mctx.Module().(Module); !ok {
Colin Cross3f40fa42015-01-30 17:27:36 -0800267 return
268 }
269
Dan Willemsen0b24c742016-10-04 15:13:37 -0700270 if !module.base().ArchSpecific() {
Colin Crossb9db4802016-06-03 01:50:47 +0000271 return
272 }
273
Dan Willemsen0b24c742016-10-04 15:13:37 -0700274 osClasses := module.base().OsClassSupported()
275
Colin Crossa1ad8d12016-06-01 17:09:44 -0700276 var moduleTargets []Target
Colin Cross8b74d172016-09-13 09:59:14 -0700277 primaryModules := make(map[int]bool)
Colin Crossa1ad8d12016-06-01 17:09:44 -0700278
279 for _, class := range osClasses {
280 targets := mctx.AConfig().Targets[class]
281 if len(targets) == 0 {
282 continue
283 }
Colin Cross69617d32016-09-06 10:39:07 -0700284 var multilib string
285 switch class {
286 case Device:
287 multilib = module.base().commonProperties.Target.Android.Compile_multilib
288 case Host, HostCross:
289 multilib = module.base().commonProperties.Target.Host.Compile_multilib
290 }
291 if multilib == "" {
292 multilib = module.base().commonProperties.Compile_multilib
293 }
294 if multilib == "" {
295 multilib = module.base().commonProperties.Default_multilib
296 }
Colin Cross628a88c2016-09-13 15:15:51 -0700297 var prefer32 bool
298 switch class {
299 case Device:
Colin Cross8b74d172016-09-13 09:59:14 -0700300 prefer32 = mctx.AConfig().DevicePrefer32BitExecutables()
Colin Cross628a88c2016-09-13 15:15:51 -0700301 case HostCross:
302 // Windows builds always prefer 32-bit
303 prefer32 = true
Colin Cross8b74d172016-09-13 09:59:14 -0700304 }
305 targets, err := decodeMultilib(multilib, targets, prefer32)
Colin Crossa1ad8d12016-06-01 17:09:44 -0700306 if err != nil {
307 mctx.ModuleErrorf("%s", err.Error())
308 }
Colin Cross8b74d172016-09-13 09:59:14 -0700309 if len(targets) > 0 {
310 primaryModules[len(moduleTargets)] = true
311 moduleTargets = append(moduleTargets, targets...)
312 }
Colin Crossb9db4802016-06-03 01:50:47 +0000313 }
314
Dan Willemsen3f32f032016-07-11 14:36:48 -0700315 if len(moduleTargets) == 0 {
316 module.base().commonProperties.Enabled = boolPtr(false)
317 return
318 }
319
Colin Crossa1ad8d12016-06-01 17:09:44 -0700320 targetNames := make([]string, len(moduleTargets))
Colin Crossb9db4802016-06-03 01:50:47 +0000321
Colin Crossa1ad8d12016-06-01 17:09:44 -0700322 for i, target := range moduleTargets {
323 targetNames[i] = target.String()
324 }
325
326 modules := mctx.CreateVariations(targetNames...)
Colin Cross3f40fa42015-01-30 17:27:36 -0800327 for i, m := range modules {
Colin Cross8b74d172016-09-13 09:59:14 -0700328 m.(Module).base().SetTarget(moduleTargets[i], primaryModules[i])
Colin Cross635c3b02016-05-18 15:37:25 -0700329 m.(Module).base().setArchProperties(mctx)
Colin Cross3f40fa42015-01-30 17:27:36 -0800330 }
331}
332
Dan Willemsenb1957a52016-06-23 23:44:54 -0700333func filterArchStruct(prop reflect.Type) (reflect.Type, bool) {
334 var fields []reflect.StructField
335
336 ptr := prop.Kind() == reflect.Ptr
337 if ptr {
338 prop = prop.Elem()
339 }
340
341 for i := 0; i < prop.NumField(); i++ {
342 field := prop.Field(i)
343 if !proptools.HasTag(field, "android", "arch_variant") {
344 continue
345 }
346
347 // The arch_variant field isn't necessary past this point
348 // Instead of wasting space, just remove it. Go also has a
349 // 16-bit limit on structure name length. The name is constructed
350 // based on the Go source representation of the structure, so
351 // the tag names count towards that length.
352 //
353 // TODO: handle the uncommon case of other tags being involved
354 if field.Tag == `android:"arch_variant"` {
355 field.Tag = ""
356 }
357
358 // Recurse into structs
359 switch field.Type.Kind() {
360 case reflect.Struct:
361 var ok bool
362 field.Type, ok = filterArchStruct(field.Type)
363 if !ok {
364 continue
365 }
366 case reflect.Ptr:
367 if field.Type.Elem().Kind() == reflect.Struct {
368 nestedType, ok := filterArchStruct(field.Type.Elem())
369 if !ok {
370 continue
371 }
372 field.Type = reflect.PtrTo(nestedType)
373 }
374 case reflect.Interface:
375 panic("Interfaces are not supported in arch_variant properties")
376 }
377
378 fields = append(fields, field)
379 }
380 if len(fields) == 0 {
381 return nil, false
382 }
383
384 ret := reflect.StructOf(fields)
385 if ptr {
386 ret = reflect.PtrTo(ret)
387 }
388 return ret, true
389}
390
391func createArchType(props reflect.Type) reflect.Type {
392 props, ok := filterArchStruct(props)
393 if !ok {
394 return nil
395 }
396
397 variantFields := func(names []string) []reflect.StructField {
398 ret := make([]reflect.StructField, len(names))
399
400 for i, name := range names {
401 ret[i].Name = name
402 ret[i].Type = props
403 }
404
405 return ret
406 }
407
408 archFields := make([]reflect.StructField, len(archTypeList))
409 for i, arch := range archTypeList {
410 variants := []string{}
411
412 for _, archVariant := range archVariants[arch] {
413 variants = append(variants, proptools.FieldNameForProperty(archVariant))
414 }
415 for _, feature := range archFeatures[arch] {
416 variants = append(variants, proptools.FieldNameForProperty(feature))
417 }
418
419 fields := variantFields(variants)
420
421 fields = append([]reflect.StructField{reflect.StructField{
422 Name: "BlueprintEmbed",
423 Type: props,
424 Anonymous: true,
425 }}, fields...)
426
427 archFields[i] = reflect.StructField{
428 Name: arch.Field,
429 Type: reflect.StructOf(fields),
430 }
431 }
432 archType := reflect.StructOf(archFields)
433
434 multilibType := reflect.StructOf(variantFields([]string{"Lib32", "Lib64"}))
435
436 targets := []string{
437 "Host",
438 "Android64",
439 "Android32",
440 "Not_windows",
441 }
442 for _, os := range osTypeList {
443 targets = append(targets, os.Field)
444
445 for _, archType := range osArchTypeMap[os] {
446 targets = append(targets, os.Field+"_"+archType.Name)
447 }
448 }
449
450 targetType := reflect.StructOf(variantFields(targets))
451 return reflect.StructOf([]reflect.StructField{
452 reflect.StructField{
453 Name: "Arch",
454 Type: archType,
455 },
456 reflect.StructField{
457 Name: "Multilib",
458 Type: multilibType,
459 },
460 reflect.StructField{
461 Name: "Target",
462 Type: targetType,
463 },
464 })
465}
466
467var archPropTypeMap OncePer
468
Colin Cross635c3b02016-05-18 15:37:25 -0700469func InitArchModule(m Module,
Colin Cross3f40fa42015-01-30 17:27:36 -0800470 propertyStructs ...interface{}) (blueprint.Module, []interface{}) {
471
472 base := m.base()
473
Colin Cross3f40fa42015-01-30 17:27:36 -0800474 base.generalProperties = append(base.generalProperties,
Colin Cross3f40fa42015-01-30 17:27:36 -0800475 propertyStructs...)
476
477 for _, properties := range base.generalProperties {
478 propertiesValue := reflect.ValueOf(properties)
Colin Cross62496a02016-08-08 15:49:17 -0700479 t := propertiesValue.Type()
Colin Cross3f40fa42015-01-30 17:27:36 -0800480 if propertiesValue.Kind() != reflect.Ptr {
Colin Crossca860ac2016-01-04 14:34:37 -0800481 panic(fmt.Errorf("properties must be a pointer to a struct, got %T",
482 propertiesValue.Interface()))
Colin Cross3f40fa42015-01-30 17:27:36 -0800483 }
484
485 propertiesValue = propertiesValue.Elem()
486 if propertiesValue.Kind() != reflect.Struct {
Colin Crossca860ac2016-01-04 14:34:37 -0800487 panic(fmt.Errorf("properties must be a pointer to a struct, got %T",
488 propertiesValue.Interface()))
Colin Cross3f40fa42015-01-30 17:27:36 -0800489 }
490
Dan Willemsenb1957a52016-06-23 23:44:54 -0700491 archPropType := archPropTypeMap.Once(t, func() interface{} {
492 return createArchType(t)
Colin Cross3f40fa42015-01-30 17:27:36 -0800493 })
494
Dan Willemsenb1957a52016-06-23 23:44:54 -0700495 if archPropType != nil {
496 base.archProperties = append(base.archProperties, reflect.New(archPropType.(reflect.Type)).Interface())
497 } else {
498 base.archProperties = append(base.archProperties, nil)
499 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800500 }
501
502 var allProperties []interface{}
503 allProperties = append(allProperties, base.generalProperties...)
504 for _, asp := range base.archProperties {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700505 if asp != nil {
506 allProperties = append(allProperties, asp)
507 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800508 }
509
Colin Crossa120ec12016-08-19 16:07:38 -0700510 base.customizableProperties = allProperties
511
Colin Cross3f40fa42015-01-30 17:27:36 -0800512 return m, allProperties
513}
514
Colin Crossa716add2015-12-16 11:07:39 -0800515var variantReplacer = strings.NewReplacer("-", "_", ".", "_")
Colin Crossec193632015-07-06 17:49:43 -0700516
Colin Cross635c3b02016-05-18 15:37:25 -0700517func (a *ModuleBase) appendProperties(ctx BottomUpMutatorContext,
Dan Willemsenb1957a52016-06-23 23:44:54 -0700518 dst interface{}, src reflect.Value, field, srcPrefix string) reflect.Value {
Colin Cross06a931b2015-10-28 17:23:31 -0700519
Dan Willemsenb1957a52016-06-23 23:44:54 -0700520 src = src.FieldByName(field)
521 if !src.IsValid() {
Colin Crosseeabb892015-11-20 13:07:51 -0800522 ctx.ModuleErrorf("field %q does not exist", srcPrefix)
Dan Willemsenb1957a52016-06-23 23:44:54 -0700523 return src
Colin Cross85a88972015-11-23 13:29:51 -0800524 }
525
Dan Willemsenb1957a52016-06-23 23:44:54 -0700526 ret := src
Colin Cross85a88972015-11-23 13:29:51 -0800527
Dan Willemsenb1957a52016-06-23 23:44:54 -0700528 if src.Kind() == reflect.Struct {
529 src = src.FieldByName("BlueprintEmbed")
Colin Cross06a931b2015-10-28 17:23:31 -0700530 }
531
Colin Cross6ee75b62016-05-05 15:57:15 -0700532 order := func(property string,
533 dstField, srcField reflect.StructField,
534 dstValue, srcValue interface{}) (proptools.Order, error) {
535 if proptools.HasTag(dstField, "android", "variant_prepend") {
536 return proptools.Prepend, nil
537 } else {
538 return proptools.Append, nil
539 }
540 }
541
Dan Willemsenb1957a52016-06-23 23:44:54 -0700542 err := proptools.ExtendMatchingProperties([]interface{}{dst}, src.Interface(), nil, order)
Colin Cross06a931b2015-10-28 17:23:31 -0700543 if err != nil {
544 if propertyErr, ok := err.(*proptools.ExtendPropertyError); ok {
545 ctx.PropertyErrorf(propertyErr.Property, "%s", propertyErr.Err.Error())
546 } else {
547 panic(err)
548 }
549 }
Colin Cross85a88972015-11-23 13:29:51 -0800550
Dan Willemsenb1957a52016-06-23 23:44:54 -0700551 return ret
Colin Cross06a931b2015-10-28 17:23:31 -0700552}
553
Colin Cross3f40fa42015-01-30 17:27:36 -0800554// Rewrite the module's properties structs to contain arch-specific values.
Colin Cross635c3b02016-05-18 15:37:25 -0700555func (a *ModuleBase) setArchProperties(ctx BottomUpMutatorContext) {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700556 arch := a.Arch()
557 os := a.Os()
Colin Crossd3ba0392015-05-07 14:11:29 -0700558
Colin Cross2fe66872015-03-30 17:20:39 -0700559 if arch.ArchType == Common {
560 return
561 }
562
Colin Cross3f40fa42015-01-30 17:27:36 -0800563 for i := range a.generalProperties {
Colin Cross06a931b2015-10-28 17:23:31 -0700564 genProps := a.generalProperties[i]
Dan Willemsenb1957a52016-06-23 23:44:54 -0700565 if a.archProperties[i] == nil {
566 continue
567 }
568 archProps := reflect.ValueOf(a.archProperties[i]).Elem()
569
570 archProp := archProps.FieldByName("Arch")
571 multilibProp := archProps.FieldByName("Multilib")
572 targetProp := archProps.FieldByName("Target")
573
Colin Cross3f40fa42015-01-30 17:27:36 -0800574 // Handle arch-specific properties in the form:
Colin Crossb05bff22015-04-30 15:08:04 -0700575 // arch: {
576 // arm64: {
Colin Cross3f40fa42015-01-30 17:27:36 -0800577 // key: value,
578 // },
579 // },
580 t := arch.ArchType
Colin Cross06a931b2015-10-28 17:23:31 -0700581
Colin Crossec193632015-07-06 17:49:43 -0700582 field := proptools.FieldNameForProperty(t.Name)
Colin Cross06a931b2015-10-28 17:23:31 -0700583 prefix := "arch." + t.Name
Dan Willemsenb1957a52016-06-23 23:44:54 -0700584 archStruct := a.appendProperties(ctx, genProps, archProp, field, prefix)
Colin Crossec193632015-07-06 17:49:43 -0700585
586 // Handle arch-variant-specific properties in the form:
587 // arch: {
588 // variant: {
589 // key: value,
590 // },
591 // },
Colin Crossa716add2015-12-16 11:07:39 -0800592 v := variantReplacer.Replace(arch.ArchVariant)
Colin Crossec193632015-07-06 17:49:43 -0700593 if v != "" {
594 field := proptools.FieldNameForProperty(v)
Colin Cross85a88972015-11-23 13:29:51 -0800595 prefix := "arch." + t.Name + "." + v
596 a.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossec193632015-07-06 17:49:43 -0700597 }
598
599 // Handle cpu-variant-specific properties in the form:
600 // arch: {
601 // variant: {
602 // key: value,
603 // },
604 // },
Colin Crossa716add2015-12-16 11:07:39 -0800605 c := variantReplacer.Replace(arch.CpuVariant)
Colin Crossec193632015-07-06 17:49:43 -0700606 if c != "" {
607 field := proptools.FieldNameForProperty(c)
Colin Cross85a88972015-11-23 13:29:51 -0800608 prefix := "arch." + t.Name + "." + c
609 a.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossec193632015-07-06 17:49:43 -0700610 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800611
Colin Crossc5c24ad2015-11-20 15:35:00 -0800612 // Handle arch-feature-specific properties in the form:
613 // arch: {
614 // feature: {
615 // key: value,
616 // },
617 // },
618 for _, feature := range arch.ArchFeatures {
619 field := proptools.FieldNameForProperty(feature)
Colin Cross85a88972015-11-23 13:29:51 -0800620 prefix := "arch." + t.Name + "." + feature
621 a.appendProperties(ctx, genProps, archStruct, field, prefix)
Colin Crossc5c24ad2015-11-20 15:35:00 -0800622 }
623
Colin Cross3f40fa42015-01-30 17:27:36 -0800624 // Handle multilib-specific properties in the form:
Colin Crossb05bff22015-04-30 15:08:04 -0700625 // multilib: {
626 // lib32: {
Colin Cross3f40fa42015-01-30 17:27:36 -0800627 // key: value,
628 // },
629 // },
Colin Cross06a931b2015-10-28 17:23:31 -0700630 field = proptools.FieldNameForProperty(t.Multilib)
631 prefix = "multilib." + t.Multilib
Dan Willemsenb1957a52016-06-23 23:44:54 -0700632 a.appendProperties(ctx, genProps, multilibProp, field, prefix)
Colin Cross3f40fa42015-01-30 17:27:36 -0800633
Colin Crossa1ad8d12016-06-01 17:09:44 -0700634 // Handle host-specific properties in the form:
Colin Crossb05bff22015-04-30 15:08:04 -0700635 // target: {
636 // host: {
Colin Cross3f40fa42015-01-30 17:27:36 -0800637 // key: value,
638 // },
639 // },
Colin Crossa1ad8d12016-06-01 17:09:44 -0700640 if os.Class == Host || os.Class == HostCross {
641 field = "Host"
642 prefix = "target.host"
Dan Willemsenb1957a52016-06-23 23:44:54 -0700643 a.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossa1ad8d12016-06-01 17:09:44 -0700644 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800645
Colin Crossa1ad8d12016-06-01 17:09:44 -0700646 // Handle target OS properties in the form:
Colin Crossb05bff22015-04-30 15:08:04 -0700647 // target: {
648 // linux: {
Colin Cross3f40fa42015-01-30 17:27:36 -0800649 // key: value,
650 // },
Colin Crossb05bff22015-04-30 15:08:04 -0700651 // not_windows: {
652 // key: value,
653 // },
654 // linux_x86: {
655 // key: value,
656 // },
657 // linux_arm: {
Colin Cross3f40fa42015-01-30 17:27:36 -0800658 // key: value,
659 // },
Colin Crossa1ad8d12016-06-01 17:09:44 -0700660 // android {
661 // key: value,
662 // },
663 // android_arm {
664 // key: value,
665 // },
666 // android_x86 {
667 // key: value,
668 // },
Colin Cross3f40fa42015-01-30 17:27:36 -0800669 // },
Colin Crossa1ad8d12016-06-01 17:09:44 -0700670 // },
671 field = os.Field
672 prefix = "target." + os.Name
Dan Willemsenb1957a52016-06-23 23:44:54 -0700673 a.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossb9db4802016-06-03 01:50:47 +0000674
Colin Crossa1ad8d12016-06-01 17:09:44 -0700675 field = os.Field + "_" + t.Name
676 prefix = "target." + os.Name + "_" + t.Name
Dan Willemsenb1957a52016-06-23 23:44:54 -0700677 a.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossb9db4802016-06-03 01:50:47 +0000678
Colin Crossa1ad8d12016-06-01 17:09:44 -0700679 if (os.Class == Host || os.Class == HostCross) && os != Windows {
680 field := "Not_windows"
681 prefix := "target.not_windows"
Dan Willemsenb1957a52016-06-23 23:44:54 -0700682 a.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Cross3f40fa42015-01-30 17:27:36 -0800683 }
684
Colin Crossf8209412015-03-26 14:44:26 -0700685 // Handle 64-bit device properties in the form:
686 // target {
687 // android64 {
688 // key: value,
689 // },
690 // android32 {
691 // key: value,
692 // },
693 // },
694 // WARNING: this is probably not what you want to use in your blueprints file, it selects
695 // options for all targets on a device that supports 64-bit binaries, not just the targets
696 // that are being compiled for 64-bit. Its expected use case is binaries like linker and
697 // debuggerd that need to know when they are a 32-bit process running on a 64-bit device
Colin Crossa1ad8d12016-06-01 17:09:44 -0700698 if os.Class == Device {
699 if ctx.AConfig().Android64() {
Colin Cross06a931b2015-10-28 17:23:31 -0700700 field := "Android64"
701 prefix := "target.android64"
Dan Willemsenb1957a52016-06-23 23:44:54 -0700702 a.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossf8209412015-03-26 14:44:26 -0700703 } else {
Colin Cross06a931b2015-10-28 17:23:31 -0700704 field := "Android32"
705 prefix := "target.android32"
Dan Willemsenb1957a52016-06-23 23:44:54 -0700706 a.appendProperties(ctx, genProps, targetProp, field, prefix)
Colin Crossf8209412015-03-26 14:44:26 -0700707 }
708 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800709 }
710}
711
712func forEachInterface(v reflect.Value, f func(reflect.Value)) {
713 switch v.Kind() {
714 case reflect.Interface:
715 f(v)
716 case reflect.Struct:
717 for i := 0; i < v.NumField(); i++ {
718 forEachInterface(v.Field(i), f)
719 }
720 case reflect.Ptr:
721 forEachInterface(v.Elem(), f)
722 default:
723 panic(fmt.Errorf("Unsupported kind %s", v.Kind()))
724 }
725}
Colin Cross4225f652015-09-17 14:33:42 -0700726
Colin Crossa1ad8d12016-06-01 17:09:44 -0700727// Convert the arch product variables into a list of targets for each os class structs
Colin Cross9272ade2016-08-17 15:24:12 -0700728func decodeTargetProductVariables(config *config) (map[OsClass][]Target, error) {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700729 variables := config.ProductVariables
Dan Willemsen490fd492015-11-24 17:53:15 -0800730
Colin Crossa1ad8d12016-06-01 17:09:44 -0700731 targets := make(map[OsClass][]Target)
732 var targetErr error
733
734 addTarget := func(os OsType, archName string, archVariant, cpuVariant *string, abi *[]string) {
735 if targetErr != nil {
736 return
Dan Willemsen490fd492015-11-24 17:53:15 -0800737 }
Colin Crossa1ad8d12016-06-01 17:09:44 -0700738
739 arch, err := decodeArch(archName, archVariant, cpuVariant, abi)
740 if err != nil {
741 targetErr = err
742 return
743 }
744
745 targets[os.Class] = append(targets[os.Class],
746 Target{
747 Os: os,
748 Arch: arch,
749 })
Dan Willemsen490fd492015-11-24 17:53:15 -0800750 }
751
Colin Cross4225f652015-09-17 14:33:42 -0700752 if variables.HostArch == nil {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700753 return nil, fmt.Errorf("No host primary architecture set")
Colin Cross4225f652015-09-17 14:33:42 -0700754 }
755
Colin Crossa1ad8d12016-06-01 17:09:44 -0700756 addTarget(BuildOs, *variables.HostArch, nil, nil, nil)
Colin Cross4225f652015-09-17 14:33:42 -0700757
Colin Crosseeabb892015-11-20 13:07:51 -0800758 if variables.HostSecondaryArch != nil && *variables.HostSecondaryArch != "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700759 addTarget(BuildOs, *variables.HostSecondaryArch, nil, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -0800760 }
761
762 if variables.CrossHost != nil && *variables.CrossHost != "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700763 crossHostOs := osByName(*variables.CrossHost)
764 if crossHostOs == NoOsType {
765 return nil, fmt.Errorf("Unknown cross host OS %q", *variables.CrossHost)
766 }
767
Dan Willemsen490fd492015-11-24 17:53:15 -0800768 if variables.CrossHostArch == nil || *variables.CrossHostArch == "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700769 return nil, fmt.Errorf("No cross-host primary architecture set")
Dan Willemsen490fd492015-11-24 17:53:15 -0800770 }
771
Colin Crossa1ad8d12016-06-01 17:09:44 -0700772 addTarget(crossHostOs, *variables.CrossHostArch, nil, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -0800773
774 if variables.CrossHostSecondaryArch != nil && *variables.CrossHostSecondaryArch != "" {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700775 addTarget(crossHostOs, *variables.CrossHostSecondaryArch, nil, nil, nil)
Dan Willemsen490fd492015-11-24 17:53:15 -0800776 }
777 }
778
Dan Willemsen3f32f032016-07-11 14:36:48 -0700779 if variables.DeviceArch != nil && *variables.DeviceArch != "" {
780 addTarget(Android, *variables.DeviceArch, variables.DeviceArchVariant,
781 variables.DeviceCpuVariant, variables.DeviceAbi)
Colin Cross4225f652015-09-17 14:33:42 -0700782
Dan Willemsen3f32f032016-07-11 14:36:48 -0700783 if variables.DeviceSecondaryArch != nil && *variables.DeviceSecondaryArch != "" {
784 addTarget(Android, *variables.DeviceSecondaryArch,
785 variables.DeviceSecondaryArchVariant, variables.DeviceSecondaryCpuVariant,
786 variables.DeviceSecondaryAbi)
Colin Cross4225f652015-09-17 14:33:42 -0700787
Dan Willemsen3f32f032016-07-11 14:36:48 -0700788 deviceArches := targets[Device]
789 if deviceArches[0].Arch.ArchType.Multilib == deviceArches[1].Arch.ArchType.Multilib {
790 deviceArches[1].Arch.Native = false
791 }
Colin Cross4225f652015-09-17 14:33:42 -0700792 }
Colin Cross4225f652015-09-17 14:33:42 -0700793 }
794
Colin Crossa1ad8d12016-06-01 17:09:44 -0700795 if targetErr != nil {
796 return nil, targetErr
797 }
798
799 return targets, nil
Colin Cross4225f652015-09-17 14:33:42 -0700800}
801
Colin Crossa1ad8d12016-06-01 17:09:44 -0700802func decodeMegaDevice() ([]Target, error) {
Dan Willemsen322acaf2016-01-12 23:07:05 -0800803 archSettings := []struct {
804 arch string
805 archVariant string
806 cpuVariant string
807 abi []string
808 }{
Dan Willemsen110a89d2016-01-14 15:17:19 -0800809 // armv5 is only used for unbundled apps
810 //{"arm", "armv5te", "", []string{"armeabi"}},
811 {"arm", "armv7-a", "generic", []string{"armeabi-v7a"}},
812 {"arm", "armv7-a-neon", "generic", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -0800813 {"arm", "armv7-a-neon", "cortex-a7", []string{"armeabi-v7a"}},
814 {"arm", "armv7-a-neon", "cortex-a8", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -0800815 {"arm", "armv7-a-neon", "cortex-a9", []string{"armeabi-v7a"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -0800816 {"arm", "armv7-a-neon", "cortex-a15", []string{"armeabi-v7a"}},
817 {"arm", "armv7-a-neon", "cortex-a53", []string{"armeabi-v7a"}},
818 {"arm", "armv7-a-neon", "cortex-a53.a57", []string{"armeabi-v7a"}},
819 {"arm", "armv7-a-neon", "denver", []string{"armeabi-v7a"}},
820 {"arm", "armv7-a-neon", "krait", []string{"armeabi-v7a"}},
Dan Willemsen110a89d2016-01-14 15:17:19 -0800821 {"arm64", "armv8-a", "cortex-a53", []string{"arm64-v8a"}},
822 {"arm64", "armv8-a", "denver64", []string{"arm64-v8a"}},
Dan Willemsen468cc312016-01-13 23:25:19 -0800823 {"mips", "mips32-fp", "", []string{"mips"}},
824 {"mips", "mips32r2-fp", "", []string{"mips"}},
825 {"mips", "mips32r2-fp-xburst", "", []string{"mips"}},
Dan Willemsen65fb9812016-07-19 21:37:28 -0700826 //{"mips", "mips32r6", "", []string{"mips"}},
Dan Willemsen468cc312016-01-13 23:25:19 -0800827 // mips32r2dsp[r2]-fp fails in the assembler for divdf3.c in compiler-rt:
828 // (same errors in make and soong)
829 // Error: invalid operands `mtlo $ac0,$11'
830 // Error: invalid operands `mthi $ac0,$12'
Dan Willemsen322acaf2016-01-12 23:07:05 -0800831 //{"mips", "mips32r2dsp-fp", "", []string{"mips"}},
832 //{"mips", "mips32r2dspr2-fp", "", []string{"mips"}},
833 // mips64r2 is mismatching 64r2 and 64r6 libraries during linking to libgcc
834 //{"mips64", "mips64r2", "", []string{"mips64"}},
835 {"mips64", "mips64r6", "", []string{"mips64"}},
836 {"x86", "", "", []string{"x86"}},
837 {"x86", "atom", "", []string{"x86"}},
838 {"x86", "haswell", "", []string{"x86"}},
839 {"x86", "ivybridge", "", []string{"x86"}},
840 {"x86", "sandybridge", "", []string{"x86"}},
841 {"x86", "silvermont", "", []string{"x86"}},
Dan Willemsen8a354052016-05-10 14:30:51 -0700842 {"x86", "x86_64", "", []string{"x86"}},
Dan Willemsen322acaf2016-01-12 23:07:05 -0800843 {"x86_64", "", "", []string{"x86_64"}},
844 {"x86_64", "haswell", "", []string{"x86_64"}},
845 {"x86_64", "ivybridge", "", []string{"x86_64"}},
846 {"x86_64", "sandybridge", "", []string{"x86_64"}},
847 {"x86_64", "silvermont", "", []string{"x86_64"}},
848 }
849
Colin Crossa1ad8d12016-06-01 17:09:44 -0700850 var ret []Target
Dan Willemsen322acaf2016-01-12 23:07:05 -0800851
852 for _, config := range archSettings {
853 arch, err := decodeArch(config.arch, &config.archVariant,
854 &config.cpuVariant, &config.abi)
855 if err != nil {
856 return nil, err
857 }
Dan Willemsen17f05262016-05-31 16:27:00 -0700858 arch.Native = false
Colin Crossa1ad8d12016-06-01 17:09:44 -0700859 ret = append(ret, Target{
860 Os: Android,
861 Arch: arch,
862 })
Dan Willemsen322acaf2016-01-12 23:07:05 -0800863 }
864
865 return ret, nil
866}
867
Colin Cross4225f652015-09-17 14:33:42 -0700868// Convert a set of strings from product variables into a single Arch struct
869func decodeArch(arch string, archVariant, cpuVariant *string, abi *[]string) (Arch, error) {
870 stringPtr := func(p *string) string {
871 if p != nil {
872 return *p
873 }
874 return ""
875 }
876
877 slicePtr := func(p *[]string) []string {
878 if p != nil {
879 return *p
880 }
881 return nil
882 }
883
Colin Crosseeabb892015-11-20 13:07:51 -0800884 archType, ok := archTypeMap[arch]
885 if !ok {
886 return Arch{}, fmt.Errorf("unknown arch %q", arch)
887 }
Colin Cross4225f652015-09-17 14:33:42 -0700888
Colin Crosseeabb892015-11-20 13:07:51 -0800889 a := Arch{
Colin Cross4225f652015-09-17 14:33:42 -0700890 ArchType: archType,
891 ArchVariant: stringPtr(archVariant),
892 CpuVariant: stringPtr(cpuVariant),
893 Abi: slicePtr(abi),
Dan Willemsen17f05262016-05-31 16:27:00 -0700894 Native: true,
Colin Crosseeabb892015-11-20 13:07:51 -0800895 }
896
897 if a.ArchVariant == a.ArchType.Name || a.ArchVariant == "generic" {
898 a.ArchVariant = ""
899 }
900
901 if a.CpuVariant == a.ArchType.Name || a.CpuVariant == "generic" {
902 a.CpuVariant = ""
903 }
904
905 for i := 0; i < len(a.Abi); i++ {
906 if a.Abi[i] == "" {
907 a.Abi = append(a.Abi[:i], a.Abi[i+1:]...)
908 i--
909 }
910 }
911
Colin Crossc5c24ad2015-11-20 15:35:00 -0800912 if featureMap, ok := archFeatureMap[archType]; ok {
Dan Willemsenb4850992016-05-06 17:21:20 -0700913 a.ArchFeatures = featureMap[a.ArchVariant]
Colin Crossc5c24ad2015-11-20 15:35:00 -0800914 }
915
Colin Crosseeabb892015-11-20 13:07:51 -0800916 return a, nil
Colin Cross4225f652015-09-17 14:33:42 -0700917}
918
Colin Cross69617d32016-09-06 10:39:07 -0700919func filterMultilibTargets(targets []Target, multilib string) []Target {
920 var ret []Target
921 for _, t := range targets {
922 if t.Arch.ArchType.Multilib == multilib {
923 ret = append(ret, t)
924 }
925 }
926 return ret
927}
928
Colin Crossa1ad8d12016-06-01 17:09:44 -0700929// Use the module multilib setting to select one or more targets from a target list
Colin Cross8b74d172016-09-13 09:59:14 -0700930func decodeMultilib(multilib string, targets []Target, prefer32 bool) ([]Target, error) {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700931 buildTargets := []Target{}
Colin Cross8b74d172016-09-13 09:59:14 -0700932 if multilib == "first" {
933 if prefer32 {
934 multilib = "prefer32"
935 } else {
936 multilib = "prefer64"
937 }
938 }
Colin Cross4225f652015-09-17 14:33:42 -0700939 switch multilib {
940 case "common":
Colin Crossa1ad8d12016-06-01 17:09:44 -0700941 buildTargets = append(buildTargets, commonTarget)
Colin Cross4225f652015-09-17 14:33:42 -0700942 case "both":
Colin Cross8b74d172016-09-13 09:59:14 -0700943 if prefer32 {
944 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib32")...)
945 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib64")...)
946 } else {
947 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib64")...)
948 buildTargets = append(buildTargets, filterMultilibTargets(targets, "lib32")...)
949 }
Colin Cross4225f652015-09-17 14:33:42 -0700950 case "32":
Colin Cross69617d32016-09-06 10:39:07 -0700951 buildTargets = filterMultilibTargets(targets, "lib32")
Colin Cross4225f652015-09-17 14:33:42 -0700952 case "64":
Colin Cross69617d32016-09-06 10:39:07 -0700953 buildTargets = filterMultilibTargets(targets, "lib64")
954 case "prefer32":
955 buildTargets = filterMultilibTargets(targets, "lib32")
956 if len(buildTargets) == 0 {
957 buildTargets = filterMultilibTargets(targets, "lib64")
Colin Cross4225f652015-09-17 14:33:42 -0700958 }
Colin Cross8b74d172016-09-13 09:59:14 -0700959 case "prefer64":
960 buildTargets = filterMultilibTargets(targets, "lib64")
961 if len(buildTargets) == 0 {
962 buildTargets = filterMultilibTargets(targets, "lib32")
963 }
Colin Cross4225f652015-09-17 14:33:42 -0700964 default:
Colin Cross69617d32016-09-06 10:39:07 -0700965 return nil, fmt.Errorf(`compile_multilib must be "both", "first", "32", "64", or "prefer32" found %q`,
Colin Cross4225f652015-09-17 14:33:42 -0700966 multilib)
Colin Cross4225f652015-09-17 14:33:42 -0700967 }
968
Colin Crossa1ad8d12016-06-01 17:09:44 -0700969 return buildTargets, nil
Colin Cross4225f652015-09-17 14:33:42 -0700970}