519f9677a4
I'm seeing basically no difference between malloc + bzero and calloc on my desktop, but on a Galaxy Nexus calloc is never slower, and significantly faster once the allocation size becomes large, both for allocation and for _reading_. BUG=skia:1662 R=reed@google.com Review URL: https://codereview.chromium.org/24251008 git-svn-id: http://skia.googlecode.com/svn/trunk@11414 2bbb7eff-a529-9590-31e7-b0007b416f81
160 lines
4.8 KiB
C++
160 lines
4.8 KiB
C++
/*
|
|
* 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 "SkPaint.h"
|
|
#include "SkRandom.h"
|
|
#include "SkChunkAlloc.h"
|
|
#include "SkString.h"
|
|
|
|
class ChunkAllocBench : public SkBenchmark {
|
|
SkString fName;
|
|
size_t fMinSize;
|
|
public:
|
|
ChunkAllocBench(size_t minSize) {
|
|
fMinSize = minSize;
|
|
fName.printf("chunkalloc_" SK_SIZE_T_SPECIFIER, minSize);
|
|
fIsRendering = false;
|
|
}
|
|
|
|
protected:
|
|
virtual const char* onGetName() SK_OVERRIDE {
|
|
return fName.c_str();
|
|
}
|
|
|
|
virtual void onDraw(SkCanvas*) SK_OVERRIDE {
|
|
size_t inc = fMinSize >> 4;
|
|
SkASSERT(inc > 0);
|
|
size_t total = fMinSize * 64;
|
|
|
|
SkChunkAlloc alloc(fMinSize);
|
|
|
|
for (int i = 0; i < this->getLoops(); ++i) {
|
|
size_t size = 0;
|
|
int calls = 0;
|
|
while (size < total) {
|
|
alloc.allocThrow(inc);
|
|
size += inc;
|
|
calls += 1;
|
|
}
|
|
alloc.reset();
|
|
}
|
|
}
|
|
|
|
private:
|
|
typedef SkBenchmark INHERITED;
|
|
};
|
|
|
|
DEF_BENCH( return new ChunkAllocBench(64); )
|
|
DEF_BENCH( return new ChunkAllocBench(8*1024); )
|
|
|
|
static int* calloc(size_t num) {
|
|
return (int*)sk_calloc_throw(num*sizeof(int));
|
|
}
|
|
|
|
static int* malloc_bzero(size_t num) {
|
|
const size_t bytes = num*sizeof(int);
|
|
int* ints = (int*)sk_malloc_throw(bytes);
|
|
sk_bzero(ints, bytes);
|
|
return ints;
|
|
}
|
|
|
|
class ZerosBench : public SkBenchmark {
|
|
size_t fNum;
|
|
bool fRead;
|
|
bool fWrite;
|
|
bool fUseCalloc;
|
|
SkString fName;
|
|
public:
|
|
ZerosBench(size_t num, bool read, bool write, bool useCalloc)
|
|
: fNum(num)
|
|
, fRead(read)
|
|
, fWrite(write)
|
|
, fUseCalloc(useCalloc) {
|
|
fName.printf("memory_%s", useCalloc ? "calloc" : "malloc_bzero");
|
|
if (read && write) {
|
|
fName.appendf("_rw");
|
|
} else if (read) {
|
|
fName.appendf("_r");
|
|
} else if (write) {
|
|
fName.appendf("_w");
|
|
}
|
|
fName.appendf("_"SK_SIZE_T_SPECIFIER, num);
|
|
fIsRendering = false;
|
|
}
|
|
|
|
protected:
|
|
virtual const char* onGetName() SK_OVERRIDE {
|
|
return fName.c_str();
|
|
}
|
|
|
|
virtual void onDraw(SkCanvas*) SK_OVERRIDE {
|
|
for (int i = 0; i < this->getLoops(); i++) {
|
|
int* zeros = fUseCalloc ? calloc(fNum) : malloc_bzero(fNum);
|
|
if (fRead) {
|
|
volatile int x = 15;
|
|
for (size_t j = 0; j < fNum; j++) {
|
|
x ^= zeros[j];
|
|
}
|
|
}
|
|
if (fWrite) {
|
|
for (size_t j = 0; j < fNum; j++) {
|
|
zeros[j] = 15;
|
|
}
|
|
}
|
|
sk_free(zeros);
|
|
}
|
|
}
|
|
};
|
|
|
|
// zero count r w useCalloc?
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 0, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 0, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 0, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 0, 1, 1))
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 1, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 1, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 1, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(1024*1024, 1, 1, 1))
|
|
|
|
DEF_BENCH(return new ZerosBench(256*1024, 0, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(256*1024, 0, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(256*1024, 0, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(256*1024, 0, 1, 1))
|
|
DEF_BENCH(return new ZerosBench(256*1024, 1, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(256*1024, 1, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(256*1024, 1, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(256*1024, 1, 1, 1))
|
|
|
|
DEF_BENCH(return new ZerosBench(4*1024, 0, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(4*1024, 0, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(4*1024, 0, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(4*1024, 0, 1, 1))
|
|
DEF_BENCH(return new ZerosBench(4*1024, 1, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(4*1024, 1, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(4*1024, 1, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(4*1024, 1, 1, 1))
|
|
|
|
DEF_BENCH(return new ZerosBench(300, 0, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(300, 0, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(300, 0, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(300, 0, 1, 1))
|
|
DEF_BENCH(return new ZerosBench(300, 1, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(300, 1, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(300, 1, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(300, 1, 1, 1))
|
|
|
|
DEF_BENCH(return new ZerosBench(4, 0, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(4, 0, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(4, 0, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(4, 0, 1, 1))
|
|
DEF_BENCH(return new ZerosBench(4, 1, 0, 0))
|
|
DEF_BENCH(return new ZerosBench(4, 1, 0, 1))
|
|
DEF_BENCH(return new ZerosBench(4, 1, 1, 0))
|
|
DEF_BENCH(return new ZerosBench(4, 1, 1, 1))
|