blob: cc9302118caad51748944b500acdf39865a7cde1 [file] [log] [blame]
Jason Samse45ac6e2009-07-20 14:31:06 -07001/*
Stephen Hines44199772012-02-21 20:13:12 -08002 * Copyright (C) 2009-2012 The Android Open Source Project
Jason Samse45ac6e2009-07-20 14:31:06 -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"
Jason Sams87fe59a2011-04-20 15:09:01 -070019#include "rsMatrix4x4.h"
20#include "rsMatrix3x3.h"
21#include "rsMatrix2x2.h"
Alex Sakhartchouk4edf0302012-03-09 10:47:27 -080022#include "rsgApiStructs.h"
Jason Samse45ac6e2009-07-20 14:31:06 -070023
Stephen Hinesb0934b62013-07-03 17:27:38 -070024#if !defined(RS_SERVER) && !defined(RS_COMPATIBILITY_LIB)
Joe Onorato9c4e4ca2009-08-09 11:39:02 -070025#include "utils/Timers.h"
Tim Murray0b575de2013-03-15 15:56:43 -070026#endif
Jason Samse45ac6e2009-07-20 14:31:06 -070027
Romain Guy98e10fd2009-07-30 18:45:01 -070028#include <time.h>
Romain Guy98e10fd2009-07-30 18:45:01 -070029
Jason Samse45ac6e2009-07-20 14:31:06 -070030using namespace android;
31using namespace android::renderscript;
32
Jason Sams87fe59a2011-04-20 15:09:01 -070033
34namespace android {
35namespace renderscript {
Jason Samse45ac6e2009-07-20 14:31:06 -070036
Jason Samsbe36bf32010-05-11 14:03:58 -070037
Jason Samse45ac6e2009-07-20 14:31:06 -070038//////////////////////////////////////////////////////////////////////////////
39// Math routines
40//////////////////////////////////////////////////////////////////////////////
41
Stephen Hines196c1112011-03-01 17:34:59 -080042#if 0
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080043static float SC_sinf_fast(float x) {
Romain Guy2275d632009-08-18 11:39:17 -070044 const float A = 1.0f / (2.0f * M_PI);
45 const float B = -16.0f;
46 const float C = 8.0f;
Jason Samsa57c0a72009-09-04 14:42:41 -070047
Romain Guy2275d632009-08-18 11:39:17 -070048 // scale angle for easy argument reduction
49 x *= A;
Jason Samsa57c0a72009-09-04 14:42:41 -070050
Romain Guy2275d632009-08-18 11:39:17 -070051 if (fabsf(x) >= 0.5f) {
52 // argument reduction
53 x = x - ceilf(x + 0.5f) + 1.0f;
54 }
Jason Samsa57c0a72009-09-04 14:42:41 -070055
Romain Guy2275d632009-08-18 11:39:17 -070056 const float y = B * x * fabsf(x) + C * x;
57 return 0.2215f * (y * fabsf(y) - y) + y;
58}
59
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080060static float SC_cosf_fast(float x) {
Romain Guy2275d632009-08-18 11:39:17 -070061 x += float(M_PI / 2);
62
63 const float A = 1.0f / (2.0f * M_PI);
64 const float B = -16.0f;
65 const float C = 8.0f;
Jason Samsa57c0a72009-09-04 14:42:41 -070066
Romain Guy2275d632009-08-18 11:39:17 -070067 // scale angle for easy argument reduction
68 x *= A;
Jason Samsa57c0a72009-09-04 14:42:41 -070069
Romain Guy2275d632009-08-18 11:39:17 -070070 if (fabsf(x) >= 0.5f) {
71 // argument reduction
72 x = x - ceilf(x + 0.5f) + 1.0f;
73 }
Jason Samsa57c0a72009-09-04 14:42:41 -070074
Romain Guy2275d632009-08-18 11:39:17 -070075 const float y = B * x * fabsf(x) + C * x;
76 return 0.2215f * (y * fabsf(y) - y) + y;
77}
Stephen Hines196c1112011-03-01 17:34:59 -080078#endif
Romain Guy2275d632009-08-18 11:39:17 -070079
Romain Guy98e10fd2009-07-30 18:45:01 -070080//////////////////////////////////////////////////////////////////////////////
81// Time routines
82//////////////////////////////////////////////////////////////////////////////
Jason Samse45ac6e2009-07-20 14:31:06 -070083
Jason Sams709a0972012-11-15 18:18:04 -080084time_t rsrTime(Context *rsc, time_t *timer) {
Stephen Hinesca3f09c2011-01-07 15:11:30 -080085 return time(timer);
Romain Guy98e10fd2009-07-30 18:45:01 -070086}
87
Jason Sams709a0972012-11-15 18:18:04 -080088tm* rsrLocalTime(Context *rsc, tm *local, time_t *timer) {
Stephen Hinesca3f09c2011-01-07 15:11:30 -080089 if (!local) {
Chris Wailes44bef6f2014-08-12 13:51:10 -070090 return nullptr;
Stephen Hinesca3f09c2011-01-07 15:11:30 -080091 }
Jason Samse5ffb872009-08-09 17:01:55 -070092
Stephen Hinesca3f09c2011-01-07 15:11:30 -080093 // The native localtime function is not thread-safe, so we
94 // have to apply locking for proper behavior in RenderScript.
95 pthread_mutex_lock(&rsc->gLibMutex);
96 tm *tmp = localtime(timer);
Jason Sams110f1812013-03-14 16:02:18 -070097 memcpy(local, tmp, sizeof(int)*9);
Stephen Hinesca3f09c2011-01-07 15:11:30 -080098 pthread_mutex_unlock(&rsc->gLibMutex);
99 return local;
Romain Guy39dbc802009-07-31 11:20:59 -0700100}
101
Jason Sams709a0972012-11-15 18:18:04 -0800102int64_t rsrUptimeMillis(Context *rsc) {
Tim Murray0b575de2013-03-15 15:56:43 -0700103#ifndef RS_SERVER
Jason Sams22fa3712010-05-19 17:22:57 -0700104 return nanoseconds_to_milliseconds(systemTime(SYSTEM_TIME_MONOTONIC));
Tim Murray0b575de2013-03-15 15:56:43 -0700105#else
106 return 0;
107#endif
Jason Sams22fa3712010-05-19 17:22:57 -0700108}
109
Jason Sams709a0972012-11-15 18:18:04 -0800110int64_t rsrUptimeNanos(Context *rsc) {
Tim Murray0b575de2013-03-15 15:56:43 -0700111#ifndef RS_SERVER
Jason Sams73495472010-07-29 17:31:14 -0700112 return systemTime(SYSTEM_TIME_MONOTONIC);
Tim Murray0b575de2013-03-15 15:56:43 -0700113#else
114 return 0;
115#endif
Jason Sams22fa3712010-05-19 17:22:57 -0700116}
117
Jason Sams709a0972012-11-15 18:18:04 -0800118float rsrGetDt(Context *rsc, const Script *sc) {
Tim Murray0b575de2013-03-15 15:56:43 -0700119#ifndef RS_SERVER
Jason Samsef5867a2010-07-28 11:17:53 -0700120 int64_t l = sc->mEnviroment.mLastDtTime;
121 sc->mEnviroment.mLastDtTime = systemTime(SYSTEM_TIME_MONOTONIC);
122 return ((float)(sc->mEnviroment.mLastDtTime - l)) / 1.0e9;
Tim Murray0b575de2013-03-15 15:56:43 -0700123#else
124 return 0.f;
125#endif
Jason Samse45ac6e2009-07-20 14:31:06 -0700126}
127
Jason Samse45ac6e2009-07-20 14:31:06 -0700128//////////////////////////////////////////////////////////////////////////////
129//
130//////////////////////////////////////////////////////////////////////////////
131
Jason Samsa36c50a2014-06-17 12:06:06 -0700132static void SetObjectRef(const Context *rsc, const ObjectBase *dst, const ObjectBase *src) {
133 //ALOGE("setObjectRef %p,%p %p", rsc, dst, src);
Jason Samsbad80742011-03-16 16:29:28 -0700134 if (src) {
135 CHECK_OBJ(src);
136 src->incSysRef();
Jason Samsf24d7d02010-09-17 13:17:17 -0700137 }
Jason Samsa36c50a2014-06-17 12:06:06 -0700138 if (dst) {
139 CHECK_OBJ(dst);
140 dst->decSysRef();
Jason Samsf24d7d02010-09-17 13:17:17 -0700141 }
Jason Samsc0936852010-08-16 12:41:48 -0700142}
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800143
Jason Sams05ef73f2014-08-05 14:59:22 -0700144// Legacy, remove when drivers are updated
Jason Samsa36c50a2014-06-17 12:06:06 -0700145void rsrClearObject(const Context *rsc, void *dst) {
146 ObjectBase **odst = (ObjectBase **)dst;
Jason Sams0c772022015-04-14 17:27:39 -0700147 if (ObjectBase::gDebugReferences) {
148 ALOGE("rsrClearObject %p,%p", odst, *odst);
149 }
Jason Samsa36c50a2014-06-17 12:06:06 -0700150 if (odst[0]) {
151 CHECK_OBJ(odst[0]);
152 odst[0]->decSysRef();
153 }
Chris Wailes44bef6f2014-08-12 13:51:10 -0700154 *odst = nullptr;
Jason Samsc0936852010-08-16 12:41:48 -0700155}
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -0800156
Jason Sams05ef73f2014-08-05 14:59:22 -0700157void rsrClearObject(const Context *rsc, rs_object_base *dst) {
Jason Sams0c772022015-04-14 17:27:39 -0700158 if (ObjectBase::gDebugReferences) {
159 ALOGE("rsrClearObject %p,%p", dst, dst->p);
160 }
Jason Sams05ef73f2014-08-05 14:59:22 -0700161 if (dst->p) {
162 CHECK_OBJ(dst->p);
163 dst->p->decSysRef();
164 }
Chris Wailes44bef6f2014-08-12 13:51:10 -0700165 dst->p = nullptr;
Jason Sams05ef73f2014-08-05 14:59:22 -0700166}
167
168// Legacy, remove when drivers are updated
Jason Sams0c772022015-04-14 17:27:39 -0700169void rsrSetObject(const Context *rsc, void *dst, ObjectBase *src) {
170 if (src == nullptr) {
171 rsrClearObject(rsc, dst);
172 return;
173 }
174
175 ObjectBase **odst = (ObjectBase **)dst;
176 if (ObjectBase::gDebugReferences) {
177 ALOGE("rsrSetObject (base) %p,%p %p", dst, *odst, src);
178 }
179 SetObjectRef(rsc, odst[0], src);
180 src->callUpdateCacheObject(rsc, dst);
181}
182
183void rsrSetObject(const Context *rsc, rs_object_base *dst, const ObjectBase *src) {
184 if (src == nullptr) {
185 rsrClearObject(rsc, dst);
186 return;
187 }
188
189 ObjectBase **odst = (ObjectBase **)dst;
190 if (ObjectBase::gDebugReferences) {
191 ALOGE("rsrSetObject (base) %p,%p %p", dst, *odst, src);
192 }
193 SetObjectRef(rsc, odst[0], src);
194 src->callUpdateCacheObject(rsc, dst);
195}
196
197// Legacy, remove when drivers are updated
Tim Murray6a45ddb2014-08-06 11:49:02 -0700198bool rsrIsObject(const Context *, ObjectBase* src) {
Jason Sams05ef73f2014-08-05 14:59:22 -0700199 ObjectBase **osrc = (ObjectBase **)src;
Chris Wailes44bef6f2014-08-12 13:51:10 -0700200 return osrc != nullptr;
Jason Sams05ef73f2014-08-05 14:59:22 -0700201}
202
203bool rsrIsObject(const Context *rsc, rs_object_base o) {
Chris Wailes44bef6f2014-08-12 13:51:10 -0700204 return o.p != nullptr;
Jason Samsc0936852010-08-16 12:41:48 -0700205}
206
Jason Sams7dce6bc2010-08-06 16:22:50 -0700207
Tim Murray6a45ddb2014-08-06 11:49:02 -0700208
Stephen Hines276000a2013-12-03 09:33:32 -0800209uint32_t rsrToClient(Context *rsc, int cmdID, const void *data, int len) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000210 //ALOGE("SC_toClient %i %i %i", cmdID, len);
Jason Samsaad4bc52010-11-08 17:06:46 -0800211 return rsc->sendMessageToClient(data, RS_MESSAGE_TO_CLIENT_USER, cmdID, len, false);
Jason Sams8c401ef2009-10-06 13:58:47 -0700212}
213
Stephen Hines276000a2013-12-03 09:33:32 -0800214uint32_t rsrToClientBlocking(Context *rsc, int cmdID, const void *data, int len) {
Steve Blockaf12ac62012-01-06 19:20:56 +0000215 //ALOGE("SC_toClientBlocking %i %i", cmdID, len);
Jason Samsaad4bc52010-11-08 17:06:46 -0800216 return rsc->sendMessageToClient(data, RS_MESSAGE_TO_CLIENT_USER, cmdID, len, true);
Jason Samsef5867a2010-07-28 11:17:53 -0700217}
218
Stephen Hines70537f52013-12-03 16:44:44 -0800219// Keep these two routines (using non-const void pointers) so that we can
220// still use existing GPU drivers.
221uint32_t rsrToClient(Context *rsc, int cmdID, void *data, int len) {
222 return rsrToClient(rsc, cmdID, (const void *)data, len);
223}
224
225uint32_t rsrToClientBlocking(Context *rsc, int cmdID, void *data, int len) {
226 return rsrToClientBlocking(rsc, cmdID, (const void *)data, len);
227}
228
Jason Samsddceab92013-08-07 13:02:32 -0700229void rsrAllocationIoSend(Context *rsc, Allocation *src) {
230 src->ioSend(rsc);
231}
232
233void rsrAllocationIoReceive(Context *rsc, Allocation *src) {
234 src->ioReceive(rsc);
235}
Jason Sams3a27c952009-10-07 18:14:01 -0700236
Jason Sams709a0972012-11-15 18:18:04 -0800237void rsrForEach(Context *rsc,
Jason Sams87fe59a2011-04-20 15:09:01 -0700238 Script *target,
239 Allocation *in, Allocation *out,
240 const void *usr, uint32_t usrBytes,
Stephen Hines5d95a782015-04-13 20:11:48 -0700241 const RsScriptCall *call,
242 const Script *callingScript) {
243
244 RsScriptCall c, *cptr = nullptr;
245 memset(&c, 0, sizeof(c));
246 if (call != nullptr) {
247 cptr = &c;
248 if (callingScript->getApiLevel() < 23) {
249 // Up to API 23, the structure was smaller and we need to zero extend
250 memcpy(&c, call, 7*4);
251 } else {
252 c = *call;
253 }
254 }
Chris Wailesf3712132014-07-16 15:18:30 -0700255
Chris Wailes44bef6f2014-08-12 13:51:10 -0700256 if (in == nullptr) {
257 target->runForEach(rsc, /* root slot */ 0, nullptr, 0, out, usr,
Stephen Hines5d95a782015-04-13 20:11:48 -0700258 usrBytes, cptr);
Chris Wailesf3712132014-07-16 15:18:30 -0700259
260 } else {
261 const Allocation *ins[1] = {in};
262 target->runForEach(rsc, /* root slot */ 0, ins,
263 sizeof(ins) / sizeof(RsAllocation), out, usr,
Stephen Hines5d95a782015-04-13 20:11:48 -0700264 usrBytes, cptr);
Chris Wailesf3712132014-07-16 15:18:30 -0700265 }
Jason Samsc61346b2010-05-28 18:23:22 -0700266}
267
Jason Sams709a0972012-11-15 18:18:04 -0800268void rsrAllocationSyncAll(Context *rsc, Allocation *a, RsAllocationUsageType usage) {
Jason Sams87fe59a2011-04-20 15:09:01 -0700269 a->syncAll(rsc, usage);
Jason Sams693080e2011-01-25 21:33:44 -0800270}
271
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700272void rsrAllocationCopy1DRange(Context *rsc, Allocation *dstAlloc,
273 uint32_t dstOff,
274 uint32_t dstMip,
275 uint32_t count,
276 Allocation *srcAlloc,
277 uint32_t srcOff, uint32_t srcMip) {
278 rsi_AllocationCopy2DRange(rsc, dstAlloc, dstOff, 0,
279 dstMip, 0, count, 1,
280 srcAlloc, srcOff, 0, srcMip, 0);
281}
282
283void rsrAllocationCopy2DRange(Context *rsc, Allocation *dstAlloc,
284 uint32_t dstXoff, uint32_t dstYoff,
285 uint32_t dstMip, uint32_t dstFace,
286 uint32_t width, uint32_t height,
287 Allocation *srcAlloc,
288 uint32_t srcXoff, uint32_t srcYoff,
289 uint32_t srcMip, uint32_t srcFace) {
290 rsi_AllocationCopy2DRange(rsc, dstAlloc, dstXoff, dstYoff,
291 dstMip, dstFace, width, height,
292 srcAlloc, srcXoff, srcYoff, srcMip, srcFace);
293}
294
Jason Sams693080e2011-01-25 21:33:44 -0800295
Jason Sams693080e2011-01-25 21:33:44 -0800296}
Jason Samse45ac6e2009-07-20 14:31:06 -0700297}