blob: eeb38bf869b2f0dec3fec28e3e4698191e5ad001 [file] [log] [blame]
Jason Sams709a0972012-11-15 18:18:04 -08001/*
2 * Copyright (C) 2011-2012 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 RSD_BCC_H
18#define RSD_BCC_H
19
20#include <rs_hal.h>
21#include <rsRuntime.h>
22
23#include "rsCpuCore.h"
24
25namespace bcc {
26 class BCCContext;
27 class RSCompilerDriver;
28 class RSExecutable;
29}
30
31namespace android {
32namespace renderscript {
33
34
35
36class RsdCpuScriptImpl : public RsdCpuReferenceImpl::CpuScript {
37public:
38 typedef void (*outer_foreach_t)(
39 const RsForEachStubParamStruct *,
40 uint32_t x1, uint32_t x2,
41 uint32_t instep, uint32_t outstep);
Jason Sams110f1812013-03-14 16:02:18 -070042#ifdef RS_COMPATIBILITY_LIB
43 typedef void (* InvokeFunc_t)(void);
44 typedef void (* ForEachFunc_t)(void);
45 typedef int (* RootFunc_t)(void);
46 typedef void (*WorkerCallback_t)(void *usr, uint32_t idx);
47#endif
Jason Sams709a0972012-11-15 18:18:04 -080048
49 bool init(char const *resName, char const *cacheDir,
50 uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags);
51 virtual void populateScript(Script *);
52
53 virtual void invokeFunction(uint32_t slot, const void *params, size_t paramLength);
54 virtual int invokeRoot();
Jason Sams17e3cdc2013-09-09 17:32:16 -070055 virtual void preLaunch(uint32_t slot, const Allocation * ain,
56 Allocation * aout, const void * usr,
57 uint32_t usrLen, const RsScriptCall *sc);
58 virtual void postLaunch(uint32_t slot, const Allocation * ain,
59 Allocation * aout, const void * usr,
60 uint32_t usrLen, const RsScriptCall *sc);
Jason Sams709a0972012-11-15 18:18:04 -080061 virtual void invokeForEach(uint32_t slot,
62 const Allocation * ain,
63 Allocation * aout,
64 const void * usr,
65 uint32_t usrLen,
66 const RsScriptCall *sc);
67 virtual void invokeInit();
68 virtual void invokeFreeChildren();
69
70 virtual void setGlobalVar(uint32_t slot, const void *data, size_t dataLength);
Tim Murray9c642392013-04-11 13:29:59 -070071 virtual void getGlobalVar(uint32_t slot, void *data, size_t dataLength);
Jason Sams709a0972012-11-15 18:18:04 -080072 virtual void setGlobalVarWithElemDims(uint32_t slot, const void *data, size_t dataLength,
73 const Element *e, const size_t *dims, size_t dimLength);
74 virtual void setGlobalBind(uint32_t slot, Allocation *data);
75 virtual void setGlobalObj(uint32_t slot, ObjectBase *data);
76
77
78 virtual ~RsdCpuScriptImpl();
79 RsdCpuScriptImpl(RsdCpuReferenceImpl *ctx, const Script *s);
80
81 const Script * getScript() {return mScript;}
82
83 void forEachMtlsSetup(const Allocation * ain, Allocation * aout,
84 const void * usr, uint32_t usrLen,
85 const RsScriptCall *sc, MTLaunchStruct *mtls);
86 virtual void forEachKernelSetup(uint32_t slot, MTLaunchStruct *mtls);
87
88
89 const RsdCpuReference::CpuSymbol * lookupSymbolMath(const char *sym);
90 static void * lookupRuntimeStub(void* pContext, char const* name);
91
92 virtual Allocation * getAllocationForPointer(const void *ptr) const;
93
Tim Murraye195a3f2014-03-13 15:04:58 -070094#ifndef FAKE_ARM64_BUILD
Jason Samscadfac42013-03-06 18:09:08 -080095#ifndef RS_COMPATIBILITY_LIB
Stephen Hinesf218bf12013-02-12 19:32:38 -080096 virtual void * getRSExecutable() { return mExecutable; }
Jason Samscadfac42013-03-06 18:09:08 -080097#endif
Tim Murraye195a3f2014-03-13 15:04:58 -070098#else
99 virtual void* getRSExecutable() { return NULL; }
100#endif
Jason Sams709a0972012-11-15 18:18:04 -0800101
102protected:
103 RsdCpuReferenceImpl *mCtx;
104 const Script *mScript;
105
Tim Murraye195a3f2014-03-13 15:04:58 -0700106#ifndef FAKE_ARM64_BUILD
Jason Sams110f1812013-03-14 16:02:18 -0700107#ifndef RS_COMPATIBILITY_LIB
Jason Sams709a0972012-11-15 18:18:04 -0800108 int (*mRoot)();
109 int (*mRootExpand)();
110 void (*mInit)();
111 void (*mFreeChildren)();
112
113 bcc::BCCContext *mCompilerContext;
114 bcc::RSCompilerDriver *mCompilerDriver;
115 bcc::RSExecutable *mExecutable;
Jason Sams110f1812013-03-14 16:02:18 -0700116#else
117 void *mScriptSO;
118 RootFunc_t mRoot;
119 RootFunc_t mRootExpand;
120 InvokeFunc_t mInit;
121 InvokeFunc_t mFreeChildren;
122 InvokeFunc_t *mInvokeFunctions;
123 ForEachFunc_t *mForEachFunctions;
124
125 void **mFieldAddress;
126 bool *mFieldIsObject;
127 uint32_t *mForEachSignatures;
128
129 // for populate script
130 //int mVersionMajor;
131 //int mVersionMinor;
132 size_t mExportedVariableCount;
133 size_t mExportedFunctionCount;
134#endif
Tim Murraye195a3f2014-03-13 15:04:58 -0700135#endif
Jason Sams709a0972012-11-15 18:18:04 -0800136
137 Allocation **mBoundAllocs;
138 void * mIntrinsicData;
139 bool mIsThreadable;
140
141};
142
143
144Allocation * rsdScriptGetAllocationForPointer(
145 const Context *dc,
146 const Script *script,
147 const void *);
148
149
150
151}
152}
153
154#endif