| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 1 | // Copyright 2017 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 |  | 
|  | 15 | package cc | 
|  | 16 |  | 
|  | 17 | import ( | 
| Colin Cross | 2548b44 | 2018-11-18 20:57:21 -0800 | [diff] [blame] | 18 | "path/filepath" | 
|  | 19 | "runtime" | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 20 | "strings" | 
|  | 21 |  | 
| Alix | e266787 | 2023-04-24 14:57:32 +0000 | [diff] [blame] | 22 | "android/soong/android" | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 23 | "github.com/google/blueprint" | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 24 | ) | 
|  | 25 |  | 
|  | 26 | func init() { | 
| Colin Cross | 2548b44 | 2018-11-18 20:57:21 -0800 | [diff] [blame] | 27 | pctx.VariableFunc("rsCmd", func(ctx android.PackageVarContext) string { | 
| Jeongik Cha | 816a23a | 2020-07-08 01:09:23 +0900 | [diff] [blame] | 28 | if ctx.Config().AlwaysUsePrebuiltSdks() { | 
| Dan Willemsen | 9f43597 | 2020-05-28 15:28:00 -0700 | [diff] [blame] | 29 | // Use RenderScript prebuilts for unbundled builds | 
| Colin Cross | 2548b44 | 2018-11-18 20:57:21 -0800 | [diff] [blame] | 30 | return filepath.Join("prebuilts/sdk/tools", runtime.GOOS, "bin/llvm-rs-cc") | 
|  | 31 | } else { | 
| Martin Stjernholm | 7260d06 | 2019-12-09 21:47:14 +0000 | [diff] [blame] | 32 | return ctx.Config().HostToolPath(ctx, "llvm-rs-cc").String() | 
| Colin Cross | 2548b44 | 2018-11-18 20:57:21 -0800 | [diff] [blame] | 33 | } | 
|  | 34 | }) | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 35 | } | 
|  | 36 |  | 
|  | 37 | var rsCppCmdLine = strings.Replace(` | 
|  | 38 | ${rsCmd} -o ${outDir} -d ${outDir} -a ${out} -MD -reflect-c++ ${rsFlags} $in && | 
| Yuntao Xu | 56cc658 | 2021-07-29 23:15:19 -0700 | [diff] [blame] | 39 | echo '${out}: \' > ${out}.d && | 
|  | 40 | for f in ${depFiles}; do cat $${f} | awk 'start { sub(/( \\)?$$/, " \\"); print } /:/ { start=1 }' >> ${out}.d; done && | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 41 | touch $out | 
|  | 42 | `, "\n", "", -1) | 
|  | 43 |  | 
|  | 44 | var ( | 
|  | 45 | rsCpp = pctx.AndroidStaticRule("rsCpp", | 
|  | 46 | blueprint.RuleParams{ | 
|  | 47 | Command:     rsCppCmdLine, | 
|  | 48 | CommandDeps: []string{"$rsCmd"}, | 
|  | 49 | Depfile:     "${out}.d", | 
|  | 50 | Deps:        blueprint.DepsGCC, | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 51 | }, | 
|  | 52 | "depFiles", "outDir", "rsFlags", "stampFile") | 
|  | 53 | ) | 
|  | 54 |  | 
| Jeff Vander Stoep | d612627 | 2019-07-15 19:08:37 -0700 | [diff] [blame] | 55 | // Takes a path to a .rscript or .fs file, and returns a path to a generated ScriptC_*.cpp file | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 56 | // This has to match the logic in llvm-rs-cc in DetermineOutputFile. | 
|  | 57 | func rsGeneratedCppFile(ctx android.ModuleContext, rsFile android.Path) android.WritablePath { | 
|  | 58 | fileName := strings.TrimSuffix(rsFile.Base(), rsFile.Ext()) | 
|  | 59 | return android.PathForModuleGen(ctx, "rs", "ScriptC_"+fileName+".cpp") | 
|  | 60 | } | 
|  | 61 |  | 
| Colin Cross | 80e6054 | 2018-03-19 22:44:29 -0700 | [diff] [blame] | 62 | func rsGeneratedHFile(ctx android.ModuleContext, rsFile android.Path) android.WritablePath { | 
|  | 63 | fileName := strings.TrimSuffix(rsFile.Base(), rsFile.Ext()) | 
|  | 64 | return android.PathForModuleGen(ctx, "rs", "ScriptC_"+fileName+".h") | 
|  | 65 | } | 
|  | 66 |  | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 67 | func rsGeneratedDepFile(ctx android.ModuleContext, rsFile android.Path) android.WritablePath { | 
|  | 68 | fileName := strings.TrimSuffix(rsFile.Base(), rsFile.Ext()) | 
|  | 69 | return android.PathForModuleGen(ctx, "rs", fileName+".d") | 
|  | 70 | } | 
|  | 71 |  | 
|  | 72 | func rsGenerateCpp(ctx android.ModuleContext, rsFiles android.Paths, rsFlags string) android.Paths { | 
|  | 73 | stampFile := android.PathForModuleGen(ctx, "rs", "rs.stamp") | 
| Colin Cross | 80e6054 | 2018-03-19 22:44:29 -0700 | [diff] [blame] | 74 | depFiles := make(android.WritablePaths, 0, len(rsFiles)) | 
|  | 75 | genFiles := make(android.WritablePaths, 0, 2*len(rsFiles)) | 
| Dan Willemsen | b085b9b | 2019-06-13 04:55:09 +0000 | [diff] [blame] | 76 | headers := make(android.Paths, 0, len(rsFiles)) | 
| Colin Cross | 80e6054 | 2018-03-19 22:44:29 -0700 | [diff] [blame] | 77 | for _, rsFile := range rsFiles { | 
|  | 78 | depFiles = append(depFiles, rsGeneratedDepFile(ctx, rsFile)) | 
| Dan Willemsen | b085b9b | 2019-06-13 04:55:09 +0000 | [diff] [blame] | 79 | headerFile := rsGeneratedHFile(ctx, rsFile) | 
|  | 80 | genFiles = append(genFiles, rsGeneratedCppFile(ctx, rsFile), headerFile) | 
|  | 81 | headers = append(headers, headerFile) | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 82 | } | 
|  | 83 |  | 
| Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 84 | ctx.Build(pctx, android.BuildParams{ | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 85 | Rule:            rsCpp, | 
| Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 86 | Description:     "llvm-rs-cc", | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 87 | Output:          stampFile, | 
| Colin Cross | 80e6054 | 2018-03-19 22:44:29 -0700 | [diff] [blame] | 88 | ImplicitOutputs: genFiles, | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 89 | Inputs:          rsFiles, | 
|  | 90 | Args: map[string]string{ | 
|  | 91 | "rsFlags":  rsFlags, | 
|  | 92 | "outDir":   android.PathForModuleGen(ctx, "rs").String(), | 
|  | 93 | "depFiles": strings.Join(depFiles.Strings(), " "), | 
|  | 94 | }, | 
|  | 95 | }) | 
|  | 96 |  | 
| Dan Willemsen | b085b9b | 2019-06-13 04:55:09 +0000 | [diff] [blame] | 97 | return headers | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 98 | } | 
|  | 99 |  | 
|  | 100 | func rsFlags(ctx ModuleContext, flags Flags, properties *BaseCompilerProperties) Flags { | 
| Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 101 | targetApi := String(properties.Renderscript.Target_api) | 
| Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 102 | if targetApi == "" && ctx.useSdk() { | 
| Prashanth Swaminathan | 30f7c79 | 2023-07-28 13:09:37 -0700 | [diff] [blame] | 103 | targetApiLevel := android.ApiLevelOrPanic(ctx, ctx.sdkVersion()) | 
|  | 104 | if targetApiLevel.IsCurrent() || targetApiLevel.IsPreview() { | 
|  | 105 | // If the target level is current or preview, leave the 'target-api' unset. | 
|  | 106 | // This signals to llvm-rs-cc that the development API should be used. | 
|  | 107 | } else { | 
|  | 108 | targetApi = targetApiLevel.String() | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 109 | } | 
|  | 110 | } | 
|  | 111 |  | 
|  | 112 | if targetApi != "" { | 
|  | 113 | flags.rsFlags = append(flags.rsFlags, "-target-api "+targetApi) | 
|  | 114 | } | 
|  | 115 |  | 
|  | 116 | flags.rsFlags = append(flags.rsFlags, "-Wall", "-Werror") | 
|  | 117 | flags.rsFlags = append(flags.rsFlags, properties.Renderscript.Flags...) | 
|  | 118 | if ctx.Arch().ArchType.Multilib == "lib64" { | 
|  | 119 | flags.rsFlags = append(flags.rsFlags, "-m64") | 
|  | 120 | } else { | 
|  | 121 | flags.rsFlags = append(flags.rsFlags, "-m32") | 
|  | 122 | } | 
|  | 123 | flags.rsFlags = append(flags.rsFlags, "${config.RsGlobalIncludes}") | 
|  | 124 |  | 
|  | 125 | rootRsIncludeDirs := android.PathsForSource(ctx, properties.Renderscript.Include_dirs) | 
|  | 126 | flags.rsFlags = append(flags.rsFlags, includeDirsToFlags(rootRsIncludeDirs)) | 
|  | 127 |  | 
| Colin Cross | 4af21ed | 2019-11-04 09:37:55 -0800 | [diff] [blame] | 128 | flags.Local.CommonFlags = append(flags.Local.CommonFlags, | 
| Colin Cross | 2101f4a | 2017-05-08 09:16:34 -0700 | [diff] [blame] | 129 | "-I"+android.PathForModuleGen(ctx, "rs").String(), | 
|  | 130 | "-Iframeworks/rs", | 
|  | 131 | "-Iframeworks/rs/cpp", | 
|  | 132 | ) | 
| Colin Cross | 2a252be | 2017-05-01 17:37:24 -0700 | [diff] [blame] | 133 |  | 
|  | 134 | return flags | 
|  | 135 | } |