blob: 346bd2f0f70411a82c414b64bb113309b65c256d [file] [log] [blame]
Zonr Chang0fffa7e2012-04-12 19:43:53 +08001/*
2 * Copyright 2012, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Stephen Hinese198abe2012-07-27 18:05:41 -070017#include "bcc/Renderscript/RSCompilerDriver.h"
Zonr Chang0fffa7e2012-04-12 19:43:53 +080018
Tobias Grosser7b980e12013-06-20 10:12:13 -070019#include <llvm/IR/Module.h>
Stephen Hinesad694762013-04-29 18:59:47 -070020#include <llvm/Support/CommandLine.h>
Stephen Hinesb10c3a72013-08-07 23:15:22 -070021#include <llvm/Support/Path.h>
Tobias Grosser7b980e12013-06-20 10:12:13 -070022#include <llvm/Support/raw_ostream.h>
Shih-wei Liao7bcec852012-04-25 04:07:09 -070023
24#include "bcinfo/BitcodeWrapper.h"
25
Stephen Hines47f0d5a2013-06-05 00:27:38 -070026#include "bcc/Compiler.h"
Stephen Hinese198abe2012-07-27 18:05:41 -070027#include "bcc/Renderscript/RSExecutable.h"
28#include "bcc/Renderscript/RSScript.h"
Zonr Changc72c4dd2012-04-12 15:38:53 +080029#include "bcc/Support/CompilerConfig.h"
30#include "bcc/Support/TargetCompilerConfigs.h"
Shih-wei Liao7bcec852012-04-25 04:07:09 -070031#include "bcc/Source.h"
Zonr Changc72c4dd2012-04-12 15:38:53 +080032#include "bcc/Support/FileMutex.h"
Zonr Changef73a242012-04-12 16:44:01 +080033#include "bcc/Support/Log.h"
Zonr Changc72c4dd2012-04-12 15:38:53 +080034#include "bcc/Support/InputFile.h"
35#include "bcc/Support/Initialization.h"
Shih-wei Liao7bcec852012-04-25 04:07:09 -070036#include "bcc/Support/Sha1Util.h"
Zonr Changc72c4dd2012-04-12 15:38:53 +080037#include "bcc/Support/OutputFile.h"
Zonr Chang0fffa7e2012-04-12 19:43:53 +080038
Nick Kralevichb81d6972013-05-21 16:52:35 -070039#ifdef HAVE_ANDROID_OS
Zonr Chang0fffa7e2012-04-12 19:43:53 +080040#include <cutils/properties.h>
Nick Kralevichb81d6972013-05-21 16:52:35 -070041#endif
Zonr Chang0fffa7e2012-04-12 19:43:53 +080042#include <utils/String8.h>
Shih-wei Liao7bcec852012-04-25 04:07:09 -070043#include <utils/StopWatch.h>
Zonr Chang0fffa7e2012-04-12 19:43:53 +080044
45using namespace bcc;
46
Stephen Hines3ab9da12013-02-01 18:39:15 -080047RSCompilerDriver::RSCompilerDriver(bool pUseCompilerRT) :
Stephen Hinesad694762013-04-29 18:59:47 -070048 mConfig(NULL), mCompiler(), mCompilerRuntime(NULL), mDebugContext(false),
Stephen Hinesc3437f02014-01-30 17:57:21 -080049 mLinkRuntimeCallback(NULL), mEnableGlobalMerge(true) {
Zonr Chang0fffa7e2012-04-12 19:43:53 +080050 init::Initialize();
Stephen Hines3ab9da12013-02-01 18:39:15 -080051 // Chain the symbol resolvers for compiler_rt and RS runtimes.
52 if (pUseCompilerRT) {
53 mCompilerRuntime = new CompilerRTSymbolResolver();
54 mResolver.chainResolver(*mCompilerRuntime);
55 }
Zonr Chang0fffa7e2012-04-12 19:43:53 +080056 mResolver.chainResolver(mRSRuntime);
57}
58
59RSCompilerDriver::~RSCompilerDriver() {
Stephen Hines3ab9da12013-02-01 18:39:15 -080060 delete mCompilerRuntime;
Zonr Chang0fffa7e2012-04-12 19:43:53 +080061 delete mConfig;
62}
63
Shih-wei Liao7bcec852012-04-25 04:07:09 -070064RSExecutable *
Stephen Hines47f0d5a2013-06-05 00:27:38 -070065RSCompilerDriver::loadScript(const char *pCacheDir, const char *pResName,
66 const char *pBitcode, size_t pBitcodeSize) {
67 //android::StopWatch load_time("bcc: RSCompilerDriver::loadScript time");
68 if ((pCacheDir == NULL) || (pResName == NULL)) {
69 ALOGE("Missing pCacheDir and/or pResName");
70 return NULL;
71 }
72
73 if ((pBitcode == NULL) || (pBitcodeSize <= 0)) {
74 ALOGE("No bitcode supplied! (bitcode: %p, size of bitcode: %zu)",
75 pBitcode, pBitcodeSize);
76 return NULL;
77 }
78
79 RSInfo::DependencyTableTy dep_info;
80 uint8_t bitcode_sha1[20];
81 Sha1Util::GetSHA1DigestFromBuffer(bitcode_sha1, pBitcode, pBitcodeSize);
Stephen Hines47f0d5a2013-06-05 00:27:38 -070082
Stephen Hines47f0d5a2013-06-05 00:27:38 -070083 // {pCacheDir}/{pResName}.o
Stephen Hinesb10c3a72013-08-07 23:15:22 -070084 llvm::SmallString<80> output_path(pCacheDir);
85 llvm::sys::path::append(output_path, pResName);
86 llvm::sys::path::replace_extension(output_path, ".o");
Zonr Chang0fffa7e2012-04-12 19:43:53 +080087
Stephen Hines5eea9732013-06-19 19:09:32 -070088 dep_info.push(std::make_pair(output_path.c_str(), bitcode_sha1));
89
Zonr Chang0fffa7e2012-04-12 19:43:53 +080090 //===--------------------------------------------------------------------===//
Stephen Hines01f05d42013-05-31 20:51:27 -070091 // Acquire the read lock for reading the Script object file.
Zonr Chang0fffa7e2012-04-12 19:43:53 +080092 //===--------------------------------------------------------------------===//
Stephen Hines47f0d5a2013-06-05 00:27:38 -070093 FileMutex<FileBase::kReadLock> read_output_mutex(output_path.c_str());
Zonr Chang0fffa7e2012-04-12 19:43:53 +080094
95 if (read_output_mutex.hasError() || !read_output_mutex.lock()) {
Stephen Hines47f0d5a2013-06-05 00:27:38 -070096 ALOGE("Unable to acquire the read lock for %s! (%s)", output_path.c_str(),
Zonr Chang0fffa7e2012-04-12 19:43:53 +080097 read_output_mutex.getErrorMessage().c_str());
98 return NULL;
99 }
100
101 //===--------------------------------------------------------------------===//
102 // Read the output object file.
103 //===--------------------------------------------------------------------===//
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700104 InputFile *object_file = new (std::nothrow) InputFile(output_path.c_str());
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800105
Stephen Hines01f05d42013-05-31 20:51:27 -0700106 if ((object_file == NULL) || object_file->hasError()) {
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700107 // ALOGE("Unable to open the %s for read! (%s)", output_path.c_str(),
Stephen Hines01f05d42013-05-31 20:51:27 -0700108 // object_file->getErrorMessage().c_str());
109 delete object_file;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800110 return NULL;
111 }
112
113 //===--------------------------------------------------------------------===//
Stephen Hines01f05d42013-05-31 20:51:27 -0700114 // Acquire the read lock on object_file for reading its RS info file.
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800115 //===--------------------------------------------------------------------===//
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700116 android::String8 info_path = RSInfo::GetPath(output_path.c_str());
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800117
Stephen Hines01f05d42013-05-31 20:51:27 -0700118 if (!object_file->lock()) {
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800119 ALOGE("Unable to acquire the read lock on %s for reading %s! (%s)",
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700120 output_path.c_str(), info_path.string(),
Stephen Hines01f05d42013-05-31 20:51:27 -0700121 object_file->getErrorMessage().c_str());
122 delete object_file;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800123 return NULL;
124 }
125
126 //===---------------------------------------------------------------------===//
127 // Open and load the RS info file.
128 //===--------------------------------------------------------------------===//
129 InputFile info_file(info_path.string());
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700130 RSInfo *info = RSInfo::ReadFromFile(info_file, dep_info);
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800131
Stephen Hines01f05d42013-05-31 20:51:27 -0700132 // Release the lock on object_file.
133 object_file->unlock();
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800134
135 if (info == NULL) {
Stephen Hines01f05d42013-05-31 20:51:27 -0700136 delete object_file;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800137 return NULL;
138 }
139
140 //===--------------------------------------------------------------------===//
141 // Create the RSExecutable.
142 //===--------------------------------------------------------------------===//
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700143 RSExecutable *result = RSExecutable::Create(*info, *object_file, mResolver);
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800144 if (result == NULL) {
Stephen Hines01f05d42013-05-31 20:51:27 -0700145 delete object_file;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800146 delete info;
147 return NULL;
148 }
149
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800150 return result;
151}
152
Stephen Hinesc06cd062013-07-12 10:51:29 -0700153#if defined(DEFAULT_ARM_CODEGEN)
Stephen Hinesad694762013-04-29 18:59:47 -0700154extern llvm::cl::opt<bool> EnableGlobalMerge;
Stephen Hinesc06cd062013-07-12 10:51:29 -0700155#endif
156
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800157bool RSCompilerDriver::setupConfig(const RSScript &pScript) {
158 bool changed = false;
159
160 const llvm::CodeGenOpt::Level script_opt_level =
161 static_cast<llvm::CodeGenOpt::Level>(pScript.getOptimizationLevel());
162
Stephen Hines045558b2014-02-18 14:07:15 -0800163#if defined(DEFAULT_ARM_CODEGEN)
164 EnableGlobalMerge = mEnableGlobalMerge;
165#endif
166
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800167 if (mConfig != NULL) {
168 // Renderscript bitcode may have their optimization flag configuration
169 // different than the previous run of RS compilation.
170 if (mConfig->getOptimizationLevel() != script_opt_level) {
171 mConfig->setOptimizationLevel(script_opt_level);
172 changed = true;
173 }
174 } else {
175 // Haven't run the compiler ever.
176 mConfig = new (std::nothrow) DefaultCompilerConfig();
177 if (mConfig == NULL) {
178 // Return false since mConfig remains NULL and out-of-memory.
179 return false;
180 }
181 mConfig->setOptimizationLevel(script_opt_level);
182 changed = true;
183 }
184
185#if defined(DEFAULT_ARM_CODEGEN)
186 // NEON should be disable when full-precision floating point is required.
187 assert((pScript.getInfo() != NULL) && "NULL RS info!");
Shih-wei Liaoed7fffb2012-06-30 11:27:59 -0700188 if (pScript.getInfo()->getFloatPrecisionRequirement() == RSInfo::FP_Full) {
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800189 // Must be ARMCompilerConfig.
190 ARMCompilerConfig *arm_config = static_cast<ARMCompilerConfig *>(mConfig);
191 changed |= arm_config->enableNEON(/* pEnable */false);
192 }
193#endif
194
195 return changed;
196}
197
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700198Compiler::ErrorCode
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700199RSCompilerDriver::compileScript(RSScript &pScript,
Shih-wei Liaoba420642012-06-30 11:27:37 -0700200 const char* pScriptName,
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700201 const char *pOutputPath,
Stephen Hines331310e2012-10-26 19:27:55 -0700202 const char *pRuntimePath,
203 const RSInfo::DependencyTableTy &pDeps,
Tobias Grosser7b980e12013-06-20 10:12:13 -0700204 bool pSkipLoad, bool pDumpIR) {
Tim Murrayc89f78b2013-05-09 11:57:12 -0700205 //android::StopWatch compile_time("bcc: RSCompilerDriver::compileScript time");
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800206 RSInfo *info = NULL;
207
208 //===--------------------------------------------------------------------===//
209 // Extract RS-specific information from source bitcode.
210 //===--------------------------------------------------------------------===//
211 // RS info may contains configuration (such as #optimization_level) to the
212 // compiler therefore it should be extracted before compilation.
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700213 info = RSInfo::ExtractFromSource(pScript.getSource(), pDeps);
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800214 if (info == NULL) {
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700215 return Compiler::kErrInvalidSource;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800216 }
217
218 //===--------------------------------------------------------------------===//
219 // Associate script with its info
220 //===--------------------------------------------------------------------===//
221 // This is required since RS compiler may need information in the info file
222 // to do some transformation (e.g., expand foreach-able function.)
223 pScript.setInfo(info);
224
225 //===--------------------------------------------------------------------===//
Stephen Hinese198abe2012-07-27 18:05:41 -0700226 // Link RS script with Renderscript runtime.
Shih-wei Liaoba420642012-06-30 11:27:37 -0700227 //===--------------------------------------------------------------------===//
Stephen Hines331310e2012-10-26 19:27:55 -0700228 if (!RSScript::LinkRuntime(pScript, pRuntimePath)) {
Stephen Hinese198abe2012-07-27 18:05:41 -0700229 ALOGE("Failed to link script '%s' with Renderscript runtime!", pScriptName);
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700230 return Compiler::kErrInvalidSource;
Shih-wei Liaoba420642012-06-30 11:27:37 -0700231 }
232
Stephen Hines01f05d42013-05-31 20:51:27 -0700233 {
Stephen Hines07843652013-08-15 15:41:47 -0700234 // FIXME(srhines): Windows compilation can't use locking like this, but
235 // we also don't need to worry about concurrent writers of the same file.
Stephen Hinesd7a95262013-08-08 16:03:19 -0700236#ifndef USE_MINGW
Stephen Hines07843652013-08-15 15:41:47 -0700237 //===------------------------------------------------------------------===//
Stephen Hines01f05d42013-05-31 20:51:27 -0700238 // Acquire the write lock for writing output object file.
Stephen Hines07843652013-08-15 15:41:47 -0700239 //===------------------------------------------------------------------===//
Stephen Hines01f05d42013-05-31 20:51:27 -0700240 FileMutex<FileBase::kWriteLock> write_output_mutex(pOutputPath);
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800241
Stephen Hines01f05d42013-05-31 20:51:27 -0700242 if (write_output_mutex.hasError() || !write_output_mutex.lock()) {
243 ALOGE("Unable to acquire the lock for writing %s! (%s)",
244 pOutputPath, write_output_mutex.getErrorMessage().c_str());
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700245 return Compiler::kErrInvalidSource;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800246 }
Stephen Hinesd7a95262013-08-08 16:03:19 -0700247#endif
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800248
Stephen Hines01f05d42013-05-31 20:51:27 -0700249 // Open the output file for write.
Stephen Hinesacf9c9e2013-09-26 16:32:31 -0700250 OutputFile output_file(pOutputPath,
251 FileBase::kTruncate | FileBase::kBinary);
Stephen Hines01f05d42013-05-31 20:51:27 -0700252
253 if (output_file.hasError()) {
254 ALOGE("Unable to open %s for write! (%s)", pOutputPath,
255 output_file.getErrorMessage().c_str());
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700256 return Compiler::kErrInvalidSource;
Stephen Hines01f05d42013-05-31 20:51:27 -0700257 }
258
259 // Setup the config to the compiler.
260 bool compiler_need_reconfigure = setupConfig(pScript);
261
262 if (mConfig == NULL) {
263 ALOGE("Failed to setup config for RS compiler to compile %s!",
264 pOutputPath);
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700265 return Compiler::kErrInvalidSource;
Stephen Hines01f05d42013-05-31 20:51:27 -0700266 }
267
268 if (compiler_need_reconfigure) {
269 Compiler::ErrorCode err = mCompiler.config(*mConfig);
270 if (err != Compiler::kSuccess) {
271 ALOGE("Failed to config the RS compiler for %s! (%s)",pOutputPath,
272 Compiler::GetErrorString(err));
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700273 return Compiler::kErrInvalidSource;
Stephen Hines01f05d42013-05-31 20:51:27 -0700274 }
275 }
276
Tobias Grosser27fb7ed2013-06-21 18:34:56 -0700277 OutputFile *ir_file = NULL;
278 llvm::raw_fd_ostream *IRStream = NULL;
279 if (pDumpIR) {
280 android::String8 path(pOutputPath);
281 path.append(".ll");
282 ir_file = new OutputFile(path.string(), FileBase::kTruncate);
283 IRStream = ir_file->dup();
284 }
285
Stephen Hines01f05d42013-05-31 20:51:27 -0700286 // Run the compiler.
Tobias Grosser27fb7ed2013-06-21 18:34:56 -0700287 Compiler::ErrorCode compile_result = mCompiler.compile(pScript,
288 output_file, IRStream);
289
290 if (ir_file) {
291 ir_file->close();
292 delete ir_file;
293 }
Stephen Hines01f05d42013-05-31 20:51:27 -0700294
295 if (compile_result != Compiler::kSuccess) {
296 ALOGE("Unable to compile the source to file %s! (%s)", pOutputPath,
297 Compiler::GetErrorString(compile_result));
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700298 return Compiler::kErrInvalidSource;
Stephen Hines01f05d42013-05-31 20:51:27 -0700299 }
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800300 }
301
Stephen Hines331310e2012-10-26 19:27:55 -0700302 // No need to produce an RSExecutable in this case.
303 // TODO: Error handling in this case is nonexistent.
304 if (pSkipLoad) {
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700305 return Compiler::kSuccess;
Stephen Hines331310e2012-10-26 19:27:55 -0700306 }
307
Stephen Hines01f05d42013-05-31 20:51:27 -0700308 {
309 android::String8 info_path = RSInfo::GetPath(pOutputPath);
310 OutputFile info_file(info_path.string(), FileBase::kTruncate);
311
312 if (info_file.hasError()) {
313 ALOGE("Failed to open the info file %s for write! (%s)",
314 info_path.string(), info_file.getErrorMessage().c_str());
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700315 return Compiler::kErrInvalidSource;
Stephen Hines01f05d42013-05-31 20:51:27 -0700316 }
317
318 FileMutex<FileBase::kWriteLock> write_info_mutex(info_path.string());
319 if (write_info_mutex.hasError() || !write_info_mutex.lock()) {
320 ALOGE("Unable to acquire the lock for writing %s! (%s)",
321 info_path.string(), write_info_mutex.getErrorMessage().c_str());
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700322 return Compiler::kErrInvalidSource;
Stephen Hines01f05d42013-05-31 20:51:27 -0700323 }
324
325 // Perform the write.
326 if (!info->write(info_file)) {
327 ALOGE("Failed to sync the RS info file %s!", info_path.string());
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700328 return Compiler::kErrInvalidSource;
Stephen Hines01f05d42013-05-31 20:51:27 -0700329 }
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800330 }
331
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700332 return Compiler::kSuccess;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800333}
334
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700335bool RSCompilerDriver::build(BCCContext &pContext,
336 const char *pCacheDir,
337 const char *pResName,
338 const char *pBitcode,
339 size_t pBitcodeSize,
340 const char *pRuntimePath,
Tobias Grosser7b980e12013-06-20 10:12:13 -0700341 RSLinkRuntimeCallback pLinkRuntimeCallback,
342 bool pDumpIR) {
Tim Murrayc89f78b2013-05-09 11:57:12 -0700343 // android::StopWatch build_time("bcc: RSCompilerDriver::build time");
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700344 //===--------------------------------------------------------------------===//
345 // Check parameters.
346 //===--------------------------------------------------------------------===//
347 if ((pCacheDir == NULL) || (pResName == NULL)) {
348 ALOGE("Invalid parameter passed to RSCompilerDriver::build()! (cache dir: "
349 "%s, resource name: %s)", ((pCacheDir) ? pCacheDir : "(null)"),
350 ((pResName) ? pResName : "(null)"));
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700351 return false;
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700352 }
353
354 if ((pBitcode == NULL) || (pBitcodeSize <= 0)) {
355 ALOGE("No bitcode supplied! (bitcode: %p, size of bitcode: %u)",
356 pBitcode, static_cast<unsigned>(pBitcodeSize));
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700357 return false;
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700358 }
359
360 //===--------------------------------------------------------------------===//
361 // Prepare dependency information.
362 //===--------------------------------------------------------------------===//
363 RSInfo::DependencyTableTy dep_info;
364 uint8_t bitcode_sha1[20];
365 Sha1Util::GetSHA1DigestFromBuffer(bitcode_sha1, pBitcode, pBitcodeSize);
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700366
367 //===--------------------------------------------------------------------===//
368 // Construct output path.
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700369 // {pCacheDir}/{pResName}.o
Stephen Hinesb10c3a72013-08-07 23:15:22 -0700370 //===--------------------------------------------------------------------===//
371 llvm::SmallString<80> output_path(pCacheDir);
372 llvm::sys::path::append(output_path, pResName);
373 llvm::sys::path::replace_extension(output_path, ".o");
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700374
Stephen Hines5eea9732013-06-19 19:09:32 -0700375 dep_info.push(std::make_pair(output_path.c_str(), bitcode_sha1));
376
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700377 //===--------------------------------------------------------------------===//
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700378 // Load the bitcode and create script.
379 //===--------------------------------------------------------------------===//
380 Source *source = Source::CreateFromBuffer(pContext, pResName,
381 pBitcode, pBitcodeSize);
382 if (source == NULL) {
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700383 return false;
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700384 }
385
386 RSScript *script = new (std::nothrow) RSScript(*source);
387 if (script == NULL) {
388 ALOGE("Out of memory when create Script object for '%s'! (output: %s)",
389 pResName, output_path.c_str());
390 delete source;
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700391 return false;
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700392 }
Stephen Hinesc3437f02014-01-30 17:57:21 -0800393 if (pLinkRuntimeCallback) {
394 setLinkRuntimeCallback(pLinkRuntimeCallback);
395 }
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700396
Stephen Hinesc3437f02014-01-30 17:57:21 -0800397 script->setLinkRuntimeCallback(getLinkRuntimeCallback());
Stephen Hines06731a62013-02-12 19:29:42 -0800398
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700399 // Read information from bitcode wrapper.
400 bcinfo::BitcodeWrapper wrapper(pBitcode, pBitcodeSize);
401 script->setCompilerVersion(wrapper.getCompilerVersion());
402 script->setOptimizationLevel(static_cast<RSScript::OptimizationLevel>(
403 wrapper.getOptimizationLevel()));
404
405 //===--------------------------------------------------------------------===//
406 // Compile the script
407 //===--------------------------------------------------------------------===//
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700408 Compiler::ErrorCode status = compileScript(*script, pResName,
409 output_path.c_str(),
Tobias Grosser7b980e12013-06-20 10:12:13 -0700410 pRuntimePath, dep_info, false,
411 pDumpIR);
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700412
413 // Script is no longer used. Free it to get more memory.
414 delete script;
415
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700416 if (status != Compiler::kSuccess) {
417 return false;
Shih-wei Liao7bcec852012-04-25 04:07:09 -0700418 }
419
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700420 return true;
Zonr Chang0fffa7e2012-04-12 19:43:53 +0800421}
Stephen Hines331310e2012-10-26 19:27:55 -0700422
423
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700424bool RSCompilerDriver::build(RSScript &pScript, const char *pOut,
425 const char *pRuntimePath) {
Stephen Hines331310e2012-10-26 19:27:55 -0700426 RSInfo::DependencyTableTy dep_info;
427 RSInfo *info = RSInfo::ExtractFromSource(pScript.getSource(), dep_info);
428 if (info == NULL) {
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700429 return false;
Stephen Hines331310e2012-10-26 19:27:55 -0700430 }
431 pScript.setInfo(info);
432
Stephen Hines86a0b792012-11-06 20:04:47 -0800433 // Embed the info string directly in the ELF, since this path is for an
434 // offline (host) compilation.
435 pScript.setEmbedInfo(true);
436
Stephen Hines47f0d5a2013-06-05 00:27:38 -0700437 Compiler::ErrorCode status = compileScript(pScript, pOut, pOut, pRuntimePath,
438 dep_info, true);
439 if (status != Compiler::kSuccess) {
440 return false;
441 }
442
443 return true;
Stephen Hines331310e2012-10-26 19:27:55 -0700444}
445