blob: f550d9870b067ba61f17b5c9466317052ec7d91b [file] [log] [blame]
Jason Samse45ac6e2009-07-20 14:31:06 -07001/*
2 * Copyright (C) 2009 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#include "rsContext.h"
18#include "rsScriptC.h"
19#include "rsMatrix.h"
20
Joe Onorato9c4e4ca2009-08-09 11:39:02 -070021#include "utils/Timers.h"
Jason Samse45ac6e2009-07-20 14:31:06 -070022
Romain Guy98e10fd2009-07-30 18:45:01 -070023#include <time.h>
Romain Guy98e10fd2009-07-30 18:45:01 -070024
Jason Samse45ac6e2009-07-20 14:31:06 -070025using namespace android;
26using namespace android::renderscript;
27
28#define GET_TLS() Context::ScriptTLSStruct * tls = \
29 (Context::ScriptTLSStruct *)pthread_getspecific(Context::gThreadTLSKey); \
30 Context * rsc = tls->mContext; \
31 ScriptC * sc = (ScriptC *) tls->mScript
32
Jason Samsbe36bf32010-05-11 14:03:58 -070033
Jason Samse45ac6e2009-07-20 14:31:06 -070034//////////////////////////////////////////////////////////////////////////////
35// Math routines
36//////////////////////////////////////////////////////////////////////////////
37
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080038static float SC_sinf_fast(float x) {
Romain Guy2275d632009-08-18 11:39:17 -070039 const float A = 1.0f / (2.0f * M_PI);
40 const float B = -16.0f;
41 const float C = 8.0f;
Jason Samsa57c0a72009-09-04 14:42:41 -070042
Romain Guy2275d632009-08-18 11:39:17 -070043 // scale angle for easy argument reduction
44 x *= A;
Jason Samsa57c0a72009-09-04 14:42:41 -070045
Romain Guy2275d632009-08-18 11:39:17 -070046 if (fabsf(x) >= 0.5f) {
47 // argument reduction
48 x = x - ceilf(x + 0.5f) + 1.0f;
49 }
Jason Samsa57c0a72009-09-04 14:42:41 -070050
Romain Guy2275d632009-08-18 11:39:17 -070051 const float y = B * x * fabsf(x) + C * x;
52 return 0.2215f * (y * fabsf(y) - y) + y;
53}
54
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080055static float SC_cosf_fast(float x) {
Romain Guy2275d632009-08-18 11:39:17 -070056 x += float(M_PI / 2);
57
58 const float A = 1.0f / (2.0f * M_PI);
59 const float B = -16.0f;
60 const float C = 8.0f;
Jason Samsa57c0a72009-09-04 14:42:41 -070061
Romain Guy2275d632009-08-18 11:39:17 -070062 // scale angle for easy argument reduction
63 x *= A;
Jason Samsa57c0a72009-09-04 14:42:41 -070064
Romain Guy2275d632009-08-18 11:39:17 -070065 if (fabsf(x) >= 0.5f) {
66 // argument reduction
67 x = x - ceilf(x + 0.5f) + 1.0f;
68 }
Jason Samsa57c0a72009-09-04 14:42:41 -070069
Romain Guy2275d632009-08-18 11:39:17 -070070 const float y = B * x * fabsf(x) + C * x;
71 return 0.2215f * (y * fabsf(y) - y) + y;
72}
73
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080074static float SC_randf(float max) {
Jason Samse45ac6e2009-07-20 14:31:06 -070075 float r = (float)rand();
Jason Sams366c9c82010-12-08 16:14:36 -080076 r *= max;
77 return r / RAND_MAX;
Jason Samse45ac6e2009-07-20 14:31:06 -070078}
79
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080080static float SC_randf2(float min, float max) {
Romain Guy39dbc802009-07-31 11:20:59 -070081 float r = (float)rand();
Jason Sams366c9c82010-12-08 16:14:36 -080082 r = r * (max - min) + min;
83 return r / RAND_MAX;
Romain Guy39dbc802009-07-31 11:20:59 -070084}
85
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080086static int SC_randi(int max) {
Jason Sams22fa3712010-05-19 17:22:57 -070087 return (int)SC_randf(max);
88}
89
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080090static int SC_randi2(int min, int max) {
Jason Sams22fa3712010-05-19 17:22:57 -070091 return (int)SC_randf2(min, max);
92}
93
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080094static float SC_frac(float v) {
Jason Samsbe36bf32010-05-11 14:03:58 -070095 int i = (int)floor(v);
96 return fmin(v - i, 0x1.fffffep-1f);
97}
98
Romain Guy98e10fd2009-07-30 18:45:01 -070099//////////////////////////////////////////////////////////////////////////////
100// Time routines
101//////////////////////////////////////////////////////////////////////////////
Jason Samse45ac6e2009-07-20 14:31:06 -0700102
Stephen Hinesca3f09c2011-01-07 15:11:30 -0800103static time_t SC_time(time_t *timer) {
Romain Guy98e10fd2009-07-30 18:45:01 -0700104 GET_TLS();
Stephen Hinesca3f09c2011-01-07 15:11:30 -0800105 return time(timer);
Romain Guy98e10fd2009-07-30 18:45:01 -0700106}
107
Stephen Hinesca3f09c2011-01-07 15:11:30 -0800108static tm* SC_localtime(tm *local, time_t *timer) {
Romain Guy98e10fd2009-07-30 18:45:01 -0700109 GET_TLS();
Stephen Hinesca3f09c2011-01-07 15:11:30 -0800110 if (!local) {
111 return NULL;
112 }
Jason Samse5ffb872009-08-09 17:01:55 -0700113
Stephen Hinesca3f09c2011-01-07 15:11:30 -0800114 // The native localtime function is not thread-safe, so we
115 // have to apply locking for proper behavior in RenderScript.
116 pthread_mutex_lock(&rsc->gLibMutex);
117 tm *tmp = localtime(timer);
118 memcpy(local, tmp, sizeof(*tmp));
119 pthread_mutex_unlock(&rsc->gLibMutex);
120 return local;
Romain Guy39dbc802009-07-31 11:20:59 -0700121}
122
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800123static int64_t SC_uptimeMillis() {
Jason Sams22fa3712010-05-19 17:22:57 -0700124 return nanoseconds_to_milliseconds(systemTime(SYSTEM_TIME_MONOTONIC));
125}
126
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800127static int64_t SC_uptimeNanos() {
Jason Sams73495472010-07-29 17:31:14 -0700128 return systemTime(SYSTEM_TIME_MONOTONIC);
Jason Sams22fa3712010-05-19 17:22:57 -0700129}
130
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800131static float SC_getDt() {
Joe Onorato9c4e4ca2009-08-09 11:39:02 -0700132 GET_TLS();
Jason Samsef5867a2010-07-28 11:17:53 -0700133 int64_t l = sc->mEnviroment.mLastDtTime;
134 sc->mEnviroment.mLastDtTime = systemTime(SYSTEM_TIME_MONOTONIC);
135 return ((float)(sc->mEnviroment.mLastDtTime - l)) / 1.0e9;
Jason Samse45ac6e2009-07-20 14:31:06 -0700136}
137
Jason Samse45ac6e2009-07-20 14:31:06 -0700138//////////////////////////////////////////////////////////////////////////////
139//
140//////////////////////////////////////////////////////////////////////////////
141
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800142static uint32_t SC_allocGetDimX(RsAllocation va) {
Jason Samsbe36bf32010-05-11 14:03:58 -0700143 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700144 CHECK_OBJ(a);
145 //LOGE("SC_allocGetDimX a=%p type=%p", a, a->getType());
Jason Samsbe36bf32010-05-11 14:03:58 -0700146 return a->getType()->getDimX();
147}
148
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800149static uint32_t SC_allocGetDimY(RsAllocation va) {
Jason Samsbe36bf32010-05-11 14:03:58 -0700150 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700151 CHECK_OBJ(a);
Jason Samsbe36bf32010-05-11 14:03:58 -0700152 return a->getType()->getDimY();
153}
154
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800155static uint32_t SC_allocGetDimZ(RsAllocation va) {
Jason Samsbe36bf32010-05-11 14:03:58 -0700156 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700157 CHECK_OBJ(a);
Jason Samsbe36bf32010-05-11 14:03:58 -0700158 return a->getType()->getDimZ();
159}
160
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800161static uint32_t SC_allocGetDimLOD(RsAllocation va) {
Jason Samsbe36bf32010-05-11 14:03:58 -0700162 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700163 CHECK_OBJ(a);
Jason Samsbe36bf32010-05-11 14:03:58 -0700164 return a->getType()->getDimLOD();
165}
166
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800167static uint32_t SC_allocGetDimFaces(RsAllocation va) {
Jason Samsbe36bf32010-05-11 14:03:58 -0700168 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700169 CHECK_OBJ(a);
Jason Samsbe36bf32010-05-11 14:03:58 -0700170 return a->getType()->getDimFaces();
171}
172
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800173static const void * SC_getElementAtX(RsAllocation va, uint32_t x) {
Jason Sams7bf29dd2010-07-19 15:38:19 -0700174 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700175 CHECK_OBJ(a);
Jason Sams7bf29dd2010-07-19 15:38:19 -0700176 const Type *t = a->getType();
Jason Sams605048a2010-09-30 18:15:52 -0700177 CHECK_OBJ(t);
Jason Sams7bf29dd2010-07-19 15:38:19 -0700178 const uint8_t *p = (const uint8_t *)a->getPtr();
179 return &p[t->getElementSizeBytes() * x];
180}
181
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800182static const void * SC_getElementAtXY(RsAllocation va, uint32_t x, uint32_t y) {
Jason Sams7bf29dd2010-07-19 15:38:19 -0700183 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700184 CHECK_OBJ(a);
Jason Sams7bf29dd2010-07-19 15:38:19 -0700185 const Type *t = a->getType();
Jason Sams605048a2010-09-30 18:15:52 -0700186 CHECK_OBJ(t);
Jason Sams7bf29dd2010-07-19 15:38:19 -0700187 const uint8_t *p = (const uint8_t *)a->getPtr();
188 return &p[t->getElementSizeBytes() * (x + y*t->getDimX())];
189}
190
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800191static const void * SC_getElementAtXYZ(RsAllocation va, uint32_t x, uint32_t y, uint32_t z) {
Jason Sams7bf29dd2010-07-19 15:38:19 -0700192 const Allocation *a = static_cast<const Allocation *>(va);
Jason Sams605048a2010-09-30 18:15:52 -0700193 CHECK_OBJ(a);
Jason Sams7bf29dd2010-07-19 15:38:19 -0700194 const Type *t = a->getType();
Jason Sams605048a2010-09-30 18:15:52 -0700195 CHECK_OBJ(t);
Jason Sams7bf29dd2010-07-19 15:38:19 -0700196 const uint8_t *p = (const uint8_t *)a->getPtr();
197 return &p[t->getElementSizeBytes() * (x + y*t->getDimX())];
198}
Jason Samsbe36bf32010-05-11 14:03:58 -0700199
Jason Samsc0936852010-08-16 12:41:48 -0700200static void SC_setObject(void **vdst, void * vsrc) {
Jason Samsf24d7d02010-09-17 13:17:17 -0700201 //LOGE("SC_setObject %p,%p %p", vdst, *vdst, vsrc);
202 if (vsrc) {
Jason Sams605048a2010-09-30 18:15:52 -0700203 CHECK_OBJ(vsrc);
Jason Samsf24d7d02010-09-17 13:17:17 -0700204 static_cast<ObjectBase *>(vsrc)->incSysRef();
205 }
206 if (vdst[0]) {
Jason Sams605048a2010-09-30 18:15:52 -0700207 CHECK_OBJ(vdst[0]);
Jason Samsf24d7d02010-09-17 13:17:17 -0700208 static_cast<ObjectBase *>(vdst[0])->decSysRef();
209 }
Jason Samsc0936852010-08-16 12:41:48 -0700210 *vdst = vsrc;
Jason Samsf24d7d02010-09-17 13:17:17 -0700211 //LOGE("SC_setObject *");
Jason Samsc0936852010-08-16 12:41:48 -0700212}
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800213
Jason Samsc0936852010-08-16 12:41:48 -0700214static void SC_clearObject(void **vdst) {
Jason Samsf24d7d02010-09-17 13:17:17 -0700215 //LOGE("SC_clearObject %p,%p", vdst, *vdst);
216 if (vdst[0]) {
Jason Sams605048a2010-09-30 18:15:52 -0700217 CHECK_OBJ(vdst[0]);
Jason Samsf24d7d02010-09-17 13:17:17 -0700218 static_cast<ObjectBase *>(vdst[0])->decSysRef();
219 }
Jason Samsc0936852010-08-16 12:41:48 -0700220 *vdst = NULL;
Jason Samsf24d7d02010-09-17 13:17:17 -0700221 //LOGE("SC_clearObject *");
Jason Samsc0936852010-08-16 12:41:48 -0700222}
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800223
Jason Samsc0936852010-08-16 12:41:48 -0700224static bool SC_isObject(RsAllocation vsrc) {
225 return vsrc != NULL;
226}
227
Jason Sams22fa3712010-05-19 17:22:57 -0700228static void SC_debugF(const char *s, float f) {
Jason Samsfca82b12011-01-18 18:22:19 -0800229 LOGD("%s %f, 0x%08x", s, f, *((int *) (&f)));
Jason Samsc9d43db2009-07-28 12:02:16 -0700230}
Jason Sams7dce6bc2010-08-06 16:22:50 -0700231static void SC_debugFv2(const char *s, float f1, float f2) {
Jason Samsfca82b12011-01-18 18:22:19 -0800232 LOGD("%s {%f, %f}", s, f1, f2);
Romain Guy370ed152009-08-20 17:08:33 -0700233}
Jason Sams7dce6bc2010-08-06 16:22:50 -0700234static void SC_debugFv3(const char *s, float f1, float f2, float f3) {
Jason Samsfca82b12011-01-18 18:22:19 -0800235 LOGD("%s {%f, %f, %f}", s, f1, f2, f3);
Jason Samsc9d43db2009-07-28 12:02:16 -0700236}
Jason Sams7dce6bc2010-08-06 16:22:50 -0700237static void SC_debugFv4(const char *s, float f1, float f2, float f3, float f4) {
Jason Samsfca82b12011-01-18 18:22:19 -0800238 LOGD("%s {%f, %f, %f, %f}", s, f1, f2, f3, f4);
Jason Sams22fa3712010-05-19 17:22:57 -0700239}
Stephen Hinesdf097192010-10-15 12:47:49 -0700240static void SC_debugD(const char *s, double d) {
Jason Samsfca82b12011-01-18 18:22:19 -0800241 LOGD("%s %f, 0x%08llx", s, d, *((long long *) (&d)));
Stephen Hinesdf097192010-10-15 12:47:49 -0700242}
Jason Sams7dce6bc2010-08-06 16:22:50 -0700243static void SC_debugFM4v4(const char *s, const float *f) {
Jason Samsfca82b12011-01-18 18:22:19 -0800244 LOGD("%s {%f, %f, %f, %f", s, f[0], f[4], f[8], f[12]);
245 LOGD("%s %f, %f, %f, %f", s, f[1], f[5], f[9], f[13]);
246 LOGD("%s %f, %f, %f, %f", s, f[2], f[6], f[10], f[14]);
247 LOGD("%s %f, %f, %f, %f}", s, f[3], f[7], f[11], f[15]);
Jason Sams7dce6bc2010-08-06 16:22:50 -0700248}
249static void SC_debugFM3v3(const char *s, const float *f) {
Jason Samsfca82b12011-01-18 18:22:19 -0800250 LOGD("%s {%f, %f, %f", s, f[0], f[3], f[6]);
251 LOGD("%s %f, %f, %f", s, f[1], f[4], f[7]);
252 LOGD("%s %f, %f, %f}",s, f[2], f[5], f[8]);
Jason Sams7dce6bc2010-08-06 16:22:50 -0700253}
254static void SC_debugFM2v2(const char *s, const float *f) {
Jason Samsfca82b12011-01-18 18:22:19 -0800255 LOGD("%s {%f, %f", s, f[0], f[2]);
256 LOGD("%s %f, %f}",s, f[1], f[3]);
Jason Sams7dce6bc2010-08-06 16:22:50 -0700257}
258
Jason Sams22fa3712010-05-19 17:22:57 -0700259static void SC_debugI32(const char *s, int32_t i) {
Jason Samsfca82b12011-01-18 18:22:19 -0800260 LOGD("%s %i 0x%x", s, i, i);
Romain Guy370ed152009-08-20 17:08:33 -0700261}
Jason Samsef5867a2010-07-28 11:17:53 -0700262static void SC_debugU32(const char *s, uint32_t i) {
Jason Samsfca82b12011-01-18 18:22:19 -0800263 LOGD("%s %u 0x%x", s, i, i);
Stephen Hinesdf097192010-10-15 12:47:49 -0700264}
265static void SC_debugLL64(const char *s, long long ll) {
Jason Samsfca82b12011-01-18 18:22:19 -0800266 LOGD("%s %lld 0x%llx", s, ll, ll);
Stephen Hinesdf097192010-10-15 12:47:49 -0700267}
268static void SC_debugULL64(const char *s, unsigned long long ll) {
Jason Samsfca82b12011-01-18 18:22:19 -0800269 LOGD("%s %llu 0x%llx", s, ll, ll);
Jason Samsef5867a2010-07-28 11:17:53 -0700270}
Romain Guy370ed152009-08-20 17:08:33 -0700271
Jason Sams7bf29dd2010-07-19 15:38:19 -0700272static void SC_debugP(const char *s, const void *p) {
Jason Samsfca82b12011-01-18 18:22:19 -0800273 LOGD("%s %p", s, p);
Jason Sams7bf29dd2010-07-19 15:38:19 -0700274}
275
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800276static uint32_t SC_toClient2(int cmdID, void *data, int len) {
Jason Sams8c401ef2009-10-06 13:58:47 -0700277 GET_TLS();
Jason Samsef5867a2010-07-28 11:17:53 -0700278 //LOGE("SC_toClient %i %i %i", cmdID, len);
Jason Samsaad4bc52010-11-08 17:06:46 -0800279 return rsc->sendMessageToClient(data, RS_MESSAGE_TO_CLIENT_USER, cmdID, len, false);
Jason Sams8c401ef2009-10-06 13:58:47 -0700280}
281
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800282static uint32_t SC_toClient(int cmdID) {
Jason Sams3a27c952009-10-07 18:14:01 -0700283 GET_TLS();
Jason Samsef5867a2010-07-28 11:17:53 -0700284 //LOGE("SC_toClient %i", cmdID);
Jason Samsaad4bc52010-11-08 17:06:46 -0800285 return rsc->sendMessageToClient(NULL, RS_MESSAGE_TO_CLIENT_USER, cmdID, 0, false);
Jason Samsef5867a2010-07-28 11:17:53 -0700286}
287
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800288static uint32_t SC_toClientBlocking2(int cmdID, void *data, int len) {
Jason Samsef5867a2010-07-28 11:17:53 -0700289 GET_TLS();
290 //LOGE("SC_toClientBlocking %i %i", cmdID, len);
Jason Samsaad4bc52010-11-08 17:06:46 -0800291 return rsc->sendMessageToClient(data, RS_MESSAGE_TO_CLIENT_USER, cmdID, len, true);
Jason Samsef5867a2010-07-28 11:17:53 -0700292}
293
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800294static uint32_t SC_toClientBlocking(int cmdID) {
Jason Samsef5867a2010-07-28 11:17:53 -0700295 GET_TLS();
296 //LOGE("SC_toClientBlocking %i", cmdID);
Jason Samsaad4bc52010-11-08 17:06:46 -0800297 return rsc->sendMessageToClient(NULL, RS_MESSAGE_TO_CLIENT_USER, cmdID, 0, true);
Jason Sams3a27c952009-10-07 18:14:01 -0700298}
299
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800300int SC_divsi3(int a, int b) {
Jason Samsbe36bf32010-05-11 14:03:58 -0700301 return a / b;
302}
Jason Sams3a27c952009-10-07 18:14:01 -0700303
Bryan Mawhinneycb082a32010-11-11 14:33:12 +0000304int SC_modsi3(int a, int b) {
305 return a % b;
306}
307
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800308int SC_getAllocation(const void *ptr) {
Jason Samsce92d4b2010-05-17 14:55:34 -0700309 GET_TLS();
310 const Allocation *alloc = sc->ptrToAllocation(ptr);
311 return (int)alloc;
312}
313
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800314void SC_allocationMarkDirty(RsAllocation a) {
Alex Sakhartchouk1e5168d2010-09-01 16:34:48 -0700315 Allocation *alloc = static_cast<Allocation *>(a);
316 alloc->sendDirty();
317}
Jason Samsce92d4b2010-05-17 14:55:34 -0700318
Jason Samsace3e012010-07-15 17:11:13 -0700319void SC_ForEach(RsScript vs,
320 RsAllocation vin,
321 RsAllocation vout,
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800322 const void *usr) {
Jason Samsc61346b2010-05-28 18:23:22 -0700323 GET_TLS();
Jason Samsace3e012010-07-15 17:11:13 -0700324 const Allocation *ain = static_cast<const Allocation *>(vin);
Jason Samsc61346b2010-05-28 18:23:22 -0700325 Allocation *aout = static_cast<Allocation *>(vout);
Jason Samsace3e012010-07-15 17:11:13 -0700326 Script *s = static_cast<Script *>(vs);
327 s->runForEach(rsc, ain, aout, usr);
Jason Samsc61346b2010-05-28 18:23:22 -0700328}
329
Jason Samsace3e012010-07-15 17:11:13 -0700330void SC_ForEach2(RsScript vs,
331 RsAllocation vin,
332 RsAllocation vout,
333 const void *usr,
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800334 const RsScriptCall *call) {
Jason Samsc61346b2010-05-28 18:23:22 -0700335 GET_TLS();
Jason Samsace3e012010-07-15 17:11:13 -0700336 const Allocation *ain = static_cast<const Allocation *>(vin);
Jason Samsc61346b2010-05-28 18:23:22 -0700337 Allocation *aout = static_cast<Allocation *>(vout);
Jason Samsc61346b2010-05-28 18:23:22 -0700338 Script *s = static_cast<Script *>(vs);
Jason Samsace3e012010-07-15 17:11:13 -0700339 s->runForEach(rsc, ain, aout, usr, call);
Jason Samsc61346b2010-05-28 18:23:22 -0700340}
341
Jason Samse45ac6e2009-07-20 14:31:06 -0700342//////////////////////////////////////////////////////////////////////////////
343// Class implementation
344//////////////////////////////////////////////////////////////////////////////
345
Jason Samsbe36bf32010-05-11 14:03:58 -0700346// llvm name mangling ref
347// <builtin-type> ::= v # void
348// ::= b # bool
349// ::= c # char
350// ::= a # signed char
351// ::= h # unsigned char
352// ::= s # short
353// ::= t # unsigned short
354// ::= i # int
355// ::= j # unsigned int
356// ::= l # long
357// ::= m # unsigned long
358// ::= x # long long, __int64
359// ::= y # unsigned long long, __int64
360// ::= f # float
361// ::= d # double
Jason Samse45ac6e2009-07-20 14:31:06 -0700362
Jason Samsaeb094b2010-05-18 13:35:45 -0700363static ScriptCState::SymbolTable_t gSyms[] = {
Jason Sams6bfc1b92010-11-01 14:26:30 -0700364 { "__divsi3", (void *)&SC_divsi3, true },
Bryan Mawhinneycb082a32010-11-11 14:33:12 +0000365 { "__modsi3", (void *)&SC_modsi3, true },
Jason Samsbe36bf32010-05-11 14:03:58 -0700366
Jason Sams22fa3712010-05-19 17:22:57 -0700367 // allocation
Jason Sams6bfc1b92010-11-01 14:26:30 -0700368 { "_Z19rsAllocationGetDimX13rs_allocation", (void *)&SC_allocGetDimX, true },
369 { "_Z19rsAllocationGetDimY13rs_allocation", (void *)&SC_allocGetDimY, true },
370 { "_Z19rsAllocationGetDimZ13rs_allocation", (void *)&SC_allocGetDimZ, true },
371 { "_Z21rsAllocationGetDimLOD13rs_allocation", (void *)&SC_allocGetDimLOD, true },
372 { "_Z23rsAllocationGetDimFaces13rs_allocation", (void *)&SC_allocGetDimFaces, true },
373 { "_Z15rsGetAllocationPKv", (void *)&SC_getAllocation, true },
Jason Sams22fa3712010-05-19 17:22:57 -0700374
Jason Sams6bfc1b92010-11-01 14:26:30 -0700375 { "_Z14rsGetElementAt13rs_allocationj", (void *)&SC_getElementAtX, true },
376 { "_Z14rsGetElementAt13rs_allocationjj", (void *)&SC_getElementAtXY, true },
377 { "_Z14rsGetElementAt13rs_allocationjjj", (void *)&SC_getElementAtXYZ, true },
Jason Sams7bf29dd2010-07-19 15:38:19 -0700378
Jason Sams6bfc1b92010-11-01 14:26:30 -0700379 { "_Z11rsSetObjectP10rs_elementS_", (void *)&SC_setObject, true },
380 { "_Z13rsClearObjectP10rs_element", (void *)&SC_clearObject, true },
381 { "_Z10rsIsObject10rs_element", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700382
Jason Sams6bfc1b92010-11-01 14:26:30 -0700383 { "_Z11rsSetObjectP7rs_typeS_", (void *)&SC_setObject, true },
384 { "_Z13rsClearObjectP7rs_type", (void *)&SC_clearObject, true },
385 { "_Z10rsIsObject7rs_type", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700386
Jason Sams6bfc1b92010-11-01 14:26:30 -0700387 { "_Z11rsSetObjectP13rs_allocationS_", (void *)&SC_setObject, true },
388 { "_Z13rsClearObjectP13rs_allocation", (void *)&SC_clearObject, true },
389 { "_Z10rsIsObject13rs_allocation", (void *)&SC_isObject, true },
Jason Samsc0936852010-08-16 12:41:48 -0700390
Jason Sams6bfc1b92010-11-01 14:26:30 -0700391 { "_Z11rsSetObjectP10rs_samplerS_", (void *)&SC_setObject, true },
392 { "_Z13rsClearObjectP10rs_sampler", (void *)&SC_clearObject, true },
393 { "_Z10rsIsObject10rs_sampler", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700394
Jason Sams6bfc1b92010-11-01 14:26:30 -0700395 { "_Z11rsSetObjectP9rs_scriptS_", (void *)&SC_setObject, true },
396 { "_Z13rsClearObjectP9rs_script", (void *)&SC_clearObject, true },
397 { "_Z10rsIsObject9rs_script", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700398
Jason Sams6bfc1b92010-11-01 14:26:30 -0700399 { "_Z11rsSetObjectP7rs_meshS_", (void *)&SC_setObject, true },
400 { "_Z13rsClearObjectP7rs_mesh", (void *)&SC_clearObject, true },
401 { "_Z10rsIsObject7rs_mesh", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700402
Jason Sams6bfc1b92010-11-01 14:26:30 -0700403 { "_Z11rsSetObjectP19rs_program_fragmentS_", (void *)&SC_setObject, true },
404 { "_Z13rsClearObjectP19rs_program_fragment", (void *)&SC_clearObject, true },
405 { "_Z10rsIsObject19rs_program_fragment", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700406
Jason Sams6bfc1b92010-11-01 14:26:30 -0700407 { "_Z11rsSetObjectP17rs_program_vertexS_", (void *)&SC_setObject, true },
408 { "_Z13rsClearObjectP17rs_program_vertex", (void *)&SC_clearObject, true },
409 { "_Z10rsIsObject17rs_program_vertex", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700410
Jason Sams6bfc1b92010-11-01 14:26:30 -0700411 { "_Z11rsSetObjectP17rs_program_rasterS_", (void *)&SC_setObject, true },
412 { "_Z13rsClearObjectP17rs_program_raster", (void *)&SC_clearObject, true },
413 { "_Z10rsIsObject17rs_program_raster", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700414
Jason Sams6bfc1b92010-11-01 14:26:30 -0700415 { "_Z11rsSetObjectP16rs_program_storeS_", (void *)&SC_setObject, true },
416 { "_Z13rsClearObjectP16rs_program_store", (void *)&SC_clearObject, true },
417 { "_Z10rsIsObject16rs_program_store", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700418
Jason Sams6bfc1b92010-11-01 14:26:30 -0700419 { "_Z11rsSetObjectP7rs_fontS_", (void *)&SC_setObject, true },
420 { "_Z13rsClearObjectP7rs_font", (void *)&SC_clearObject, true },
421 { "_Z10rsIsObject7rs_font", (void *)&SC_isObject, true },
Jason Samsf24d7d02010-09-17 13:17:17 -0700422
423
Jason Sams6bfc1b92010-11-01 14:26:30 -0700424 { "_Z21rsAllocationMarkDirty13rs_allocation", (void *)&SC_allocationMarkDirty, true },
Alex Sakhartchouk1e5168d2010-09-01 16:34:48 -0700425
Jason Samsc0936852010-08-16 12:41:48 -0700426
Jason Sams22fa3712010-05-19 17:22:57 -0700427 // Debug
Jason Sams6bfc1b92010-11-01 14:26:30 -0700428 { "_Z7rsDebugPKcf", (void *)&SC_debugF, true },
429 { "_Z7rsDebugPKcff", (void *)&SC_debugFv2, true },
430 { "_Z7rsDebugPKcfff", (void *)&SC_debugFv3, true },
431 { "_Z7rsDebugPKcffff", (void *)&SC_debugFv4, true },
432 { "_Z7rsDebugPKcd", (void *)&SC_debugD, true },
433 { "_Z7rsDebugPKcPK12rs_matrix4x4", (void *)&SC_debugFM4v4, true },
434 { "_Z7rsDebugPKcPK12rs_matrix3x3", (void *)&SC_debugFM3v3, true },
435 { "_Z7rsDebugPKcPK12rs_matrix2x2", (void *)&SC_debugFM2v2, true },
436 { "_Z7rsDebugPKci", (void *)&SC_debugI32, true },
437 { "_Z7rsDebugPKcj", (void *)&SC_debugU32, true },
Stephen Hinesdf097192010-10-15 12:47:49 -0700438 // Both "long" and "unsigned long" need to be redirected to their
439 // 64-bit counterparts, since we have hacked Slang to use 64-bit
440 // for "long" on Arm (to be similar to Java).
Jason Sams6bfc1b92010-11-01 14:26:30 -0700441 { "_Z7rsDebugPKcl", (void *)&SC_debugLL64, true },
442 { "_Z7rsDebugPKcm", (void *)&SC_debugULL64, true },
443 { "_Z7rsDebugPKcx", (void *)&SC_debugLL64, true },
444 { "_Z7rsDebugPKcy", (void *)&SC_debugULL64, true },
445 { "_Z7rsDebugPKcPKv", (void *)&SC_debugP, true },
Jason Sams22fa3712010-05-19 17:22:57 -0700446
447 // RS Math
Jason Sams6bfc1b92010-11-01 14:26:30 -0700448 { "_Z6rsRandi", (void *)&SC_randi, true },
449 { "_Z6rsRandii", (void *)&SC_randi2, true },
450 { "_Z6rsRandf", (void *)&SC_randf, true },
451 { "_Z6rsRandff", (void *)&SC_randf2, true },
452 { "_Z6rsFracf", (void *)&SC_frac, true },
Jason Sams22fa3712010-05-19 17:22:57 -0700453
454 // time
Stephen Hinesca3f09c2011-01-07 15:11:30 -0800455 { "_Z6rsTimePi", (void *)&SC_time, true },
456 { "_Z11rsLocaltimeP5rs_tmPKi", (void *)&SC_localtime, true },
Jason Sams6bfc1b92010-11-01 14:26:30 -0700457 { "_Z14rsUptimeMillisv", (void*)&SC_uptimeMillis, true },
458 { "_Z13rsUptimeNanosv", (void*)&SC_uptimeNanos, true },
459 { "_Z7rsGetDtv", (void*)&SC_getDt, false },
Jason Sams22fa3712010-05-19 17:22:57 -0700460
Jason Sams6bfc1b92010-11-01 14:26:30 -0700461 { "_Z14rsSendToClienti", (void *)&SC_toClient, false },
462 { "_Z14rsSendToClientiPKvj", (void *)&SC_toClient2, false },
463 { "_Z22rsSendToClientBlockingi", (void *)&SC_toClientBlocking, false },
464 { "_Z22rsSendToClientBlockingiPKvj", (void *)&SC_toClientBlocking2, false },
Jason Sams22fa3712010-05-19 17:22:57 -0700465
Jason Sams6bfc1b92010-11-01 14:26:30 -0700466 { "_Z9rsForEach9rs_script13rs_allocationS0_PKv", (void *)&SC_ForEach, false },
467 //{ "_Z9rsForEach9rs_script13rs_allocationS0_PKv", (void *)&SC_ForEach2, true },
Jason Sams22fa3712010-05-19 17:22:57 -0700468
469////////////////////////////////////////////////////////////////////
470
Jason Sams6bfc1b92010-11-01 14:26:30 -0700471 //{ "sinf_fast", (void *)&SC_sinf_fast, true },
472 //{ "cosf_fast", (void *)&SC_cosf_fast, true },
Jason Samse45ac6e2009-07-20 14:31:06 -0700473
Jason Sams6bfc1b92010-11-01 14:26:30 -0700474 { NULL, NULL, false }
Jason Samse45ac6e2009-07-20 14:31:06 -0700475};
476
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800477const ScriptCState::SymbolTable_t * ScriptCState::lookupSymbol(const char *sym) {
Jason Samse45ac6e2009-07-20 14:31:06 -0700478 ScriptCState::SymbolTable_t *syms = gSyms;
479
480 while (syms->mPtr) {
481 if (!strcmp(syms->mName, sym)) {
482 return syms;
483 }
484 syms++;
485 }
486 return NULL;
487}