Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 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 ANDROID_STRUCTURED_ALLOCATION_H |
| 18 | #define ANDROID_STRUCTURED_ALLOCATION_H |
| 19 | |
| 20 | #include "rsType.h" |
| 21 | |
| 22 | // --------------------------------------------------------------------------- |
| 23 | namespace android { |
| 24 | namespace renderscript { |
| 25 | |
Jason Sams | 83f1c63 | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 26 | class Program; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 27 | |
Stephen Hines | e004058 | 2011-08-08 15:06:40 -0700 | [diff] [blame] | 28 | /***************************************************************************** |
| 29 | * CAUTION |
| 30 | * |
| 31 | * Any layout changes for this class may require a corresponding change to be |
| 32 | * made to frameworks/compile/libbcc/lib/ScriptCRT/rs_core.c, which contains |
| 33 | * a partial copy of the information below. |
| 34 | * |
| 35 | *****************************************************************************/ |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 36 | class Allocation : public ObjectBase { |
Stephen Hines | e004058 | 2011-08-08 15:06:40 -0700 | [diff] [blame] | 37 | // The graphics equivalent of malloc. The allocation contains a structure of elements. |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 38 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 39 | public: |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 40 | struct Hal { |
| 41 | void * drv; |
| 42 | |
| 43 | struct State { |
| 44 | ObjectBaseRef<const Type> type; |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 45 | |
| 46 | uint32_t usageFlags; |
| 47 | RsAllocationMipmapControl mipmapControl; |
| 48 | |
| 49 | // Cached fields from the Type and Element |
| 50 | // to prevent pointer chasing in critical loops. |
| 51 | uint32_t dimensionX; |
| 52 | uint32_t dimensionY; |
| 53 | uint32_t dimensionZ; |
| 54 | uint32_t elementSizeBytes; |
| 55 | bool hasMipmaps; |
| 56 | bool hasFaces; |
| 57 | bool hasReferences; |
| 58 | }; |
| 59 | State state; |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 60 | |
| 61 | struct DrvState { |
| 62 | void * mallocPtr; |
| 63 | } drvState; |
| 64 | |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 65 | }; |
| 66 | Hal mHal; |
| 67 | |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 68 | static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages, |
| 69 | RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 70 | virtual ~Allocation(); |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 71 | void updateCache(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 72 | |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 73 | void * getPtr() const {return mHal.drvState.mallocPtr;} |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 74 | const Type * getType() const {return mHal.state.type.get();} |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 75 | |
Jason Sams | 5476b45 | 2010-12-08 16:14:36 -0800 | [diff] [blame] | 76 | void syncAll(Context *rsc, RsAllocationUsageType src); |
| 77 | |
Jason Sams | 5edc608 | 2010-10-05 13:32:49 -0700 | [diff] [blame] | 78 | void copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len); |
| 79 | |
| 80 | void resize1D(Context *rsc, uint32_t dimX); |
| 81 | void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 82 | |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 83 | void data(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, uint32_t sizeBytes); |
| 84 | void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 85 | uint32_t w, uint32_t h, const void *data, uint32_t sizeBytes); |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 86 | void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face, |
Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 87 | uint32_t w, uint32_t h, uint32_t d, const void *data, uint32_t sizeBytes); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 88 | |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 89 | void elementData(Context *rsc, uint32_t x, |
Jason Sams | 49bdaf0 | 2010-08-31 13:50:42 -0700 | [diff] [blame] | 90 | const void *data, uint32_t elementOff, uint32_t sizeBytes); |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 91 | void elementData(Context *rsc, uint32_t x, uint32_t y, |
Jason Sams | 49bdaf0 | 2010-08-31 13:50:42 -0700 | [diff] [blame] | 92 | const void *data, uint32_t elementOff, uint32_t sizeBytes); |
| 93 | |
Jason Sams | 40a29e8 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 94 | void read(void *data); |
| 95 | |
Jason Sams | 83f1c63 | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 96 | void addProgramToDirty(const Program *); |
| 97 | void removeProgramToDirty(const Program *); |
Jason Sams | 1bada8c | 2009-08-09 17:01:55 -0700 | [diff] [blame] | 98 | |
Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 99 | virtual void dumpLOGV(const char *prefix) const; |
Alex Sakhartchouk | aa7d288 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 100 | virtual void serialize(OStream *stream) const; |
Alex Sakhartchouk | aae74ad | 2010-06-04 10:06:50 -0700 | [diff] [blame] | 101 | virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_ALLOCATION; } |
Alex Sakhartchouk | aa7d288 | 2010-05-21 12:53:13 -0700 | [diff] [blame] | 102 | static Allocation *createFromStream(Context *rsc, IStream *stream); |
Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 103 | |
Jason Sams | 5e0035a | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 104 | bool getIsScript() const { |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 105 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_SCRIPT) != 0; |
Jason Sams | 5e0035a | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 106 | } |
Jason Sams | d4b23b5 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 107 | bool getIsTexture() const { |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 108 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE) != 0; |
Jason Sams | d4b23b5 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 109 | } |
Alex Sakhartchouk | 8e90f2b | 2011-04-01 14:19:01 -0700 | [diff] [blame] | 110 | bool getIsRenderTarget() const { |
| 111 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_RENDER_TARGET) != 0; |
| 112 | } |
Jason Sams | d4b23b5 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 113 | bool getIsBufferObject() const { |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 114 | return (mHal.state.usageFlags & RS_ALLOCATION_USAGE_GRAPHICS_VERTEX) != 0; |
Jason Sams | d4b23b5 | 2010-12-13 15:32:35 -0800 | [diff] [blame] | 115 | } |
Jason Sams | eeeaccc | 2010-06-25 12:45:41 -0700 | [diff] [blame] | 116 | |
Jason Sams | 5edc608 | 2010-10-05 13:32:49 -0700 | [diff] [blame] | 117 | void incRefs(const void *ptr, size_t ct, size_t startOff = 0) const; |
| 118 | void decRefs(const void *ptr, size_t ct, size_t startOff = 0) const; |
Jason Sams | 777ec26 | 2011-08-18 18:01:33 -0700 | [diff] [blame^] | 119 | virtual bool freeChildren(); |
Jason Sams | b28ca96f | 2010-08-09 18:13:33 -0700 | [diff] [blame] | 120 | |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 121 | void sendDirty(const Context *rsc) const; |
Jason Sams | 5e0035a | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 122 | bool getHasGraphicsMipmaps() const { |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 123 | return mHal.state.mipmapControl != RS_ALLOCATION_MIPMAP_NONE; |
Jason Sams | 5e0035a | 2010-12-13 17:11:21 -0800 | [diff] [blame] | 124 | } |
| 125 | |
Jason Sams | 83f1c63 | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 126 | |
Alex Sakhartchouk | 8e95466 | 2010-09-01 16:34:48 -0700 | [diff] [blame] | 127 | protected: |
Jason Sams | 83f1c63 | 2009-10-26 15:19:28 -0700 | [diff] [blame] | 128 | Vector<const Program *> mToDirtyList; |
| 129 | |
Jason Sams | 8a64743f | 2010-03-01 15:31:04 -0800 | [diff] [blame] | 130 | private: |
Jason Sams | 777ec26 | 2011-08-18 18:01:33 -0700 | [diff] [blame^] | 131 | void freeChildrenUnlocked(); |
Jason Sams | 7e8aae7 | 2011-05-26 16:33:01 -0700 | [diff] [blame] | 132 | Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | } |
| 136 | } |
| 137 | #endif |
| 138 | |