OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "Benchmark.h" | 8 #include "Benchmark.h" |
9 #include "SkResourceCache.h" | 9 #include "SkResourceCache.h" |
10 | 10 |
11 namespace { | 11 namespace { |
12 static void* gGlobalAddress; | 12 static void* gGlobalAddress; |
13 class TestKey : public SkResourceCache::Key { | 13 class TestKey : public SkResourceCache::Key { |
14 public: | 14 public: |
15 intptr_t fValue; | 15 intptr_t fValue; |
16 | 16 |
17 TestKey(intptr_t value) : fValue(value) { | 17 TestKey(intptr_t value) : fValue(value) { |
18 this->init(&gGlobalAddress, 0, sizeof(fValue)); | 18 this->init(&gGlobalAddress, 0, sizeof(fValue)); |
19 } | 19 } |
20 }; | 20 }; |
21 struct TestRec : public SkResourceCache::Rec { | 21 struct TestRec : public SkResourceCache::Rec { |
22 TestKey fKey; | 22 TestKey fKey; |
23 intptr_t fValue; | 23 intptr_t fValue; |
24 | 24 |
25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {} | 25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {} |
26 | 26 |
27 const Key& getKey() const override { return fKey; } | 27 const Key& getKey() const override { return fKey; } |
28 size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); } | 28 size_t bytesUsed() const override { return sizeof(fKey) + sizeof(fValue); } |
29 const char* getCategory() const override { return "imagecachebench-test"; } | 29 const char* getCategory() const override { return "imagecachebench-test"; } |
30 SkDiscardableMemory* diagnostic_only_getDiscardable() const override { retur
n NULL; } | 30 SkDiscardableMemory* diagnostic_only_getDiscardable() const override { retur
n nullptr; } |
31 | 31 |
32 static bool Visitor(const SkResourceCache::Rec&, void*) { | 32 static bool Visitor(const SkResourceCache::Rec&, void*) { |
33 return true; | 33 return true; |
34 } | 34 } |
35 }; | 35 }; |
36 } | 36 } |
37 | 37 |
38 class ImageCacheBench : public Benchmark { | 38 class ImageCacheBench : public Benchmark { |
39 SkResourceCache fCache; | 39 SkResourceCache fCache; |
40 | 40 |
(...skipping 15 matching lines...) Expand all Loading... |
56 } | 56 } |
57 | 57 |
58 void onDraw(const int loops, SkCanvas*) override { | 58 void onDraw(const int loops, SkCanvas*) override { |
59 if (fCache.getTotalBytesUsed() == 0) { | 59 if (fCache.getTotalBytesUsed() == 0) { |
60 this->populateCache(); | 60 this->populateCache(); |
61 } | 61 } |
62 | 62 |
63 TestKey key(-1); | 63 TestKey key(-1); |
64 // search for a miss (-1) | 64 // search for a miss (-1) |
65 for (int i = 0; i < loops; ++i) { | 65 for (int i = 0; i < loops; ++i) { |
66 SkDEBUGCODE(bool found =) fCache.find(key, TestRec::Visitor, NULL); | 66 SkDEBUGCODE(bool found =) fCache.find(key, TestRec::Visitor, nullptr
); |
67 SkASSERT(!found); | 67 SkASSERT(!found); |
68 } | 68 } |
69 } | 69 } |
70 | 70 |
71 private: | 71 private: |
72 typedef Benchmark INHERITED; | 72 typedef Benchmark INHERITED; |
73 }; | 73 }; |
74 | 74 |
75 /////////////////////////////////////////////////////////////////////////////// | 75 /////////////////////////////////////////////////////////////////////////////// |
76 | 76 |
77 DEF_BENCH( return new ImageCacheBench(); ) | 77 DEF_BENCH( return new ImageCacheBench(); ) |
OLD | NEW |