blob: a0dcad3c6685c917a8835d073f5491f94438867b [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
Stephen Hines44199772012-02-21 20:13:12 -08002 * Copyright (C) 2009-2012 The Android Open Source Project
Jason Sams326e0dd2009-05-22 14:03:28 -07003 *
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
17#include "rsContext.h"
18#include "rsScriptC.h"
Jack Palevich1ef8b802009-05-28 15:53:04 -070019
Jean-Luc Brouilletf4d216e2014-06-09 18:04:16 -070020#if !defined(RS_COMPATIBILITY_LIB) && !defined(ANDROID_RS_SERIALIZE)
Stephen Hinescbb0b8a2011-08-01 15:02:34 -070021#include <bcinfo/BitcodeTranslator.h>
Stephen Hinesf8d44692011-11-22 19:43:58 -080022#include <bcinfo/BitcodeWrapper.h>
Stephen Hinescbb0b8a2011-08-01 15:02:34 -070023#endif
24
Tim Murraye78c14b2012-10-01 15:27:18 -070025#include <sys/stat.h>
26
Stephen Hinesd969fdc2016-06-14 16:19:40 -070027#include <sstream>
Yang Nib8353c52015-02-14 18:00:59 -080028#include <string>
29
Elliott Hughesed5c8b42016-10-05 09:49:16 -070030#ifdef _WIN32
Chris Wailes6847e732014-08-11 17:30:51 -070031/* Define the default path separator for the platform. */
32#define OS_PATH_SEPARATOR '\\'
33#define OS_PATH_SEPARATOR_STR "\\"
34
Elliott Hughesed5c8b42016-10-05 09:49:16 -070035#else /* not _WIN32 */
Chris Wailes6847e732014-08-11 17:30:51 -070036
37/* Define the default path separator for the platform. */
38#define OS_PATH_SEPARATOR '/'
39#define OS_PATH_SEPARATOR_STR "/"
40
41#endif
42
Chih-Hung Hsieh11496ac2016-11-15 15:14:05 -080043using android::renderscript::ScriptC;
Jason Sams326e0dd2009-05-22 14:03:28 -070044
Jason Samse5769102009-06-19 16:03:18 -070045#define GET_TLS() Context::ScriptTLSStruct * tls = \
46 (Context::ScriptTLSStruct *)pthread_getspecific(Context::gThreadTLSKey); \
47 Context * rsc = tls->mContext; \
48 ScriptC * sc = (ScriptC *) tls->mScript
49
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080050ScriptC::ScriptC(Context *rsc) : Script(rsc) {
Jason Sams326e0dd2009-05-22 14:03:28 -070051}
52
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080053ScriptC::~ScriptC() {
Jason Sams77020c52011-11-22 12:49:11 -080054 if (mInitialized) {
55 mRSC->mHal.funcs.script.invokeFreeChildren(mRSC, this);
56 mRSC->mHal.funcs.script.destroy(mRSC, this);
57 }
Jason Sams326e0dd2009-05-22 14:03:28 -070058}
59
Jason Sams93eacc72012-12-18 14:26:57 -080060#ifndef RS_COMPATIBILITY_LIB
Tim Murraye78c14b2012-10-01 15:27:18 -070061bool ScriptC::createCacheDir(const char *cacheDir) {
Chris Wailes6847e732014-08-11 17:30:51 -070062 std::string currentDir;
63 const std::string cacheDirString(cacheDir);
64
Tim Murraye78c14b2012-10-01 15:27:18 -070065 struct stat statBuf;
66 int statReturn = stat(cacheDir, &statBuf);
67 if (!statReturn) {
68 return true;
69 }
70
Chris Wailes6847e732014-08-11 17:30:51 -070071 // Start from the beginning of the cacheDirString.
72 int currPos = 0;
Tim Murraye78c14b2012-10-01 15:27:18 -070073
Chris Wailes6847e732014-08-11 17:30:51 -070074 // Reserve space in currentDir for the entire cacheDir path.
75 currentDir.reserve(cacheDirString.length());
Tim Murraye78c14b2012-10-01 15:27:18 -070076
Chris Wailes6847e732014-08-11 17:30:51 -070077 while (currPos >= 0) {
78 /*
79 * The character at currPos should be a path separator. We need to look
80 * for the next one.
81 */
Chih-Hung Hsieh431758a2018-09-24 14:00:41 -070082 int nextPos = cacheDirString.find(OS_PATH_SEPARATOR, currPos + 1);
Chris Wailes6847e732014-08-11 17:30:51 -070083
84 if (nextPos > 0) {
85 // A new path separator has been found.
86 currentDir += cacheDirString.substr(currPos, nextPos - currPos);
87 } else {
88 // There are no more path separators.
89 currentDir += cacheDirString.substr(currPos);
90 }
91
92 currPos = nextPos;
93
94 statReturn = stat(currentDir.c_str(), &statBuf);
95
Tim Murraye78c14b2012-10-01 15:27:18 -070096 if (statReturn) {
97 if (errno == ENOENT) {
Chris Wailes6847e732014-08-11 17:30:51 -070098 if (mkdir(currentDir.c_str(), S_IRUSR | S_IWUSR | S_IXUSR)) {
Tim Murraye78c14b2012-10-01 15:27:18 -070099 ALOGE("Couldn't create cache directory: %s",
Chris Wailes6847e732014-08-11 17:30:51 -0700100 currentDir.c_str());
Tim Murraye78c14b2012-10-01 15:27:18 -0700101 ALOGE("Error: %s", strerror(errno));
102 return false;
103 }
104 } else {
105 ALOGE("Stat error: %s", strerror(errno));
106 return false;
107 }
108 }
Tim Murraye78c14b2012-10-01 15:27:18 -0700109 }
110 return true;
111}
Jason Sams93eacc72012-12-18 14:26:57 -0800112#endif
Tim Murraye78c14b2012-10-01 15:27:18 -0700113
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800114void ScriptC::setupScript(Context *rsc) {
Jason Samsc61346b2010-05-28 18:23:22 -0700115 mEnviroment.mStartTimeMillis
116 = nanoseconds_to_milliseconds(systemTime(SYSTEM_TIME_MONOTONIC));
117
Jason Samsbad80742011-03-16 16:29:28 -0700118 for (uint32_t ct=0; ct < mHal.info.exportedVariableCount; ct++) {
Jason Sams900f1612010-09-16 18:18:29 -0700119 if (mSlots[ct].get() && !mTypes[ct].get()) {
120 mTypes[ct].set(mSlots[ct]->getType());
121 }
122
123 if (!mTypes[ct].get())
Jason Samsbe36bf32010-05-11 14:03:58 -0700124 continue;
Jason Sams807fdc42012-07-25 17:55:39 -0700125 rsc->mHal.funcs.script.setGlobalBind(rsc, this, ct, mSlots[ct].get());
Jason Samsada7f272009-09-24 14:55:38 -0700126 }
127}
128
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800129void ScriptC::setupGLState(Context *rsc) {
Miao Wang59f61422017-03-14 14:23:52 -0700130#if !defined(RS_VENDOR_LIB) && !defined(RS_COMPATIBILITY_LIB)
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700131 if (mEnviroment.mFragmentStore.get()) {
Jason Sams60709252010-11-17 15:29:32 -0800132 rsc->setProgramStore(mEnviroment.mFragmentStore.get());
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700133 }
134 if (mEnviroment.mFragment.get()) {
Jason Sams60709252010-11-17 15:29:32 -0800135 rsc->setProgramFragment(mEnviroment.mFragment.get());
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700136 }
Jason Sams8ce125b2009-06-17 16:52:59 -0700137 if (mEnviroment.mVertex.get()) {
Jason Sams60709252010-11-17 15:29:32 -0800138 rsc->setProgramVertex(mEnviroment.mVertex.get());
Jason Sams8ce125b2009-06-17 16:52:59 -0700139 }
Jason Samsb681c8a2009-09-28 18:12:56 -0700140 if (mEnviroment.mRaster.get()) {
Jason Sams60709252010-11-17 15:29:32 -0800141 rsc->setProgramRaster(mEnviroment.mRaster.get());
Jason Samsb681c8a2009-09-28 18:12:56 -0700142 }
Jason Sams93eacc72012-12-18 14:26:57 -0800143#endif
Jason Samsc61346b2010-05-28 18:23:22 -0700144}
Jason Samsa0a1b6f2009-06-10 15:04:38 -0700145
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800146uint32_t ScriptC::run(Context *rsc) {
Chris Wailes44bef6f2014-08-12 13:51:10 -0700147 if (mHal.info.root == nullptr) {
Jason Samsc61346b2010-05-28 18:23:22 -0700148 rsc->setError(RS_ERROR_BAD_SCRIPT, "Attempted to run bad script");
149 return 0;
Joe Onorato9c4e4ca2009-08-09 11:39:02 -0700150 }
Jason Samsc61346b2010-05-28 18:23:22 -0700151
Jason Sams1f24db42010-12-11 17:42:30 -0800152 setupGLState(rsc);
Jason Samsc61346b2010-05-28 18:23:22 -0700153 setupScript(rsc);
Jason Sams1d54f102009-09-03 15:43:13 -0700154
Jason Sams2dca84d2009-12-09 11:05:45 -0800155 uint32_t ret = 0;
Jason Samsb9077f42010-09-22 15:57:41 -0700156
157 if (rsc->props.mLogScripts) {
Steve Block65982012011-10-20 11:56:00 +0100158 ALOGV("%p ScriptC::run invoking root, ptr %p", rsc, mHal.info.root);
Jason Samsb9077f42010-09-22 15:57:41 -0700159 }
160
Jason Samscdfdb8f2011-03-17 16:12:47 -0700161 ret = rsc->mHal.funcs.script.invokeRoot(rsc, this);
Jason Samsb9077f42010-09-22 15:57:41 -0700162
163 if (rsc->props.mLogScripts) {
Steve Block65982012011-10-20 11:56:00 +0100164 ALOGV("%p ScriptC::run invoking complete, ret=%i", rsc, ret);
Jason Samsb9077f42010-09-22 15:57:41 -0700165 }
166
Jason Samse45ac6e2009-07-20 14:31:06 -0700167 return ret;
Jason Sams326e0dd2009-05-22 14:03:28 -0700168}
169
Jason Sams177f8442010-10-29 10:19:21 -0700170
Jason Samsace3e012010-07-15 17:11:13 -0700171void ScriptC::runForEach(Context *rsc,
Stephen Hines44199772012-02-21 20:13:12 -0800172 uint32_t slot,
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700173 const Allocation ** ains,
174 size_t inLen,
175 Allocation * aout,
176 const void * usr,
177 size_t usrBytes,
178 const RsScriptCall *sc) {
Matt Wala14ce0072015-07-30 17:30:25 -0700179 if (slot >= mHal.info.exportedForEachCount) {
180 rsc->setError(RS_ERROR_BAD_SCRIPT,
181 "The forEach kernel index is out of bounds");
182 return;
183 }
184
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700185 // Trace this function call.
186 // To avoid overhead we only build the string if tracing is actually
187 // enabled.
Stephen Hinesd969fdc2016-06-14 16:19:40 -0700188 std::stringstream ss;
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700189 if (ATRACE_ENABLED()) {
Stephen Hinesd969fdc2016-06-14 16:19:40 -0700190 ss << "runForEach slot[" << slot << "]";
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700191 }
Yang Ni578419f2016-06-27 16:12:25 -0700192 std::string msgStr(ss.str());
193 ATRACE_NAME(msgStr.c_str());
Stephen Hinesd969fdc2016-06-14 16:19:40 -0700194
Jason Sams4efe3d32015-03-18 18:28:06 -0700195 if (mRSC->hadFatalError()) return;
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700196
197 Context::PushState ps(rsc);
198
199 setupGLState(rsc);
200 setupScript(rsc);
201
Matt Wala14ce0072015-07-30 17:30:25 -0700202 if (rsc->props.mLogScripts) {
203 ALOGV("%p ScriptC::runForEach invoking slot %i, ptr %p", rsc, slot, this);
204 }
205
Chris Wailes44bef6f2014-08-12 13:51:10 -0700206 if (rsc->mHal.funcs.script.invokeForEachMulti != nullptr) {
Chris Wailesf3712132014-07-16 15:18:30 -0700207 rsc->mHal.funcs.script.invokeForEachMulti(rsc, this, slot, ains, inLen,
208 aout, usr, usrBytes, sc);
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700209
Chris Wailesf3712132014-07-16 15:18:30 -0700210 } else if (inLen == 1) {
211 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ains[0], aout,
212 usr, usrBytes, sc);
213
214 } else {
215 rsc->setError(RS_ERROR_FATAL_DRIVER,
216 "Driver support for multi-input not present");
217 }
Chris Wailes4b3c34e2014-06-11 12:00:29 -0700218}
219
David Grossfc7ab792016-06-01 14:45:47 -0700220void ScriptC::runReduce(Context *rsc, uint32_t slot,
221 const Allocation ** ains, size_t inLen,
Matt Wala14ce0072015-07-30 17:30:25 -0700222 Allocation *aout, const RsScriptCall *sc) {
David Gross6c1876b2016-01-15 11:52:14 -0800223 // TODO: Record the name of the kernel in the tracing information.
224 ATRACE_CALL();
225
David Grossfc7ab792016-06-01 14:45:47 -0700226 if (slot >= mHal.info.exportedReduceCount) {
David Gross6c1876b2016-01-15 11:52:14 -0800227 rsc->setError(RS_ERROR_BAD_SCRIPT, "The general reduce kernel index is out of bounds");
228 return;
229 }
230 if (mRSC->hadFatalError()) return;
231
232 setupScript(rsc);
233
234 if (rsc->props.mLogScripts) {
David Grossfc7ab792016-06-01 14:45:47 -0700235 ALOGV("%p ScriptC::runReduce invoking slot %i, ptr %p", rsc, slot, this);
David Gross6c1876b2016-01-15 11:52:14 -0800236 }
237
David Grossfc7ab792016-06-01 14:45:47 -0700238 rsc->mHal.funcs.script.invokeReduce(rsc, this, slot, ains, inLen, aout, sc);
David Gross6c1876b2016-01-15 11:52:14 -0800239}
240
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700241void ScriptC::Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) {
Tim Murrayfa85e912013-05-23 13:19:36 -0700242 ATRACE_CALL();
243
Jason Samsbad80742011-03-16 16:29:28 -0700244 if (slot >= mHal.info.exportedFunctionCount) {
Matt Wala14ce0072015-07-30 17:30:25 -0700245 rsc->setError(RS_ERROR_BAD_SCRIPT, "The invokable index is out of bounds");
Jason Sams22fa3712010-05-19 17:22:57 -0700246 return;
247 }
Jason Sams4efe3d32015-03-18 18:28:06 -0700248 if (mRSC->hadFatalError()) return;
249
Jason Samsc61346b2010-05-28 18:23:22 -0700250 setupScript(rsc);
Jason Sams22fa3712010-05-19 17:22:57 -0700251
Jason Samsb9077f42010-09-22 15:57:41 -0700252 if (rsc->props.mLogScripts) {
Steve Block65982012011-10-20 11:56:00 +0100253 ALOGV("%p ScriptC::Invoke invoking slot %i, ptr %p", rsc, slot, this);
Jason Samsb9077f42010-09-22 15:57:41 -0700254 }
Jason Samsbad80742011-03-16 16:29:28 -0700255 rsc->mHal.funcs.script.invokeFunction(rsc, this, slot, data, len);
Jason Sams22fa3712010-05-19 17:22:57 -0700256}
257
Stephen Hinesf6af3bd2014-12-23 17:47:43 -0800258static const bool kDebugBitcode = false;
259
260#ifndef RS_COMPATIBILITY_LIB
Stephen Hinesf6af3bd2014-12-23 17:47:43 -0800261
262static bool dumpBitcodeFile(const char *cacheDir, const char *resName,
263 const char *suffix, const uint8_t *bitcode,
264 size_t bitcodeLen) {
265 std::string f(cacheDir);
266 f.append("/");
267 f.append(resName);
268 f.append("#");
269 f.append(suffix);
270 f.append(".bc");
271
272 if (!ScriptC::createCacheDir(cacheDir)) {
273 return false;
274 }
275
Nick Kralevich95e17022018-12-11 14:35:57 -0800276 FILE *fp = fopen(f.c_str(), "we");
Stephen Hinesf6af3bd2014-12-23 17:47:43 -0800277 if (!fp) {
278 ALOGE("Could not open %s", f.c_str());
279 return false;
280 }
281
282 size_t nWritten = fwrite(bitcode, 1, bitcodeLen, fp);
283 fclose(fp);
284 if (nWritten != bitcodeLen) {
285 ALOGE("Could not write %s", f.c_str());
286 return false;
287 }
288 return true;
289}
290
Stephen Hinesf6af3bd2014-12-23 17:47:43 -0800291#endif // !RS_COMPATIBILITY_LIB
292
293
Jason Samsbad80742011-03-16 16:29:28 -0700294bool ScriptC::runCompiler(Context *rsc,
295 const char *resName,
296 const char *cacheDir,
297 const uint8_t *bitcode,
298 size_t bitcodeLen) {
Tim Murrayfa85e912013-05-23 13:19:36 -0700299 ATRACE_CALL();
Steve Blockaf12ac62012-01-06 19:20:56 +0000300 //ALOGE("runCompiler %p %p %p %p %p %i", rsc, this, resName, cacheDir, bitcode, bitcodeLen);
Jason Sams93eacc72012-12-18 14:26:57 -0800301#ifndef RS_COMPATIBILITY_LIB
Stephen Hinesf8d44692011-11-22 19:43:58 -0800302 uint32_t sdkVersion = 0;
303 bcinfo::BitcodeWrapper bcWrapper((const char *)bitcode, bitcodeLen);
304 if (!bcWrapper.unwrap()) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000305 ALOGE("Bitcode is not in proper container format (raw or wrapper)");
Stephen Hinesf8d44692011-11-22 19:43:58 -0800306 return false;
307 }
308
Stephen Hinesf8d44692011-11-22 19:43:58 -0800309 if (bcWrapper.getBCFileType() == bcinfo::BC_WRAPPER) {
310 sdkVersion = bcWrapper.getTargetAPI();
311 }
312
313 if (sdkVersion == 0) {
314 // This signals that we didn't have a wrapper containing information
315 // about the bitcode.
316 sdkVersion = rsc->getTargetSdkVersion();
317 }
318
Stephen Hines5d95a782015-04-13 20:11:48 -0700319 // Save off the sdkVersion, so that we can handle broken cases later.
320 // Bug 19734267
321 mApiLevel = sdkVersion;
322
Stephen Hines98f401d2015-12-03 00:44:46 -0800323 bcinfo::BitcodeTranslator BT((const char *)bitcode, bitcodeLen,
324 sdkVersion);
325 if (!BT.translate()) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000326 ALOGE("Failed to translate bitcode from version: %u", sdkVersion);
Stephen Hinescbb0b8a2011-08-01 15:02:34 -0700327 return false;
328 }
Stephen Hines98f401d2015-12-03 00:44:46 -0800329 bitcode = (const uint8_t *) BT.getTranslatedBitcode();
330 bitcodeLen = BT.getTranslatedBitcodeSize();
Shih-wei Liao37150de2011-01-07 18:17:07 -0800331
Stephen Hinesf6af3bd2014-12-23 17:47:43 -0800332 if (kDebugBitcode) {
333 if (!dumpBitcodeFile(cacheDir, resName, "after", bitcode, bitcodeLen)) {
334 return false;
335 }
336 }
337
Stephen McGroarty15c1d062015-09-02 16:03:38 +0100338
339 // Set the optimization level of bcc to be the same as the
340 // optimization level used to compile the bitcode.
341 rsc->setOptLevel(bcWrapper.getOptimizationLevel());
342
Tim Murray84bf2b82012-10-31 16:03:16 -0700343 if (!cacheDir) {
344 // MUST BE FIXED BEFORE ANYTHING USING C++ API IS RELEASED
345 cacheDir = getenv("EXTERNAL_STORAGE");
346 ALOGV("Cache dir changed to %s", cacheDir);
347 }
348
Tim Murraye78c14b2012-10-01 15:27:18 -0700349 // ensure that cache dir exists
Tim Murray84bf2b82012-10-31 16:03:16 -0700350 if (cacheDir && !createCacheDir(cacheDir)) {
Tim Murraye78c14b2012-10-01 15:27:18 -0700351 return false;
352 }
Jason Sams93eacc72012-12-18 14:26:57 -0800353#endif
Tim Murraye78c14b2012-10-01 15:27:18 -0700354
Jason Sams77020c52011-11-22 12:49:11 -0800355 if (!rsc->mHal.funcs.script.init(rsc, this, resName, cacheDir, bitcode, bitcodeLen, 0)) {
356 return false;
357 }
Shih-wei Liao37150de2011-01-07 18:17:07 -0800358
Jason Sams77020c52011-11-22 12:49:11 -0800359 mInitialized = true;
Miao Wang59f61422017-03-14 14:23:52 -0700360#if !defined(RS_VENDOR_LIB) && !defined(RS_COMPATIBILITY_LIB)
Jason Samsbad80742011-03-16 16:29:28 -0700361 mEnviroment.mFragment.set(rsc->getDefaultProgramFragment());
362 mEnviroment.mVertex.set(rsc->getDefaultProgramVertex());
363 mEnviroment.mFragmentStore.set(rsc->getDefaultProgramStore());
364 mEnviroment.mRaster.set(rsc->getDefaultProgramRaster());
Jason Sams93eacc72012-12-18 14:26:57 -0800365#endif
Shih-wei Liao37150de2011-01-07 18:17:07 -0800366
Jason Samsbad80742011-03-16 16:29:28 -0700367 rsc->mHal.funcs.script.invokeInit(rsc, this);
Stephen Hines7b337b12011-01-17 17:31:58 -0800368
Jason Samsbad80742011-03-16 16:29:28 -0700369 for (size_t i=0; i < mHal.info.exportedPragmaCount; ++i) {
370 const char * key = mHal.info.exportedPragmaKeyList[i];
371 const char * value = mHal.info.exportedPragmaValueList[i];
Steve Blockaf12ac62012-01-06 19:20:56 +0000372 //ALOGE("pragma %s %s", keys[i], values[i]);
Jason Samsbad80742011-03-16 16:29:28 -0700373 if (!strcmp(key, "version")) {
374 if (!strcmp(value, "1")) {
Stephen Hinesb5dc6af2011-01-18 14:10:44 -0800375 continue;
376 }
Steve Blockaf12ac62012-01-06 19:20:56 +0000377 ALOGE("Invalid version pragma value: %s\n", value);
Jason Sams26b2c9f2011-01-19 16:14:21 -0800378 return false;
Stephen Hines7b337b12011-01-17 17:31:58 -0800379 }
380
Miao Wang59f61422017-03-14 14:23:52 -0700381#if !defined(RS_VENDOR_LIB) && !defined(RS_COMPATIBILITY_LIB)
Jason Samsbad80742011-03-16 16:29:28 -0700382 if (!strcmp(key, "stateVertex")) {
383 if (!strcmp(value, "default")) {
Jason Sams10308932009-06-09 12:15:30 -0700384 continue;
Jason Sams10308932009-06-09 12:15:30 -0700385 }
Jason Samsbad80742011-03-16 16:29:28 -0700386 if (!strcmp(value, "parent")) {
387 mEnviroment.mVertex.clear();
Stephen Hines7b337b12011-01-17 17:31:58 -0800388 continue;
Jason Sams10308932009-06-09 12:15:30 -0700389 }
Steve Blockaf12ac62012-01-06 19:20:56 +0000390 ALOGE("Unrecognized value %s passed to stateVertex", value);
Jason Sams26b2c9f2011-01-19 16:14:21 -0800391 return false;
Jason Sams10308932009-06-09 12:15:30 -0700392 }
Stephen Hines7b337b12011-01-17 17:31:58 -0800393
Jason Samsbad80742011-03-16 16:29:28 -0700394 if (!strcmp(key, "stateRaster")) {
395 if (!strcmp(value, "default")) {
Stephen Hines7b337b12011-01-17 17:31:58 -0800396 continue;
397 }
Jason Samsbad80742011-03-16 16:29:28 -0700398 if (!strcmp(value, "parent")) {
399 mEnviroment.mRaster.clear();
Stephen Hines7b337b12011-01-17 17:31:58 -0800400 continue;
401 }
Steve Blockaf12ac62012-01-06 19:20:56 +0000402 ALOGE("Unrecognized value %s passed to stateRaster", value);
Jason Sams26b2c9f2011-01-19 16:14:21 -0800403 return false;
Stephen Hines7b337b12011-01-17 17:31:58 -0800404 }
405
Jason Samsbad80742011-03-16 16:29:28 -0700406 if (!strcmp(key, "stateFragment")) {
407 if (!strcmp(value, "default")) {
Stephen Hines7b337b12011-01-17 17:31:58 -0800408 continue;
409 }
Jason Samsbad80742011-03-16 16:29:28 -0700410 if (!strcmp(value, "parent")) {
411 mEnviroment.mFragment.clear();
Stephen Hines7b337b12011-01-17 17:31:58 -0800412 continue;
413 }
Steve Blockaf12ac62012-01-06 19:20:56 +0000414 ALOGE("Unrecognized value %s passed to stateFragment", value);
Jason Sams26b2c9f2011-01-19 16:14:21 -0800415 return false;
Stephen Hines7b337b12011-01-17 17:31:58 -0800416 }
417
Jason Samsbad80742011-03-16 16:29:28 -0700418 if (!strcmp(key, "stateStore")) {
419 if (!strcmp(value, "default")) {
Stephen Hines7b337b12011-01-17 17:31:58 -0800420 continue;
421 }
Jason Samsbad80742011-03-16 16:29:28 -0700422 if (!strcmp(value, "parent")) {
423 mEnviroment.mFragmentStore.clear();
Stephen Hines7b337b12011-01-17 17:31:58 -0800424 continue;
425 }
Steve Blockaf12ac62012-01-06 19:20:56 +0000426 ALOGE("Unrecognized value %s passed to stateStore", value);
Jason Sams26b2c9f2011-01-19 16:14:21 -0800427 return false;
Stephen Hines7b337b12011-01-17 17:31:58 -0800428 }
Jason Sams93eacc72012-12-18 14:26:57 -0800429#endif
430
Jason Sams10308932009-06-09 12:15:30 -0700431 }
Jason Sams2e8665d2011-01-27 00:14:13 -0800432
Jason Samsbad80742011-03-16 16:29:28 -0700433 mSlots = new ObjectBaseRef<Allocation>[mHal.info.exportedVariableCount];
434 mTypes = new ObjectBaseRef<const Type>[mHal.info.exportedVariableCount];
Jason Sams2e8665d2011-01-27 00:14:13 -0800435
Jason Sams26b2c9f2011-01-19 16:14:21 -0800436 return true;
Jason Sams326e0dd2009-05-22 14:03:28 -0700437}
438
439namespace android {
440namespace renderscript {
441
Shih-wei Liaoce8a0792010-12-20 20:45:56 +0800442RsScript rsi_ScriptCCreate(Context *rsc,
Alex Sakhartchouk70b83c12011-04-06 10:57:51 -0700443 const char *resName, size_t resName_length,
444 const char *cacheDir, size_t cacheDir_length,
Alex Sakhartchoukb81a0eb2011-06-03 10:18:01 -0700445 const char *text, size_t text_length)
Shih-wei Liao9503b662010-11-08 01:33:59 -0800446{
Jason Sams249d4532011-01-23 17:48:45 -0800447 ScriptC *s = new ScriptC(rsc);
Jason Sams1f526332009-06-05 17:35:09 -0700448
Alex Sakhartchouk70b83c12011-04-06 10:57:51 -0700449 if (!s->runCompiler(rsc, resName, cacheDir, (uint8_t *)text, text_length)) {
Jason Sams26b2c9f2011-01-19 16:14:21 -0800450 // Error during compile, destroy s and return null.
Stephen Hines4769d682012-02-02 13:23:20 -0800451 ObjectBase::checkDelete(s);
Chris Wailes44bef6f2014-08-12 13:51:10 -0700452 return nullptr;
Jason Sams26b2c9f2011-01-19 16:14:21 -0800453 }
Jason Samsbad80742011-03-16 16:29:28 -0700454
455 s->incUserRef();
Jason Sams249d4532011-01-23 17:48:45 -0800456 return s;
Jason Sams326e0dd2009-05-22 14:03:28 -0700457}
458
Rahul Chaudhry7974fc02017-02-09 12:33:28 -0800459} // namespace renderscript
460} // namespace android