blob: 7ada8f5eb7fa2e189f908cca9e567a918145489e [file] [log] [blame]
Colin Cross1f7f3bd2016-07-27 10:12:38 -07001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package art
16
17// This file implements the "codegen" property to apply different properties based on the currently
18// selected codegen arches, which defaults to all arches on the host and the primary and secondary
19// arches on the device.
20
21import (
Colin Cross1f7f3bd2016-07-27 10:12:38 -070022 "sort"
23 "strings"
Colin Crossdd3b7aa2019-07-31 13:47:39 -070024
25 "android/soong/android"
Colin Cross1f7f3bd2016-07-27 10:12:38 -070026)
27
Colin Crossf383ed82019-09-24 15:02:23 -070028type moduleType struct {
29 library bool
30 static bool
31 shared bool
32}
33
34var (
35 staticLibrary = moduleType{true, true, false}
36 sharedLibrary = moduleType{true, false, true}
37 staticAndSharedLibrary = moduleType{true, true, true}
38 binary = moduleType{false, false, false}
39)
40
41func codegen(ctx android.LoadHookContext, c *codegenProperties, t moduleType) {
Colin Cross1f7f3bd2016-07-27 10:12:38 -070042 var hostArches, deviceArches []string
43
Colin Crossdd3b7aa2019-07-31 13:47:39 -070044 e := ctx.Config().Getenv("ART_HOST_CODEGEN_ARCHS")
Colin Cross1f7f3bd2016-07-27 10:12:38 -070045 if e == "" {
46 hostArches = supportedArches
47 } else {
48 hostArches = strings.Split(e, " ")
49 }
50
Colin Crossdd3b7aa2019-07-31 13:47:39 -070051 e = ctx.Config().Getenv("ART_TARGET_CODEGEN_ARCHS")
Colin Cross1f7f3bd2016-07-27 10:12:38 -070052 if e == "" {
53 deviceArches = defaultDeviceCodegenArches(ctx)
54 } else {
55 deviceArches = strings.Split(e, " ")
56 }
57
Roland Levillain118ce362019-08-05 18:06:00 +010058 getCodegenArchProperties := func(archName string) *codegenArchProperties {
Colin Cross6e95dd52016-09-12 15:37:10 -070059 var arch *codegenArchProperties
60 switch archName {
Colin Cross1f7f3bd2016-07-27 10:12:38 -070061 case "arm":
Colin Cross6e95dd52016-09-12 15:37:10 -070062 arch = &c.Codegen.Arm
Colin Cross1f7f3bd2016-07-27 10:12:38 -070063 case "arm64":
Colin Cross6e95dd52016-09-12 15:37:10 -070064 arch = &c.Codegen.Arm64
Colin Cross1f7f3bd2016-07-27 10:12:38 -070065 case "mips":
Colin Cross6e95dd52016-09-12 15:37:10 -070066 arch = &c.Codegen.Mips
Colin Cross1f7f3bd2016-07-27 10:12:38 -070067 case "mips64":
Colin Cross6e95dd52016-09-12 15:37:10 -070068 arch = &c.Codegen.Mips64
Colin Cross1f7f3bd2016-07-27 10:12:38 -070069 case "x86":
Colin Cross6e95dd52016-09-12 15:37:10 -070070 arch = &c.Codegen.X86
Colin Cross1f7f3bd2016-07-27 10:12:38 -070071 case "x86_64":
Colin Cross6e95dd52016-09-12 15:37:10 -070072 arch = &c.Codegen.X86_64
Colin Cross1f7f3bd2016-07-27 10:12:38 -070073 default:
Colin Cross6e95dd52016-09-12 15:37:10 -070074 ctx.ModuleErrorf("Unknown codegen architecture %q", archName)
Roland Levillain118ce362019-08-05 18:06:00 +010075 }
76 return arch
77 }
78
79 appendCodegenSourceArchProperties := func(p *CodegenSourceArchProperties, archName string) {
80 arch := getCodegenArchProperties(archName)
81 p.Srcs = append(p.Srcs, arch.CodegenSourceArchProperties.Srcs...)
82 }
83
84 addCodegenSourceArchProperties := func(host bool, p *CodegenSourceArchProperties) {
85 type sourceProps struct {
86 Target struct {
87 Android *CodegenSourceArchProperties
88 Host *CodegenSourceArchProperties
89 }
Colin Cross1f7f3bd2016-07-27 10:12:38 -070090 }
Colin Cross6e95dd52016-09-12 15:37:10 -070091
Roland Levillain118ce362019-08-05 18:06:00 +010092 sp := &sourceProps{}
Colin Cross6e95dd52016-09-12 15:37:10 -070093 if host {
Roland Levillain118ce362019-08-05 18:06:00 +010094 sp.Target.Host = p
Colin Cross6e95dd52016-09-12 15:37:10 -070095 } else {
Roland Levillain118ce362019-08-05 18:06:00 +010096 sp.Target.Android = p
97 }
98 ctx.AppendProperties(sp)
99 }
100
101 addCodegenArchProperties := func(host bool, archName string) {
102 type commonProps struct {
103 Target struct {
104 Android *CodegenCommonArchProperties
105 Host *CodegenCommonArchProperties
106 }
Colin Cross6e95dd52016-09-12 15:37:10 -0700107 }
108
Colin Crossf383ed82019-09-24 15:02:23 -0700109 type sharedLibraryProps struct {
Roland Levillain118ce362019-08-05 18:06:00 +0100110 Target struct {
Colin Crossf383ed82019-09-24 15:02:23 -0700111 Android *CodegenLibraryArchSharedProperties
112 Host *CodegenLibraryArchSharedProperties
113 }
114 }
115
116 type staticLibraryProps struct {
117 Target struct {
118 Android *CodegenLibraryArchStaticProperties
119 Host *CodegenLibraryArchStaticProperties
Roland Levillain118ce362019-08-05 18:06:00 +0100120 }
121 }
122
123 arch := getCodegenArchProperties(archName)
124
125 cp := &commonProps{}
Colin Crossf383ed82019-09-24 15:02:23 -0700126 sharedLP := &sharedLibraryProps{}
127 staticLP := &staticLibraryProps{}
Roland Levillain118ce362019-08-05 18:06:00 +0100128 if host {
129 cp.Target.Host = &arch.CodegenCommonArchProperties
Colin Crossf383ed82019-09-24 15:02:23 -0700130 sharedLP.Target.Host = &arch.CodegenLibraryArchSharedProperties
131 staticLP.Target.Host = &arch.CodegenLibraryArchStaticProperties
Roland Levillain118ce362019-08-05 18:06:00 +0100132 } else {
133 cp.Target.Android = &arch.CodegenCommonArchProperties
Colin Crossf383ed82019-09-24 15:02:23 -0700134 sharedLP.Target.Android = &arch.CodegenLibraryArchSharedProperties
135 staticLP.Target.Android = &arch.CodegenLibraryArchStaticProperties
Roland Levillain118ce362019-08-05 18:06:00 +0100136 }
137
138 ctx.AppendProperties(cp)
Colin Crossf383ed82019-09-24 15:02:23 -0700139 if t.library {
140 if t.static {
141 ctx.AppendProperties(staticLP)
142 }
143 if t.shared {
144 ctx.AppendProperties(sharedLP)
145 }
Colin Cross6e95dd52016-09-12 15:37:10 -0700146 }
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700147 }
148
Roland Levillain118ce362019-08-05 18:06:00 +0100149 addCodegenProperties := func(host bool, arches []string) {
150 sourceProps := &CodegenSourceArchProperties{}
151 for _, arch := range arches {
152 appendCodegenSourceArchProperties(sourceProps, arch)
153 addCodegenArchProperties(host, arch)
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700154 }
Roland Levillain118ce362019-08-05 18:06:00 +0100155 sourceProps.Srcs = android.FirstUniqueStrings(sourceProps.Srcs)
156 addCodegenSourceArchProperties(host, sourceProps)
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700157 }
158
Roland Levillain118ce362019-08-05 18:06:00 +0100159 addCodegenProperties(false /* host */, deviceArches)
160 addCodegenProperties(true /* host */, hostArches)
161}
162
163// These properties are allowed to contain the same source file name in different architectures.
164// They we will be deduplicated automatically.
165type CodegenSourceArchProperties struct {
166 Srcs []string
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700167}
168
Colin Cross6e95dd52016-09-12 15:37:10 -0700169type CodegenCommonArchProperties struct {
Roland Levillain12dd9ae2018-11-06 13:32:06 +0000170 Cflags []string
171 Cppflags []string
Colin Cross6e95dd52016-09-12 15:37:10 -0700172}
173
Colin Crossf383ed82019-09-24 15:02:23 -0700174type CodegenLibraryArchStaticProperties struct {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700175 Static struct {
Paul Duffin74f89af2019-07-12 15:27:50 +0100176 Whole_static_libs []string
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700177 }
Colin Crossf383ed82019-09-24 15:02:23 -0700178}
179type CodegenLibraryArchSharedProperties struct {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700180 Shared struct {
Paul Duffin15332432019-07-12 15:27:50 +0100181 Shared_libs []string
182 Export_shared_lib_headers []string
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700183 }
184}
185
Colin Cross6e95dd52016-09-12 15:37:10 -0700186type codegenArchProperties struct {
Roland Levillain118ce362019-08-05 18:06:00 +0100187 CodegenSourceArchProperties
Colin Cross6e95dd52016-09-12 15:37:10 -0700188 CodegenCommonArchProperties
Colin Crossf383ed82019-09-24 15:02:23 -0700189 CodegenLibraryArchStaticProperties
190 CodegenLibraryArchSharedProperties
Colin Cross6e95dd52016-09-12 15:37:10 -0700191}
192
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700193type codegenProperties struct {
194 Codegen struct {
195 Arm, Arm64, Mips, Mips64, X86, X86_64 codegenArchProperties
196 }
197}
198
Colin Cross6e511782016-09-13 13:41:03 -0700199func defaultDeviceCodegenArches(ctx android.LoadHookContext) []string {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700200 arches := make(map[string]bool)
201 for _, a := range ctx.DeviceConfig().Arches() {
Nicolas Geoffraye52ac152016-09-09 15:48:19 +0100202 s := a.ArchType.String()
203 arches[s] = true
204 if s == "arm64" {
205 arches["arm"] = true
206 } else if s == "mips64" {
207 arches["mips"] = true
208 } else if s == "x86_64" {
209 arches["x86"] = true
210 }
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700211 }
212 ret := make([]string, 0, len(arches))
213 for a := range arches {
214 ret = append(ret, a)
215 }
216 sort.Strings(ret)
217 return ret
218}
Colin Cross6e95dd52016-09-12 15:37:10 -0700219
Colin Crossf383ed82019-09-24 15:02:23 -0700220func installCodegenCustomizer(module android.Module, t moduleType) {
Colin Cross6e95dd52016-09-12 15:37:10 -0700221 c := &codegenProperties{}
Colin Crossf383ed82019-09-24 15:02:23 -0700222 android.AddLoadHook(module, func(ctx android.LoadHookContext) { codegen(ctx, c, t) })
Colin Crossca06ea32017-06-27 10:38:55 -0700223 module.AddProperties(c)
Colin Cross6e95dd52016-09-12 15:37:10 -0700224}