forked from google/skia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChecksumBench.cpp
76 lines (65 loc) · 2.01 KB
/
ChecksumBench.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "bench/Benchmark.h"
#include "include/core/SkCanvas.h"
#include "include/private/SkChecksum.h"
#include "include/private/SkTemplates.h"
#include "include/utils/SkRandom.h"
#include "src/core/SkMD5.h"
#include "src/core/SkOpts.h"
enum ChecksumType {
kMD5_ChecksumType,
kHash_ChecksumType,
};
class ComputeChecksumBench : public Benchmark {
enum {
U32COUNT = 256,
SIZE = U32COUNT * 4,
};
uint32_t fData[U32COUNT];
ChecksumType fType;
public:
ComputeChecksumBench(ChecksumType type) : fType(type) {
SkRandom rand;
for (int i = 0; i < U32COUNT; ++i) {
fData[i] = rand.nextU();
}
}
bool isSuitableFor(Backend backend) override {
return backend == kNonRendering_Backend;
}
protected:
const char* onGetName() override {
switch (fType) {
case kMD5_ChecksumType: return "compute_md5";
case kHash_ChecksumType: return "compute_hash";
default: SK_ABORT("Invalid Type");
}
}
void onDraw(int loops, SkCanvas*) override {
switch (fType) {
case kMD5_ChecksumType: {
for (int i = 0; i < loops; i++) {
SkMD5 md5;
md5.write(fData, sizeof(fData));
(void)md5.finish();
}
} break;
case kHash_ChecksumType: {
for (int i = 0; i < loops; i++) {
volatile uint32_t result = SkOpts::hash(fData, sizeof(fData));
sk_ignore_unused_variable(result);
}
}break;
}
}
private:
using INHERITED = Benchmark;
};
///////////////////////////////////////////////////////////////////////////////
DEF_BENCH( return new ComputeChecksumBench(kMD5_ChecksumType); )
DEF_BENCH( return new ComputeChecksumBench(kHash_ChecksumType); )