| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
| Stephen Hines | 4419977 | 2012-02-21 20:13:12 -0800 | [diff] [blame] | 2 | * Copyright (C) 2009-2012 The Android Open Source Project |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 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 | |
| 17 | #include "rsContext.h" |
| 18 | #include "rsScriptC.h" |
| Jack Palevich | 1ef8b80 | 2009-05-28 15:53:04 -0700 | [diff] [blame] | 19 | |
| Jean-Luc Brouillet | 2303748 | 2014-03-25 16:27:34 -0700 | [diff] [blame] | 20 | #if !defined(FAKE_ARM64_BUILD) && !defined(RS_COMPATIBILITY_LIB) && !defined(ANDROID_RS_SERIALIZE) |
| Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 21 | #include <bcinfo/BitcodeTranslator.h> |
| Stephen Hines | f8d4469 | 2011-11-22 19:43:58 -0800 | [diff] [blame] | 22 | #include <bcinfo/BitcodeWrapper.h> |
| Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 23 | #endif |
| 24 | |
| Stephen Hines | b0934b6 | 2013-07-03 17:27:38 -0700 | [diff] [blame] | 25 | #if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB) |
| Tim Murray | 0b575de | 2013-03-15 15:56:43 -0700 | [diff] [blame] | 26 | #include "utils/Timers.h" |
| Tobias Grosser | 47935ac | 2013-06-17 11:47:26 -0700 | [diff] [blame] | 27 | #include "cutils/trace.h" |
| Stephen Hines | 574854b | 2013-07-10 08:29:51 -0700 | [diff] [blame] | 28 | #endif |
| Tobias Grosser | 47935ac | 2013-06-17 11:47:26 -0700 | [diff] [blame] | 29 | |
| Tim Murray | e78c14b | 2012-10-01 15:27:18 -0700 | [diff] [blame] | 30 | #include <sys/stat.h> |
| 31 | |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 32 | using namespace android; |
| 33 | using namespace android::renderscript; |
| 34 | |
| Jason Sams | e576910 | 2009-06-19 16:03:18 -0700 | [diff] [blame] | 35 | #define GET_TLS() Context::ScriptTLSStruct * tls = \ |
| 36 | (Context::ScriptTLSStruct *)pthread_getspecific(Context::gThreadTLSKey); \ |
| 37 | Context * rsc = tls->mContext; \ |
| 38 | ScriptC * sc = (ScriptC *) tls->mScript |
| 39 | |
| Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 40 | ScriptC::ScriptC(Context *rsc) : Script(rsc) { |
| Jean-Luc Brouillet | 2303748 | 2014-03-25 16:27:34 -0700 | [diff] [blame] | 41 | #if !defined(FAKE_ARM64_BUILD) && !defined(RS_COMPATIBILITY_LIB) && !defined(ANDROID_RS_SERIALIZE) |
| Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 42 | BT = NULL; |
| 43 | #endif |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 46 | ScriptC::~ScriptC() { |
| Jean-Luc Brouillet | 2303748 | 2014-03-25 16:27:34 -0700 | [diff] [blame] | 47 | #if !defined(FAKE_ARM64_BUILD) && !defined(RS_COMPATIBILITY_LIB) && !defined(ANDROID_RS_SERIALIZE) |
| Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 48 | if (BT) { |
| 49 | delete BT; |
| 50 | BT = NULL; |
| 51 | } |
| 52 | #endif |
| Jason Sams | 77020c5 | 2011-11-22 12:49:11 -0800 | [diff] [blame] | 53 | if (mInitialized) { |
| 54 | mRSC->mHal.funcs.script.invokeFreeChildren(mRSC, this); |
| 55 | mRSC->mHal.funcs.script.destroy(mRSC, this); |
| 56 | } |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 57 | } |
| 58 | |
| Tim Murray | e195a3f | 2014-03-13 15:04:58 -0700 | [diff] [blame] | 59 | #ifndef FAKE_ARM64_BUILD |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 60 | #ifndef RS_COMPATIBILITY_LIB |
| Tim Murray | e78c14b | 2012-10-01 15:27:18 -0700 | [diff] [blame] | 61 | bool ScriptC::createCacheDir(const char *cacheDir) { |
| 62 | String8 cacheDirString, currentDir; |
| 63 | struct stat statBuf; |
| 64 | int statReturn = stat(cacheDir, &statBuf); |
| 65 | if (!statReturn) { |
| 66 | return true; |
| 67 | } |
| 68 | |
| 69 | // String8 path functions strip leading /'s |
| 70 | // insert if necessary |
| 71 | if (cacheDir[0] == '/') { |
| 72 | currentDir += "/"; |
| 73 | } |
| 74 | |
| 75 | cacheDirString.setPathName(cacheDir); |
| 76 | |
| 77 | while (cacheDirString.length()) { |
| 78 | currentDir += (cacheDirString.walkPath(&cacheDirString)); |
| 79 | statReturn = stat(currentDir.string(), &statBuf); |
| 80 | if (statReturn) { |
| 81 | if (errno == ENOENT) { |
| 82 | if (mkdir(currentDir.string(), S_IRUSR | S_IWUSR | S_IXUSR)) { |
| 83 | ALOGE("Couldn't create cache directory: %s", |
| 84 | currentDir.string()); |
| 85 | ALOGE("Error: %s", strerror(errno)); |
| 86 | return false; |
| 87 | } |
| 88 | } else { |
| 89 | ALOGE("Stat error: %s", strerror(errno)); |
| 90 | return false; |
| 91 | } |
| 92 | } |
| 93 | currentDir += "/"; |
| 94 | } |
| 95 | return true; |
| 96 | } |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 97 | #endif |
| Tim Murray | e195a3f | 2014-03-13 15:04:58 -0700 | [diff] [blame] | 98 | #endif |
| Tim Murray | e78c14b | 2012-10-01 15:27:18 -0700 | [diff] [blame] | 99 | |
| Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 100 | void ScriptC::setupScript(Context *rsc) { |
| Tim Murray | 0b575de | 2013-03-15 15:56:43 -0700 | [diff] [blame] | 101 | #ifndef RS_SERVER |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 102 | mEnviroment.mStartTimeMillis |
| 103 | = nanoseconds_to_milliseconds(systemTime(SYSTEM_TIME_MONOTONIC)); |
| Tim Murray | 0b575de | 2013-03-15 15:56:43 -0700 | [diff] [blame] | 104 | #endif |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 105 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 106 | for (uint32_t ct=0; ct < mHal.info.exportedVariableCount; ct++) { |
| Jason Sams | 900f161 | 2010-09-16 18:18:29 -0700 | [diff] [blame] | 107 | if (mSlots[ct].get() && !mTypes[ct].get()) { |
| 108 | mTypes[ct].set(mSlots[ct]->getType()); |
| 109 | } |
| 110 | |
| 111 | if (!mTypes[ct].get()) |
| Jason Sams | be36bf3 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 112 | continue; |
| Jason Sams | 807fdc4 | 2012-07-25 17:55:39 -0700 | [diff] [blame] | 113 | rsc->mHal.funcs.script.setGlobalBind(rsc, this, ct, mSlots[ct].get()); |
| Jason Sams | ada7f27 | 2009-09-24 14:55:38 -0700 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
| Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 117 | void ScriptC::setupGLState(Context *rsc) { |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 118 | #ifndef RS_COMPATIBILITY_LIB |
| Jason Sams | a0a1b6f | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 119 | if (mEnviroment.mFragmentStore.get()) { |
| Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 120 | rsc->setProgramStore(mEnviroment.mFragmentStore.get()); |
| Jason Sams | a0a1b6f | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 121 | } |
| 122 | if (mEnviroment.mFragment.get()) { |
| Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 123 | rsc->setProgramFragment(mEnviroment.mFragment.get()); |
| Jason Sams | a0a1b6f | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 124 | } |
| Jason Sams | 8ce125b | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 125 | if (mEnviroment.mVertex.get()) { |
| Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 126 | rsc->setProgramVertex(mEnviroment.mVertex.get()); |
| Jason Sams | 8ce125b | 2009-06-17 16:52:59 -0700 | [diff] [blame] | 127 | } |
| Jason Sams | b681c8a | 2009-09-28 18:12:56 -0700 | [diff] [blame] | 128 | if (mEnviroment.mRaster.get()) { |
| Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 129 | rsc->setProgramRaster(mEnviroment.mRaster.get()); |
| Jason Sams | b681c8a | 2009-09-28 18:12:56 -0700 | [diff] [blame] | 130 | } |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 131 | #endif |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 132 | } |
| Jason Sams | a0a1b6f | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 133 | |
| Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 134 | uint32_t ScriptC::run(Context *rsc) { |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 135 | if (mHal.info.root == NULL) { |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 136 | rsc->setError(RS_ERROR_BAD_SCRIPT, "Attempted to run bad script"); |
| 137 | return 0; |
| Joe Onorato | 9c4e4ca | 2009-08-09 11:39:02 -0700 | [diff] [blame] | 138 | } |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 139 | |
| Jason Sams | 1f24db4 | 2010-12-11 17:42:30 -0800 | [diff] [blame] | 140 | setupGLState(rsc); |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 141 | setupScript(rsc); |
| Jason Sams | 1d54f10 | 2009-09-03 15:43:13 -0700 | [diff] [blame] | 142 | |
| Jason Sams | 2dca84d | 2009-12-09 11:05:45 -0800 | [diff] [blame] | 143 | uint32_t ret = 0; |
| Jason Sams | b9077f4 | 2010-09-22 15:57:41 -0700 | [diff] [blame] | 144 | |
| 145 | if (rsc->props.mLogScripts) { |
| Steve Block | 6598201 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 146 | ALOGV("%p ScriptC::run invoking root, ptr %p", rsc, mHal.info.root); |
| Jason Sams | b9077f4 | 2010-09-22 15:57:41 -0700 | [diff] [blame] | 147 | } |
| 148 | |
| Jason Sams | cdfdb8f | 2011-03-17 16:12:47 -0700 | [diff] [blame] | 149 | ret = rsc->mHal.funcs.script.invokeRoot(rsc, this); |
| Jason Sams | b9077f4 | 2010-09-22 15:57:41 -0700 | [diff] [blame] | 150 | |
| 151 | if (rsc->props.mLogScripts) { |
| Steve Block | 6598201 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 152 | ALOGV("%p ScriptC::run invoking complete, ret=%i", rsc, ret); |
| Jason Sams | b9077f4 | 2010-09-22 15:57:41 -0700 | [diff] [blame] | 153 | } |
| 154 | |
| Jason Sams | e45ac6e | 2009-07-20 14:31:06 -0700 | [diff] [blame] | 155 | return ret; |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| Jason Sams | 177f844 | 2010-10-29 10:19:21 -0700 | [diff] [blame] | 158 | |
| Jason Sams | ace3e01 | 2010-07-15 17:11:13 -0700 | [diff] [blame] | 159 | void ScriptC::runForEach(Context *rsc, |
| Stephen Hines | 4419977 | 2012-02-21 20:13:12 -0800 | [diff] [blame] | 160 | uint32_t slot, |
| Jason Sams | ace3e01 | 2010-07-15 17:11:13 -0700 | [diff] [blame] | 161 | const Allocation * ain, |
| 162 | Allocation * aout, |
| 163 | const void * usr, |
| Jason Sams | 87fe59a | 2011-04-20 15:09:01 -0700 | [diff] [blame] | 164 | size_t usrBytes, |
| Alex Sakhartchouk | afb743a | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 165 | const RsScriptCall *sc) { |
| Tobias Grosser | 47935ac | 2013-06-17 11:47:26 -0700 | [diff] [blame] | 166 | // Trace this function call. |
| 167 | // To avoid overhead, we only build the string, if tracing is actually |
| 168 | // enabled. |
| 169 | String8 *AString = NULL; |
| 170 | const char *String = ""; |
| 171 | if (ATRACE_ENABLED()) { |
| 172 | AString = new String8("runForEach_"); |
| 173 | AString->append(mHal.info.exportedForeachFuncList[slot].first); |
| 174 | String = AString->string(); |
| 175 | } |
| 176 | ATRACE_NAME(String); |
| 177 | (void)String; |
| Tim Murray | fa85e91 | 2013-05-23 13:19:36 -0700 | [diff] [blame] | 178 | |
| Jason Sams | 6070925 | 2010-11-17 15:29:32 -0800 | [diff] [blame] | 179 | Context::PushState ps(rsc); |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 180 | |
| Jason Sams | 1f24db4 | 2010-12-11 17:42:30 -0800 | [diff] [blame] | 181 | setupGLState(rsc); |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 182 | setupScript(rsc); |
| Stephen Hines | 4419977 | 2012-02-21 20:13:12 -0800 | [diff] [blame] | 183 | rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc); |
| Tobias Grosser | 47935ac | 2013-06-17 11:47:26 -0700 | [diff] [blame] | 184 | |
| 185 | if (AString) |
| 186 | delete AString; |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 187 | } |
| 188 | |
| Alex Sakhartchouk | b81a0eb | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 189 | void ScriptC::Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) { |
| Tim Murray | fa85e91 | 2013-05-23 13:19:36 -0700 | [diff] [blame] | 190 | ATRACE_CALL(); |
| 191 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 192 | if (slot >= mHal.info.exportedFunctionCount) { |
| Jason Sams | 22fa371 | 2010-05-19 17:22:57 -0700 | [diff] [blame] | 193 | rsc->setError(RS_ERROR_BAD_SCRIPT, "Calling invoke on bad script"); |
| 194 | return; |
| 195 | } |
| Jason Sams | c61346b | 2010-05-28 18:23:22 -0700 | [diff] [blame] | 196 | setupScript(rsc); |
| Jason Sams | 22fa371 | 2010-05-19 17:22:57 -0700 | [diff] [blame] | 197 | |
| Jason Sams | b9077f4 | 2010-09-22 15:57:41 -0700 | [diff] [blame] | 198 | if (rsc->props.mLogScripts) { |
| Steve Block | 6598201 | 2011-10-20 11:56:00 +0100 | [diff] [blame] | 199 | ALOGV("%p ScriptC::Invoke invoking slot %i, ptr %p", rsc, slot, this); |
| Jason Sams | b9077f4 | 2010-09-22 15:57:41 -0700 | [diff] [blame] | 200 | } |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 201 | rsc->mHal.funcs.script.invokeFunction(rsc, this, slot, data, len); |
| Jason Sams | 22fa371 | 2010-05-19 17:22:57 -0700 | [diff] [blame] | 202 | } |
| 203 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 204 | bool ScriptC::runCompiler(Context *rsc, |
| 205 | const char *resName, |
| 206 | const char *cacheDir, |
| 207 | const uint8_t *bitcode, |
| 208 | size_t bitcodeLen) { |
| Tim Murray | fa85e91 | 2013-05-23 13:19:36 -0700 | [diff] [blame] | 209 | ATRACE_CALL(); |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 210 | //ALOGE("runCompiler %p %p %p %p %p %i", rsc, this, resName, cacheDir, bitcode, bitcodeLen); |
| Tim Murray | e195a3f | 2014-03-13 15:04:58 -0700 | [diff] [blame] | 211 | #ifndef FAKE_ARM64_BUILD |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 212 | #ifndef RS_COMPATIBILITY_LIB |
| Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 213 | #ifndef ANDROID_RS_SERIALIZE |
| Stephen Hines | f8d4469 | 2011-11-22 19:43:58 -0800 | [diff] [blame] | 214 | uint32_t sdkVersion = 0; |
| 215 | bcinfo::BitcodeWrapper bcWrapper((const char *)bitcode, bitcodeLen); |
| 216 | if (!bcWrapper.unwrap()) { |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 217 | ALOGE("Bitcode is not in proper container format (raw or wrapper)"); |
| Stephen Hines | f8d4469 | 2011-11-22 19:43:58 -0800 | [diff] [blame] | 218 | return false; |
| 219 | } |
| 220 | |
| Stephen Hines | f8d4469 | 2011-11-22 19:43:58 -0800 | [diff] [blame] | 221 | if (bcWrapper.getBCFileType() == bcinfo::BC_WRAPPER) { |
| 222 | sdkVersion = bcWrapper.getTargetAPI(); |
| 223 | } |
| 224 | |
| 225 | if (sdkVersion == 0) { |
| 226 | // This signals that we didn't have a wrapper containing information |
| 227 | // about the bitcode. |
| 228 | sdkVersion = rsc->getTargetSdkVersion(); |
| 229 | } |
| 230 | |
| Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 231 | if (BT) { |
| 232 | delete BT; |
| 233 | } |
| 234 | BT = new bcinfo::BitcodeTranslator((const char *)bitcode, bitcodeLen, |
| 235 | sdkVersion); |
| 236 | if (!BT->translate()) { |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 237 | ALOGE("Failed to translate bitcode from version: %u", sdkVersion); |
| Stephen Hines | cbb0b8a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 238 | delete BT; |
| 239 | BT = NULL; |
| 240 | return false; |
| 241 | } |
| 242 | bitcode = (const uint8_t *) BT->getTranslatedBitcode(); |
| 243 | bitcodeLen = BT->getTranslatedBitcodeSize(); |
| Shih-wei Liao | 37150de | 2011-01-07 18:17:07 -0800 | [diff] [blame] | 244 | |
| Tim Murray | e195a3f | 2014-03-13 15:04:58 -0700 | [diff] [blame] | 245 | #endif |
| Tim Murray | 84bf2b8 | 2012-10-31 16:03:16 -0700 | [diff] [blame] | 246 | if (!cacheDir) { |
| 247 | // MUST BE FIXED BEFORE ANYTHING USING C++ API IS RELEASED |
| 248 | cacheDir = getenv("EXTERNAL_STORAGE"); |
| 249 | ALOGV("Cache dir changed to %s", cacheDir); |
| 250 | } |
| 251 | |
| Tim Murray | e78c14b | 2012-10-01 15:27:18 -0700 | [diff] [blame] | 252 | // ensure that cache dir exists |
| Tim Murray | 84bf2b8 | 2012-10-31 16:03:16 -0700 | [diff] [blame] | 253 | if (cacheDir && !createCacheDir(cacheDir)) { |
| Tim Murray | e78c14b | 2012-10-01 15:27:18 -0700 | [diff] [blame] | 254 | return false; |
| 255 | } |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 256 | #endif |
| Tim Murray | e195a3f | 2014-03-13 15:04:58 -0700 | [diff] [blame] | 257 | #endif |
| Tim Murray | e78c14b | 2012-10-01 15:27:18 -0700 | [diff] [blame] | 258 | |
| Jason Sams | 77020c5 | 2011-11-22 12:49:11 -0800 | [diff] [blame] | 259 | if (!rsc->mHal.funcs.script.init(rsc, this, resName, cacheDir, bitcode, bitcodeLen, 0)) { |
| 260 | return false; |
| 261 | } |
| Shih-wei Liao | 37150de | 2011-01-07 18:17:07 -0800 | [diff] [blame] | 262 | |
| Jason Sams | 77020c5 | 2011-11-22 12:49:11 -0800 | [diff] [blame] | 263 | mInitialized = true; |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 264 | #ifndef RS_COMPATIBILITY_LIB |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 265 | mEnviroment.mFragment.set(rsc->getDefaultProgramFragment()); |
| 266 | mEnviroment.mVertex.set(rsc->getDefaultProgramVertex()); |
| 267 | mEnviroment.mFragmentStore.set(rsc->getDefaultProgramStore()); |
| 268 | mEnviroment.mRaster.set(rsc->getDefaultProgramRaster()); |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 269 | #endif |
| Shih-wei Liao | 37150de | 2011-01-07 18:17:07 -0800 | [diff] [blame] | 270 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 271 | rsc->mHal.funcs.script.invokeInit(rsc, this); |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 272 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 273 | for (size_t i=0; i < mHal.info.exportedPragmaCount; ++i) { |
| 274 | const char * key = mHal.info.exportedPragmaKeyList[i]; |
| 275 | const char * value = mHal.info.exportedPragmaValueList[i]; |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 276 | //ALOGE("pragma %s %s", keys[i], values[i]); |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 277 | if (!strcmp(key, "version")) { |
| 278 | if (!strcmp(value, "1")) { |
| Stephen Hines | b5dc6af | 2011-01-18 14:10:44 -0800 | [diff] [blame] | 279 | continue; |
| 280 | } |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 281 | ALOGE("Invalid version pragma value: %s\n", value); |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 282 | return false; |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 283 | } |
| 284 | |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 285 | #ifndef RS_COMPATIBILITY_LIB |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 286 | if (!strcmp(key, "stateVertex")) { |
| 287 | if (!strcmp(value, "default")) { |
| Jason Sams | 1030893 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 288 | continue; |
| Jason Sams | 1030893 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 289 | } |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 290 | if (!strcmp(value, "parent")) { |
| 291 | mEnviroment.mVertex.clear(); |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 292 | continue; |
| Jason Sams | 1030893 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 293 | } |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 294 | ALOGE("Unrecognized value %s passed to stateVertex", value); |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 295 | return false; |
| Jason Sams | 1030893 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 296 | } |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 297 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 298 | if (!strcmp(key, "stateRaster")) { |
| 299 | if (!strcmp(value, "default")) { |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 300 | continue; |
| 301 | } |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 302 | if (!strcmp(value, "parent")) { |
| 303 | mEnviroment.mRaster.clear(); |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 304 | continue; |
| 305 | } |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 306 | ALOGE("Unrecognized value %s passed to stateRaster", value); |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 307 | return false; |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 308 | } |
| 309 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 310 | if (!strcmp(key, "stateFragment")) { |
| 311 | if (!strcmp(value, "default")) { |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 312 | continue; |
| 313 | } |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 314 | if (!strcmp(value, "parent")) { |
| 315 | mEnviroment.mFragment.clear(); |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 316 | continue; |
| 317 | } |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 318 | ALOGE("Unrecognized value %s passed to stateFragment", value); |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 319 | return false; |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 320 | } |
| 321 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 322 | if (!strcmp(key, "stateStore")) { |
| 323 | if (!strcmp(value, "default")) { |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 324 | continue; |
| 325 | } |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 326 | if (!strcmp(value, "parent")) { |
| 327 | mEnviroment.mFragmentStore.clear(); |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 328 | continue; |
| 329 | } |
| Steve Block | af12ac6 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 330 | ALOGE("Unrecognized value %s passed to stateStore", value); |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 331 | return false; |
| Stephen Hines | 7b337b1 | 2011-01-17 17:31:58 -0800 | [diff] [blame] | 332 | } |
| Jason Sams | 93eacc7 | 2012-12-18 14:26:57 -0800 | [diff] [blame] | 333 | #endif |
| 334 | |
| Jason Sams | 1030893 | 2009-06-09 12:15:30 -0700 | [diff] [blame] | 335 | } |
| Jason Sams | 2e8665d | 2011-01-27 00:14:13 -0800 | [diff] [blame] | 336 | |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 337 | mSlots = new ObjectBaseRef<Allocation>[mHal.info.exportedVariableCount]; |
| 338 | mTypes = new ObjectBaseRef<const Type>[mHal.info.exportedVariableCount]; |
| Jason Sams | 2e8665d | 2011-01-27 00:14:13 -0800 | [diff] [blame] | 339 | |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 340 | return true; |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | namespace android { |
| 344 | namespace renderscript { |
| 345 | |
| Shih-wei Liao | ce8a079 | 2010-12-20 20:45:56 +0800 | [diff] [blame] | 346 | RsScript rsi_ScriptCCreate(Context *rsc, |
| Alex Sakhartchouk | 70b83c1 | 2011-04-06 10:57:51 -0700 | [diff] [blame] | 347 | const char *resName, size_t resName_length, |
| 348 | const char *cacheDir, size_t cacheDir_length, |
| Alex Sakhartchouk | b81a0eb | 2011-06-03 10:18:01 -0700 | [diff] [blame] | 349 | const char *text, size_t text_length) |
| Shih-wei Liao | 9503b66 | 2010-11-08 01:33:59 -0800 | [diff] [blame] | 350 | { |
| Jason Sams | 249d453 | 2011-01-23 17:48:45 -0800 | [diff] [blame] | 351 | ScriptC *s = new ScriptC(rsc); |
| Jason Sams | 1f52633 | 2009-06-05 17:35:09 -0700 | [diff] [blame] | 352 | |
| Alex Sakhartchouk | 70b83c1 | 2011-04-06 10:57:51 -0700 | [diff] [blame] | 353 | if (!s->runCompiler(rsc, resName, cacheDir, (uint8_t *)text, text_length)) { |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 354 | // Error during compile, destroy s and return null. |
| Stephen Hines | 4769d68 | 2012-02-02 13:23:20 -0800 | [diff] [blame] | 355 | ObjectBase::checkDelete(s); |
| Jason Sams | 26b2c9f | 2011-01-19 16:14:21 -0800 | [diff] [blame] | 356 | return NULL; |
| 357 | } |
| Jason Sams | bad8074 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 358 | |
| 359 | s->incUserRef(); |
| Jason Sams | 249d453 | 2011-01-23 17:48:45 -0800 | [diff] [blame] | 360 | return s; |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 361 | } |
| 362 | |
| Jason Sams | 326e0dd | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 363 | } |
| 364 | } |