blob: ee58e377af53af13675cc80d74a26e7cd5ed6f69 [file] [log] [blame]
Yang Ni2abfcc62015-02-17 16:05:19 -08001/*
2 * Copyright (C) 2015 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
17#ifndef ANDROID_RENDERSCRIPT_EXECUTABLE_H
18#define ANDROID_RENDERSCRIPT_EXECUTABLE_H
19
Yang Ni2abfcc62015-02-17 16:05:19 -080020
21#include "rsCpuScript.h"
22
Miao Wang82e135c2017-02-27 23:35:35 -080023#include <stdlib.h>
24#include <string>
25
Yang Ni2abfcc62015-02-17 16:05:19 -080026namespace android {
27namespace renderscript {
28
29class Context;
30
31class SharedLibraryUtils {
32public:
33#ifndef RS_COMPATIBILITY_LIB
Stephen Hines4c368af2015-05-06 00:43:02 -070034 static bool createSharedLibrary(const char* driverName,
35 const char* cacheDir,
36 const char* resName);
Yang Ni2abfcc62015-02-17 16:05:19 -080037#endif
38
39 // Load the shared library referred to by cacheDir and resName. If we have
40 // already loaded this library, we instead create a new copy (in the
41 // cache dir) and then load that. We then immediately destroy the copy.
42 // This is required behavior to implement script instancing for the support
43 // library, since shared objects are loaded and de-duped by name only.
44
45 // For 64bit RS Support Lib, the shared lib path cannot be constructed from
46 // cacheDir, so nativeLibDir is needed to load shared libs.
47 static void* loadSharedLibrary(const char *cacheDir, const char *resName,
Yang Ni1efae292015-06-27 15:45:18 -070048 const char *nativeLibDir = nullptr,
49 bool *alreadyLoaded = nullptr);
50
51 // Create a len length string containing random characters from [A-Za-z0-9].
Miao Wang82e135c2017-02-27 23:35:35 -080052 static std::string getRandomString(size_t len);
Yang Ni2abfcc62015-02-17 16:05:19 -080053
54private:
55 // Attempt to load the shared library from origName, but then fall back to
56 // creating a copy of the shared library if necessary (to ensure instancing).
57 // This function returns the dlopen()-ed handle if successful.
58 static void *loadSOHelper(const char *origName, const char *cacheDir,
Yang Ni1efae292015-06-27 15:45:18 -070059 const char *resName, bool* alreadyLoaded = nullptr);
Yang Ni2abfcc62015-02-17 16:05:19 -080060
61 static const char* LD_EXE_PATH;
62 static const char* RS_CACHE_DIR;
63};
64
65class ScriptExecutable {
66public:
Yang Ni5e480022016-04-06 09:34:34 -070067 ScriptExecutable(void** fieldAddress, bool* fieldIsObject,
Yang Ni062c2872015-02-20 15:20:00 -080068 const char* const * fieldName, size_t varCount,
Yang Ni2abfcc62015-02-17 16:05:19 -080069 InvokeFunc_t* invokeFunctions, size_t funcCount,
70 ForEachFunc_t* forEachFunctions, uint32_t* forEachSignatures,
71 size_t forEachCount,
David Grossae2ec3f2016-06-01 14:45:47 -070072 ReduceDescription *reduceDescriptions, size_t reduceCount,
Yang Ni062c2872015-02-20 15:20:00 -080073 const char** pragmaKeys, const char** pragmaValues,
Yang Ni2abfcc62015-02-17 16:05:19 -080074 size_t pragmaCount,
Stephen Hines8409d642015-04-28 18:49:56 -070075 const char **globalNames, const void **globalAddresses,
Stephen Hines5aa018c2015-05-20 18:09:57 -070076 const size_t *globalSizes,
77 const uint32_t *globalProperties, size_t globalEntries,
Yang Nicb170152015-04-16 10:27:02 -070078 bool isThreadable, uint32_t buildChecksum) :
Yang Ni2abfcc62015-02-17 16:05:19 -080079 mFieldAddress(fieldAddress), mFieldIsObject(fieldIsObject),
Yang Ni062c2872015-02-20 15:20:00 -080080 mFieldName(fieldName), mExportedVarCount(varCount),
81 mInvokeFunctions(invokeFunctions), mFuncCount(funcCount),
82 mForEachFunctions(forEachFunctions), mForEachSignatures(forEachSignatures),
83 mForEachCount(forEachCount),
David Grossae2ec3f2016-06-01 14:45:47 -070084 mReduceDescriptions(reduceDescriptions), mReduceCount(reduceCount),
Yang Ni062c2872015-02-20 15:20:00 -080085 mPragmaKeys(pragmaKeys), mPragmaValues(pragmaValues),
Stephen Hines8409d642015-04-28 18:49:56 -070086 mPragmaCount(pragmaCount), mGlobalNames(globalNames),
87 mGlobalAddresses(globalAddresses), mGlobalSizes(globalSizes),
Stephen Hines5aa018c2015-05-20 18:09:57 -070088 mGlobalProperties(globalProperties), mGlobalEntries(globalEntries),
Yang Ni5e480022016-04-06 09:34:34 -070089 mIsThreadable(isThreadable), mBuildChecksum(buildChecksum) {
Yang Ni2abfcc62015-02-17 16:05:19 -080090 }
91
92 ~ScriptExecutable() {
93 for (size_t i = 0; i < mExportedVarCount; ++i) {
94 if (mFieldIsObject[i]) {
95 if (mFieldAddress[i] != nullptr) {
96 rs_object_base *obj_addr =
97 reinterpret_cast<rs_object_base *>(mFieldAddress[i]);
Yang Ni5e480022016-04-06 09:34:34 -070098 rsrClearObject(obj_addr);
Yang Ni2abfcc62015-02-17 16:05:19 -080099 }
100 }
101 }
102
103 for (size_t i = 0; i < mPragmaCount; ++i) {
104 delete [] mPragmaKeys[i];
105 delete [] mPragmaValues[i];
106 }
Yang Ni2abfcc62015-02-17 16:05:19 -0800107 delete[] mPragmaValues;
108 delete[] mPragmaKeys;
Yang Ni062c2872015-02-20 15:20:00 -0800109
David Grossae2ec3f2016-06-01 14:45:47 -0700110 delete[] mReduceDescriptions;
David Gross6c1876b2016-01-15 11:52:14 -0800111
Yang Ni2abfcc62015-02-17 16:05:19 -0800112 delete[] mForEachSignatures;
113 delete[] mForEachFunctions;
Yang Ni062c2872015-02-20 15:20:00 -0800114
Yang Ni2abfcc62015-02-17 16:05:19 -0800115 delete[] mInvokeFunctions;
Yang Ni062c2872015-02-20 15:20:00 -0800116
117 for (size_t i = 0; i < mExportedVarCount; i++) {
118 delete[] mFieldName[i];
119 }
120 delete[] mFieldName;
Yang Ni2abfcc62015-02-17 16:05:19 -0800121 delete[] mFieldIsObject;
122 delete[] mFieldAddress;
123 }
124
Yang Nicb170152015-04-16 10:27:02 -0700125 // Create an ScriptExecutable object from a shared object.
126 // If expectedChecksum is not zero, it will be compared to the checksum
127 // embedded in the shared object. A mismatch will cause a failure.
128 // If succeeded, returns the new object. Otherwise, returns nullptr.
Yang Ni2abfcc62015-02-17 16:05:19 -0800129 static ScriptExecutable*
Yang Ni5e480022016-04-06 09:34:34 -0700130 createFromSharedObject(void* sharedObj,
Yang Nicb170152015-04-16 10:27:02 -0700131 uint32_t expectedChecksum = 0);
Yang Ni2abfcc62015-02-17 16:05:19 -0800132
133 size_t getExportedVariableCount() const { return mExportedVarCount; }
134 size_t getExportedFunctionCount() const { return mFuncCount; }
135 size_t getExportedForEachCount() const { return mForEachCount; }
Matt Wala14ce0072015-07-30 17:30:25 -0700136 size_t getExportedReduceCount() const { return mReduceCount; }
Yang Ni2abfcc62015-02-17 16:05:19 -0800137 size_t getPragmaCount() const { return mPragmaCount; }
138
139 void* getFieldAddress(int slot) const { return mFieldAddress[slot]; }
Yang Ni062c2872015-02-20 15:20:00 -0800140 void* getFieldAddress(const char* name) const;
Yang Ni2abfcc62015-02-17 16:05:19 -0800141 bool getFieldIsObject(int slot) const { return mFieldIsObject[slot]; }
Yang Ni062c2872015-02-20 15:20:00 -0800142 const char* getFieldName(int slot) const { return mFieldName[slot]; }
143
Yang Ni2abfcc62015-02-17 16:05:19 -0800144 InvokeFunc_t getInvokeFunction(int slot) const { return mInvokeFunctions[slot]; }
Yang Ni062c2872015-02-20 15:20:00 -0800145
Yang Ni2abfcc62015-02-17 16:05:19 -0800146 ForEachFunc_t getForEachFunction(int slot) const { return mForEachFunctions[slot]; }
147 uint32_t getForEachSignature(int slot) const { return mForEachSignatures[slot]; }
148
David Grossae2ec3f2016-06-01 14:45:47 -0700149 const ReduceDescription* getReduceDescription(int slot) const {
150 return &mReduceDescriptions[slot];
David Gross6c1876b2016-01-15 11:52:14 -0800151 }
152
Yang Ni2abfcc62015-02-17 16:05:19 -0800153 const char ** getPragmaKeys() const { return mPragmaKeys; }
154 const char ** getPragmaValues() const { return mPragmaValues; }
155
Stephen Hines8409d642015-04-28 18:49:56 -0700156 const char* getGlobalName(int i) const {
157 if (i < mGlobalEntries) {
158 return mGlobalNames[i];
159 } else {
160 return nullptr;
161 }
162 }
163 const void* getGlobalAddress(int i) const {
164 if (i < mGlobalEntries) {
165 return mGlobalAddresses[i];
166 } else {
167 return nullptr;
168 }
169 }
170 size_t getGlobalSize(int i) const {
171 if (i < mGlobalEntries) {
172 return mGlobalSizes[i];
173 } else {
174 return 0;
175 }
176 }
Stephen Hines5aa018c2015-05-20 18:09:57 -0700177 uint32_t getGlobalProperties(int i) const {
178 if (i < mGlobalEntries) {
179 return mGlobalProperties[i];
180 } else {
181 return 0;
182 }
183 }
Stephen Hines8409d642015-04-28 18:49:56 -0700184 int getGlobalEntries() const { return mGlobalEntries; }
185
Yang Ni2abfcc62015-02-17 16:05:19 -0800186 bool getThreadable() const { return mIsThreadable; }
187
Yang Nicb170152015-04-16 10:27:02 -0700188 uint32_t getBuildChecksum() const { return mBuildChecksum; }
Pirama Arumuga Nainaraa6757f2015-02-13 20:02:50 -0800189
Stephen Hines8409d642015-04-28 18:49:56 -0700190 bool dumpGlobalInfo() const;
191
Yang Ni2abfcc62015-02-17 16:05:19 -0800192private:
193 void** mFieldAddress;
194 bool* mFieldIsObject;
Yang Ni062c2872015-02-20 15:20:00 -0800195 const char* const * mFieldName;
Yang Ni2abfcc62015-02-17 16:05:19 -0800196 size_t mExportedVarCount;
197
198 InvokeFunc_t* mInvokeFunctions;
199 size_t mFuncCount;
200
201 ForEachFunc_t* mForEachFunctions;
202 uint32_t* mForEachSignatures;
203 size_t mForEachCount;
204
David Grossae2ec3f2016-06-01 14:45:47 -0700205 ReduceDescription* mReduceDescriptions;
Matt Wala14ce0072015-07-30 17:30:25 -0700206 size_t mReduceCount;
207
Yang Ni2abfcc62015-02-17 16:05:19 -0800208 const char ** mPragmaKeys;
209 const char ** mPragmaValues;
210 size_t mPragmaCount;
211
Stephen Hines8409d642015-04-28 18:49:56 -0700212 const char ** mGlobalNames;
213 const void ** mGlobalAddresses;
214 const size_t * mGlobalSizes;
Stephen Hines5aa018c2015-05-20 18:09:57 -0700215 const uint32_t * mGlobalProperties;
Stephen Hines8409d642015-04-28 18:49:56 -0700216 int mGlobalEntries;
217
Yang Ni2abfcc62015-02-17 16:05:19 -0800218 bool mIsThreadable;
Yang Nicb170152015-04-16 10:27:02 -0700219 uint32_t mBuildChecksum;
Yang Ni2abfcc62015-02-17 16:05:19 -0800220};
221
222} // namespace renderscript
223} // namespace android
224
225#endif // ANDROID_RENDERSCRIPT_EXECUTABLE_H