blob: a8a922e2fce43198ddf213671ebd0d95670b17c6 [file] [log] [blame]
commit-bot@chromium.org089a7802014-05-02 21:38:22 +00001/*
bsalomonc44be0e2014-07-25 07:32:33 -07002 * Copyright 2014 Google Inc.
commit-bot@chromium.org089a7802014-05-02 21:38:22 +00003 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
bsalomon6d3fe022014-07-25 08:35:45 -07008#ifndef GrGpuResource_DEFINED
9#define GrGpuResource_DEFINED
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/private/GrResourceKey.h"
12#include "include/private/GrTypesPriv.h"
13#include "include/private/SkNoncopyable.h"
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000014
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000015class GrContext;
bsalomon37dd3312014-11-03 08:47:23 -080016class GrGpu;
bsalomon0ea80f42015-02-11 10:49:59 -080017class GrResourceCache;
ericrk0a5fa482015-09-15 14:16:10 -070018class SkTraceMemoryDump;
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000019
20/**
Robert Phillipsbf8bf832019-08-30 13:13:44 -040021 * Base class for GrGpuResource. Provides the hooks for resources to interact with the cache.
22 * Separated out as a base class to isolate the ref-cnting behavior and provide friendship without
23 * exposing all of GrGpuResource.
mtklein6f076652015-01-13 08:22:43 -080024 *
Robert Phillipsbf8bf832019-08-30 13:13:44 -040025 * PRIOR to the last ref being removed DERIVED::notifyRefCntWillBeZero() will be called
26 * (static poly morphism using CRTP). It is legal for additional ref's to be added
27 * during this time. AFTER the ref count reaches zero DERIVED::notifyRefCntIsZero() will be
28 * called.
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000029 */
bsalomonbcf0a522014-10-08 08:40:09 -070030template <typename DERIVED> class GrIORef : public SkNoncopyable {
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000031public:
Robert Phillipsaee18c92019-09-06 11:48:27 -040032 bool unique() const { return fRefCnt == 1; }
33
bsalomon00b76bd2014-09-03 14:05:49 -070034 void ref() const {
Brian Salomon01ceae92019-04-02 11:49:54 -040035 // Only the cache should be able to add the first ref to a resource.
Brian Salomonb810c252019-09-23 12:48:06 -040036 SkASSERT(this->getRefCnt() > 0);
37 // No barrier required.
38 (void)fRefCnt.fetch_add(+1, std::memory_order_relaxed);
bsalomonc44be0e2014-07-25 07:32:33 -070039 }
bsalomon00b76bd2014-09-03 14:05:49 -070040
41 void unref() const {
Brian Salomonb810c252019-09-23 12:48:06 -040042 SkASSERT(this->getRefCnt() > 0);
43 if (1 == fRefCnt.fetch_add(-1, std::memory_order_acq_rel)) {
44 // At this point we better be the only thread accessing this resource.
45 // Trick out the notifyRefCntWillBeZero() call by adding back one more ref.
46 fRefCnt.fetch_add(+1, std::memory_order_relaxed);
Robert Phillipsbf8bf832019-08-30 13:13:44 -040047 static_cast<const DERIVED*>(this)->notifyRefCntWillBeZero();
Brian Salomonb810c252019-09-23 12:48:06 -040048 // notifyRefCntWillBeZero() could have done anything, including re-refing this and
49 // passing on to another thread. Take away the ref-count we re-added above and see
50 // if we're back to zero.
51 // TODO: Consider making it so that refs can't be added and merge
52 // notifyRefCntWillBeZero()/willRemoveLastRef() with notifyRefCntIsZero().
53 if (1 == fRefCnt.fetch_add(-1, std::memory_order_acq_rel)) {
54 static_cast<const DERIVED*>(this)->notifyRefCntIsZero();
55 }
bsalomon3f324322015-04-08 11:01:54 -070056 }
bsalomon00b76bd2014-09-03 14:05:49 -070057 }
58
Robert Phillipsb5204762019-06-19 14:12:13 -040059#if GR_TEST_UTILS
Brian Salomonb810c252019-09-23 12:48:06 -040060 int32_t testingOnly_getRefCnt() const { return this->getRefCnt(); }
Robert Phillipsb5204762019-06-19 14:12:13 -040061#endif
62
bsalomon00b76bd2014-09-03 14:05:49 -070063protected:
Robert Phillipsbf8bf832019-08-30 13:13:44 -040064 friend class GrResourceCache; // for internalHasRef
bsalomon00b76bd2014-09-03 14:05:49 -070065
Robert Phillipsbf8bf832019-08-30 13:13:44 -040066 GrIORef() : fRefCnt(1) {}
bsalomon8d034a12014-09-22 12:21:08 -070067
Brian Salomonb810c252019-09-23 12:48:06 -040068 bool internalHasRef() const { return SkToBool(this->getRefCnt()); }
Robert Phillipsbf8bf832019-08-30 13:13:44 -040069
Brian Salomon01ceae92019-04-02 11:49:54 -040070 // Privileged method that allows going from ref count = 0 to ref count = 1.
71 void addInitialRef() const {
Robert Phillipsbf8bf832019-08-30 13:13:44 -040072 SkASSERT(fRefCnt >= 0);
Brian Salomonb810c252019-09-23 12:48:06 -040073 // No barrier required.
74 (void)fRefCnt.fetch_add(+1, std::memory_order_relaxed);
Brian Salomon01ceae92019-04-02 11:49:54 -040075 }
76
bsalomon00b76bd2014-09-03 14:05:49 -070077private:
Brian Salomonb810c252019-09-23 12:48:06 -040078 int32_t getRefCnt() const { return fRefCnt.load(std::memory_order_relaxed); }
79
80 mutable std::atomic<int32_t> fRefCnt;
Robert Phillipsaee18c92019-09-06 11:48:27 -040081
82 typedef SkNoncopyable INHERITED;
bsalomon00b76bd2014-09-03 14:05:49 -070083};
84
85/**
bsalomon0ea80f42015-02-11 10:49:59 -080086 * Base class for objects that can be kept in the GrResourceCache.
bsalomon00b76bd2014-09-03 14:05:49 -070087 */
Greg Daniel456f9b52020-03-05 19:14:18 +000088class GrGpuResource : public GrIORef<GrGpuResource> {
bsalomon00b76bd2014-09-03 14:05:49 -070089public:
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000090 /**
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000091 * Tests whether a object has been abandoned or released. All objects will
92 * be in this state after their creating GrContext is destroyed or has
93 * contextLost called. It's up to the client to test wasDestroyed() before
94 * attempting to use an object if it holds refs on objects across
95 * ~GrContext, freeResources with the force flag, or contextLost.
96 *
97 * @return true if the object has been released or abandoned,
98 * false otherwise.
99 */
Ben Wagnera93a14a2017-08-28 10:34:05 -0400100 bool wasDestroyed() const { return nullptr == fGpu; }
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000101
102 /**
103 * Retrieves the context that owns the object. Note that it is possible for
104 * this to return NULL. When objects have been release()ed or abandon()ed
105 * they no longer have an owning context. Destroying a GrContext
106 * automatically releases all its resources.
107 */
108 const GrContext* getContext() const;
109 GrContext* getContext();
110
bsalomonc44be0e2014-07-25 07:32:33 -0700111 /**
112 * Retrieves the amount of GPU memory used by this resource in bytes. It is
113 * approximate since we aren't aware of additional padding or copies made
114 * by the driver.
115 *
116 * @return the amount of GPU memory used in bytes
117 */
bsalomon69ed47f2014-11-12 11:13:39 -0800118 size_t gpuMemorySize() const {
119 if (kInvalidGpuMemorySize == fGpuMemorySize) {
120 fGpuMemorySize = this->onGpuMemorySize();
121 SkASSERT(kInvalidGpuMemorySize != fGpuMemorySize);
122 }
123 return fGpuMemorySize;
124 }
bsalomonc44be0e2014-07-25 07:32:33 -0700125
Robert Phillips294870f2016-11-11 12:38:40 -0500126 class UniqueID {
127 public:
Brian Salomon8c8806f2019-02-07 13:55:57 -0500128 UniqueID() = default;
Robert Phillips294870f2016-11-11 12:38:40 -0500129
130 explicit UniqueID(uint32_t id) : fID(id) {}
131
132 uint32_t asUInt() const { return fID; }
133
Brian Salomon8c8806f2019-02-07 13:55:57 -0500134 bool operator==(const UniqueID& other) const { return fID == other.fID; }
135 bool operator!=(const UniqueID& other) const { return !(*this == other); }
Robert Phillips294870f2016-11-11 12:38:40 -0500136
137 void makeInvalid() { fID = SK_InvalidUniqueID; }
Brian Salomon8c8806f2019-02-07 13:55:57 -0500138 bool isInvalid() const { return fID == SK_InvalidUniqueID; }
Robert Phillips294870f2016-11-11 12:38:40 -0500139
140 protected:
Brian Salomon8c8806f2019-02-07 13:55:57 -0500141 uint32_t fID = SK_InvalidUniqueID;
Robert Phillips294870f2016-11-11 12:38:40 -0500142 };
143
bsalomonc44be0e2014-07-25 07:32:33 -0700144 /**
bsalomon52e9d632014-09-05 12:23:12 -0700145 * Gets an id that is unique for this GrGpuResource object. It is static in that it does
146 * not change when the content of the GrGpuResource object changes. This will never return
bsalomonc44be0e2014-07-25 07:32:33 -0700147 * 0.
148 */
Robert Phillips294870f2016-11-11 12:38:40 -0500149 UniqueID uniqueID() const { return fUniqueID; }
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000150
bsalomon8718aaf2015-02-19 07:24:21 -0800151 /** Returns the current unique key for the resource. It will be invalid if the resource has no
152 associated unique key. */
153 const GrUniqueKey& getUniqueKey() const { return fUniqueKey; }
bsalomon563ff602015-02-02 17:25:26 -0800154
bsalomon453cf402014-11-11 14:15:57 -0800155 /**
bsalomon3582d3e2015-02-13 14:20:05 -0800156 * Internal-only helper class used for manipulations of the resource by the cache.
bsalomon453cf402014-11-11 14:15:57 -0800157 */
158 class CacheAccess;
159 inline CacheAccess cacheAccess();
160 inline const CacheAccess cacheAccess() const;
161
junov436293a2014-12-11 10:32:32 -0800162 /**
Brian Salomon01ceae92019-04-02 11:49:54 -0400163 * Internal-only helper class used for manipulations of the resource by GrSurfaceProxy.
164 */
165 class ProxyAccess;
166 inline ProxyAccess proxyAccess();
167
168 /**
bsalomon3582d3e2015-02-13 14:20:05 -0800169 * Internal-only helper class used for manipulations of the resource by internal code.
170 */
171 class ResourcePriv;
172 inline ResourcePriv resourcePriv();
173 inline const ResourcePriv resourcePriv() const;
174
175 /**
ericrk0a5fa482015-09-15 14:16:10 -0700176 * Dumps memory usage information for this GrGpuResource to traceMemoryDump.
177 * Typically, subclasses should not need to override this, and should only
178 * need to override setMemoryBacking.
179 **/
180 virtual void dumpMemoryStatistics(SkTraceMemoryDump* traceMemoryDump) const;
181
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -0400182 /**
183 * Describes the type of gpu resource that is represented by the implementing
184 * class (e.g. texture, buffer object, stencil). This data is used for diagnostic
185 * purposes by dumpMemoryStatistics().
186 *
187 * The value returned is expected to be long lived and will not be copied by the caller.
188 */
189 virtual const char* getResourceType() const = 0;
190
robertphillips8abb3702016-08-31 14:04:06 -0700191 static uint32_t CreateUniqueID();
192
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000193protected:
kkinnunen2e6055b2016-04-22 01:48:29 -0700194 // This must be called by every non-wrapped GrGpuObject. It should be called once the object is
195 // fully initialized (i.e. only from the constructors of the final class).
196 void registerWithCache(SkBudgeted);
bsalomon16961262014-08-26 14:01:07 -0700197
kkinnunen2e6055b2016-04-22 01:48:29 -0700198 // This must be called by every GrGpuObject that references any wrapped backend objects. It
199 // should be called once the object is fully initialized (i.e. only from the constructors of the
200 // final class).
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500201 void registerWithCacheWrapped(GrWrapCacheable);
kkinnunen2e6055b2016-04-22 01:48:29 -0700202
203 GrGpuResource(GrGpu*);
bsalomon6d3fe022014-07-25 08:35:45 -0700204 virtual ~GrGpuResource();
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000205
206 GrGpu* getGpu() const { return fGpu; }
207
bsalomon12299ab2014-11-14 13:33:09 -0800208 /** Overridden to free GPU resources in the backend API. */
Brian Salomon9f7d9a22018-12-11 19:01:32 +0000209 virtual void onRelease() { }
bsalomon12299ab2014-11-14 13:33:09 -0800210 /** Overridden to abandon any internal handles, ptrs, etc to backend API resources.
211 This may be called when the underlying 3D context is no longer valid and so no
212 backend API calls should be made. */
Brian Salomon9f7d9a22018-12-11 19:01:32 +0000213 virtual void onAbandon() { }
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000214
bsalomonc44be0e2014-07-25 07:32:33 -0700215 /**
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -0400216 * Allows subclasses to add additional backing information to the SkTraceMemoryDump.
ericrk0a5fa482015-09-15 14:16:10 -0700217 **/
218 virtual void setMemoryBacking(SkTraceMemoryDump*, const SkString&) const {}
219
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -0400220 /**
221 * Returns a string that uniquely identifies this resource.
222 */
223 SkString getResourceName() const;
224
225 /**
226 * A helper for subclasses that override dumpMemoryStatistics(). This method using a format
227 * consistent with the default implementation of dumpMemoryStatistics() but allows the caller
228 * to customize various inputs.
229 */
230 void dumpMemoryStatisticsPriv(SkTraceMemoryDump* traceMemoryDump, const SkString& resourceName,
231 const char* type, size_t size) const;
232
Brian Salomon9f7d9a22018-12-11 19:01:32 +0000233
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000234private:
Brian Salomon9bc76d92019-01-24 12:18:33 -0500235 bool isPurgeable() const;
Brian Salomon2c791fc2019-04-02 11:52:03 -0400236 bool hasRef() const;
Brian Salomon614c1a82018-12-19 15:42:06 -0500237
bsalomon12299ab2014-11-14 13:33:09 -0800238 /**
kkinnunen2e6055b2016-04-22 01:48:29 -0700239 * Called by the registerWithCache if the resource is available to be used as scratch.
240 * Resource subclasses should override this if the instances should be recycled as scratch
241 * resources and populate the scratchKey with the key.
242 * By default resources are not recycled as scratch.
243 **/
Brian Salomon9bc76d92019-01-24 12:18:33 -0500244 virtual void computeScratchKey(GrScratchKey*) const {}
kkinnunen2e6055b2016-04-22 01:48:29 -0700245
246 /**
Brian Salomon35ba6142019-01-24 13:08:59 -0500247 * Removes references to objects in the underlying 3D API without freeing them.
248 * Called by CacheAccess.
249 */
250 void abandon();
251
252 /**
bsalomon12299ab2014-11-14 13:33:09 -0800253 * Frees the object in the underlying 3D API. Called by CacheAccess.
254 */
255 void release();
256
bsalomon69ed47f2014-11-12 11:13:39 -0800257 virtual size_t onGpuMemorySize() const = 0;
258
Brian Salomon614c1a82018-12-19 15:42:06 -0500259 /**
Robert Phillipsbf8bf832019-08-30 13:13:44 -0400260 * Called by GrIORef when a resource is about to lose its last ref
Brian Salomon614c1a82018-12-19 15:42:06 -0500261 */
Robert Phillipsbf8bf832019-08-30 13:13:44 -0400262 virtual void willRemoveLastRef() {}
Brian Salomon614c1a82018-12-19 15:42:06 -0500263
bsalomon9f2d1572015-02-17 11:47:40 -0800264 // See comments in CacheAccess and ResourcePriv.
bsalomonf99e9612015-02-19 08:24:16 -0800265 void setUniqueKey(const GrUniqueKey&);
bsalomon8718aaf2015-02-19 07:24:21 -0800266 void removeUniqueKey();
Robert Phillipsbf8bf832019-08-30 13:13:44 -0400267 void notifyRefCntWillBeZero() const;
268 void notifyRefCntIsZero() const;
bsalomon10e23ca2014-11-25 05:52:06 -0800269 void removeScratchKey();
bsalomonafe30052015-01-16 07:32:33 -0800270 void makeBudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800271 void makeUnbudgeted();
bsalomonbcf0a522014-10-08 08:40:09 -0700272
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000273#ifdef SK_DEBUG
Brian Salomon5e150852017-03-22 14:53:13 -0400274 friend class GrGpu; // for assert in GrGpu to access getGpu
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000275#endif
Brian Salomon5e150852017-03-22 14:53:13 -0400276
bsalomonf320e042015-02-17 15:09:34 -0800277 // An index into a heap when this resource is purgeable or an array when not. This is maintained
278 // by the cache.
Brian Salomon5e150852017-03-22 14:53:13 -0400279 int fCacheArrayIndex;
bsalomon9f2d1572015-02-17 11:47:40 -0800280 // This value reflects how recently this resource was accessed in the cache. This is maintained
281 // by the cache.
Brian Salomon5e150852017-03-22 14:53:13 -0400282 uint32_t fTimestamp;
Brian Salomon5e150852017-03-22 14:53:13 -0400283 GrStdSteadyClock::time_point fTimeWhenBecamePurgeable;
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000284
bsalomon69ed47f2014-11-12 11:13:39 -0800285 static const size_t kInvalidGpuMemorySize = ~static_cast<size_t>(0);
Brian Salomon5e150852017-03-22 14:53:13 -0400286 GrScratchKey fScratchKey;
287 GrUniqueKey fUniqueKey;
bsalomon84c8e622014-11-17 09:33:27 -0800288
289 // This is not ref'ed but abandon() or release() will be called before the GrGpu object
290 // is destroyed. Those calls set will this to NULL.
Brian Salomon5e150852017-03-22 14:53:13 -0400291 GrGpu* fGpu;
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500292 mutable size_t fGpuMemorySize = kInvalidGpuMemorySize;
bsalomon84c8e622014-11-17 09:33:27 -0800293
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500294 GrBudgetedType fBudgetedType = GrBudgetedType::kUnbudgetedUncacheable;
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500295 bool fRefsWrappedObjects = false;
Brian Salomon5e150852017-03-22 14:53:13 -0400296 const UniqueID fUniqueID;
bsalomon744998e2014-08-28 09:54:34 -0700297
bsalomonbcf0a522014-10-08 08:40:09 -0700298 typedef GrIORef<GrGpuResource> INHERITED;
Robert Phillipsbf8bf832019-08-30 13:13:44 -0400299 friend class GrIORef<GrGpuResource>; // to access notifyRefCntWillBeZero and notifyRefCntIsZero.
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000300};
301
Brian Salomon01ceae92019-04-02 11:49:54 -0400302class GrGpuResource::ProxyAccess {
303private:
304 ProxyAccess(GrGpuResource* resource) : fResource(resource) {}
305
306 /** Proxies are allowed to take a resource from no refs to one ref. */
Brian Salomon2c791fc2019-04-02 11:52:03 -0400307 void ref(GrResourceCache* cache);
Brian Salomon01ceae92019-04-02 11:49:54 -0400308
309 // No taking addresses of this type.
310 const CacheAccess* operator&() const = delete;
311 CacheAccess* operator&() = delete;
312
313 GrGpuResource* fResource;
314
315 friend class GrGpuResource;
316 friend class GrSurfaceProxy;
Brian Salomon01ceae92019-04-02 11:49:54 -0400317};
318
319inline GrGpuResource::ProxyAccess GrGpuResource::proxyAccess() { return ProxyAccess(this); }
320
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000321#endif