blob: 747bf2c45397b75881379c71369cc222ec05726d [file] [log] [blame]
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
bsalomon3f324322015-04-08 11:01:54 -07008#include "SkTypes.h"
9
bsalomonbcf0a522014-10-08 08:40:09 -070010#include "GrContext.h"
Greg Daniel7ef28f32017-04-20 16:41:55 +000011#include "GrContextPriv.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000012#include "GrContextFactory.h"
bsalomonbcf0a522014-10-08 08:40:09 -070013#include "GrGpu.h"
bsalomon3582d3e2015-02-13 14:20:05 -080014#include "GrGpuResourceCacheAccess.h"
15#include "GrGpuResourcePriv.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050016#include "GrProxyProvider.h"
Robert Phillipsc0192e32017-09-21 12:00:26 -040017#include "GrRenderTargetPriv.h"
bsalomon0ea80f42015-02-11 10:49:59 -080018#include "GrResourceCache.h"
bsalomon473addf2015-10-02 07:49:05 -070019#include "GrResourceProvider.h"
Robert Phillips646e4292017-06-13 12:44:56 -040020#include "GrTexture.h"
21
bsalomonbcf0a522014-10-08 08:40:09 -070022#include "SkCanvas.h"
bsalomon71cb0c22014-11-14 12:10:14 -080023#include "SkGr.h"
24#include "SkMessageBus.h"
Robert Phillipsd6214d42016-11-07 08:23:48 -050025#include "SkMipMap.h"
reed69f6f002014-09-18 06:09:44 -070026#include "SkSurface.h"
tfarina@chromium.org4ee16bf2014-01-10 22:08:27 +000027#include "Test.h"
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000028
Hal Canary8a001442018-09-19 11:31:27 -040029#include <thread>
30
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000031static const int gWidth = 640;
32static const int gHeight = 480;
33
34////////////////////////////////////////////////////////////////////////////////
bsalomon68d91342016-04-12 09:59:58 -070035DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheCache, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070036 GrContext* context = ctxInfo.grContext();
kkinnunen15302832015-12-01 04:35:26 -080037 GrSurfaceDesc desc;
Brian Osman777b5632016-10-14 09:16:21 -040038 desc.fConfig = kRGBA_8888_GrPixelConfig;
kkinnunen15302832015-12-01 04:35:26 -080039 desc.fFlags = kRenderTarget_GrSurfaceFlag;
40 desc.fWidth = gWidth;
41 desc.fHeight = gHeight;
42 SkImageInfo info = SkImageInfo::MakeN32Premul(gWidth, gHeight);
reede8f30622016-03-23 18:59:25 -070043 auto surface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info));
kkinnunen15302832015-12-01 04:35:26 -080044 SkCanvas* canvas = surface->getCanvas();
45
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000046 const SkIRect size = SkIRect::MakeWH(gWidth, gHeight);
47
48 SkBitmap src;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000049 src.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000050 src.eraseColor(SK_ColorBLACK);
Mike Reedf0ffb892017-10-03 14:47:21 -040051 size_t srcSize = src.computeByteSize();
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000052
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000053 size_t initialCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070054 context->getResourceCacheUsage(nullptr, &initialCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000055
56 int oldMaxNum;
57 size_t oldMaxBytes;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000058 context->getResourceCacheLimits(&oldMaxNum, &oldMaxBytes);
skia.committer@gmail.com17f1ae62013-08-09 07:01:22 +000059
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000060 // Set the cache limits so we can fit 10 "src" images and the
61 // max number of textures doesn't matter
62 size_t maxCacheSize = initialCacheSize + 10*srcSize;
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000063 context->setResourceCacheLimits(1000, maxCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000064
65 SkBitmap readback;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000066 readback.allocN32Pixels(size.width(), size.height());
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000067
68 for (int i = 0; i < 100; ++i) {
69 canvas->drawBitmap(src, 0, 0);
Mike Reedf1942192017-07-21 14:24:29 -040070 surface->readPixels(readback, 0, 0);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000071
72 // "modify" the src texture
73 src.notifyPixelsChanged();
74
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000075 size_t curCacheSize;
halcanary96fcdcc2015-08-27 07:41:13 -070076 context->getResourceCacheUsage(nullptr, &curCacheSize);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000077
78 // we should never go over the size limit
79 REPORTER_ASSERT(reporter, curCacheSize <= maxCacheSize);
80 }
81
commit-bot@chromium.org95c20032014-05-09 14:29:32 +000082 context->setResourceCacheLimits(oldMaxNum, oldMaxBytes);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +000083}
84
bsalomon11abd8d2016-10-14 08:13:48 -070085static bool is_rendering_and_not_angle_es3(sk_gpu_test::GrContextFactory::ContextType type) {
86 if (type == sk_gpu_test::GrContextFactory::kANGLE_D3D11_ES3_ContextType ||
87 type == sk_gpu_test::GrContextFactory::kANGLE_GL_ES3_ContextType) {
88 return false;
89 }
90 return sk_gpu_test::GrContextFactory::IsRenderingContext(type);
91}
92
Robert Phillipsc0192e32017-09-21 12:00:26 -040093static GrStencilAttachment* get_SB(GrRenderTarget* rt) {
94 return rt->renderTargetPriv().getStencilAttachment();
95}
96
97static sk_sp<GrRenderTarget> create_RT_with_SB(GrResourceProvider* provider,
98 int size, int sampleCount, SkBudgeted budgeted) {
99 GrSurfaceDesc desc;
100 desc.fFlags = kRenderTarget_GrSurfaceFlag;
Robert Phillipsc0192e32017-09-21 12:00:26 -0400101 desc.fWidth = size;
102 desc.fHeight = size;
103 desc.fConfig = kRGBA_8888_GrPixelConfig;
104 desc.fSampleCnt = sampleCount;
105
Robert Phillips9313aa72019-04-09 18:41:27 -0400106 sk_sp<GrTexture> tex(provider->createTexture(desc, budgeted,
107 GrResourceProvider::Flags::kNoPendingIO));
Robert Phillipsc0192e32017-09-21 12:00:26 -0400108 if (!tex || !tex->asRenderTarget()) {
109 return nullptr;
110 }
111
112 if (!provider->attachStencilAttachment(tex->asRenderTarget())) {
113 return nullptr;
114 }
115 SkASSERT(get_SB(tex->asRenderTarget()));
116
117 return sk_ref_sp(tex->asRenderTarget());
118}
119
bsalomon11abd8d2016-10-14 08:13:48 -0700120// This currently fails on ES3 ANGLE contexts
121DEF_GPUTEST_FOR_CONTEXTS(ResourceCacheStencilBuffers, &is_rendering_and_not_angle_es3, reporter,
Robert Phillipsec325342017-10-30 18:02:48 +0000122 ctxInfo, nullptr) {
bsalomon8b7451a2016-05-11 06:33:06 -0700123 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500124 if (context->priv().caps()->avoidStencilBuffers()) {
Eric Karl5c779752017-05-08 12:02:07 -0700125 return;
126 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400127
Robert Phillips9da87e02019-02-04 13:26:26 -0500128 GrResourceProvider* resourceProvider = context->priv().resourceProvider();
Robert Phillipsc0192e32017-09-21 12:00:26 -0400129
Brian Salomonbdecacf2018-02-02 20:32:49 -0500130 sk_sp<GrRenderTarget> smallRT0 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400131 REPORTER_ASSERT(reporter, smallRT0);
132
133 {
134 // Two budgeted RTs with the same desc should share a stencil buffer.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500135 sk_sp<GrRenderTarget> smallRT1 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kYes);
136 REPORTER_ASSERT(reporter, smallRT1);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400137
Brian Salomonbdecacf2018-02-02 20:32:49 -0500138 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800139 }
140
Robert Phillipsc0192e32017-09-21 12:00:26 -0400141 {
142 // An unbudgeted RT with the same desc should also share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500143 sk_sp<GrRenderTarget> smallRT2 = create_RT_with_SB(resourceProvider, 4, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400144 REPORTER_ASSERT(reporter, smallRT2);
145
146 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) == get_SB(smallRT2.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800147 }
148
Robert Phillipsc0192e32017-09-21 12:00:26 -0400149 {
150 // An RT with a much larger size should not share.
Brian Salomonbdecacf2018-02-02 20:32:49 -0500151 sk_sp<GrRenderTarget> bigRT = create_RT_with_SB(resourceProvider, 400, 1, SkBudgeted::kNo);
Robert Phillipsc0192e32017-09-21 12:00:26 -0400152 REPORTER_ASSERT(reporter, bigRT);
bsalomon02a44a42015-02-19 09:09:00 -0800153
Robert Phillipsc0192e32017-09-21 12:00:26 -0400154 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(bigRT.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800155 }
bsalomon02a44a42015-02-19 09:09:00 -0800156
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400157 int smallSampleCount =
Robert Phillips9da87e02019-02-04 13:26:26 -0500158 context->priv().caps()->getRenderTargetSampleCount(2, kRGBA_8888_GrPixelConfig);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500159 if (smallSampleCount > 1) {
mtklein5f939ab2016-03-16 10:28:35 -0700160 // An RT with a different sample count should not share.
Robert Phillips6be756b2018-01-16 15:07:54 -0500161 sk_sp<GrRenderTarget> smallMSAART0 = create_RT_with_SB(resourceProvider, 4,
162 smallSampleCount, SkBudgeted::kNo);
bsalomonb602d4d2015-02-19 12:05:58 -0800163#ifdef SK_BUILD_FOR_ANDROID
164 if (!smallMSAART0) {
165 // The nexus player seems to fail to create MSAA textures.
166 return;
167 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400168#else
169 REPORTER_ASSERT(reporter, smallMSAART0);
bsalomonb602d4d2015-02-19 12:05:58 -0800170#endif
Robert Phillipsc0192e32017-09-21 12:00:26 -0400171
172 REPORTER_ASSERT(reporter, get_SB(smallRT0.get()) != get_SB(smallMSAART0.get()));
173
174 {
175 // A second MSAA RT should share with the first MSAA RT.
Robert Phillips6be756b2018-01-16 15:07:54 -0500176 sk_sp<GrRenderTarget> smallMSAART1 = create_RT_with_SB(resourceProvider, 4,
177 smallSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400178 SkBudgeted::kNo);
179 REPORTER_ASSERT(reporter, smallMSAART1);
180
181 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) == get_SB(smallMSAART1.get()));
bsalomon6bc1b5f2015-02-23 09:06:38 -0800182 }
Robert Phillipsc0192e32017-09-21 12:00:26 -0400183
Brian Salomonbdecacf2018-02-02 20:32:49 -0500184 // But one with a larger sample count should not. (Also check that the two requests didn't
185 // rounded up to the same actual sample count or else they could share.).
Robert Phillips9da87e02019-02-04 13:26:26 -0500186 int bigSampleCount = context->priv().caps()->getRenderTargetSampleCount(
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400187 5, kRGBA_8888_GrPixelConfig);
Brian Salomonbdecacf2018-02-02 20:32:49 -0500188 if (bigSampleCount > 0 && bigSampleCount != smallSampleCount) {
Robert Phillips6be756b2018-01-16 15:07:54 -0500189 sk_sp<GrRenderTarget> smallMSAART2 = create_RT_with_SB(resourceProvider, 4,
190 bigSampleCount,
Robert Phillipsc0192e32017-09-21 12:00:26 -0400191 SkBudgeted::kNo);
192 REPORTER_ASSERT(reporter, smallMSAART2);
193
194 REPORTER_ASSERT(reporter, get_SB(smallMSAART0.get()) != get_SB(smallMSAART2.get()));
bsalomon02a44a42015-02-19 09:09:00 -0800195 }
196 }
197}
198
bsalomon68d91342016-04-12 09:59:58 -0700199DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ResourceCacheWrappedResources, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700200 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500201 GrResourceProvider* resourceProvider = context->priv().resourceProvider();
202 GrGpu* gpu = context->priv().getGpu();
jvanvertheeb8d992015-07-15 10:16:56 -0700203 // this test is only valid for GL
204 if (!gpu || !gpu->glContextForTesting()) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700205 return;
206 }
207
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500208 GrBackendTexture backendTextures[2];
bsalomon6dc6f5f2015-06-18 09:12:16 -0700209 static const int kW = 100;
210 static const int kH = 100;
jvanverth672bb7f2015-07-13 07:19:57 -0700211
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500212 backendTextures[0] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
Robert Phillips646f6372018-09-25 09:31:10 -0400213 GrColorType::kRGBA_8888,
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500214 false, GrMipMapped::kNo);
215 backendTextures[1] = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
Robert Phillips646f6372018-09-25 09:31:10 -0400216 GrColorType::kRGBA_8888,
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500217 false, GrMipMapped::kNo);
Greg Daniel5366e592018-01-10 09:57:53 -0500218 REPORTER_ASSERT(reporter, backendTextures[0].isValid());
219 REPORTER_ASSERT(reporter, backendTextures[1].isValid());
220 if (!backendTextures[0].isValid() || !backendTextures[1].isValid()) {
221 return;
222 }
jvanverth672bb7f2015-07-13 07:19:57 -0700223
bsalomon6dc6f5f2015-06-18 09:12:16 -0700224 context->resetContext();
225
Robert Phillips6be756b2018-01-16 15:07:54 -0500226 sk_sp<GrTexture> borrowed(resourceProvider->wrapBackendTexture(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500227 backendTextures[0], kBorrow_GrWrapOwnership, GrWrapCacheable::kNo, kRead_GrIOType));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700228
Robert Phillips6be756b2018-01-16 15:07:54 -0500229 sk_sp<GrTexture> adopted(resourceProvider->wrapBackendTexture(
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500230 backendTextures[1], kAdopt_GrWrapOwnership, GrWrapCacheable::kNo, kRead_GrIOType));
bsalomon6dc6f5f2015-06-18 09:12:16 -0700231
Brian Osman85d34b22017-05-10 12:06:26 -0400232 REPORTER_ASSERT(reporter, borrowed != nullptr && adopted != nullptr);
233 if (!borrowed || !adopted) {
bsalomon6dc6f5f2015-06-18 09:12:16 -0700234 return;
235 }
236
halcanary96fcdcc2015-08-27 07:41:13 -0700237 borrowed.reset(nullptr);
238 adopted.reset(nullptr);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700239
240 context->flush();
241
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500242 bool borrowedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[0]);
243 bool adoptedIsAlive = gpu->isTestingOnlyBackendTexture(backendTextures[1]);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700244
245 REPORTER_ASSERT(reporter, borrowedIsAlive);
246 REPORTER_ASSERT(reporter, !adoptedIsAlive);
247
Brian Salomone64b0642018-03-07 11:47:54 -0500248 if (borrowedIsAlive) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500249 gpu->deleteTestingOnlyBackendTexture(backendTextures[0]);
Brian Salomone64b0642018-03-07 11:47:54 -0500250 }
251 if (adoptedIsAlive) {
Brian Salomon26102cb2018-03-09 09:33:19 -0500252 gpu->deleteTestingOnlyBackendTexture(backendTextures[1]);
Brian Salomone64b0642018-03-07 11:47:54 -0500253 }
bsalomon6dc6f5f2015-06-18 09:12:16 -0700254
255 context->resetContext();
256}
257
bsalomon6d3fe022014-07-25 08:35:45 -0700258class TestResource : public GrGpuResource {
bsalomon1c60dfe2015-01-21 09:32:40 -0800259 enum ScratchConstructor { kScratchConstructor };
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000260public:
robertphillips6e83ac72015-08-13 05:19:14 -0700261 static const size_t kDefaultSize = 100;
mtklein5f939ab2016-03-16 10:28:35 -0700262
bsalomon1c60dfe2015-01-21 09:32:40 -0800263 /** Property that distinctly categorizes the resource.
264 * For example, textures have width, height, ... */
bsalomon23e619c2015-02-06 11:54:28 -0800265 enum SimulatedProperty { kA_SimulatedProperty, kB_SimulatedProperty };
bsalomon1c60dfe2015-01-21 09:32:40 -0800266
kkinnunen2e6055b2016-04-22 01:48:29 -0700267 TestResource(GrGpu* gpu, SkBudgeted budgeted = SkBudgeted::kYes, size_t size = kDefaultSize)
268 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700269 , fToDelete(nullptr)
bsalomon1c60dfe2015-01-21 09:32:40 -0800270 , fSize(size)
kkinnunen2e6055b2016-04-22 01:48:29 -0700271 , fProperty(kA_SimulatedProperty)
272 , fIsScratch(false) {
bsalomon5236cf42015-01-14 10:42:08 -0800273 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700274 this->registerWithCache(budgeted);
bsalomon5236cf42015-01-14 10:42:08 -0800275 }
276
kkinnunen2e6055b2016-04-22 01:48:29 -0700277 static TestResource* CreateScratch(GrGpu* gpu, SkBudgeted budgeted,
Greg Danielda86e282018-06-13 09:41:19 -0400278 SimulatedProperty property, size_t size = kDefaultSize) {
279 return new TestResource(gpu, budgeted, property, kScratchConstructor, size);
bsalomondace19e2014-11-17 07:34:06 -0800280 }
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500281 static TestResource* CreateWrapped(GrGpu* gpu, GrWrapCacheable cacheable,
282 size_t size = kDefaultSize) {
283 return new TestResource(gpu, cacheable, size);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000284 }
285
Brian Salomond3b65972017-03-22 12:05:03 -0400286 ~TestResource() override {
bsalomon33435572014-11-05 14:47:41 -0800287 --fNumAlive;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000288 }
289
bsalomon33435572014-11-05 14:47:41 -0800290 static int NumAlive() { return fNumAlive; }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000291
Ben Wagner97c6a0e2018-07-11 14:56:22 -0400292 void setUnrefWhenDestroyed(sk_sp<TestResource> resource) {
293 fToDelete = std::move(resource);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000294 }
295
bsalomon1c60dfe2015-01-21 09:32:40 -0800296 static void ComputeScratchKey(SimulatedProperty property, GrScratchKey* key) {
297 static GrScratchKey::ResourceType t = GrScratchKey::GenerateResourceType();
298 GrScratchKey::Builder builder(key, t, kScratchKeyFieldCnt);
bsalomon24db3b12015-01-23 04:24:04 -0800299 for (int i = 0; i < kScratchKeyFieldCnt; ++i) {
300 builder[i] = static_cast<uint32_t>(i + property);
bsalomon1c60dfe2015-01-21 09:32:40 -0800301 }
302 }
303
304 static size_t ExpectedScratchKeySize() {
305 return sizeof(uint32_t) * (kScratchKeyFieldCnt + GrScratchKey::kMetaDataCnt);
306 }
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000307private:
bsalomon24db3b12015-01-23 04:24:04 -0800308 static const int kScratchKeyFieldCnt = 6;
bsalomon1c60dfe2015-01-21 09:32:40 -0800309
Greg Danielda86e282018-06-13 09:41:19 -0400310 TestResource(GrGpu* gpu, SkBudgeted budgeted, SimulatedProperty property, ScratchConstructor,
311 size_t size = kDefaultSize)
kkinnunen2e6055b2016-04-22 01:48:29 -0700312 : INHERITED(gpu)
halcanary96fcdcc2015-08-27 07:41:13 -0700313 , fToDelete(nullptr)
Greg Danielda86e282018-06-13 09:41:19 -0400314 , fSize(size)
kkinnunen2e6055b2016-04-22 01:48:29 -0700315 , fProperty(property)
316 , fIsScratch(true) {
bsalomon1c60dfe2015-01-21 09:32:40 -0800317 ++fNumAlive;
kkinnunen2e6055b2016-04-22 01:48:29 -0700318 this->registerWithCache(budgeted);
319 }
320
321 // Constructor for simulating resources that wrap backend objects.
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500322 TestResource(GrGpu* gpu, GrWrapCacheable cacheable, size_t size)
323 : INHERITED(gpu)
324 , fToDelete(nullptr)
325 , fSize(size)
326 , fProperty(kA_SimulatedProperty)
327 , fIsScratch(false) {
kkinnunen2e6055b2016-04-22 01:48:29 -0700328 ++fNumAlive;
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500329 this->registerWithCacheWrapped(cacheable);
kkinnunen2e6055b2016-04-22 01:48:29 -0700330 }
331
332 void computeScratchKey(GrScratchKey* key) const override {
333 if (fIsScratch) {
334 ComputeScratchKey(fProperty, key);
335 }
bsalomon1c60dfe2015-01-21 09:32:40 -0800336 }
337
mtklein36352bf2015-03-25 18:17:31 -0700338 size_t onGpuMemorySize() const override { return fSize; }
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -0400339 const char* getResourceType() const override { return "Test"; }
bsalomon69ed47f2014-11-12 11:13:39 -0800340
Ben Wagner97c6a0e2018-07-11 14:56:22 -0400341 sk_sp<TestResource> fToDelete;
commit-bot@chromium.org11c6b392014-05-05 19:09:13 +0000342 size_t fSize;
bsalomon33435572014-11-05 14:47:41 -0800343 static int fNumAlive;
bsalomon1c60dfe2015-01-21 09:32:40 -0800344 SimulatedProperty fProperty;
kkinnunen2e6055b2016-04-22 01:48:29 -0700345 bool fIsScratch;
bsalomon6d3fe022014-07-25 08:35:45 -0700346 typedef GrGpuResource INHERITED;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000347};
bsalomon33435572014-11-05 14:47:41 -0800348int TestResource::fNumAlive = 0;
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000349
bsalomonc2f35b72015-01-23 07:19:22 -0800350class Mock {
351public:
352 Mock(int maxCnt, size_t maxBytes) {
Greg Daniel02611d92017-07-25 10:05:01 -0400353 fContext = GrContext::MakeMock(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -0800354 SkASSERT(fContext);
355 fContext->setResourceCacheLimits(maxCnt, maxBytes);
Robert Phillips9da87e02019-02-04 13:26:26 -0500356 GrResourceCache* cache = fContext->priv().getResourceCache();
bsalomon0ea80f42015-02-11 10:49:59 -0800357 cache->purgeAllUnlocked();
358 SkASSERT(0 == cache->getResourceCount() && 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800359 }
bsalomonc2f35b72015-01-23 07:19:22 -0800360
Robert Phillips9da87e02019-02-04 13:26:26 -0500361 GrResourceCache* cache() { return fContext->priv().getResourceCache(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800362
Hal Canary342b7ac2016-11-04 11:49:42 -0400363 GrContext* context() { return fContext.get(); }
bsalomonc2f35b72015-01-23 07:19:22 -0800364
Greg Danielc27eb722018-08-10 09:48:08 -0400365 void reset() {
366 fContext.reset();
367 }
368
bsalomonc2f35b72015-01-23 07:19:22 -0800369private:
Hal Canary342b7ac2016-11-04 11:49:42 -0400370 sk_sp<GrContext> fContext;
bsalomonc2f35b72015-01-23 07:19:22 -0800371};
372
373static void test_no_key(skiatest::Reporter* reporter) {
374 Mock mock(10, 30000);
375 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800376 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500377 GrGpu* gpu = context->priv().getGpu();
bsalomon71cb0c22014-11-14 12:10:14 -0800378
379 // Create a bunch of resources with no keys
Greg Danielda86e282018-06-13 09:41:19 -0400380 TestResource* a = new TestResource(gpu, SkBudgeted::kYes, 11);
381 TestResource* b = new TestResource(gpu, SkBudgeted::kYes, 12);
382 TestResource* c = new TestResource(gpu, SkBudgeted::kYes, 13 );
383 TestResource* d = new TestResource(gpu, SkBudgeted::kYes, 14 );
bsalomon71cb0c22014-11-14 12:10:14 -0800384
385 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800386 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800387 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
bsalomon0ea80f42015-02-11 10:49:59 -0800388 d->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800389
390 // Should be safe to purge without deleting the resources since we still have refs.
bsalomon0ea80f42015-02-11 10:49:59 -0800391 cache->purgeAllUnlocked();
bsalomon71cb0c22014-11-14 12:10:14 -0800392 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
393
bsalomon8718aaf2015-02-19 07:24:21 -0800394 // Since the resources have neither unique nor scratch keys, delete immediately upon unref.
bsalomon71cb0c22014-11-14 12:10:14 -0800395
396 a->unref();
397 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800398 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800399 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800400 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800401
402 c->unref();
403 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800404 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800405 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800406 cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800407
408 d->unref();
409 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800410 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
411 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800412
413 b->unref();
414 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800415 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
416 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800417}
418
bsalomon24db3b12015-01-23 04:24:04 -0800419// Each integer passed as a template param creates a new domain.
Brian Salomon1090da62017-01-06 12:04:19 -0500420template <int>
421static void make_unique_key(GrUniqueKey* key, int data, const char* tag = nullptr) {
bsalomon8718aaf2015-02-19 07:24:21 -0800422 static GrUniqueKey::Domain d = GrUniqueKey::GenerateDomain();
Brian Salomon1090da62017-01-06 12:04:19 -0500423 GrUniqueKey::Builder builder(key, d, 1, tag);
bsalomon24db3b12015-01-23 04:24:04 -0800424 builder[0] = data;
425}
426
Robert Phillips6eba0632018-03-28 12:25:42 -0400427static void test_purge_unlocked(skiatest::Reporter* reporter) {
428 Mock mock(10, 30000);
429 GrContext* context = mock.context();
430 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500431 GrGpu* gpu = context->priv().getGpu();
Robert Phillips6eba0632018-03-28 12:25:42 -0400432
433 // Create two resource w/ a unique key and two w/o but all of which have scratch keys.
434 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400435 TestResource::kA_SimulatedProperty, 11);
Robert Phillips6eba0632018-03-28 12:25:42 -0400436
437 GrUniqueKey uniqueKey;
438 make_unique_key<0>(&uniqueKey, 0);
439
440 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400441 TestResource::kA_SimulatedProperty, 12);
Robert Phillips6eba0632018-03-28 12:25:42 -0400442 b->resourcePriv().setUniqueKey(uniqueKey);
443
444 TestResource* c = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400445 TestResource::kA_SimulatedProperty, 13);
Robert Phillips6eba0632018-03-28 12:25:42 -0400446
447 GrUniqueKey uniqueKey2;
448 make_unique_key<0>(&uniqueKey2, 1);
449
450 TestResource* d = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400451 TestResource::kA_SimulatedProperty, 14);
Robert Phillips6eba0632018-03-28 12:25:42 -0400452 d->resourcePriv().setUniqueKey(uniqueKey2);
453
454
455 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
456 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
457 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
458 d->gpuMemorySize() == cache->getResourceBytes());
459
460 // Should be safe to purge without deleting the resources since we still have refs.
461 cache->purgeUnlockedResources(false);
462 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
463
464 // Unref them all. Since they all have keys they should remain in the cache.
465
466 a->unref();
467 b->unref();
468 c->unref();
469 d->unref();
470 REPORTER_ASSERT(reporter, 4 == TestResource::NumAlive());
471 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
472 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() + c->gpuMemorySize() +
473 d->gpuMemorySize() == cache->getResourceBytes());
474
475 // Purge only the two scratch resources
476 cache->purgeUnlockedResources(true);
477
478 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
479 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
480 REPORTER_ASSERT(reporter, b->gpuMemorySize() + d->gpuMemorySize() ==
481 cache->getResourceBytes());
482
483 // Purge the uniquely keyed resources
484 cache->purgeUnlockedResources(false);
485
486 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
487 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
488 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
489}
490
bsalomon84c8e622014-11-17 09:33:27 -0800491static void test_budgeting(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800492 Mock mock(10, 300);
493 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800494 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500495 GrGpu* gpu = context->priv().getGpu();
bsalomondace19e2014-11-17 07:34:06 -0800496
bsalomon8718aaf2015-02-19 07:24:21 -0800497 GrUniqueKey uniqueKey;
498 make_unique_key<0>(&uniqueKey, 0);
bsalomondace19e2014-11-17 07:34:06 -0800499
bsalomon8718aaf2015-02-19 07:24:21 -0800500 // Create a scratch, a unique, and a wrapped resource
bsalomon1c60dfe2015-01-21 09:32:40 -0800501 TestResource* scratch =
Greg Danielda86e282018-06-13 09:41:19 -0400502 TestResource::CreateScratch(gpu, SkBudgeted::kYes, TestResource::kB_SimulatedProperty,
503 10);
504 TestResource* unique = new TestResource(gpu, SkBudgeted::kYes, 11);
bsalomonf99e9612015-02-19 08:24:16 -0800505 unique->resourcePriv().setUniqueKey(uniqueKey);
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500506 TestResource* wrappedCacheable = TestResource::CreateWrapped(gpu, GrWrapCacheable::kYes, 12);
507 TestResource* wrappedUncacheable = TestResource::CreateWrapped(gpu, GrWrapCacheable::kNo, 13);
508 TestResource* unbudgeted = new TestResource(gpu, SkBudgeted::kNo, 14);
bsalomondace19e2014-11-17 07:34:06 -0800509
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500510 // Make sure we can add a unique key to the wrapped resources
bsalomon8718aaf2015-02-19 07:24:21 -0800511 GrUniqueKey uniqueKey2;
512 make_unique_key<0>(&uniqueKey2, 1);
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500513 GrUniqueKey uniqueKey3;
514 make_unique_key<0>(&uniqueKey3, 2);
515 wrappedCacheable->resourcePriv().setUniqueKey(uniqueKey2);
516 wrappedUncacheable->resourcePriv().setUniqueKey(uniqueKey3);
517 GrGpuResource* wrappedCacheableViaKey = cache->findAndRefUniqueResource(uniqueKey2);
518 REPORTER_ASSERT(reporter, wrappedCacheableViaKey);
519 GrGpuResource* wrappedUncacheableViaKey = cache->findAndRefUniqueResource(uniqueKey3);
520 REPORTER_ASSERT(reporter, wrappedUncacheableViaKey);
Brian Osman0562eb92017-05-08 11:16:39 -0400521
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500522 // Remove the extra refs we just added.
523 SkSafeUnref(wrappedCacheableViaKey);
524 SkSafeUnref(wrappedUncacheableViaKey);
bsalomondace19e2014-11-17 07:34:06 -0800525
526 // Make sure sizes are as we expect
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500527 REPORTER_ASSERT(reporter, 5 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800528 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500529 wrappedCacheable->gpuMemorySize() +
530 wrappedUncacheable->gpuMemorySize() +
531 unbudgeted->gpuMemorySize() ==
532 cache->getResourceBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800533 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800534 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800535 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400536 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800537
bsalomon63c992f2015-01-23 12:47:59 -0800538 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800539 cache->purgeAllUnlocked();
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500540 REPORTER_ASSERT(reporter, 5 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800541 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500542 wrappedCacheable->gpuMemorySize() +
543 wrappedUncacheable->gpuMemorySize() +
544 unbudgeted->gpuMemorySize() ==
545 cache->getResourceBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800546 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800547 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800548 cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400549 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800550
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500551 // Unreffing the cacheable wrapped resource with a unique key shouldn't free it right away.
552 // However, unreffing the uncacheable wrapped resource should free it.
553 wrappedCacheable->unref();
554 wrappedUncacheable->unref();
Greg Daniel303e83e2018-09-10 14:10:19 -0400555 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
bsalomon8718aaf2015-02-19 07:24:21 -0800556 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + unique->gpuMemorySize() +
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500557 wrappedCacheable->gpuMemorySize() +
558 unbudgeted->gpuMemorySize() ==
559 cache->getResourceBytes());
Brian Salomon9bc76d92019-01-24 12:18:33 -0500560 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800561
bsalomon84c8e622014-11-17 09:33:27 -0800562 // Now try freeing the budgeted resources first
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500563 wrappedUncacheable = TestResource::CreateWrapped(gpu, GrWrapCacheable::kNo);
bsalomon8718aaf2015-02-19 07:24:21 -0800564 unique->unref();
Brian Salomon9bc76d92019-01-24 12:18:33 -0500565 REPORTER_ASSERT(reporter, 11 == cache->getPurgeableBytes());
566 // This will free 'unique' but not wrappedCacheable which has a key. That requires the key to be
567 // removed to be freed.
bsalomon0ea80f42015-02-11 10:49:59 -0800568 cache->purgeAllUnlocked();
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500569 REPORTER_ASSERT(reporter, 4 == cache->getResourceCount());
Brian Salomon9bc76d92019-01-24 12:18:33 -0500570
571 wrappedCacheableViaKey = cache->findAndRefUniqueResource(uniqueKey2);
572 REPORTER_ASSERT(reporter, wrappedCacheableViaKey);
573 if (wrappedCacheableViaKey) {
574 wrappedCacheableViaKey->resourcePriv().removeUniqueKey();
575 wrappedCacheable->unref();
576 }
577 // We shouldn't have to call purgeAllUnlocked as removing the key on a wrapped cacheable
578 // resource should immediately delete it.
579 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
580
581 wrappedCacheable = TestResource::CreateWrapped(gpu, GrWrapCacheable::kYes);
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500582 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() + wrappedCacheable->gpuMemorySize() +
583 wrappedUncacheable->gpuMemorySize() +
584 unbudgeted->gpuMemorySize() ==
585 cache->getResourceBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800586 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
587 REPORTER_ASSERT(reporter, scratch->gpuMemorySize() == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400588 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800589
590 scratch->unref();
Greg Danielda86e282018-06-13 09:41:19 -0400591 REPORTER_ASSERT(reporter, 10 == cache->getPurgeableBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800592 cache->purgeAllUnlocked();
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500593 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
594 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() + wrappedCacheable->gpuMemorySize() +
595 wrappedUncacheable->gpuMemorySize() ==
596 cache->getResourceBytes());
bsalomon0ea80f42015-02-11 10:49:59 -0800597 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
598 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400599 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800600
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500601 // Unreffing the wrapped resources (with no unique key) should free them right away.
602 wrappedUncacheable->unref();
603 wrappedCacheable->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800604 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
605 REPORTER_ASSERT(reporter, unbudgeted->gpuMemorySize() == cache->getResourceBytes());
606 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
607 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400608 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon84c8e622014-11-17 09:33:27 -0800609
610 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800611 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
612 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
613 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
614 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400615 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomondace19e2014-11-17 07:34:06 -0800616}
617
bsalomon5236cf42015-01-14 10:42:08 -0800618static void test_unbudgeted(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800619 Mock mock(10, 30000);
620 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800621 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500622 GrGpu* gpu = context->priv().getGpu();
bsalomon5236cf42015-01-14 10:42:08 -0800623
bsalomon8718aaf2015-02-19 07:24:21 -0800624 GrUniqueKey uniqueKey;
625 make_unique_key<0>(&uniqueKey, 0);
bsalomon5236cf42015-01-14 10:42:08 -0800626
627 TestResource* scratch;
bsalomon8718aaf2015-02-19 07:24:21 -0800628 TestResource* unique;
bsalomon5236cf42015-01-14 10:42:08 -0800629 TestResource* wrapped;
630 TestResource* unbudgeted;
631
632 // A large uncached or wrapped resource shouldn't evict anything.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500633 scratch = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400634 TestResource::kB_SimulatedProperty, 10);
kkinnunen2e6055b2016-04-22 01:48:29 -0700635
bsalomon5236cf42015-01-14 10:42:08 -0800636 scratch->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800637 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
638 REPORTER_ASSERT(reporter, 10 == cache->getResourceBytes());
639 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
640 REPORTER_ASSERT(reporter, 10 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400641 REPORTER_ASSERT(reporter, 10 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800642
Greg Danielda86e282018-06-13 09:41:19 -0400643 unique = new TestResource(gpu, SkBudgeted::kYes, 11);
bsalomonf99e9612015-02-19 08:24:16 -0800644 unique->resourcePriv().setUniqueKey(uniqueKey);
bsalomon8718aaf2015-02-19 07:24:21 -0800645 unique->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800646 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
647 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
648 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
649 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400650 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800651
bsalomon0ea80f42015-02-11 10:49:59 -0800652 size_t large = 2 * cache->getResourceBytes();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500653 unbudgeted = new TestResource(gpu, SkBudgeted::kNo, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800654 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
655 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
656 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
657 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400658 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800659
660 unbudgeted->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800661 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
662 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
663 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
664 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400665 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800666
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500667 wrapped = TestResource::CreateWrapped(gpu, GrWrapCacheable::kYes, large);
bsalomon0ea80f42015-02-11 10:49:59 -0800668 REPORTER_ASSERT(reporter, 3 == cache->getResourceCount());
669 REPORTER_ASSERT(reporter, 21 + large == cache->getResourceBytes());
670 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
671 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400672 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800673
674 wrapped->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800675 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
676 REPORTER_ASSERT(reporter, 21 == cache->getResourceBytes());
677 REPORTER_ASSERT(reporter, 2 == cache->getBudgetedResourceCount());
678 REPORTER_ASSERT(reporter, 21 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400679 REPORTER_ASSERT(reporter, 21 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800680
bsalomon0ea80f42015-02-11 10:49:59 -0800681 cache->purgeAllUnlocked();
682 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
683 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
684 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
685 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400686 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon5236cf42015-01-14 10:42:08 -0800687}
688
bsalomon3582d3e2015-02-13 14:20:05 -0800689// This method can't be static because it needs to friended in GrGpuResource::CacheAccess.
690void test_unbudgeted_to_scratch(skiatest::Reporter* reporter);
691/*static*/ void test_unbudgeted_to_scratch(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800692 Mock mock(10, 300);
693 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800694 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500695 GrGpu* gpu = context->priv().getGpu();
bsalomonc2f35b72015-01-23 07:19:22 -0800696
697 TestResource* resource =
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500698 TestResource::CreateScratch(gpu, SkBudgeted::kNo, TestResource::kA_SimulatedProperty);
bsalomonc2f35b72015-01-23 07:19:22 -0800699 GrScratchKey key;
bsalomon23e619c2015-02-06 11:54:28 -0800700 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &key);
bsalomonc2f35b72015-01-23 07:19:22 -0800701
702 size_t size = resource->gpuMemorySize();
703 for (int i = 0; i < 2; ++i) {
704 // Since this resource is unbudgeted, it should not be reachable as scratch.
bsalomon3582d3e2015-02-13 14:20:05 -0800705 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800706 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500707 REPORTER_ASSERT(reporter, GrBudgetedType::kUnbudgetedUncacheable ==
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500708 resource->resourcePriv().budgetedType());
Chris Daltond004e0b2018-09-27 09:28:03 -0600709 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(key, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone));
bsalomon0ea80f42015-02-11 10:49:59 -0800710 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
711 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
712 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
713 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400714 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800715
716 // Once it is unrefed, it should become available as scratch.
717 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800718 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
719 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
720 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
721 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400722 REPORTER_ASSERT(reporter, size == cache->getPurgeableBytes());
Chris Daltond004e0b2018-09-27 09:28:03 -0600723 resource = static_cast<TestResource*>(cache->findAndRefScratchResource(key, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone));
bsalomonc2f35b72015-01-23 07:19:22 -0800724 REPORTER_ASSERT(reporter, resource);
bsalomon3582d3e2015-02-13 14:20:05 -0800725 REPORTER_ASSERT(reporter, resource->resourcePriv().getScratchKey() == key);
bsalomonc2f35b72015-01-23 07:19:22 -0800726 REPORTER_ASSERT(reporter, resource->cacheAccess().isScratch());
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500727 REPORTER_ASSERT(reporter,
728 GrBudgetedType::kBudgeted == resource->resourcePriv().budgetedType());
bsalomonc2f35b72015-01-23 07:19:22 -0800729
730 if (0 == i) {
mtklein5f939ab2016-03-16 10:28:35 -0700731 // If made unbudgeted, it should return to original state: ref'ed and unbudgeted. Try
bsalomonc2f35b72015-01-23 07:19:22 -0800732 // the above tests again.
bsalomon3582d3e2015-02-13 14:20:05 -0800733 resource->resourcePriv().makeUnbudgeted();
bsalomonc2f35b72015-01-23 07:19:22 -0800734 } else {
735 // After the second time around, try removing the scratch key
bsalomon3582d3e2015-02-13 14:20:05 -0800736 resource->resourcePriv().removeScratchKey();
bsalomon0ea80f42015-02-11 10:49:59 -0800737 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
738 REPORTER_ASSERT(reporter, size == cache->getResourceBytes());
739 REPORTER_ASSERT(reporter, 1 == cache->getBudgetedResourceCount());
740 REPORTER_ASSERT(reporter, size == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400741 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomon3582d3e2015-02-13 14:20:05 -0800742 REPORTER_ASSERT(reporter, !resource->resourcePriv().getScratchKey().isValid());
bsalomonc2f35b72015-01-23 07:19:22 -0800743 REPORTER_ASSERT(reporter, !resource->cacheAccess().isScratch());
Brian Salomonfa2ebea2019-01-24 15:58:58 -0500744 REPORTER_ASSERT(reporter,
745 GrBudgetedType::kBudgeted == resource->resourcePriv().budgetedType());
bsalomonc2f35b72015-01-23 07:19:22 -0800746
747 // now when it is unrefed it should die since it has no key.
748 resource->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800749 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
750 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
751 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
752 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
Derek Sollenbergeree479142017-05-24 11:41:33 -0400753 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
bsalomonc2f35b72015-01-23 07:19:22 -0800754 }
bsalomon8b79d232014-11-10 10:19:06 -0800755 }
bsalomonc2f35b72015-01-23 07:19:22 -0800756}
757
758static void test_duplicate_scratch_key(skiatest::Reporter* reporter) {
759 Mock mock(5, 30000);
760 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800761 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500762 GrGpu* gpu = context->priv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -0800763
bsalomon8b79d232014-11-10 10:19:06 -0800764 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500765 TestResource* a = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700766 SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400767 TestResource::kB_SimulatedProperty, 11);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500768 TestResource* b = TestResource::CreateScratch(gpu,
kkinnunen2e6055b2016-04-22 01:48:29 -0700769 SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -0400770 TestResource::kB_SimulatedProperty, 12);
bsalomon1c60dfe2015-01-21 09:32:40 -0800771 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800772 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800773 // Check for negative case consistency. (leaks upon test failure.)
Chris Daltond004e0b2018-09-27 09:28:03 -0600774 REPORTER_ASSERT(reporter, nullptr == cache->findAndRefScratchResource(scratchKey1, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone));
bsalomon1c60dfe2015-01-21 09:32:40 -0800775
776 GrScratchKey scratchKey;
bsalomon23e619c2015-02-06 11:54:28 -0800777 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800778
bsalomon0ea80f42015-02-11 10:49:59 -0800779 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon8b79d232014-11-10 10:19:06 -0800780 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800781 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
782 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon71cb0c22014-11-14 12:10:14 -0800783 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() ==
bsalomon0ea80f42015-02-11 10:49:59 -0800784 cache->getResourceBytes());
bsalomon8b79d232014-11-10 10:19:06 -0800785
bsalomon63c992f2015-01-23 12:47:59 -0800786 // Our refs mean that the resources are non purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800787 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800788 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800789 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon8b79d232014-11-10 10:19:06 -0800790
791 // Unref but don't purge
792 a->unref();
793 b->unref();
794 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800795 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800796
bsalomon63c992f2015-01-23 12:47:59 -0800797 // Purge again. This time resources should be purgeable.
bsalomon0ea80f42015-02-11 10:49:59 -0800798 cache->purgeAllUnlocked();
bsalomon8b79d232014-11-10 10:19:06 -0800799 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800800 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
801 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
bsalomon8b79d232014-11-10 10:19:06 -0800802}
803
bsalomon10e23ca2014-11-25 05:52:06 -0800804static void test_remove_scratch_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800805 Mock mock(5, 30000);
806 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800807 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500808 GrGpu* gpu = context->priv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -0800809
bsalomon10e23ca2014-11-25 05:52:06 -0800810 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500811 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800812 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500813 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800814 TestResource::kB_SimulatedProperty);
bsalomon10e23ca2014-11-25 05:52:06 -0800815 a->unref();
816 b->unref();
817
bsalomon1c60dfe2015-01-21 09:32:40 -0800818 GrScratchKey scratchKey;
819 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800820 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800821 // (following leaks upon test failure).
Chris Daltond004e0b2018-09-27 09:28:03 -0600822 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800823
bsalomon0ea80f42015-02-11 10:49:59 -0800824 // Scratch resources are registered with GrResourceCache just by existing. There are 2.
bsalomon23e619c2015-02-06 11:54:28 -0800825 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
bsalomon10e23ca2014-11-25 05:52:06 -0800826 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800827 SkDEBUGCODE(REPORTER_ASSERT(reporter, 2 == cache->countScratchEntriesForKey(scratchKey));)
828 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800829
830 // Find the first resource and remove its scratch key
831 GrGpuResource* find;
Chris Daltond004e0b2018-09-27 09:28:03 -0600832 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone);
bsalomon3582d3e2015-02-13 14:20:05 -0800833 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800834 // It's still alive, but not cached by scratch key anymore
835 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800836 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
837 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800838
839 // The cache should immediately delete it when it's unrefed since it isn't accessible.
840 find->unref();
841 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800842 SkDEBUGCODE(REPORTER_ASSERT(reporter, 1 == cache->countScratchEntriesForKey(scratchKey));)
843 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800844
845 // Repeat for the second resource.
Chris Daltond004e0b2018-09-27 09:28:03 -0600846 find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone);
bsalomon3582d3e2015-02-13 14:20:05 -0800847 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800848 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800849 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
850 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800851
852 // Should be able to call this multiple times with no problem.
bsalomon3582d3e2015-02-13 14:20:05 -0800853 find->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -0800854 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800855 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
856 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800857
858 find->unref();
859 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -0800860 SkDEBUGCODE(REPORTER_ASSERT(reporter, 0 == cache->countScratchEntriesForKey(scratchKey));)
861 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
bsalomon10e23ca2014-11-25 05:52:06 -0800862}
863
bsalomon1c60dfe2015-01-21 09:32:40 -0800864static void test_scratch_key_consistency(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800865 Mock mock(5, 30000);
866 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800867 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500868 GrGpu* gpu = context->priv().getGpu();
bsalomon1c60dfe2015-01-21 09:32:40 -0800869
870 // Create two resources that have the same scratch key.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500871 TestResource* a = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800872 TestResource::kB_SimulatedProperty);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500873 TestResource* b = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -0800874 TestResource::kB_SimulatedProperty);
bsalomon1c60dfe2015-01-21 09:32:40 -0800875 a->unref();
876 b->unref();
877
878 GrScratchKey scratchKey;
879 // Ensure that scratch key comparison and assignment is consistent.
880 GrScratchKey scratchKey1;
bsalomon23e619c2015-02-06 11:54:28 -0800881 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey1);
bsalomon1c60dfe2015-01-21 09:32:40 -0800882 GrScratchKey scratchKey2;
bsalomon23e619c2015-02-06 11:54:28 -0800883 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey2);
bsalomon1c60dfe2015-01-21 09:32:40 -0800884 REPORTER_ASSERT(reporter, scratchKey1.size() == TestResource::ExpectedScratchKeySize());
885 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey2);
886 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey1);
887 scratchKey = scratchKey1;
888 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
889 REPORTER_ASSERT(reporter, scratchKey1 == scratchKey);
890 REPORTER_ASSERT(reporter, scratchKey == scratchKey1);
891 REPORTER_ASSERT(reporter, scratchKey2 != scratchKey);
892 REPORTER_ASSERT(reporter, scratchKey != scratchKey2);
893 scratchKey = scratchKey2;
894 REPORTER_ASSERT(reporter, scratchKey.size() == TestResource::ExpectedScratchKeySize());
895 REPORTER_ASSERT(reporter, scratchKey1 != scratchKey);
896 REPORTER_ASSERT(reporter, scratchKey != scratchKey1);
897 REPORTER_ASSERT(reporter, scratchKey2 == scratchKey);
898 REPORTER_ASSERT(reporter, scratchKey == scratchKey2);
899
900 // Ensure that scratch key lookup is correct for negative case.
bsalomon23e619c2015-02-06 11:54:28 -0800901 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
bsalomon1c60dfe2015-01-21 09:32:40 -0800902 // (following leaks upon test failure).
Chris Daltond004e0b2018-09-27 09:28:03 -0600903 REPORTER_ASSERT(reporter, cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone) == nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800904
905 // Find the first resource with a scratch key and a copy of a scratch key.
bsalomon23e619c2015-02-06 11:54:28 -0800906 TestResource::ComputeScratchKey(TestResource::kB_SimulatedProperty, &scratchKey);
Chris Daltond004e0b2018-09-27 09:28:03 -0600907 GrGpuResource* find = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone);
halcanary96fcdcc2015-08-27 07:41:13 -0700908 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800909 find->unref();
910
911 scratchKey2 = scratchKey;
Chris Daltond004e0b2018-09-27 09:28:03 -0600912 find = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone);
halcanary96fcdcc2015-08-27 07:41:13 -0700913 REPORTER_ASSERT(reporter, find != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800914 REPORTER_ASSERT(reporter, find == a || find == b);
915
Chris Daltond004e0b2018-09-27 09:28:03 -0600916 GrGpuResource* find2 = cache->findAndRefScratchResource(scratchKey2, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone);
halcanary96fcdcc2015-08-27 07:41:13 -0700917 REPORTER_ASSERT(reporter, find2 != nullptr);
bsalomon1c60dfe2015-01-21 09:32:40 -0800918 REPORTER_ASSERT(reporter, find2 == a || find2 == b);
919 REPORTER_ASSERT(reporter, find2 != find);
920 find2->unref();
921 find->unref();
922}
923
bsalomon8718aaf2015-02-19 07:24:21 -0800924static void test_duplicate_unique_key(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -0800925 Mock mock(5, 30000);
926 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -0800927 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -0500928 GrGpu* gpu = context->priv().getGpu();
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +0000929
bsalomon8718aaf2015-02-19 07:24:21 -0800930 GrUniqueKey key;
931 make_unique_key<0>(&key, 0);
mtklein5f939ab2016-03-16 10:28:35 -0700932
bsalomon8718aaf2015-02-19 07:24:21 -0800933 // Create two resources that we will attempt to register with the same unique key.
Greg Danielda86e282018-06-13 09:41:19 -0400934 TestResource* a = new TestResource(gpu, SkBudgeted::kYes, 11);
mtklein5f939ab2016-03-16 10:28:35 -0700935
bsalomonf99e9612015-02-19 08:24:16 -0800936 // Set key on resource a.
937 a->resourcePriv().setUniqueKey(key);
938 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
939 a->unref();
bsalomon71cb0c22014-11-14 12:10:14 -0800940
bsalomonf99e9612015-02-19 08:24:16 -0800941 // Make sure that redundantly setting a's key works.
942 a->resourcePriv().setUniqueKey(key);
943 REPORTER_ASSERT(reporter, a == cache->findAndRefUniqueResource(key));
bsalomon8b79d232014-11-10 10:19:06 -0800944 a->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800945 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
946 REPORTER_ASSERT(reporter, a->gpuMemorySize() == cache->getResourceBytes());
bsalomon71cb0c22014-11-14 12:10:14 -0800947 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
948
bsalomonf99e9612015-02-19 08:24:16 -0800949 // Create resource b and set the same key. It should replace a's unique key cache entry.
Greg Danielda86e282018-06-13 09:41:19 -0400950 TestResource* b = new TestResource(gpu, SkBudgeted::kYes, 12);
bsalomonf99e9612015-02-19 08:24:16 -0800951 b->resourcePriv().setUniqueKey(key);
952 REPORTER_ASSERT(reporter, b == cache->findAndRefUniqueResource(key));
953 b->unref();
954
955 // Still have two resources because a is still reffed.
956 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
957 REPORTER_ASSERT(reporter, a->gpuMemorySize() + b->gpuMemorySize() == cache->getResourceBytes());
958 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
959
960 a->unref();
961 // Now a should be gone.
962 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
963 REPORTER_ASSERT(reporter, b->gpuMemorySize() == cache->getResourceBytes());
964 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
965
966 // Now replace b with c, but make sure c can start with one unique key and change it to b's key.
967 // Also make b be unreffed when replacement occurs.
968 b->unref();
Greg Danielda86e282018-06-13 09:41:19 -0400969 TestResource* c = new TestResource(gpu, SkBudgeted::kYes, 13);
bsalomonf99e9612015-02-19 08:24:16 -0800970 GrUniqueKey differentKey;
971 make_unique_key<0>(&differentKey, 1);
bsalomonf99e9612015-02-19 08:24:16 -0800972 c->resourcePriv().setUniqueKey(differentKey);
973 REPORTER_ASSERT(reporter, 2 == cache->getResourceCount());
974 REPORTER_ASSERT(reporter, b->gpuMemorySize() + c->gpuMemorySize() == cache->getResourceBytes());
975 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
976 // c replaces b and b should be immediately purged.
977 c->resourcePriv().setUniqueKey(key);
978 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
979 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
980 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
981
982 // c shouldn't be purged because it is ref'ed.
bsalomon0ea80f42015-02-11 10:49:59 -0800983 cache->purgeAllUnlocked();
bsalomonf99e9612015-02-19 08:24:16 -0800984 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
985 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
986 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
987
988 // Drop the ref on c, it should be kept alive because it has a unique key.
989 c->unref();
990 REPORTER_ASSERT(reporter, 1 == cache->getResourceCount());
991 REPORTER_ASSERT(reporter, c->gpuMemorySize() == cache->getResourceBytes());
992 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
993
994 // Verify that we can find c, then remove its unique key. It should get purged immediately.
995 REPORTER_ASSERT(reporter, c == cache->findAndRefUniqueResource(key));
996 c->resourcePriv().removeUniqueKey();
997 c->unref();
bsalomon0ea80f42015-02-11 10:49:59 -0800998 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
999 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon33435572014-11-05 14:47:41 -08001000 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
senorblanco84cd6212015-08-04 10:01:58 -07001001
1002 {
1003 GrUniqueKey key2;
1004 make_unique_key<0>(&key2, 0);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001005 sk_sp<TestResource> d(new TestResource(gpu));
senorblanco84cd6212015-08-04 10:01:58 -07001006 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -07001007 key2.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -07001008 d->resourcePriv().setUniqueKey(key2);
1009 }
1010
1011 GrUniqueKey key3;
1012 make_unique_key<0>(&key3, 0);
Hal Canary342b7ac2016-11-04 11:49:42 -04001013 sk_sp<GrGpuResource> d2(cache->findAndRefUniqueResource(key3));
senorblanco84cd6212015-08-04 10:01:58 -07001014 REPORTER_ASSERT(reporter, *(int*) d2->getUniqueKey().getCustomData()->data() == 4132);
commit-bot@chromium.orgc6658042014-01-15 23:09:01 +00001015}
1016
bsalomon8b79d232014-11-10 10:19:06 -08001017static void test_purge_invalidated(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -08001018 Mock mock(5, 30000);
1019 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001020 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001021 GrGpu* gpu = context->priv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -08001022
bsalomon8718aaf2015-02-19 07:24:21 -08001023 GrUniqueKey key1, key2, key3;
1024 make_unique_key<0>(&key1, 1);
1025 make_unique_key<0>(&key2, 2);
1026 make_unique_key<0>(&key3, 3);
mtklein5f939ab2016-03-16 10:28:35 -07001027
bsalomon23e619c2015-02-06 11:54:28 -08001028 // Add three resources to the cache. Only c is usable as scratch.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001029 TestResource* a = new TestResource(gpu);
1030 TestResource* b = new TestResource(gpu);
1031 TestResource* c = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
bsalomon23e619c2015-02-06 11:54:28 -08001032 TestResource::kA_SimulatedProperty);
bsalomon8718aaf2015-02-19 07:24:21 -08001033 a->resourcePriv().setUniqueKey(key1);
1034 b->resourcePriv().setUniqueKey(key2);
1035 c->resourcePriv().setUniqueKey(key3);
bsalomon8b79d232014-11-10 10:19:06 -08001036 a->unref();
bsalomon23e619c2015-02-06 11:54:28 -08001037 // hold b until *after* the message is sent.
bsalomon8b79d232014-11-10 10:19:06 -08001038 c->unref();
1039
bsalomon8718aaf2015-02-19 07:24:21 -08001040 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1041 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
1042 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -08001043 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
bsalomon23e619c2015-02-06 11:54:28 -08001044
bsalomon8718aaf2015-02-19 07:24:21 -08001045 typedef GrUniqueKeyInvalidatedMessage Msg;
1046 typedef SkMessageBus<GrUniqueKeyInvalidatedMessage> Bus;
bsalomon23e619c2015-02-06 11:54:28 -08001047
1048 // Invalidate two of the three, they should be purged and no longer accessible via their keys.
Robert Phillips9da87e02019-02-04 13:26:26 -05001049 Bus::Post(Msg(key1, context->priv().contextID()));
1050 Bus::Post(Msg(key2, context->priv().contextID()));
bsalomon0ea80f42015-02-11 10:49:59 -08001051 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -08001052 // a should be deleted now, but we still have a ref on b.
bsalomon8718aaf2015-02-19 07:24:21 -08001053 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1054 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon23e619c2015-02-06 11:54:28 -08001055 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -08001056 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key3));
bsalomon8b79d232014-11-10 10:19:06 -08001057
1058 // Invalidate the third.
Robert Phillips9da87e02019-02-04 13:26:26 -05001059 Bus::Post(Msg(key3, context->priv().contextID()));
bsalomon0ea80f42015-02-11 10:49:59 -08001060 cache->purgeAsNeeded();
bsalomon23e619c2015-02-06 11:54:28 -08001061 // we still have a ref on b, c should be recycled as scratch.
1062 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8718aaf2015-02-19 07:24:21 -08001063 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key3));
bsalomon71cb0c22014-11-14 12:10:14 -08001064
bsalomon23e619c2015-02-06 11:54:28 -08001065 // make b purgeable. It should be immediately deleted since it has no key.
1066 b->unref();
1067 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
1068
1069 // Make sure we actually get to c via it's scratch key, before we say goodbye.
1070 GrScratchKey scratchKey;
1071 TestResource::ComputeScratchKey(TestResource::kA_SimulatedProperty, &scratchKey);
Chris Daltond004e0b2018-09-27 09:28:03 -06001072 GrGpuResource* scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone);
bsalomon23e619c2015-02-06 11:54:28 -08001073 REPORTER_ASSERT(reporter, scratch == c);
1074 SkSafeUnref(scratch);
1075
1076 // Get rid of c.
bsalomon0ea80f42015-02-11 10:49:59 -08001077 cache->purgeAllUnlocked();
Chris Daltond004e0b2018-09-27 09:28:03 -06001078 scratch = cache->findAndRefScratchResource(scratchKey, TestResource::kDefaultSize, GrResourceCache::ScratchFlags::kNone);
bsalomon71cb0c22014-11-14 12:10:14 -08001079 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
bsalomon0ea80f42015-02-11 10:49:59 -08001080 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1081 REPORTER_ASSERT(reporter, 0 == cache->getResourceBytes());
bsalomon23e619c2015-02-06 11:54:28 -08001082 REPORTER_ASSERT(reporter, !scratch);
1083 SkSafeUnref(scratch);
bsalomon8b79d232014-11-10 10:19:06 -08001084}
1085
bsalomon71cb0c22014-11-14 12:10:14 -08001086static void test_cache_chained_purge(skiatest::Reporter* reporter) {
bsalomonc2f35b72015-01-23 07:19:22 -08001087 Mock mock(3, 30000);
1088 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001089 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001090 GrGpu* gpu = context->priv().getGpu();
bsalomon8b79d232014-11-10 10:19:06 -08001091
bsalomon8718aaf2015-02-19 07:24:21 -08001092 GrUniqueKey key1, key2;
1093 make_unique_key<0>(&key1, 1);
1094 make_unique_key<0>(&key2, 2);
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001095
Ben Wagner97c6a0e2018-07-11 14:56:22 -04001096 sk_sp<TestResource> a(new TestResource(gpu));
1097 sk_sp<TestResource> b(new TestResource(gpu));
bsalomon8718aaf2015-02-19 07:24:21 -08001098 a->resourcePriv().setUniqueKey(key1);
1099 b->resourcePriv().setUniqueKey(key2);
bsalomon820dd6c2014-11-05 12:09:45 -08001100
bsalomonc2f35b72015-01-23 07:19:22 -08001101 // Make a cycle
1102 a->setUnrefWhenDestroyed(b);
1103 b->setUnrefWhenDestroyed(a);
bsalomon71cb0c22014-11-14 12:10:14 -08001104
bsalomonc2f35b72015-01-23 07:19:22 -08001105 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001106
Ben Wagner97c6a0e2018-07-11 14:56:22 -04001107 TestResource* unownedA = a.release();
1108 unownedA->unref();
1109 b.reset();
bsalomon8b79d232014-11-10 10:19:06 -08001110
bsalomonc2f35b72015-01-23 07:19:22 -08001111 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001112
bsalomon0ea80f42015-02-11 10:49:59 -08001113 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001114 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon8b79d232014-11-10 10:19:06 -08001115
bsalomonc2f35b72015-01-23 07:19:22 -08001116 // Break the cycle
Ben Wagner97c6a0e2018-07-11 14:56:22 -04001117 unownedA->setUnrefWhenDestroyed(nullptr);
bsalomonc2f35b72015-01-23 07:19:22 -08001118 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
bsalomon33435572014-11-05 14:47:41 -08001119
bsalomon0ea80f42015-02-11 10:49:59 -08001120 cache->purgeAllUnlocked();
bsalomonc2f35b72015-01-23 07:19:22 -08001121 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
commit-bot@chromium.orgbd58feb2014-01-17 17:56:21 +00001122}
1123
bsalomonddf30e62015-02-19 11:38:44 -08001124static void test_timestamp_wrap(skiatest::Reporter* reporter) {
1125 static const int kCount = 50;
1126 static const int kBudgetCnt = kCount / 2;
1127 static const int kLockedFreq = 8;
1128 static const int kBudgetSize = 0x80000000;
1129
1130 SkRandom random;
1131
1132 // Run the test 2*kCount times;
1133 for (int i = 0; i < 2 * kCount; ++i ) {
1134 Mock mock(kBudgetCnt, kBudgetSize);
1135 GrContext* context = mock.context();
1136 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001137 GrGpu* gpu = context->priv().getGpu();
bsalomonddf30e62015-02-19 11:38:44 -08001138
1139 // Pick a random number of resources to add before the timestamp will wrap.
Ben Wagnerb0897652018-06-15 15:37:57 +00001140 cache->changeTimestamp(UINT32_MAX - random.nextULessThan(kCount + 1));
bsalomonddf30e62015-02-19 11:38:44 -08001141
1142 static const int kNumToPurge = kCount - kBudgetCnt;
1143
1144 SkTDArray<int> shouldPurgeIdxs;
1145 int purgeableCnt = 0;
1146 SkTDArray<GrGpuResource*> resourcesToUnref;
1147
1148 // Add kCount resources, holding onto resources at random so we have a mix of purgeable and
1149 // unpurgeable resources.
1150 for (int j = 0; j < kCount; ++j) {
1151 GrUniqueKey key;
1152 make_unique_key<0>(&key, j);
1153
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001154 TestResource* r = new TestResource(gpu);
bsalomonddf30e62015-02-19 11:38:44 -08001155 r->resourcePriv().setUniqueKey(key);
1156 if (random.nextU() % kLockedFreq) {
1157 // Make this is purgeable.
1158 r->unref();
1159 ++purgeableCnt;
1160 if (purgeableCnt <= kNumToPurge) {
1161 *shouldPurgeIdxs.append() = j;
1162 }
1163 } else {
1164 *resourcesToUnref.append() = r;
1165 }
1166 }
1167
1168 // Verify that the correct resources were purged.
1169 int currShouldPurgeIdx = 0;
1170 for (int j = 0; j < kCount; ++j) {
1171 GrUniqueKey key;
1172 make_unique_key<0>(&key, j);
1173 GrGpuResource* res = cache->findAndRefUniqueResource(key);
1174 if (currShouldPurgeIdx < shouldPurgeIdxs.count() &&
1175 shouldPurgeIdxs[currShouldPurgeIdx] == j) {
1176 ++currShouldPurgeIdx;
halcanary96fcdcc2015-08-27 07:41:13 -07001177 REPORTER_ASSERT(reporter, nullptr == res);
bsalomonddf30e62015-02-19 11:38:44 -08001178 } else {
halcanary96fcdcc2015-08-27 07:41:13 -07001179 REPORTER_ASSERT(reporter, nullptr != res);
bsalomonddf30e62015-02-19 11:38:44 -08001180 }
1181 SkSafeUnref(res);
1182 }
1183
1184 for (int j = 0; j < resourcesToUnref.count(); ++j) {
1185 resourcesToUnref[j]->unref();
1186 }
1187 }
1188}
1189
Brian Salomon5e150852017-03-22 14:53:13 -04001190static void test_time_purge(skiatest::Reporter* reporter) {
1191 Mock mock(1000000, 1000000);
1192 GrContext* context = mock.context();
1193 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001194 GrGpu* gpu = context->priv().getGpu();
Brian Salomon5e150852017-03-22 14:53:13 -04001195
1196 static constexpr int kCnts[] = {1, 10, 1024};
1197 auto nowish = []() {
1198 // We sleep so that we ensure we get a value that is greater than the last call to
1199 // GrStdSteadyClock::now().
1200 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1201 auto result = GrStdSteadyClock::now();
1202 // Also sleep afterwards so we don't get this value again.
1203 std::this_thread::sleep_for(GrStdSteadyClock::duration(5));
1204 return result;
1205 };
1206
1207 for (int cnt : kCnts) {
1208 std::unique_ptr<GrStdSteadyClock::time_point[]> timeStamps(
1209 new GrStdSteadyClock::time_point[cnt]);
1210 {
1211 // Insert resources and get time points between each addition.
1212 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001213 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001214 GrUniqueKey k;
1215 make_unique_key<1>(&k, i);
1216 r->resourcePriv().setUniqueKey(k);
1217 r->unref();
1218 timeStamps.get()[i] = nowish();
1219 }
1220
1221 // Purge based on the time points between resource additions. Each purge should remove
1222 // the oldest resource.
1223 for (int i = 0; i < cnt; ++i) {
1224 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1225 REPORTER_ASSERT(reporter, cnt - i - 1 == cache->getResourceCount());
1226 for (int j = 0; j < i; ++j) {
1227 GrUniqueKey k;
1228 make_unique_key<1>(&k, j);
1229 GrGpuResource* r = cache->findAndRefUniqueResource(k);
1230 REPORTER_ASSERT(reporter, !SkToBool(r));
1231 SkSafeUnref(r);
1232 }
1233 }
1234
1235 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1236 cache->purgeAllUnlocked();
1237 }
1238
1239 // Do a similar test but where we leave refs on some resources to prevent them from being
1240 // purged.
1241 {
1242 std::unique_ptr<GrGpuResource* []> refedResources(new GrGpuResource*[cnt / 2]);
1243 for (int i = 0; i < cnt; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001244 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001245 GrUniqueKey k;
1246 make_unique_key<1>(&k, i);
1247 r->resourcePriv().setUniqueKey(k);
1248 // Leave a ref on every other resource, beginning with the first.
1249 if (SkToBool(i & 0x1)) {
1250 refedResources.get()[i / 2] = r;
1251 } else {
1252 r->unref();
1253 }
1254 timeStamps.get()[i] = nowish();
1255 }
1256
1257 for (int i = 0; i < cnt; ++i) {
1258 // Should get a resource purged every other frame.
1259 cache->purgeResourcesNotUsedSince(timeStamps[i]);
1260 REPORTER_ASSERT(reporter, cnt - i / 2 - 1 == cache->getResourceCount());
1261 }
1262
1263 // Unref all the resources that we kept refs on in the first loop.
1264 for (int i = 0; i < (cnt / 2); ++i) {
1265 refedResources.get()[i]->unref();
1266 cache->purgeResourcesNotUsedSince(nowish());
1267 REPORTER_ASSERT(reporter, cnt / 2 - i - 1 == cache->getResourceCount());
1268 }
1269
1270 cache->purgeAllUnlocked();
1271 }
1272
1273 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1274
1275 // Verify that calling flush() on a GrContext with nothing to do will not trigger resource
1276 // eviction
1277 context->flush();
1278 for (int i = 0; i < 10; ++i) {
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001279 TestResource* r = new TestResource(gpu);
Brian Salomon5e150852017-03-22 14:53:13 -04001280 GrUniqueKey k;
1281 make_unique_key<1>(&k, i);
1282 r->resourcePriv().setUniqueKey(k);
1283 r->unref();
1284 }
1285 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1286 context->flush();
1287 REPORTER_ASSERT(reporter, 10 == cache->getResourceCount());
1288 cache->purgeResourcesNotUsedSince(nowish());
1289 REPORTER_ASSERT(reporter, 0 == cache->getResourceCount());
1290 }
1291}
1292
Derek Sollenberger5480a182017-05-25 16:43:59 -04001293static void test_partial_purge(skiatest::Reporter* reporter) {
1294 Mock mock(6, 100);
1295 GrContext* context = mock.context();
1296 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001297 GrGpu* gpu = context->priv().getGpu();
Derek Sollenberger5480a182017-05-25 16:43:59 -04001298
1299 enum TestsCase {
1300 kOnlyScratch_TestCase = 0,
1301 kPartialScratch_TestCase = 1,
1302 kAllScratch_TestCase = 2,
1303 kPartial_TestCase = 3,
1304 kAll_TestCase = 4,
1305 kNone_TestCase = 5,
1306 kEndTests_TestCase = kNone_TestCase + 1
1307 };
1308
1309 for (int testCase = 0; testCase < kEndTests_TestCase; testCase++) {
1310
1311 GrUniqueKey key1, key2, key3;
1312 make_unique_key<0>(&key1, 1);
1313 make_unique_key<0>(&key2, 2);
1314 make_unique_key<0>(&key3, 3);
1315
1316 // Add three unique resources to the cache.
Greg Danielda86e282018-06-13 09:41:19 -04001317 TestResource *unique1 = new TestResource(gpu, SkBudgeted::kYes, 10);
1318 TestResource *unique2 = new TestResource(gpu, SkBudgeted::kYes, 11);
1319 TestResource *unique3 = new TestResource(gpu, SkBudgeted::kYes, 12);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001320
1321 unique1->resourcePriv().setUniqueKey(key1);
1322 unique2->resourcePriv().setUniqueKey(key2);
1323 unique3->resourcePriv().setUniqueKey(key3);
1324
Derek Sollenberger5480a182017-05-25 16:43:59 -04001325 // Add two scratch resources to the cache.
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001326 TestResource *scratch1 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -04001327 TestResource::kA_SimulatedProperty,
1328 13);
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001329 TestResource *scratch2 = TestResource::CreateScratch(gpu, SkBudgeted::kYes,
Greg Danielda86e282018-06-13 09:41:19 -04001330 TestResource::kB_SimulatedProperty,
1331 14);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001332
1333 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1334 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1335 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1336
1337 // Add resources to the purgeable queue
1338 unique1->unref();
1339 scratch1->unref();
1340 unique2->unref();
1341 scratch2->unref();
1342 unique3->unref();
1343
1344 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1345 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1346 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1347
1348 switch(testCase) {
1349 case kOnlyScratch_TestCase: {
1350 context->purgeUnlockedResources(14, true);
1351 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1352 REPORTER_ASSERT(reporter, 33 == cache->getBudgetedResourceBytes());
1353 break;
1354 }
1355 case kPartialScratch_TestCase: {
1356 context->purgeUnlockedResources(3, true);
1357 REPORTER_ASSERT(reporter, 4 == cache->getBudgetedResourceCount());
1358 REPORTER_ASSERT(reporter, 47 == cache->getBudgetedResourceBytes());
1359 break;
1360 }
1361 case kAllScratch_TestCase: {
1362 context->purgeUnlockedResources(50, true);
1363 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1364 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1365 break;
1366 }
1367 case kPartial_TestCase: {
1368 context->purgeUnlockedResources(13, false);
1369 REPORTER_ASSERT(reporter, 3 == cache->getBudgetedResourceCount());
1370 REPORTER_ASSERT(reporter, 37 == cache->getBudgetedResourceBytes());
1371 break;
1372 }
1373 case kAll_TestCase: {
1374 context->purgeUnlockedResources(50, false);
1375 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1376 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceBytes());
1377 break;
1378 }
1379 case kNone_TestCase: {
1380 context->purgeUnlockedResources(0, true);
1381 context->purgeUnlockedResources(0, false);
1382 REPORTER_ASSERT(reporter, 5 == cache->getBudgetedResourceCount());
1383 REPORTER_ASSERT(reporter, 60 == cache->getBudgetedResourceBytes());
1384 REPORTER_ASSERT(reporter, 60 == cache->getPurgeableBytes());
1385 break;
1386 }
Brian Salomon23356442018-11-30 15:33:19 -05001387 }
Derek Sollenberger5480a182017-05-25 16:43:59 -04001388
1389 // ensure all are purged before the next
Robert Phillipsdbaf3172019-02-06 15:12:53 -05001390 context->priv().testingOnly_purgeAllUnlockedResources();
Derek Sollenberger5480a182017-05-25 16:43:59 -04001391 REPORTER_ASSERT(reporter, 0 == cache->getBudgetedResourceCount());
1392 REPORTER_ASSERT(reporter, 0 == cache->getPurgeableBytes());
1393
1394 }
1395}
1396
bsalomon10e23ca2014-11-25 05:52:06 -08001397static void test_large_resource_count(skiatest::Reporter* reporter) {
bsalomon10e23ca2014-11-25 05:52:06 -08001398 // Set the cache size to double the resource count because we're going to create 2x that number
1399 // resources, using two different key domains. Add a little slop to the bytes because we resize
1400 // down to 1 byte after creating the resource.
bsalomonc2f35b72015-01-23 07:19:22 -08001401 static const int kResourceCnt = 2000;
bsalomon10e23ca2014-11-25 05:52:06 -08001402
bsalomonc2f35b72015-01-23 07:19:22 -08001403 Mock mock(2 * kResourceCnt, 2 * kResourceCnt + 1000);
1404 GrContext* context = mock.context();
bsalomon0ea80f42015-02-11 10:49:59 -08001405 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001406 GrGpu* gpu = context->priv().getGpu();
bsalomon10e23ca2014-11-25 05:52:06 -08001407
1408 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001409 GrUniqueKey key1, key2;
1410 make_unique_key<1>(&key1, i);
1411 make_unique_key<2>(&key2, i);
bsalomon10e23ca2014-11-25 05:52:06 -08001412
bsalomon24db3b12015-01-23 04:24:04 -08001413 TestResource* resource;
1414
Greg Danielda86e282018-06-13 09:41:19 -04001415 resource = new TestResource(gpu, SkBudgeted::kYes, 1);
bsalomon8718aaf2015-02-19 07:24:21 -08001416 resource->resourcePriv().setUniqueKey(key1);
bsalomon10e23ca2014-11-25 05:52:06 -08001417 resource->unref();
1418
Greg Danielda86e282018-06-13 09:41:19 -04001419 resource = new TestResource(gpu, SkBudgeted::kYes, 1);
bsalomon8718aaf2015-02-19 07:24:21 -08001420 resource->resourcePriv().setUniqueKey(key2);
bsalomon10e23ca2014-11-25 05:52:06 -08001421 resource->unref();
1422 }
1423
1424 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 2 * kResourceCnt);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001425 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 2 * kResourceCnt);
bsalomon0ea80f42015-02-11 10:49:59 -08001426 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 2 * kResourceCnt);
1427 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 2 * kResourceCnt);
1428 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 2 * kResourceCnt);
1429 REPORTER_ASSERT(reporter, cache->getResourceCount() == 2 * kResourceCnt);
bsalomon10e23ca2014-11-25 05:52:06 -08001430 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001431 GrUniqueKey key1, key2;
1432 make_unique_key<1>(&key1, i);
1433 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001434
bsalomon8718aaf2015-02-19 07:24:21 -08001435 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key1));
1436 REPORTER_ASSERT(reporter, cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001437 }
1438
bsalomon0ea80f42015-02-11 10:49:59 -08001439 cache->purgeAllUnlocked();
bsalomon10e23ca2014-11-25 05:52:06 -08001440 REPORTER_ASSERT(reporter, TestResource::NumAlive() == 0);
Derek Sollenbergeree479142017-05-24 11:41:33 -04001441 REPORTER_ASSERT(reporter, cache->getPurgeableBytes() == 0);
bsalomon0ea80f42015-02-11 10:49:59 -08001442 REPORTER_ASSERT(reporter, cache->getBudgetedResourceBytes() == 0);
1443 REPORTER_ASSERT(reporter, cache->getBudgetedResourceCount() == 0);
1444 REPORTER_ASSERT(reporter, cache->getResourceBytes() == 0);
1445 REPORTER_ASSERT(reporter, cache->getResourceCount() == 0);
bsalomon10e23ca2014-11-25 05:52:06 -08001446
1447 for (int i = 0; i < kResourceCnt; ++i) {
bsalomon8718aaf2015-02-19 07:24:21 -08001448 GrUniqueKey key1, key2;
1449 make_unique_key<1>(&key1, i);
1450 make_unique_key<2>(&key2, i);
bsalomon24db3b12015-01-23 04:24:04 -08001451
bsalomon8718aaf2015-02-19 07:24:21 -08001452 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key1));
1453 REPORTER_ASSERT(reporter, !cache->hasUniqueKey(key2));
bsalomon10e23ca2014-11-25 05:52:06 -08001454 }
1455}
1456
senorblanco84cd6212015-08-04 10:01:58 -07001457static void test_custom_data(skiatest::Reporter* reporter) {
1458 GrUniqueKey key1, key2;
1459 make_unique_key<0>(&key1, 1);
1460 make_unique_key<0>(&key2, 2);
1461 int foo = 4132;
bungeman38d909e2016-08-02 14:40:46 -07001462 key1.setCustomData(SkData::MakeWithCopy(&foo, sizeof(foo)));
senorblanco84cd6212015-08-04 10:01:58 -07001463 REPORTER_ASSERT(reporter, *(int*) key1.getCustomData()->data() == 4132);
1464 REPORTER_ASSERT(reporter, key2.getCustomData() == nullptr);
1465
1466 // Test that copying a key also takes a ref on its custom data.
1467 GrUniqueKey key3 = key1;
1468 REPORTER_ASSERT(reporter, *(int*) key3.getCustomData()->data() == 4132);
1469}
1470
bsalomonc6363ef2015-09-24 07:07:40 -07001471static void test_abandoned(skiatest::Reporter* reporter) {
1472 Mock mock(10, 300);
1473 GrContext* context = mock.context();
Robert Phillips9da87e02019-02-04 13:26:26 -05001474 GrGpu* gpu = context->priv().getGpu();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001475
1476 sk_sp<GrGpuResource> resource(new TestResource(gpu));
bsalomonc6363ef2015-09-24 07:07:40 -07001477 context->abandonContext();
1478
1479 REPORTER_ASSERT(reporter, resource->wasDestroyed());
1480
1481 // Call all the public methods on resource in the abandoned state. They shouldn't crash.
1482
robertphillips8abb3702016-08-31 14:04:06 -07001483 resource->uniqueID();
bsalomonc6363ef2015-09-24 07:07:40 -07001484 resource->getUniqueKey();
1485 resource->wasDestroyed();
1486 resource->gpuMemorySize();
1487 resource->getContext();
1488
bsalomonc6363ef2015-09-24 07:07:40 -07001489 resource->resourcePriv().getScratchKey();
Brian Salomonfa2ebea2019-01-24 15:58:58 -05001490 resource->resourcePriv().budgetedType();
bsalomonc6363ef2015-09-24 07:07:40 -07001491 resource->resourcePriv().makeBudgeted();
1492 resource->resourcePriv().makeUnbudgeted();
1493 resource->resourcePriv().removeScratchKey();
1494 GrUniqueKey key;
1495 make_unique_key<0>(&key, 1);
1496 resource->resourcePriv().setUniqueKey(key);
1497 resource->resourcePriv().removeUniqueKey();
1498}
1499
Brian Salomon1090da62017-01-06 12:04:19 -05001500static void test_tags(skiatest::Reporter* reporter) {
1501#ifdef SK_DEBUG
1502 // We will insert 1 resource with tag "tag1", 2 with "tag2", and so on, up through kLastTagIdx.
1503 static constexpr int kLastTagIdx = 10;
1504 static constexpr int kNumResources = kLastTagIdx * (kLastTagIdx + 1) / 2;
1505
1506 Mock mock(kNumResources, kNumResources * TestResource::kDefaultSize);
1507 GrContext* context = mock.context();
1508 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001509 GrGpu* gpu = context->priv().getGpu();
Brian Salomon1090da62017-01-06 12:04:19 -05001510
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001511 // tag strings are expected to be long lived
1512 std::vector<SkString> tagStrings;
1513
Brian Salomon1090da62017-01-06 12:04:19 -05001514 SkString tagStr;
1515 int tagIdx = 0;
1516 int currTagCnt = 0;
1517
1518 for (int i = 0; i < kNumResources; ++i, ++currTagCnt) {
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001519
Robert Phillipsf35fd8d2018-01-22 10:48:15 -05001520 sk_sp<GrGpuResource> resource(new TestResource(gpu));
Brian Salomon1090da62017-01-06 12:04:19 -05001521 GrUniqueKey key;
1522 if (currTagCnt == tagIdx) {
1523 tagIdx += 1;
1524 currTagCnt = 0;
1525 tagStr.printf("tag%d", tagIdx);
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001526 tagStrings.emplace_back(tagStr);
Brian Salomon1090da62017-01-06 12:04:19 -05001527 }
Derek Sollenbergercf6da8c2018-03-29 13:40:02 -04001528 make_unique_key<1>(&key, i, tagStrings.back().c_str());
Brian Salomon1090da62017-01-06 12:04:19 -05001529 resource->resourcePriv().setUniqueKey(key);
1530 }
1531 SkASSERT(kLastTagIdx == tagIdx);
1532 SkASSERT(currTagCnt == kLastTagIdx);
1533
1534 // Test i = 0 to exercise unused tag string.
1535 for (int i = 0; i <= kLastTagIdx; ++i) {
1536 tagStr.printf("tag%d", i);
1537 REPORTER_ASSERT(reporter, cache->countUniqueKeysWithTag(tagStr.c_str()) == i);
1538 }
1539#endif
1540}
1541
Greg Danielc27eb722018-08-10 09:48:08 -04001542static void test_free_resource_messages(skiatest::Reporter* reporter) {
1543 Mock mock(10, 30000);
1544 GrContext* context = mock.context();
1545 GrResourceCache* cache = mock.cache();
Robert Phillips9da87e02019-02-04 13:26:26 -05001546 GrGpu* gpu = context->priv().getGpu();
Greg Danielc27eb722018-08-10 09:48:08 -04001547
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001548 TestResource* wrapped1 = TestResource::CreateWrapped(gpu, GrWrapCacheable::kYes);
Brian Salomon876a0172019-03-08 11:12:14 -05001549 cache->insertDelayedResourceUnref(wrapped1);
Greg Danielc27eb722018-08-10 09:48:08 -04001550
1551 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
1552
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001553 TestResource* wrapped2 = TestResource::CreateWrapped(gpu, GrWrapCacheable::kYes);
Brian Salomon876a0172019-03-08 11:12:14 -05001554 cache->insertDelayedResourceUnref(wrapped2);
Greg Danielc27eb722018-08-10 09:48:08 -04001555
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001556 // An uncacheable cross-context should not be purged as soon as we drop our ref. This
1557 // is because inserting it as a cross-context resource actually holds a ref until the
1558 // message is received.
1559 TestResource* wrapped3 = TestResource::CreateWrapped(gpu, GrWrapCacheable::kNo);
Brian Salomon876a0172019-03-08 11:12:14 -05001560 cache->insertDelayedResourceUnref(wrapped3);
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001561
1562 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
Greg Danielc27eb722018-08-10 09:48:08 -04001563
1564 // Have only ref waiting on message.
1565 wrapped1->unref();
1566 wrapped2->unref();
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001567 wrapped3->unref();
Greg Danielc27eb722018-08-10 09:48:08 -04001568
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001569 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
Greg Danielc27eb722018-08-10 09:48:08 -04001570
1571 // This should free nothing since no messages were sent.
1572 cache->purgeAsNeeded();
1573
1574 // Send message to free the first resource
Robert Phillips9da87e02019-02-04 13:26:26 -05001575 GrGpuResourceFreedMessage msg1{wrapped1, context->priv().contextID()};
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001576 SkMessageBus<GrGpuResourceFreedMessage>::Post(msg1);
1577 cache->purgeAsNeeded();
1578
1579 REPORTER_ASSERT(reporter, 2 == TestResource::NumAlive());
1580
Robert Phillips9da87e02019-02-04 13:26:26 -05001581 GrGpuResourceFreedMessage msg2{wrapped3, context->priv().contextID()};
Brian Salomonaa6ca0a2019-01-24 16:03:07 -05001582 SkMessageBus<GrGpuResourceFreedMessage>::Post(msg2);
Greg Danielc27eb722018-08-10 09:48:08 -04001583 cache->purgeAsNeeded();
1584
1585 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
1586
1587 mock.reset();
1588
1589 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
1590}
1591
1592
Brian Salomondcfca432017-11-15 15:48:03 -05001593DEF_GPUTEST(ResourceCacheMisc, reporter, /* options */) {
bsalomon8b79d232014-11-10 10:19:06 -08001594 // The below tests create their own mock contexts.
bsalomon71cb0c22014-11-14 12:10:14 -08001595 test_no_key(reporter);
Robert Phillips6eba0632018-03-28 12:25:42 -04001596 test_purge_unlocked(reporter);
bsalomon84c8e622014-11-17 09:33:27 -08001597 test_budgeting(reporter);
bsalomon5236cf42015-01-14 10:42:08 -08001598 test_unbudgeted(reporter);
bsalomonc2f35b72015-01-23 07:19:22 -08001599 test_unbudgeted_to_scratch(reporter);
bsalomon8718aaf2015-02-19 07:24:21 -08001600 test_duplicate_unique_key(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001601 test_duplicate_scratch_key(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001602 test_remove_scratch_key(reporter);
bsalomon1c60dfe2015-01-21 09:32:40 -08001603 test_scratch_key_consistency(reporter);
bsalomon8b79d232014-11-10 10:19:06 -08001604 test_purge_invalidated(reporter);
bsalomon71cb0c22014-11-14 12:10:14 -08001605 test_cache_chained_purge(reporter);
bsalomonddf30e62015-02-19 11:38:44 -08001606 test_timestamp_wrap(reporter);
Brian Salomon5e150852017-03-22 14:53:13 -04001607 test_time_purge(reporter);
Derek Sollenberger5480a182017-05-25 16:43:59 -04001608 test_partial_purge(reporter);
bsalomon10e23ca2014-11-25 05:52:06 -08001609 test_large_resource_count(reporter);
senorblanco84cd6212015-08-04 10:01:58 -07001610 test_custom_data(reporter);
bsalomonc6363ef2015-09-24 07:07:40 -07001611 test_abandoned(reporter);
Brian Salomon1090da62017-01-06 12:04:19 -05001612 test_tags(reporter);
Greg Danielc27eb722018-08-10 09:48:08 -04001613 test_free_resource_messages(reporter);
commit-bot@chromium.orgc28f5552013-08-08 22:55:21 +00001614}
1615
Robert Phillipsd6214d42016-11-07 08:23:48 -05001616////////////////////////////////////////////////////////////////////////////////
Brian Osman32342f02017-03-04 08:12:46 -05001617static sk_sp<GrTexture> make_normal_texture(GrResourceProvider* provider,
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001618 GrSurfaceDescFlags descFlags,
Robert Phillipsd6214d42016-11-07 08:23:48 -05001619 int width, int height,
1620 int sampleCnt) {
1621 GrSurfaceDesc desc;
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001622 desc.fFlags = descFlags;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001623 desc.fWidth = width;
1624 desc.fHeight = height;
1625 desc.fConfig = kRGBA_8888_GrPixelConfig;
1626 desc.fSampleCnt = sampleCnt;
1627
Robert Phillips9313aa72019-04-09 18:41:27 -04001628 return provider->createTexture(desc, SkBudgeted::kYes,
1629 GrResourceProvider::Flags::kNoPendingIO);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001630}
1631
Robert Phillips0bd24dc2018-01-16 08:06:32 -05001632static sk_sp<GrTextureProxy> make_mipmap_proxy(GrProxyProvider* proxyProvider,
Greg Daniel4065d452018-11-16 15:43:41 -05001633 const GrCaps* caps,
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001634 GrSurfaceDescFlags descFlags,
Robert Phillipse78b7252017-04-06 07:59:41 -04001635 int width, int height,
1636 int sampleCnt) {
Robert Phillipsd6214d42016-11-07 08:23:48 -05001637 GrSurfaceDesc desc;
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001638 desc.fFlags = descFlags;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001639 desc.fWidth = width;
1640 desc.fHeight = height;
1641 desc.fConfig = kRGBA_8888_GrPixelConfig;
1642 desc.fSampleCnt = sampleCnt;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001643
Greg Daniel4065d452018-11-16 15:43:41 -05001644 const GrBackendFormat format = caps->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
Robert Phillipsfe0253f2018-03-16 16:47:25 -04001645 auto origin = (descFlags & kRenderTarget_GrSurfaceFlag) ? kBottomLeft_GrSurfaceOrigin
1646 : kTopLeft_GrSurfaceOrigin;
Brian Salomon2a4f9832018-03-03 22:43:43 -05001647
Greg Daniel4065d452018-11-16 15:43:41 -05001648 return proxyProvider->createMipMapProxy(format, desc, origin, SkBudgeted::kYes);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001649}
1650
1651// Exercise GrSurface::gpuMemorySize for different combos of MSAA, RT-only,
1652// Texture-only, both-RT-and-Texture and MIPmapped
1653DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GPUMemorySize, reporter, ctxInfo) {
1654 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -05001655 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
1656 GrResourceProvider* resourceProvider = context->priv().resourceProvider();
Robert Phillipsd6214d42016-11-07 08:23:48 -05001657
Robert Phillipsd6214d42016-11-07 08:23:48 -05001658 static const int kSize = 64;
1659
Robert Phillipsd6214d42016-11-07 08:23:48 -05001660 // Normal versions
Robert Phillipse78b7252017-04-06 07:59:41 -04001661 {
1662 sk_sp<GrTexture> tex;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001663
Brian Salomonbdecacf2018-02-02 20:32:49 -05001664 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001665 size_t size = tex->gpuMemorySize();
1666 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
1667
Robert Phillips9da87e02019-02-04 13:26:26 -05001668 size_t sampleCount = (size_t)context->priv().caps()->getRenderTargetSampleCount(
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001669 4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001670 if (sampleCount >= 4) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -05001671 tex = make_normal_texture(resourceProvider, kRenderTarget_GrSurfaceFlag, kSize, kSize,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001672 sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001673 size = tex->gpuMemorySize();
Greg Daniel81e7bf82017-07-19 14:47:42 -04001674 REPORTER_ASSERT(reporter,
1675 kSize*kSize*4 == size || // msaa4 failed
1676 kSize*kSize*4*sampleCount == size || // auto-resolving
1677 kSize*kSize*4*(sampleCount+1) == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001678 }
1679
Brian Salomonbdecacf2018-02-02 20:32:49 -05001680 tex = make_normal_texture(resourceProvider, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001681 size = tex->gpuMemorySize();
Robert Phillipse78b7252017-04-06 07:59:41 -04001682 REPORTER_ASSERT(reporter, kSize*kSize*4 == size);
Robert Phillipsd6214d42016-11-07 08:23:48 -05001683 }
1684
Robert Phillipsd6214d42016-11-07 08:23:48 -05001685
1686 // Mipmapped versions
Robert Phillips9da87e02019-02-04 13:26:26 -05001687 const GrCaps* caps = context->priv().caps();
Greg Daniel4065d452018-11-16 15:43:41 -05001688 if (caps->mipMapSupport()) {
Robert Phillipse78b7252017-04-06 07:59:41 -04001689 sk_sp<GrTextureProxy> proxy;
Robert Phillipsd6214d42016-11-07 08:23:48 -05001690
Greg Daniel4065d452018-11-16 15:43:41 -05001691 proxy = make_mipmap_proxy(proxyProvider, caps, kRenderTarget_GrSurfaceFlag, kSize, kSize,
1692 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001693 size_t size = proxy->gpuMemorySize();
1694 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1695
Robert Phillips9da87e02019-02-04 13:26:26 -05001696 size_t sampleCount = (size_t)context->priv().caps()->getRenderTargetSampleCount(
Brian Salomonc7fe0f72018-05-11 10:14:21 -04001697 4, kRGBA_8888_GrPixelConfig);
Greg Daniel81e7bf82017-07-19 14:47:42 -04001698 if (sampleCount >= 4) {
Greg Daniel4065d452018-11-16 15:43:41 -05001699 proxy = make_mipmap_proxy(proxyProvider, caps, kRenderTarget_GrSurfaceFlag, kSize,
1700 kSize, sampleCount);
Robert Phillipse78b7252017-04-06 07:59:41 -04001701 size = proxy->gpuMemorySize();
1702 REPORTER_ASSERT(reporter,
Greg Daniel81e7bf82017-07-19 14:47:42 -04001703 kSize*kSize*4+(kSize*kSize*4)/3 == size || // msaa4 failed
1704 kSize*kSize*4*sampleCount+(kSize*kSize*4)/3 == size || // auto-resolving
1705 kSize*kSize*4*(sampleCount+1)+(kSize*kSize*4)/3 == size); // explicit resolve buffer
Robert Phillipse78b7252017-04-06 07:59:41 -04001706 }
Robert Phillips1b352562017-04-05 18:56:21 +00001707
Greg Daniel4065d452018-11-16 15:43:41 -05001708 proxy = make_mipmap_proxy(proxyProvider, caps, kNone_GrSurfaceFlags, kSize, kSize, 1);
Robert Phillipse78b7252017-04-06 07:59:41 -04001709 size = proxy->gpuMemorySize();
1710 REPORTER_ASSERT(reporter, kSize*kSize*4+(kSize*kSize*4)/3 == size);
1711 }
Robert Phillipsd6214d42016-11-07 08:23:48 -05001712}
Brian Salomon8cefa3e2019-04-04 11:39:55 -04001713
1714#if GR_GPU_STATS
1715DEF_GPUTEST_FOR_MOCK_CONTEXT(OverbudgetFlush, reporter, ctxInfo) {
1716 GrContext* context = ctxInfo.grContext();
1717 context->setResourceCacheLimits(1, 1);
1718
1719 // Helper that determines if cache is overbudget.
1720 auto overbudget = [context] {
1721 int uNum;
1722 size_t uSize;
1723 context->getResourceCacheUsage(&uNum, &uSize);
1724 int bNum;
1725 size_t bSize;
1726 context->getResourceCacheLimits(&bNum, &bSize);
1727 return uNum > bNum || uSize > bSize;
1728 };
1729
1730 // Helper that does a trivial draw to a surface.
1731 auto drawToSurf = [](SkSurface* surf) {
1732 surf->getCanvas()->drawRect(SkRect::MakeWH(1,1), SkPaint());
1733 };
1734
1735 // Helper that checks whether a flush has occurred between calls.
1736 int baseFlushCount = 0;
1737 auto getFlushCountDelta = [context, &baseFlushCount]() {
1738 int cur = context->priv().getGpu()->stats()->numFinishFlushes();
1739 int delta = cur - baseFlushCount;
1740 baseFlushCount = cur;
1741 return delta;
1742 };
1743
1744 auto info = SkImageInfo::Make(10, 10, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
1745 auto surf1 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info, 1, nullptr);
1746 auto surf2 = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, info, 1, nullptr);
1747
1748 drawToSurf(surf1.get());
1749 drawToSurf(surf2.get());
1750
1751 // Flush each surface once to ensure that their backing stores are allocated.
1752 surf1->flush();
1753 surf2->flush();
1754 REPORTER_ASSERT(reporter, overbudget());
1755 getFlushCountDelta();
1756
1757 // Nothing should be purgeable so drawing to either surface doesn't cause a flush.
1758 drawToSurf(surf1.get());
1759 REPORTER_ASSERT(reporter, !getFlushCountDelta());
1760 drawToSurf(surf2.get());
1761 REPORTER_ASSERT(reporter, !getFlushCountDelta());
1762 REPORTER_ASSERT(reporter, overbudget());
1763
1764 // Make surf1 purgeable. Drawing to surf2 should flush.
1765 surf1->flush();
1766 surf1.reset();
1767 drawToSurf(surf2.get());
1768 REPORTER_ASSERT(reporter, getFlushCountDelta());
1769 REPORTER_ASSERT(reporter, overbudget());
1770}
1771#endif