rsCpuCore.h revision cadfac411e6690e39de36c4f9e94deb9b7d2d08e
1/*
2 * Copyright (C) 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_CPU_CORE_H
18#define RSD_CPU_CORE_H
19
20#include "rsd_cpu.h"
21#include "rsSignal.h"
22#include "rsContext.h"
23#include "rsElement.h"
24#include "rsScriptC.h"
25
26namespace bcc {
27    class BCCContext;
28    class RSCompilerDriver;
29    class RSExecutable;
30}
31
32namespace android {
33namespace renderscript {
34
35
36typedef void (* InvokeFunc_t)(void);
37typedef void (* ForEachFunc_t)(void);
38typedef void (*WorkerCallback_t)(void *usr, uint32_t idx);
39
40class RsdCpuScriptImpl;
41class RsdCpuReferenceImpl;
42
43typedef struct ScriptTLSStructRec {
44    android::renderscript::Context * mContext;
45    const android::renderscript::Script * mScript;
46    RsdCpuScriptImpl *mImpl;
47} ScriptTLSStruct;
48
49typedef struct {
50    RsForEachStubParamStruct fep;
51
52    RsdCpuReferenceImpl *rsc;
53    RsdCpuScriptImpl *script;
54
55    ForEachFunc_t kernel;
56    uint32_t sig;
57    const Allocation * ain;
58    Allocation * aout;
59
60    uint32_t mSliceSize;
61    volatile int mSliceNum;
62    bool isThreadable;
63
64    uint32_t xStart;
65    uint32_t xEnd;
66    uint32_t yStart;
67    uint32_t yEnd;
68    uint32_t zStart;
69    uint32_t zEnd;
70    uint32_t arrayStart;
71    uint32_t arrayEnd;
72} MTLaunchStruct;
73
74
75
76
77class RsdCpuReferenceImpl : public RsdCpuReference {
78public:
79    virtual ~RsdCpuReferenceImpl();
80    RsdCpuReferenceImpl(Context *);
81
82    void lockMutex();
83    void unlockMutex();
84
85    bool init(uint32_t version_major, uint32_t version_minor, sym_lookup_t, script_lookup_t);
86    virtual void setPriority(int32_t priority);
87    virtual void launchThreads(WorkerCallback_t cbk, void *data);
88    static void * helperThreadProc(void *vrsc);
89    RsdCpuScriptImpl * setTLS(RsdCpuScriptImpl *sc);
90
91    Context * getContext() {return mRSC;}
92    uint32_t getThreadCount() const {
93        return mWorkers.mCount + 1;
94    }
95
96    void launchThreads(const Allocation * ain, Allocation * aout,
97                       const RsScriptCall *sc, MTLaunchStruct *mtls);
98
99    virtual CpuScript * createScript(const ScriptC *s,
100                                     char const *resName, char const *cacheDir,
101                                     uint8_t const *bitcode, size_t bitcodeSize,
102                                     uint32_t flags);
103    virtual CpuScript * createIntrinsic(const Script *s,
104                                        RsScriptIntrinsicID iid, Element *e);
105    virtual CpuScriptGroup * createScriptGroup(const ScriptGroup *sg);
106
107    const RsdCpuReference::CpuSymbol *symLookup(const char *);
108
109    RsdCpuReference::CpuScript * lookupScript(const Script *s) {
110        return mScriptLookupFn(mRSC, s);
111    }
112
113#ifndef RS_COMPATIBILITY_LIB
114    void setLinkRuntimeCallback(
115            bcc::RSLinkRuntimeCallback pLinkRuntimeCallback) {
116        mLinkRuntimeCallback = pLinkRuntimeCallback;
117    }
118    bcc::RSLinkRuntimeCallback getLinkRuntimeCallback() {
119        return mLinkRuntimeCallback;
120    }
121#endif
122    virtual bool getInForEach() { return mInForEach; }
123
124protected:
125    Context *mRSC;
126    uint32_t version_major;
127    uint32_t version_minor;
128    //bool mHasGraphics;
129    bool mInForEach;
130
131    struct Workers {
132        volatile int mRunningCount;
133        volatile int mLaunchCount;
134        uint32_t mCount;
135        pthread_t *mThreadId;
136        pid_t *mNativeThreadId;
137        Signal mCompleteSignal;
138        Signal *mLaunchSignals;
139        WorkerCallback_t mLaunchCallback;
140        void *mLaunchData;
141    };
142    Workers mWorkers;
143    bool mExit;
144    sym_lookup_t mSymLookupFn;
145    script_lookup_t mScriptLookupFn;
146
147    ScriptTLSStruct mTlsStruct;
148
149#ifndef RS_COMPATIBILITY_LIB
150    bcc::RSLinkRuntimeCallback mLinkRuntimeCallback;
151#endif
152};
153
154
155}
156}
157
158#endif
159