2012-06-27 20:03:16 +00:00
|
|
|
/*
|
|
|
|
* 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 "SkBenchmark.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkChecksum.h"
|
2013-01-31 19:47:48 +00:00
|
|
|
#include "SkCityHash.h"
|
|
|
|
#include "SkMD5.h"
|
2012-07-09 17:44:44 +00:00
|
|
|
#include "SkRandom.h"
|
2013-01-31 19:47:48 +00:00
|
|
|
#include "SkSHA1.h"
|
2013-02-04 15:58:08 +00:00
|
|
|
#include "SkTemplates.h"
|
2013-01-31 20:36:30 +00:00
|
|
|
|
2013-01-31 19:47:48 +00:00
|
|
|
enum ChecksumType {
|
|
|
|
kChecksum_ChecksumType,
|
|
|
|
kMD5_ChecksumType,
|
|
|
|
kSHA1_ChecksumType,
|
|
|
|
kCityHash32,
|
|
|
|
kCityHash64
|
|
|
|
};
|
2012-06-27 20:03:16 +00:00
|
|
|
|
|
|
|
class ComputeChecksumBench : public SkBenchmark {
|
|
|
|
enum {
|
2012-07-09 17:44:44 +00:00
|
|
|
U32COUNT = 256,
|
|
|
|
SIZE = U32COUNT * 4,
|
2012-06-27 20:03:16 +00:00
|
|
|
N = SkBENCHLOOP(100000),
|
|
|
|
};
|
2012-07-09 17:44:44 +00:00
|
|
|
uint32_t fData[U32COUNT];
|
2013-01-31 19:47:48 +00:00
|
|
|
ChecksumType fType;
|
2012-06-27 20:03:16 +00:00
|
|
|
|
|
|
|
public:
|
2013-01-31 19:47:48 +00:00
|
|
|
ComputeChecksumBench(void* param, ChecksumType type) : INHERITED(param), fType(type) {
|
2012-07-09 17:44:44 +00:00
|
|
|
SkRandom rand;
|
|
|
|
for (int i = 0; i < U32COUNT; ++i) {
|
|
|
|
fData[i] = rand.nextU();
|
2012-06-27 20:03:16 +00:00
|
|
|
}
|
2012-09-17 10:49:30 +00:00
|
|
|
fIsRendering = false;
|
2012-06-27 20:03:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2012-07-09 17:44:44 +00:00
|
|
|
virtual const char* onGetName() {
|
2013-01-31 19:47:48 +00:00
|
|
|
switch (fType) {
|
|
|
|
case kChecksum_ChecksumType: return "compute_checksum";
|
|
|
|
case kMD5_ChecksumType: return "compute_md5";
|
|
|
|
case kSHA1_ChecksumType: return "compute_sha1";
|
|
|
|
case kCityHash32: return "compute_cityhash32";
|
|
|
|
case kCityHash64: return "compute_cityhash64";
|
|
|
|
default: SK_CRASH(); return "";
|
|
|
|
}
|
2012-06-27 20:03:16 +00:00
|
|
|
}
|
|
|
|
|
2013-03-05 18:50:01 +00:00
|
|
|
virtual void onDraw(SkCanvas*) {
|
2013-01-31 19:47:48 +00:00
|
|
|
switch (fType) {
|
|
|
|
case kChecksum_ChecksumType: {
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
volatile uint32_t result = SkChecksum::Compute(fData, sizeof(fData));
|
2013-02-04 15:58:08 +00:00
|
|
|
sk_ignore_unused_variable(result);
|
2013-01-31 19:47:48 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case kMD5_ChecksumType: {
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
SkMD5 md5;
|
|
|
|
md5.update(reinterpret_cast<uint8_t*>(fData), sizeof(fData));
|
|
|
|
SkMD5::Digest digest;
|
|
|
|
md5.finish(digest);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case kSHA1_ChecksumType: {
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
SkSHA1 sha1;
|
|
|
|
sha1.update(reinterpret_cast<uint8_t*>(fData), sizeof(fData));
|
|
|
|
SkSHA1::Digest digest;
|
|
|
|
sha1.finish(digest);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case kCityHash32: {
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
volatile uint32_t result = SkCityHash::Compute32(reinterpret_cast<char*>(fData), sizeof(fData));
|
2013-02-04 15:58:08 +00:00
|
|
|
sk_ignore_unused_variable(result);
|
2013-01-31 19:47:48 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case kCityHash64: {
|
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
volatile uint64_t result = SkCityHash::Compute64(reinterpret_cast<char*>(fData), sizeof(fData));
|
2013-02-04 15:58:08 +00:00
|
|
|
sk_ignore_unused_variable(result);
|
2013-01-31 19:47:48 +00:00
|
|
|
}
|
|
|
|
} break;
|
2012-07-03 19:44:20 +00:00
|
|
|
}
|
2013-01-31 19:47:48 +00:00
|
|
|
|
2012-07-03 19:44:20 +00:00
|
|
|
}
|
2012-07-09 17:44:44 +00:00
|
|
|
|
2012-06-27 20:03:16 +00:00
|
|
|
private:
|
2012-07-09 17:44:44 +00:00
|
|
|
typedef SkBenchmark INHERITED;
|
2012-06-27 20:03:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-01-31 19:47:48 +00:00
|
|
|
static SkBenchmark* Fact0(void* p) { return new ComputeChecksumBench(p, kChecksum_ChecksumType); }
|
|
|
|
static SkBenchmark* Fact1(void* p) { return new ComputeChecksumBench(p, kMD5_ChecksumType); }
|
|
|
|
static SkBenchmark* Fact2(void* p) { return new ComputeChecksumBench(p, kSHA1_ChecksumType); }
|
|
|
|
static SkBenchmark* Fact3(void* p) { return new ComputeChecksumBench(p, kCityHash32); }
|
|
|
|
static SkBenchmark* Fact4(void* p) { return new ComputeChecksumBench(p, kCityHash64); }
|
2012-06-27 20:03:16 +00:00
|
|
|
|
|
|
|
static BenchRegistry gReg0(Fact0);
|
2013-01-31 19:47:48 +00:00
|
|
|
static BenchRegistry gReg1(Fact1);
|
|
|
|
static BenchRegistry gReg2(Fact2);
|
|
|
|
static BenchRegistry gReg3(Fact3);
|
|
|
|
static BenchRegistry gReg4(Fact4);
|