blob: 96dd2233561c9b41f3405f58dfe44430da82a5f0 [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 "x86":
Colin Cross6e95dd52016-09-12 15:37:10 -070066 arch = &c.Codegen.X86
Colin Cross1f7f3bd2016-07-27 10:12:38 -070067 case "x86_64":
Colin Cross6e95dd52016-09-12 15:37:10 -070068 arch = &c.Codegen.X86_64
Colin Cross1f7f3bd2016-07-27 10:12:38 -070069 default:
Colin Cross6e95dd52016-09-12 15:37:10 -070070 ctx.ModuleErrorf("Unknown codegen architecture %q", archName)
Roland Levillain118ce362019-08-05 18:06:00 +010071 }
72 return arch
73 }
74
75 appendCodegenSourceArchProperties := func(p *CodegenSourceArchProperties, archName string) {
76 arch := getCodegenArchProperties(archName)
77 p.Srcs = append(p.Srcs, arch.CodegenSourceArchProperties.Srcs...)
78 }
79
80 addCodegenSourceArchProperties := func(host bool, p *CodegenSourceArchProperties) {
81 type sourceProps struct {
82 Target struct {
83 Android *CodegenSourceArchProperties
84 Host *CodegenSourceArchProperties
85 }
Colin Cross1f7f3bd2016-07-27 10:12:38 -070086 }
Colin Cross6e95dd52016-09-12 15:37:10 -070087
Roland Levillain118ce362019-08-05 18:06:00 +010088 sp := &sourceProps{}
Colin Cross6e95dd52016-09-12 15:37:10 -070089 if host {
Roland Levillain118ce362019-08-05 18:06:00 +010090 sp.Target.Host = p
Colin Cross6e95dd52016-09-12 15:37:10 -070091 } else {
Roland Levillain118ce362019-08-05 18:06:00 +010092 sp.Target.Android = p
93 }
94 ctx.AppendProperties(sp)
95 }
96
97 addCodegenArchProperties := func(host bool, archName string) {
98 type commonProps struct {
99 Target struct {
100 Android *CodegenCommonArchProperties
101 Host *CodegenCommonArchProperties
102 }
Colin Cross6e95dd52016-09-12 15:37:10 -0700103 }
104
Vladimir Marko053e1382021-05-05 16:07:27 +0000105 type libraryProps struct {
106 Target struct {
107 Android *CodegenLibraryArchProperties
108 Host *CodegenLibraryArchProperties
109 }
110 }
111
Colin Crossf383ed82019-09-24 15:02:23 -0700112 type sharedLibraryProps struct {
Roland Levillain118ce362019-08-05 18:06:00 +0100113 Target struct {
Colin Crossf383ed82019-09-24 15:02:23 -0700114 Android *CodegenLibraryArchSharedProperties
115 Host *CodegenLibraryArchSharedProperties
116 }
117 }
118
119 type staticLibraryProps struct {
120 Target struct {
121 Android *CodegenLibraryArchStaticProperties
122 Host *CodegenLibraryArchStaticProperties
Roland Levillain118ce362019-08-05 18:06:00 +0100123 }
124 }
125
126 arch := getCodegenArchProperties(archName)
127
128 cp := &commonProps{}
Vladimir Marko053e1382021-05-05 16:07:27 +0000129 lp := &libraryProps{}
Colin Crossf383ed82019-09-24 15:02:23 -0700130 sharedLP := &sharedLibraryProps{}
131 staticLP := &staticLibraryProps{}
Roland Levillain118ce362019-08-05 18:06:00 +0100132 if host {
133 cp.Target.Host = &arch.CodegenCommonArchProperties
Vladimir Marko053e1382021-05-05 16:07:27 +0000134 lp.Target.Host = &arch.CodegenLibraryArchProperties
Colin Crossf383ed82019-09-24 15:02:23 -0700135 sharedLP.Target.Host = &arch.CodegenLibraryArchSharedProperties
136 staticLP.Target.Host = &arch.CodegenLibraryArchStaticProperties
Roland Levillain118ce362019-08-05 18:06:00 +0100137 } else {
138 cp.Target.Android = &arch.CodegenCommonArchProperties
Vladimir Marko053e1382021-05-05 16:07:27 +0000139 lp.Target.Android = &arch.CodegenLibraryArchProperties
Colin Crossf383ed82019-09-24 15:02:23 -0700140 sharedLP.Target.Android = &arch.CodegenLibraryArchSharedProperties
141 staticLP.Target.Android = &arch.CodegenLibraryArchStaticProperties
Roland Levillain118ce362019-08-05 18:06:00 +0100142 }
143
144 ctx.AppendProperties(cp)
Colin Crossf383ed82019-09-24 15:02:23 -0700145 if t.library {
Vladimir Marko053e1382021-05-05 16:07:27 +0000146 ctx.AppendProperties(lp)
Colin Crossf383ed82019-09-24 15:02:23 -0700147 if t.static {
148 ctx.AppendProperties(staticLP)
149 }
150 if t.shared {
151 ctx.AppendProperties(sharedLP)
152 }
Colin Cross6e95dd52016-09-12 15:37:10 -0700153 }
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700154 }
155
Roland Levillain118ce362019-08-05 18:06:00 +0100156 addCodegenProperties := func(host bool, arches []string) {
157 sourceProps := &CodegenSourceArchProperties{}
158 for _, arch := range arches {
159 appendCodegenSourceArchProperties(sourceProps, arch)
160 addCodegenArchProperties(host, arch)
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700161 }
Roland Levillain118ce362019-08-05 18:06:00 +0100162 sourceProps.Srcs = android.FirstUniqueStrings(sourceProps.Srcs)
163 addCodegenSourceArchProperties(host, sourceProps)
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700164 }
165
Roland Levillain118ce362019-08-05 18:06:00 +0100166 addCodegenProperties(false /* host */, deviceArches)
167 addCodegenProperties(true /* host */, hostArches)
168}
169
170// These properties are allowed to contain the same source file name in different architectures.
171// They we will be deduplicated automatically.
172type CodegenSourceArchProperties struct {
173 Srcs []string
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700174}
175
Colin Cross6e95dd52016-09-12 15:37:10 -0700176type CodegenCommonArchProperties struct {
Roland Levillain12dd9ae2018-11-06 13:32:06 +0000177 Cflags []string
178 Cppflags []string
Colin Cross6e95dd52016-09-12 15:37:10 -0700179}
180
Vladimir Marko053e1382021-05-05 16:07:27 +0000181type CodegenLibraryArchProperties struct {
182 Static_libs []string
183 Export_static_lib_headers []string
184}
185
Colin Crossf383ed82019-09-24 15:02:23 -0700186type CodegenLibraryArchStaticProperties struct {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700187 Static struct {
Paul Duffin74f89af2019-07-12 15:27:50 +0100188 Whole_static_libs []string
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700189 }
Colin Crossf383ed82019-09-24 15:02:23 -0700190}
191type CodegenLibraryArchSharedProperties struct {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700192 Shared struct {
Paul Duffin15332432019-07-12 15:27:50 +0100193 Shared_libs []string
194 Export_shared_lib_headers []string
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700195 }
196}
197
Colin Cross6e95dd52016-09-12 15:37:10 -0700198type codegenArchProperties struct {
Roland Levillain118ce362019-08-05 18:06:00 +0100199 CodegenSourceArchProperties
Colin Cross6e95dd52016-09-12 15:37:10 -0700200 CodegenCommonArchProperties
Vladimir Marko053e1382021-05-05 16:07:27 +0000201 CodegenLibraryArchProperties
Colin Crossf383ed82019-09-24 15:02:23 -0700202 CodegenLibraryArchStaticProperties
203 CodegenLibraryArchSharedProperties
Colin Cross6e95dd52016-09-12 15:37:10 -0700204}
205
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700206type codegenProperties struct {
207 Codegen struct {
Vladimir Markobe0d3cf2020-02-12 10:52:22 +0000208 Arm, Arm64, X86, X86_64 codegenArchProperties
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700209 }
210}
211
Colin Cross6e511782016-09-13 13:41:03 -0700212func defaultDeviceCodegenArches(ctx android.LoadHookContext) []string {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700213 arches := make(map[string]bool)
214 for _, a := range ctx.DeviceConfig().Arches() {
Nicolas Geoffraye52ac152016-09-09 15:48:19 +0100215 s := a.ArchType.String()
216 arches[s] = true
217 if s == "arm64" {
218 arches["arm"] = true
Nicolas Geoffraye52ac152016-09-09 15:48:19 +0100219 } else if s == "x86_64" {
220 arches["x86"] = true
221 }
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700222 }
223 ret := make([]string, 0, len(arches))
224 for a := range arches {
225 ret = append(ret, a)
226 }
227 sort.Strings(ret)
228 return ret
229}
Colin Cross6e95dd52016-09-12 15:37:10 -0700230
Colin Crossf383ed82019-09-24 15:02:23 -0700231func installCodegenCustomizer(module android.Module, t moduleType) {
Colin Cross6e95dd52016-09-12 15:37:10 -0700232 c := &codegenProperties{}
Colin Crossf383ed82019-09-24 15:02:23 -0700233 android.AddLoadHook(module, func(ctx android.LoadHookContext) { codegen(ctx, c, t) })
Colin Crossca06ea32017-06-27 10:38:55 -0700234 module.AddProperties(c)
Colin Cross6e95dd52016-09-12 15:37:10 -0700235}