2009-05-22 14:03:28 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rsContext.h"
|
|
|
|
#include "rsScriptC.h"
|
|
|
|
#include "rsMatrix.h"
|
2010-05-11 14:03:58 -07:00
|
|
|
#include "../../../external/llvm/libbcc/include/bcc/bcc.h"
|
2009-08-09 11:39:02 -07:00
|
|
|
#include "utils/Timers.h"
|
2009-05-28 15:53:04 -07:00
|
|
|
|
2009-06-22 17:15:15 -07:00
|
|
|
#include <GLES/gl.h>
|
|
|
|
#include <GLES/glext.h>
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
using namespace android;
|
|
|
|
using namespace android::renderscript;
|
|
|
|
|
2009-06-19 16:03:18 -07:00
|
|
|
#define GET_TLS() Context::ScriptTLSStruct * tls = \
|
|
|
|
(Context::ScriptTLSStruct *)pthread_getspecific(Context::gThreadTLSKey); \
|
|
|
|
Context * rsc = tls->mContext; \
|
|
|
|
ScriptC * sc = (ScriptC *) tls->mScript
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2009-09-25 14:51:22 -07:00
|
|
|
ScriptC::ScriptC(Context *rsc) : Script(rsc)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2009-09-25 16:37:33 -07:00
|
|
|
mAllocFile = __FILE__;
|
|
|
|
mAllocLine = __LINE__;
|
2010-05-11 14:03:58 -07:00
|
|
|
mBccScript = NULL;
|
2009-06-08 15:20:31 -07:00
|
|
|
memset(&mProgram, 0, sizeof(mProgram));
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ScriptC::~ScriptC()
|
|
|
|
{
|
2010-05-11 14:03:58 -07:00
|
|
|
if (mBccScript) {
|
|
|
|
bccDeleteScript(mBccScript);
|
2009-05-28 15:53:04 -07:00
|
|
|
}
|
2009-11-03 11:25:42 -08:00
|
|
|
free(mEnviroment.mScriptText);
|
|
|
|
mEnviroment.mScriptText = NULL;
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2010-05-28 18:23:22 -07:00
|
|
|
void ScriptC::setupScript(Context *rsc)
|
2009-09-24 14:55:38 -07:00
|
|
|
{
|
2010-05-28 18:23:22 -07:00
|
|
|
setupGLState(rsc);
|
|
|
|
mEnviroment.mStartTimeMillis
|
|
|
|
= nanoseconds_to_milliseconds(systemTime(SYSTEM_TIME_MONOTONIC));
|
|
|
|
|
2010-05-11 14:03:58 -07:00
|
|
|
for (uint32_t ct=0; ct < mEnviroment.mFieldCount; ct++) {
|
|
|
|
if (!mSlots[ct].get())
|
|
|
|
continue;
|
|
|
|
void *ptr = mSlots[ct]->getPtr();
|
|
|
|
void **dest = ((void ***)mEnviroment.mFieldAddress)[ct];
|
|
|
|
//LOGE("setupScript %i %p = %p %p %i", ct, dest, ptr, mSlots[ct]->getType(), mSlots[ct]->getType()->getDimX());
|
|
|
|
|
|
|
|
//const uint32_t *p32 = (const uint32_t *)ptr;
|
|
|
|
//for (uint32_t ct2=0; ct2 < mSlots[ct]->getType()->getDimX(); ct2++) {
|
|
|
|
//LOGE(" %i = 0x%08x ", ct2, p32[ct2]);
|
|
|
|
//}
|
|
|
|
|
|
|
|
if (dest) {
|
|
|
|
*dest = ptr;
|
|
|
|
} else {
|
|
|
|
LOGE("ScriptC::setupScript, NULL var binding address.");
|
2009-09-24 14:55:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-17 14:55:34 -07:00
|
|
|
const Allocation *ScriptC::ptrToAllocation(const void *ptr) const
|
|
|
|
{
|
|
|
|
if (!ptr) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (uint32_t ct=0; ct < mEnviroment.mFieldCount; ct++) {
|
|
|
|
if (!mSlots[ct].get())
|
|
|
|
continue;
|
|
|
|
if (mSlots[ct]->getPtr() == ptr) {
|
|
|
|
return mSlots[ct].get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOGE("ScriptC::ptrToAllocation, failed to find %p", ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-28 18:23:22 -07:00
|
|
|
Script * ScriptC::setTLS(Script *sc)
|
2010-05-19 17:22:57 -07:00
|
|
|
{
|
|
|
|
Context::ScriptTLSStruct * tls = (Context::ScriptTLSStruct *)
|
|
|
|
pthread_getspecific(Context::gThreadTLSKey);
|
|
|
|
rsAssert(tls);
|
2010-05-28 18:23:22 -07:00
|
|
|
Script *old = tls->mScript;
|
|
|
|
tls->mScript = sc;
|
|
|
|
return old;
|
2010-05-19 17:22:57 -07:00
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
|
2010-05-28 18:23:22 -07:00
|
|
|
void ScriptC::setupGLState(Context *rsc)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2009-06-10 15:04:38 -07:00
|
|
|
if (mEnviroment.mFragmentStore.get()) {
|
|
|
|
rsc->setFragmentStore(mEnviroment.mFragmentStore.get());
|
|
|
|
}
|
|
|
|
if (mEnviroment.mFragment.get()) {
|
|
|
|
rsc->setFragment(mEnviroment.mFragment.get());
|
|
|
|
}
|
2009-06-17 16:52:59 -07:00
|
|
|
if (mEnviroment.mVertex.get()) {
|
|
|
|
rsc->setVertex(mEnviroment.mVertex.get());
|
|
|
|
}
|
2009-09-28 18:12:56 -07:00
|
|
|
if (mEnviroment.mRaster.get()) {
|
|
|
|
rsc->setRaster(mEnviroment.mRaster.get());
|
|
|
|
}
|
2010-05-28 18:23:22 -07:00
|
|
|
}
|
2009-06-10 15:04:38 -07:00
|
|
|
|
2010-05-28 18:23:22 -07:00
|
|
|
uint32_t ScriptC::run(Context *rsc)
|
|
|
|
{
|
|
|
|
if (mProgram.mRoot == NULL) {
|
|
|
|
rsc->setError(RS_ERROR_BAD_SCRIPT, "Attempted to run bad script");
|
|
|
|
return 0;
|
2009-08-09 11:39:02 -07:00
|
|
|
}
|
2010-05-28 18:23:22 -07:00
|
|
|
|
|
|
|
setupScript(rsc);
|
2009-09-03 15:43:13 -07:00
|
|
|
|
2009-12-09 11:05:45 -08:00
|
|
|
uint32_t ret = 0;
|
2010-05-28 18:23:22 -07:00
|
|
|
Script * oldTLS = setTLS(this);
|
2010-05-11 14:03:58 -07:00
|
|
|
//LOGE("ScriptC::run %p", mProgram.mRoot);
|
|
|
|
ret = mProgram.mRoot();
|
2010-05-28 18:23:22 -07:00
|
|
|
setTLS(oldTLS);
|
2010-05-11 14:03:58 -07:00
|
|
|
//LOGE("ScriptC::run ret %i", ret);
|
2009-07-20 14:31:06 -07:00
|
|
|
return ret;
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2010-05-28 18:23:22 -07:00
|
|
|
|
2010-07-19 15:38:19 -07:00
|
|
|
typedef struct {
|
|
|
|
Context *rsc;
|
|
|
|
ScriptC *script;
|
|
|
|
const Allocation * ain;
|
|
|
|
Allocation * aout;
|
|
|
|
const void * usr;
|
|
|
|
|
|
|
|
uint32_t mSliceSize;
|
|
|
|
volatile int mSliceNum;
|
|
|
|
|
|
|
|
const uint8_t *ptrIn;
|
|
|
|
uint32_t eStrideIn;
|
|
|
|
uint8_t *ptrOut;
|
|
|
|
uint32_t eStrideOut;
|
|
|
|
|
|
|
|
uint32_t xStart;
|
|
|
|
uint32_t xEnd;
|
|
|
|
uint32_t yStart;
|
|
|
|
uint32_t yEnd;
|
|
|
|
uint32_t zStart;
|
|
|
|
uint32_t zEnd;
|
|
|
|
uint32_t arrayStart;
|
|
|
|
uint32_t arrayEnd;
|
|
|
|
|
|
|
|
uint32_t dimX;
|
|
|
|
uint32_t dimY;
|
|
|
|
uint32_t dimZ;
|
|
|
|
uint32_t dimArray;
|
|
|
|
} MTLaunchStruct;
|
|
|
|
typedef int (*rs_t)(const void *, void *, const void *, uint32_t, uint32_t, uint32_t, uint32_t);
|
|
|
|
|
|
|
|
static void wc_xy(void *usr, uint32_t idx)
|
|
|
|
{
|
|
|
|
MTLaunchStruct *mtls = (MTLaunchStruct *)usr;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
uint32_t slice = (uint32_t)android_atomic_inc(&mtls->mSliceNum);
|
|
|
|
uint32_t yStart = mtls->yStart + slice * mtls->mSliceSize;
|
|
|
|
uint32_t yEnd = yStart + mtls->mSliceSize;
|
|
|
|
yEnd = rsMin(yEnd, mtls->yEnd);
|
|
|
|
if (yEnd <= yStart) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//LOGE("usr idx %i, x %i,%i y %i,%i", idx, mtls->xStart, mtls->xEnd, yStart, yEnd);
|
|
|
|
|
|
|
|
for (uint32_t y = yStart; y < yEnd; y++) {
|
|
|
|
uint32_t offset = mtls->dimX * y;
|
|
|
|
uint8_t *xPtrOut = mtls->ptrOut + (mtls->eStrideOut * offset);
|
|
|
|
const uint8_t *xPtrIn = mtls->ptrIn + (mtls->eStrideIn * offset);
|
|
|
|
|
|
|
|
for (uint32_t x = mtls->xStart; x < mtls->xEnd; x++) {
|
|
|
|
((rs_t)mtls->script->mProgram.mRoot) (xPtrIn, xPtrOut, mtls->usr, x, y, 0, 0);
|
|
|
|
xPtrIn += mtls->eStrideIn;
|
|
|
|
xPtrOut += mtls->eStrideOut;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-07-15 17:11:13 -07:00
|
|
|
void ScriptC::runForEach(Context *rsc,
|
|
|
|
const Allocation * ain,
|
|
|
|
Allocation * aout,
|
|
|
|
const void * usr,
|
|
|
|
const RsScriptCall *sc)
|
2010-05-28 18:23:22 -07:00
|
|
|
{
|
2010-07-19 15:38:19 -07:00
|
|
|
MTLaunchStruct mtls;
|
|
|
|
memset(&mtls, 0, sizeof(mtls));
|
|
|
|
|
|
|
|
if (ain) {
|
|
|
|
mtls.dimX = ain->getType()->getDimX();
|
|
|
|
mtls.dimY = ain->getType()->getDimY();
|
|
|
|
mtls.dimZ = ain->getType()->getDimZ();
|
|
|
|
//mtls.dimArray = ain->getType()->getDimArray();
|
|
|
|
} else if (aout) {
|
|
|
|
mtls.dimX = aout->getType()->getDimX();
|
|
|
|
mtls.dimY = aout->getType()->getDimY();
|
|
|
|
mtls.dimZ = aout->getType()->getDimZ();
|
|
|
|
//mtls.dimArray = aout->getType()->getDimArray();
|
|
|
|
} else {
|
|
|
|
rsc->setError(RS_ERROR_BAD_SCRIPT, "rsForEach called with null allocations");
|
|
|
|
return;
|
|
|
|
}
|
2010-07-15 17:11:13 -07:00
|
|
|
|
|
|
|
if (!sc || (sc->xEnd == 0)) {
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.xEnd = mtls.dimX;
|
2010-07-15 17:11:13 -07:00
|
|
|
} else {
|
2010-07-19 15:38:19 -07:00
|
|
|
rsAssert(sc->xStart < mtls.dimX);
|
|
|
|
rsAssert(sc->xEnd <= mtls.dimX);
|
2010-07-15 17:11:13 -07:00
|
|
|
rsAssert(sc->xStart < sc->xEnd);
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.xStart = rsMin(mtls.dimX, sc->xStart);
|
|
|
|
mtls.xEnd = rsMin(mtls.dimX, sc->xEnd);
|
|
|
|
if (mtls.xStart >= mtls.xEnd) return;
|
2010-07-15 17:11:13 -07:00
|
|
|
}
|
2010-05-28 18:23:22 -07:00
|
|
|
|
2010-07-15 17:11:13 -07:00
|
|
|
if (!sc || (sc->yEnd == 0)) {
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.yEnd = mtls.dimY;
|
2010-07-15 17:11:13 -07:00
|
|
|
} else {
|
2010-07-19 15:38:19 -07:00
|
|
|
rsAssert(sc->yStart < mtls.dimY);
|
|
|
|
rsAssert(sc->yEnd <= mtls.dimY);
|
2010-07-15 17:11:13 -07:00
|
|
|
rsAssert(sc->yStart < sc->yEnd);
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.yStart = rsMin(mtls.dimY, sc->yStart);
|
|
|
|
mtls.yEnd = rsMin(mtls.dimY, sc->yEnd);
|
|
|
|
if (mtls.yStart >= mtls.yEnd) return;
|
2010-07-15 17:11:13 -07:00
|
|
|
}
|
|
|
|
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.xEnd = rsMax((uint32_t)1, mtls.xEnd);
|
|
|
|
mtls.yEnd = rsMax((uint32_t)1, mtls.yEnd);
|
|
|
|
mtls.zEnd = rsMax((uint32_t)1, mtls.zEnd);
|
|
|
|
mtls.arrayEnd = rsMax((uint32_t)1, mtls.arrayEnd);
|
2010-07-15 17:11:13 -07:00
|
|
|
|
|
|
|
rsAssert(ain->getType()->getDimZ() == 0);
|
2010-05-28 18:23:22 -07:00
|
|
|
|
|
|
|
setupScript(rsc);
|
|
|
|
Script * oldTLS = setTLS(this);
|
|
|
|
|
2010-07-15 17:11:13 -07:00
|
|
|
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.rsc = rsc;
|
|
|
|
mtls.ain = ain;
|
|
|
|
mtls.aout = aout;
|
|
|
|
mtls.script = this;
|
|
|
|
mtls.usr = usr;
|
|
|
|
mtls.mSliceSize = 10;
|
|
|
|
mtls.mSliceNum = 0;
|
|
|
|
|
|
|
|
mtls.ptrIn = NULL;
|
|
|
|
mtls.eStrideIn = 0;
|
|
|
|
if (ain) {
|
|
|
|
mtls.ptrIn = (const uint8_t *)ain->getPtr();
|
|
|
|
mtls.eStrideIn = ain->getType()->getElementSizeBytes();
|
|
|
|
}
|
2010-05-28 18:23:22 -07:00
|
|
|
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.ptrOut = NULL;
|
|
|
|
mtls.eStrideOut = 0;
|
2010-05-28 18:23:22 -07:00
|
|
|
if (aout) {
|
2010-07-19 15:38:19 -07:00
|
|
|
mtls.ptrOut = (uint8_t *)aout->getPtr();
|
|
|
|
mtls.eStrideOut = aout->getType()->getElementSizeBytes();
|
2010-05-28 18:23:22 -07:00
|
|
|
}
|
|
|
|
|
2010-07-19 15:38:19 -07:00
|
|
|
|
2010-08-11 13:26:28 -07:00
|
|
|
if ((rsc->getWorkerPoolSize() > 1) && mEnviroment.mIsThreadable &&
|
2010-07-20 15:09:00 -07:00
|
|
|
((mtls.dimY * mtls.dimZ * mtls.dimArray) > 1)) {
|
2010-07-19 15:38:19 -07:00
|
|
|
|
2010-07-20 15:09:00 -07:00
|
|
|
//LOGE("launch 1");
|
|
|
|
rsc->launchThreads(wc_xy, &mtls);
|
|
|
|
//LOGE("launch 2");
|
|
|
|
} else {
|
|
|
|
for (uint32_t ar = mtls.arrayStart; ar < mtls.arrayEnd; ar++) {
|
|
|
|
for (uint32_t z = mtls.zStart; z < mtls.zEnd; z++) {
|
|
|
|
for (uint32_t y = mtls.yStart; y < mtls.yEnd; y++) {
|
|
|
|
uint32_t offset = mtls.dimX * mtls.dimY * mtls.dimZ * ar +
|
|
|
|
mtls.dimX * mtls.dimY * z +
|
|
|
|
mtls.dimX * y;
|
|
|
|
uint8_t *xPtrOut = mtls.ptrOut + (mtls.eStrideOut * offset);
|
|
|
|
const uint8_t *xPtrIn = mtls.ptrIn + (mtls.eStrideIn * offset);
|
|
|
|
|
|
|
|
for (uint32_t x = mtls.xStart; x < mtls.xEnd; x++) {
|
|
|
|
((rs_t)mProgram.mRoot) (xPtrIn, xPtrOut, usr, x, y, z, ar);
|
|
|
|
xPtrIn += mtls.eStrideIn;
|
|
|
|
xPtrOut += mtls.eStrideOut;
|
|
|
|
}
|
2010-07-15 17:11:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-28 18:23:22 -07:00
|
|
|
}
|
2010-07-20 15:09:00 -07:00
|
|
|
|
2010-05-28 18:23:22 -07:00
|
|
|
setTLS(oldTLS);
|
|
|
|
}
|
|
|
|
|
2010-05-19 17:22:57 -07:00
|
|
|
void ScriptC::Invoke(Context *rsc, uint32_t slot, const void *data, uint32_t len)
|
|
|
|
{
|
|
|
|
//LOGE("rsi_ScriptInvoke %i", slot);
|
|
|
|
if ((slot >= mEnviroment.mInvokeFunctionCount) ||
|
|
|
|
(mEnviroment.mInvokeFunctions[slot] == NULL)) {
|
|
|
|
rsc->setError(RS_ERROR_BAD_SCRIPT, "Calling invoke on bad script");
|
|
|
|
return;
|
|
|
|
}
|
2010-05-28 18:23:22 -07:00
|
|
|
setupScript(rsc);
|
|
|
|
Script * oldTLS = setTLS(this);
|
2010-05-19 17:22:57 -07:00
|
|
|
|
2010-06-08 15:40:48 -07:00
|
|
|
((void (*)(const void *, uint32_t))
|
|
|
|
mEnviroment.mInvokeFunctions[slot])(data, len);
|
|
|
|
|
2010-05-28 18:23:22 -07:00
|
|
|
setTLS(oldTLS);
|
2010-05-19 17:22:57 -07:00
|
|
|
}
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
ScriptCState::ScriptCState()
|
|
|
|
{
|
2009-09-16 15:04:38 -07:00
|
|
|
mScript = NULL;
|
2009-05-22 14:03:28 -07:00
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
ScriptCState::~ScriptCState()
|
|
|
|
{
|
2009-09-16 15:04:38 -07:00
|
|
|
delete mScript;
|
|
|
|
mScript = NULL;
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptCState::clear()
|
|
|
|
{
|
2009-08-12 17:54:11 -07:00
|
|
|
for (uint32_t ct=0; ct < MAX_SCRIPT_BANKS; ct++) {
|
|
|
|
mConstantBufferTypes[ct].clear();
|
2009-08-17 13:56:09 -07:00
|
|
|
mSlotWritable[ct] = false;
|
2009-08-12 17:54:11 -07:00
|
|
|
}
|
2009-06-08 15:20:31 -07:00
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
delete mScript;
|
2009-09-25 14:51:22 -07:00
|
|
|
mScript = new ScriptC(NULL);
|
2009-06-05 17:35:09 -07:00
|
|
|
}
|
|
|
|
|
2010-05-11 14:03:58 -07:00
|
|
|
static BCCvoid* symbolLookup(BCCvoid* pContext, const BCCchar* name)
|
2009-07-16 15:08:06 -07:00
|
|
|
{
|
2010-05-18 13:35:45 -07:00
|
|
|
const ScriptCState::SymbolTable_t *sym;
|
2010-08-11 13:26:28 -07:00
|
|
|
ScriptC *s = (ScriptC *)pContext;
|
2010-05-18 13:35:45 -07:00
|
|
|
sym = ScriptCState::lookupSymbol(name);
|
|
|
|
if (sym) {
|
|
|
|
return sym->mPtr;
|
|
|
|
}
|
2010-08-11 13:26:28 -07:00
|
|
|
s->mEnviroment.mIsThreadable = false;
|
2010-05-18 13:35:45 -07:00
|
|
|
sym = ScriptCState::lookupSymbolCL(name);
|
|
|
|
if (sym) {
|
|
|
|
return sym->mPtr;
|
|
|
|
}
|
|
|
|
sym = ScriptCState::lookupSymbolGL(name);
|
2009-07-16 15:08:06 -07:00
|
|
|
if (sym) {
|
|
|
|
return sym->mPtr;
|
|
|
|
}
|
|
|
|
LOGE("ScriptC sym lookup failed for %s", name);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-06-10 18:39:40 -07:00
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
void ScriptCState::runCompiler(Context *rsc, ScriptC *s)
|
2009-06-05 17:35:09 -07:00
|
|
|
{
|
2010-07-15 17:11:13 -07:00
|
|
|
LOGV("ScriptCState::runCompiler ");
|
2010-05-11 14:03:58 -07:00
|
|
|
|
|
|
|
s->mBccScript = bccCreateScript();
|
2010-08-11 13:26:28 -07:00
|
|
|
s->mEnviroment.mIsThreadable = true;
|
2010-05-11 14:03:58 -07:00
|
|
|
bccScriptBitcode(s->mBccScript, s->mEnviroment.mScriptText, s->mEnviroment.mScriptTextLength);
|
2010-08-11 13:26:28 -07:00
|
|
|
bccRegisterSymbolCallback(s->mBccScript, symbolLookup, s);
|
2010-05-11 14:03:58 -07:00
|
|
|
bccCompileScript(s->mBccScript);
|
|
|
|
bccGetScriptLabel(s->mBccScript, "root", (BCCvoid**) &s->mProgram.mRoot);
|
|
|
|
bccGetScriptLabel(s->mBccScript, "init", (BCCvoid**) &s->mProgram.mInit);
|
2010-07-15 17:11:13 -07:00
|
|
|
LOGV("root %p, init %p", s->mProgram.mRoot, s->mProgram.mInit);
|
2009-07-16 17:47:40 -07:00
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
if (s->mProgram.mInit) {
|
|
|
|
s->mProgram.mInit();
|
2009-09-03 15:43:13 -07:00
|
|
|
}
|
|
|
|
|
2010-06-15 12:15:57 -07:00
|
|
|
bccGetExportFuncs(s->mBccScript, (BCCsizei*) &s->mEnviroment.mInvokeFunctionCount, 0, NULL);
|
|
|
|
if(s->mEnviroment.mInvokeFunctionCount <= 0)
|
|
|
|
s->mEnviroment.mInvokeFunctions = NULL;
|
|
|
|
else {
|
|
|
|
s->mEnviroment.mInvokeFunctions = (Script::InvokeFunc_t*) calloc(s->mEnviroment.mInvokeFunctionCount, sizeof(Script::InvokeFunc_t));
|
|
|
|
bccGetExportFuncs(s->mBccScript, NULL, s->mEnviroment.mInvokeFunctionCount, (BCCvoid **) s->mEnviroment.mInvokeFunctions);
|
|
|
|
}
|
|
|
|
|
2010-07-20 16:43:25 -07:00
|
|
|
bccGetExportVars(s->mBccScript, (BCCsizei*) &s->mEnviroment.mFieldCount, 0, NULL);
|
|
|
|
if(s->mEnviroment.mFieldCount <= 0)
|
|
|
|
s->mEnviroment.mFieldAddress = NULL;
|
|
|
|
else {
|
|
|
|
s->mEnviroment.mFieldAddress = (void **) calloc(s->mEnviroment.mFieldCount, sizeof(void *));
|
|
|
|
bccGetExportVars(s->mBccScript, NULL, s->mEnviroment.mFieldCount, (BCCvoid **) s->mEnviroment.mFieldAddress);
|
|
|
|
}
|
2010-07-20 15:09:00 -07:00
|
|
|
//for (int ct2=0; ct2 < s->mEnviroment.mFieldCount; ct2++ ) {
|
|
|
|
//LOGE("Script field %i = %p", ct2, s->mEnviroment.mFieldAddress[ct2]);
|
|
|
|
//}
|
2009-09-03 15:43:13 -07:00
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
s->mEnviroment.mFragment.set(rsc->getDefaultProgramFragment());
|
|
|
|
s->mEnviroment.mVertex.set(rsc->getDefaultProgramVertex());
|
2010-05-13 18:30:11 -07:00
|
|
|
s->mEnviroment.mFragmentStore.set(rsc->getDefaultProgramStore());
|
2009-09-28 18:12:56 -07:00
|
|
|
s->mEnviroment.mRaster.set(rsc->getDefaultProgramRaster());
|
2009-06-10 18:39:40 -07:00
|
|
|
|
2010-05-11 14:03:58 -07:00
|
|
|
if (s->mProgram.mRoot) {
|
2009-06-09 12:15:30 -07:00
|
|
|
const static int pragmaMax = 16;
|
2010-05-11 14:03:58 -07:00
|
|
|
BCCsizei pragmaCount;
|
|
|
|
BCCchar * str[pragmaMax];
|
|
|
|
bccGetPragmas(s->mBccScript, &pragmaCount, pragmaMax, &str[0]);
|
2009-06-09 12:15:30 -07:00
|
|
|
|
|
|
|
for (int ct=0; ct < pragmaCount; ct+=2) {
|
2010-05-18 13:35:45 -07:00
|
|
|
//LOGE("pragme %s %s", str[ct], str[ct+1]);
|
2009-06-09 12:15:30 -07:00
|
|
|
if (!strcmp(str[ct], "version")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(str[ct], "stateVertex")) {
|
2009-06-17 16:52:59 -07:00
|
|
|
if (!strcmp(str[ct+1], "default")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strcmp(str[ct+1], "parent")) {
|
2009-09-16 15:04:38 -07:00
|
|
|
s->mEnviroment.mVertex.clear();
|
2009-06-17 16:52:59 -07:00
|
|
|
continue;
|
|
|
|
}
|
2009-06-09 12:15:30 -07:00
|
|
|
LOGE("Unreconized value %s passed to stateVertex", str[ct+1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(str[ct], "stateRaster")) {
|
2009-09-28 18:12:56 -07:00
|
|
|
if (!strcmp(str[ct+1], "default")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strcmp(str[ct+1], "parent")) {
|
|
|
|
s->mEnviroment.mRaster.clear();
|
|
|
|
continue;
|
|
|
|
}
|
2009-06-09 12:15:30 -07:00
|
|
|
LOGE("Unreconized value %s passed to stateRaster", str[ct+1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(str[ct], "stateFragment")) {
|
2009-06-17 16:52:59 -07:00
|
|
|
if (!strcmp(str[ct+1], "default")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strcmp(str[ct+1], "parent")) {
|
2009-09-16 15:04:38 -07:00
|
|
|
s->mEnviroment.mFragment.clear();
|
2009-06-17 16:52:59 -07:00
|
|
|
continue;
|
|
|
|
}
|
2009-06-09 12:15:30 -07:00
|
|
|
LOGE("Unreconized value %s passed to stateFragment", str[ct+1]);
|
|
|
|
}
|
|
|
|
|
2009-09-28 18:12:56 -07:00
|
|
|
if (!strcmp(str[ct], "stateStore")) {
|
2009-06-17 16:52:59 -07:00
|
|
|
if (!strcmp(str[ct+1], "default")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!strcmp(str[ct+1], "parent")) {
|
2009-09-16 15:04:38 -07:00
|
|
|
s->mEnviroment.mFragmentStore.clear();
|
2009-06-17 16:52:59 -07:00
|
|
|
continue;
|
|
|
|
}
|
2009-09-28 18:12:56 -07:00
|
|
|
LOGE("Unreconized value %s passed to stateStore", str[ct+1]);
|
2009-06-09 12:15:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-08-04 16:58:20 -07:00
|
|
|
|
2009-06-09 12:15:30 -07:00
|
|
|
} else {
|
|
|
|
// Deal with an error.
|
|
|
|
}
|
2009-08-09 22:57:44 -07:00
|
|
|
}
|
2009-06-09 12:15:30 -07:00
|
|
|
|
2009-08-12 17:54:11 -07:00
|
|
|
|
2009-08-09 22:57:44 -07:00
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
namespace android {
|
|
|
|
namespace renderscript {
|
|
|
|
|
|
|
|
void rsi_ScriptCBegin(Context * rsc)
|
|
|
|
{
|
|
|
|
ScriptCState *ss = &rsc->mScriptC;
|
|
|
|
ss->clear();
|
|
|
|
}
|
|
|
|
|
2009-06-08 15:20:31 -07:00
|
|
|
void rsi_ScriptCSetScript(Context * rsc, void *vp)
|
2009-05-22 14:03:28 -07:00
|
|
|
{
|
2009-09-16 15:04:38 -07:00
|
|
|
rsAssert(0);
|
|
|
|
//ScriptCState *ss = &rsc->mScriptC;
|
|
|
|
//ss->mProgram.mScript = reinterpret_cast<ScriptC::RunScript_t>(vp);
|
2009-05-22 14:03:28 -07:00
|
|
|
}
|
|
|
|
|
2009-06-05 17:35:09 -07:00
|
|
|
void rsi_ScriptCSetText(Context *rsc, const char *text, uint32_t len)
|
|
|
|
{
|
|
|
|
ScriptCState *ss = &rsc->mScriptC;
|
2009-11-03 11:25:42 -08:00
|
|
|
|
|
|
|
char *t = (char *)malloc(len + 1);
|
|
|
|
memcpy(t, text, len);
|
|
|
|
t[len] = 0;
|
|
|
|
ss->mScript->mEnviroment.mScriptText = t;
|
2009-09-16 15:04:38 -07:00
|
|
|
ss->mScript->mEnviroment.mScriptTextLength = len;
|
2009-06-05 17:35:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-22 14:03:28 -07:00
|
|
|
RsScript rsi_ScriptCCreate(Context * rsc)
|
|
|
|
{
|
|
|
|
ScriptCState *ss = &rsc->mScriptC;
|
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
ScriptC *s = ss->mScript;
|
|
|
|
ss->mScript = NULL;
|
2009-06-05 17:35:09 -07:00
|
|
|
|
2009-09-16 15:04:38 -07:00
|
|
|
ss->runCompiler(rsc, s);
|
2009-08-27 20:23:34 -07:00
|
|
|
s->incUserRef();
|
2009-09-25 14:51:22 -07:00
|
|
|
s->setContext(rsc);
|
2009-08-13 12:59:04 -07:00
|
|
|
for (int ct=0; ct < MAX_SCRIPT_BANKS; ct++) {
|
|
|
|
s->mTypes[ct].set(ss->mConstantBufferTypes[ct].get());
|
2009-08-17 13:56:09 -07:00
|
|
|
s->mSlotWritable[ct] = ss->mSlotWritable[ct];
|
2009-08-13 12:59:04 -07:00
|
|
|
}
|
2009-06-09 12:15:30 -07:00
|
|
|
|
2009-08-13 12:59:04 -07:00
|
|
|
ss->clear();
|
2009-05-22 14:03:28 -07:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|