rsCpuScript.h revision c060f1435e7b9405f3be8974417fa6f410f03753
1/*
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#ifndef RS_COMPATIBILITY_LIB
24#include <utility>
25#endif
26
27#include "rsCpuCore.h"
28
29namespace bcc {
30    class BCCContext;
31    class RSCompilerDriver;
32}
33
34namespace bcinfo {
35    class MetadataExtractor;
36}
37
38namespace android {
39namespace renderscript {
40
41class ScriptExecutable;
42
43class RsdCpuScriptImpl : public RsdCpuReferenceImpl::CpuScript {
44public:
45    typedef void (*outer_foreach_t)(
46        const RsExpandKernelDriverInfo *,
47        uint32_t x1, uint32_t x2,
48        uint32_t outstep);
49
50    typedef void (* InvokeFunc_t)(void);
51    typedef void (* ForEachFunc_t)(void);
52    typedef int (* RootFunc_t)(void);
53#ifdef RS_COMPATIBILITY_LIB
54    typedef void (*WorkerCallback_t)(void *usr, uint32_t idx);
55#endif
56
57    bool init(char const *resName, char const *cacheDir,
58              uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags,
59              char const *bccPluginName = nullptr);
60    void populateScript(Script *) override;
61
62    void invokeFunction(uint32_t slot, const void *params, size_t paramLength) override;
63    int invokeRoot() override;
64    virtual void preLaunch(uint32_t slot, const Allocation ** ains,
65                           uint32_t inLen, Allocation * aout, const void * usr,
66                           uint32_t usrLen, const RsScriptCall *sc);
67    virtual void postLaunch(uint32_t slot, const Allocation ** ains,
68                            uint32_t inLen, Allocation * aout,
69                            const void * usr, uint32_t usrLen,
70                            const RsScriptCall *sc);
71
72    void invokeForEach(uint32_t slot,
73                       const Allocation ** ains,
74                       uint32_t inLen,
75                       Allocation* aout,
76                       const void* usr,
77                       uint32_t usrLen,
78                       const RsScriptCall* sc) override;
79
80    void invokeInit() override;
81    void invokeFreeChildren() override;
82
83    void setGlobalVar(uint32_t slot, const void *data, size_t dataLength) override;
84    void getGlobalVar(uint32_t slot, void *data, size_t dataLength) override;
85    void setGlobalVarWithElemDims(uint32_t slot, const void *data, size_t dataLength,
86                                  const Element *e, const uint32_t *dims,
87                                  size_t dimLength) override;
88    void setGlobalBind(uint32_t slot, Allocation *data) override;
89    void setGlobalObj(uint32_t slot, ObjectBase *data) override;
90
91    const char* getFieldName(uint32_t slot) const;
92
93    ~RsdCpuScriptImpl() override;
94    RsdCpuScriptImpl(RsdCpuReferenceImpl *ctx, const Script *s);
95
96    const Script * getScript() {return mScript;}
97
98    bool forEachMtlsSetup(const Allocation ** ains, uint32_t inLen,
99                          Allocation * aout, const void * usr, uint32_t usrLen,
100                          const RsScriptCall *sc, MTLaunchStruct *mtls);
101
102    virtual void forEachKernelSetup(uint32_t slot, MTLaunchStruct *mtls);
103
104
105    const RsdCpuReference::CpuSymbol * lookupSymbolMath(const char *sym);
106    static void * lookupRuntimeStub(void* pContext, char const* name);
107
108    Allocation * getAllocationForPointer(const void *ptr) const override;
109    bool storeRSInfoFromSO();
110
111    int getGlobalEntries() const override;
112    const char * getGlobalName(int i) const override;
113    const void * getGlobalAddress(int i) const override;
114    size_t getGlobalSize(int i) const override;
115
116protected:
117    RsdCpuReferenceImpl *mCtx;
118    const Script *mScript;
119    void *mScriptSO;
120
121#ifndef RS_COMPATIBILITY_LIB
122    // Returns the path to the core library we'll use.
123    const char* findCoreLib(const bcinfo::MetadataExtractor& bitCodeMetaData, const char* bitcode,
124                            size_t bitcodeSize);
125
126    bcc::RSCompilerDriver *mCompilerDriver;
127#endif
128
129    RootFunc_t mRoot;
130    RootFunc_t mRootExpand;
131    InvokeFunc_t mInit;
132    InvokeFunc_t mFreeChildren;
133    ScriptExecutable* mScriptExec;
134
135    Allocation **mBoundAllocs;
136    void * mIntrinsicData;
137    bool mIsThreadable;
138
139public:
140    static const char* BCC_EXE_PATH;
141    const char* getBitcodeFilePath() const { return mBitcodeFilePath.string(); }
142
143private:
144    String8 mBitcodeFilePath;
145    uint32_t mBuildChecksum;
146    bool mChecksumNeeded;
147};
148
149Allocation * rsdScriptGetAllocationForPointer(
150                        const Context *dc,
151                        const Script *script,
152                        const void *);
153
154uint32_t constructBuildChecksum(uint8_t const *bitcode, size_t bitcodeSize,
155                                const char *commandLine,
156                                const char ** bccFiles, size_t numFiles);
157
158}
159
160#ifdef __LP64__
161#define SYSLIBPATH "/system/lib64"
162#define SYSLIBPATH_VENDOR "/system/vendor/lib64"
163#else
164#define SYSLIBPATH "/system/lib"
165#define SYSLIBPATH_VENDOR "/system/vendor/lib"
166#endif
167
168}
169
170#endif
171