restore 4478 w/ fixed assert (no long need 8-byte alignment)
git-svn-id: http://skia.googlecode.com/svn/trunk@4480 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
fc8581b2d8
commit
142e1fe7cf
@ -7,97 +7,41 @@
|
|||||||
#include "SkBenchmark.h"
|
#include "SkBenchmark.h"
|
||||||
#include "SkCanvas.h"
|
#include "SkCanvas.h"
|
||||||
#include "SkChecksum.h"
|
#include "SkChecksum.h"
|
||||||
#include "SkString.h"
|
#include "SkRandom.h"
|
||||||
|
|
||||||
class ComputeChecksumBench : public SkBenchmark {
|
class ComputeChecksumBench : public SkBenchmark {
|
||||||
public:
|
|
||||||
ComputeChecksumBench(void* param, const char name[]) : INHERITED(param) {
|
|
||||||
fName.printf("compute_checksum_%s", name);
|
|
||||||
}
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
DATA_SIZE = 1024,
|
U32COUNT = 256,
|
||||||
|
SIZE = U32COUNT * 4,
|
||||||
N = SkBENCHLOOP(100000),
|
N = SkBENCHLOOP(100000),
|
||||||
};
|
};
|
||||||
|
uint32_t fData[U32COUNT];
|
||||||
|
|
||||||
|
public:
|
||||||
|
ComputeChecksumBench(void* param) : INHERITED(param) {
|
||||||
|
SkRandom rand;
|
||||||
|
for (int i = 0; i < U32COUNT; ++i) {
|
||||||
|
fData[i] = rand.nextU();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual const char* onGetName() {
|
virtual const char* onGetName() {
|
||||||
return fName.c_str();
|
return "compute_checksum";
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void onDraw(SkCanvas* canvas) {
|
virtual void onDraw(SkCanvas* canvas) {
|
||||||
uint64_t data[DATA_SIZE / sizeof(uint64_t)];
|
for (int i = 0; i < N; i++) {
|
||||||
computeChecksum(data, DATA_SIZE);
|
volatile uint32_t result = SkChecksum::Compute(fData, sizeof(fData));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void computeChecksum(const uint64_t*, size_t) = 0;
|
|
||||||
|
|
||||||
SkString fName;
|
|
||||||
private:
|
private:
|
||||||
typedef SkBenchmark INHERITED;
|
typedef SkBenchmark INHERITED;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* Use SkComputeChecksum32 to compute a checksum on a datablock
|
|
||||||
*/
|
|
||||||
class ComputeChecksum32Bench : public ComputeChecksumBench {
|
|
||||||
public:
|
|
||||||
ComputeChecksum32Bench(void* param)
|
|
||||||
: INHERITED(param, "32") { }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void computeChecksum(const uint64_t* data, size_t len) {
|
|
||||||
for (int i = 0; i < N; i++) {
|
|
||||||
volatile uint32_t result = SkComputeChecksum32(reinterpret_cast<const uint32_t*>(data), len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
typedef ComputeChecksumBench INHERITED;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Use SkComputeChecksum64 to compute a checksum on a datablock
|
|
||||||
*/
|
|
||||||
class ComputeChecksum64Bench : public ComputeChecksumBench {
|
|
||||||
public:
|
|
||||||
ComputeChecksum64Bench(void* param)
|
|
||||||
: INHERITED(param, "64") { }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void computeChecksum(const uint64_t* data, size_t len) {
|
|
||||||
for (int i = 0; i < N; i++) {
|
|
||||||
volatile uint64_t result = SkComputeChecksum64(data, len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
typedef ComputeChecksumBench INHERITED;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Use SkComputeChecksum64 to compute a checksum on a datablock
|
|
||||||
*/
|
|
||||||
class ComputeChecksumXXBench : public ComputeChecksumBench {
|
|
||||||
public:
|
|
||||||
ComputeChecksumXXBench(void* param) : INHERITED(param, "XX") { }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void computeChecksum(const uint64_t* data, size_t len) {
|
|
||||||
for (int i = 0; i < N; i++) {
|
|
||||||
volatile uint32_t result = SkChecksum::Compute(reinterpret_cast<const uint32_t*>(data), len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
typedef ComputeChecksumBench INHERITED;
|
|
||||||
};
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
static SkBenchmark* Fact0(void* p) { return new ComputeChecksum32Bench(p); }
|
static SkBenchmark* Fact0(void* p) { return new ComputeChecksumBench(p); }
|
||||||
static SkBenchmark* Fact1(void* p) { return new ComputeChecksum64Bench(p); }
|
|
||||||
static SkBenchmark* Fact2(void* p) { return new ComputeChecksumXXBench(p); }
|
|
||||||
|
|
||||||
static BenchRegistry gReg0(Fact0);
|
static BenchRegistry gReg0(Fact0);
|
||||||
static BenchRegistry gReg1(Fact1);
|
|
||||||
static BenchRegistry gReg2(Fact2);
|
|
||||||
|
@ -10,64 +10,6 @@
|
|||||||
|
|
||||||
#include "SkTypes.h"
|
#include "SkTypes.h"
|
||||||
|
|
||||||
#if !defined(SK_PREFER_32BIT_CHECKSUM)
|
|
||||||
#define SK_PREFER_32BIT_CHECKSUM 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
enum {
|
|
||||||
ChecksumRotateBits = 17
|
|
||||||
};
|
|
||||||
|
|
||||||
#define SkCHECKSUM_MASH(CHECKSUM, NEW_CHUNK) \
|
|
||||||
CHECKSUM = (((CHECKSUM) >> (sizeof(CHECKSUM)*8 - ChecksumRotateBits)) + \
|
|
||||||
((CHECKSUM) << ChecksumRotateBits)) ^ (NEW_CHUNK);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Compute a 64-bit checksum for a given data block
|
|
||||||
*
|
|
||||||
* @param data Memory address of the data block to be processed. Must be
|
|
||||||
* 32-bit aligned
|
|
||||||
* @param size Size of the data block in bytes. Must be a multiple of 8.
|
|
||||||
* @return checksum result
|
|
||||||
*/
|
|
||||||
inline uint64_t SkComputeChecksum64(const uint64_t* ptr, size_t size) {
|
|
||||||
SkASSERT(SkIsAlign8(size));
|
|
||||||
// Strict 8-byte alignment is not required on ptr. On current
|
|
||||||
// CPUs there is no measurable performance difference between 32-bit
|
|
||||||
// and 64-bit aligned access to uint64_t data
|
|
||||||
SkASSERT(SkIsAlign4((intptr_t)ptr));
|
|
||||||
|
|
||||||
const uint64_t* stop = ptr + (size >> 3);
|
|
||||||
uint64_t result = 0;
|
|
||||||
while (ptr < stop) {
|
|
||||||
SkCHECKSUM_MASH(result, *ptr);
|
|
||||||
ptr++;
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Compute a 32-bit checksum for a given data block
|
|
||||||
*
|
|
||||||
* @param data Memory address of the data block to be processed. Must be
|
|
||||||
* 32-bit aligned.
|
|
||||||
* @param size Size of the data block in bytes. Must be a multiple of 4.
|
|
||||||
* @return checksum result
|
|
||||||
*/
|
|
||||||
inline uint32_t SkComputeChecksum32(const uint32_t* ptr, size_t size) {
|
|
||||||
SkASSERT(SkIsAlign4(size));
|
|
||||||
SkASSERT(SkIsAlign4((intptr_t)ptr));
|
|
||||||
|
|
||||||
const uint32_t* stop = ptr + (size >> 2);
|
|
||||||
uint32_t result = 0;
|
|
||||||
while (ptr < stop) {
|
|
||||||
SkCHECKSUM_MASH(result, *ptr);
|
|
||||||
ptr++;
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
class SkChecksum : SkNoncopyable {
|
class SkChecksum : SkNoncopyable {
|
||||||
private:
|
private:
|
||||||
/*
|
/*
|
||||||
|
@ -15,34 +15,29 @@
|
|||||||
|
|
||||||
class SkDescriptor : SkNoncopyable {
|
class SkDescriptor : SkNoncopyable {
|
||||||
public:
|
public:
|
||||||
static size_t ComputeOverhead(int entryCount)
|
static size_t ComputeOverhead(int entryCount) {
|
||||||
{
|
|
||||||
SkASSERT(entryCount >= 0);
|
SkASSERT(entryCount >= 0);
|
||||||
return sizeof(SkDescriptor) + entryCount * sizeof(Entry);
|
return sizeof(SkDescriptor) + entryCount * sizeof(Entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
static SkDescriptor* Alloc(size_t length)
|
static SkDescriptor* Alloc(size_t length) {
|
||||||
{
|
|
||||||
SkASSERT(SkAlign4(length) == length);
|
SkASSERT(SkAlign4(length) == length);
|
||||||
SkDescriptor* desc = (SkDescriptor*)sk_malloc_throw(length);
|
SkDescriptor* desc = (SkDescriptor*)sk_malloc_throw(length);
|
||||||
return desc;
|
return desc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void Free(SkDescriptor* desc)
|
static void Free(SkDescriptor* desc) {
|
||||||
{
|
|
||||||
sk_free(desc);
|
sk_free(desc);
|
||||||
}
|
}
|
||||||
|
|
||||||
void init()
|
void init() {
|
||||||
{
|
|
||||||
fLength = sizeof(SkDescriptor);
|
fLength = sizeof(SkDescriptor);
|
||||||
fCount = 0;
|
fCount = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t getLength() const { return fLength; }
|
uint32_t getLength() const { return fLength; }
|
||||||
|
|
||||||
void* addEntry(uint32_t tag, uint32_t length, const void* data = NULL)
|
void* addEntry(uint32_t tag, uint32_t length, const void* data = NULL) {
|
||||||
{
|
|
||||||
SkASSERT(tag);
|
SkASSERT(tag);
|
||||||
SkASSERT(SkAlign4(length) == length);
|
SkASSERT(SkAlign4(length) == length);
|
||||||
SkASSERT(this->findEntry(tag, NULL) == NULL);
|
SkASSERT(this->findEntry(tag, NULL) == NULL);
|
||||||
@ -50,37 +45,34 @@ public:
|
|||||||
Entry* entry = (Entry*)((char*)this + fLength);
|
Entry* entry = (Entry*)((char*)this + fLength);
|
||||||
entry->fTag = tag;
|
entry->fTag = tag;
|
||||||
entry->fLen = length;
|
entry->fLen = length;
|
||||||
if (data)
|
if (data) {
|
||||||
memcpy(entry + 1, data, length);
|
memcpy(entry + 1, data, length);
|
||||||
|
}
|
||||||
|
|
||||||
fCount += 1;
|
fCount += 1;
|
||||||
fLength += sizeof(Entry) + length;
|
fLength += sizeof(Entry) + length;
|
||||||
return (entry + 1); // return its data
|
return (entry + 1); // return its data
|
||||||
}
|
}
|
||||||
|
|
||||||
void computeChecksum()
|
void computeChecksum() {
|
||||||
{
|
|
||||||
fChecksum = SkDescriptor::ComputeChecksum(this);
|
fChecksum = SkDescriptor::ComputeChecksum(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef SK_DEBUG
|
#ifdef SK_DEBUG
|
||||||
void assertChecksum() const
|
void assertChecksum() const {
|
||||||
{
|
SkASSERT(SkDescriptor::ComputeChecksum(this) == fChecksum);
|
||||||
SkASSERT(fChecksum == SkDescriptor::ComputeChecksum(this));
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const void* findEntry(uint32_t tag, uint32_t* length) const
|
const void* findEntry(uint32_t tag, uint32_t* length) const {
|
||||||
{
|
|
||||||
const Entry* entry = (const Entry*)(this + 1);
|
const Entry* entry = (const Entry*)(this + 1);
|
||||||
int count = fCount;
|
int count = fCount;
|
||||||
|
|
||||||
while (--count >= 0)
|
while (--count >= 0) {
|
||||||
{
|
if (entry->fTag == tag) {
|
||||||
if (entry->fTag == tag)
|
if (length) {
|
||||||
{
|
|
||||||
if (length)
|
|
||||||
*length = entry->fLen;
|
*length = entry->fLen;
|
||||||
|
}
|
||||||
return entry + 1;
|
return entry + 1;
|
||||||
}
|
}
|
||||||
entry = (const Entry*)((const char*)(entry + 1) + entry->fLen);
|
entry = (const Entry*)((const char*)(entry + 1) + entry->fLen);
|
||||||
@ -88,15 +80,13 @@ public:
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
SkDescriptor* copy() const
|
SkDescriptor* copy() const {
|
||||||
{
|
|
||||||
SkDescriptor* desc = SkDescriptor::Alloc(fLength);
|
SkDescriptor* desc = SkDescriptor::Alloc(fLength);
|
||||||
memcpy(desc, this, fLength);
|
memcpy(desc, this, fLength);
|
||||||
return desc;
|
return desc;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool equals(const SkDescriptor& other) const
|
bool equals(const SkDescriptor& other) const {
|
||||||
{
|
|
||||||
// probe to see if we have a good checksum algo
|
// probe to see if we have a good checksum algo
|
||||||
// SkASSERT(a.fChecksum != b.fChecksum || memcmp(&a, &b, a.fLength) == 0);
|
// SkASSERT(a.fChecksum != b.fChecksum || memcmp(&a, &b, a.fLength) == 0);
|
||||||
|
|
||||||
@ -130,11 +120,10 @@ private:
|
|||||||
uint32_t fLength; // must be second
|
uint32_t fLength; // must be second
|
||||||
uint32_t fCount;
|
uint32_t fCount;
|
||||||
|
|
||||||
static uint32_t ComputeChecksum(const SkDescriptor* desc)
|
static uint32_t ComputeChecksum(const SkDescriptor* desc) {
|
||||||
{
|
|
||||||
const uint32_t* ptr = (const uint32_t*)desc + 1; // skip the checksum field
|
const uint32_t* ptr = (const uint32_t*)desc + 1; // skip the checksum field
|
||||||
const size_t len = desc->fLength-sizeof(uint32_t);
|
size_t len = desc->fLength - sizeof(uint32_t);
|
||||||
return SkComputeChecksum32(ptr, len);
|
return SkChecksum::Compute(ptr, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
// private so no one can create one except our factories
|
// private so no one can create one except our factories
|
||||||
@ -145,18 +134,20 @@ private:
|
|||||||
|
|
||||||
class SkAutoDescriptor : SkNoncopyable {
|
class SkAutoDescriptor : SkNoncopyable {
|
||||||
public:
|
public:
|
||||||
SkAutoDescriptor(size_t size)
|
SkAutoDescriptor(size_t size) {
|
||||||
{
|
if (size <= sizeof(fStorage)) {
|
||||||
if (size <= sizeof(fStorage))
|
|
||||||
fDesc = (SkDescriptor*)(void*)fStorage;
|
fDesc = (SkDescriptor*)(void*)fStorage;
|
||||||
else
|
} else {
|
||||||
fDesc = SkDescriptor::Alloc(size);
|
fDesc = SkDescriptor::Alloc(size);
|
||||||
}
|
}
|
||||||
~SkAutoDescriptor()
|
}
|
||||||
{
|
|
||||||
if (fDesc != (SkDescriptor*)(void*)fStorage)
|
~SkAutoDescriptor() {
|
||||||
|
if (fDesc != (SkDescriptor*)(void*)fStorage) {
|
||||||
SkDescriptor::Free(fDesc);
|
SkDescriptor::Free(fDesc);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
SkDescriptor* getDesc() const { return fDesc; }
|
SkDescriptor* getDesc() const { return fDesc; }
|
||||||
private:
|
private:
|
||||||
enum {
|
enum {
|
||||||
|
@ -80,12 +80,6 @@ SkFlatData* SkFlatData::Create(SkChunkAlloc* heap, const void* obj,
|
|||||||
flattenProc(buffer, obj);
|
flattenProc(buffer, obj);
|
||||||
uint32_t size = buffer.size();
|
uint32_t size = buffer.size();
|
||||||
|
|
||||||
|
|
||||||
#if !SK_PREFER_32BIT_CHECKSUM
|
|
||||||
uint32_t unpaddedSize = size;
|
|
||||||
size = SkAlign8(size);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// allocate enough memory to hold both SkFlatData and the serialized
|
// allocate enough memory to hold both SkFlatData and the serialized
|
||||||
// contents
|
// contents
|
||||||
SkFlatData* result = (SkFlatData*) heap->allocThrow(size + sizeof(SkFlatData));
|
SkFlatData* result = (SkFlatData*) heap->allocThrow(size + sizeof(SkFlatData));
|
||||||
@ -94,18 +88,7 @@ SkFlatData* SkFlatData::Create(SkChunkAlloc* heap, const void* obj,
|
|||||||
|
|
||||||
// put the serialized contents into the data section of the new allocation
|
// put the serialized contents into the data section of the new allocation
|
||||||
buffer.flatten(result->data());
|
buffer.flatten(result->data());
|
||||||
#if SK_PREFER_32BIT_CHECKSUM
|
result->fChecksum = SkChecksum::Compute(result->data32(), size);
|
||||||
result->fChecksum =
|
|
||||||
SkComputeChecksum32(reinterpret_cast<uint32_t*>(result->data()), size);
|
|
||||||
#else
|
|
||||||
if (size != unpaddedSize) {
|
|
||||||
// Flat data is padded: put zeros in the last 32 bits.
|
|
||||||
SkASSERT(size - 4 == unpaddedSize);
|
|
||||||
*((uint32_t*)((char*)result->data() + unpaddedSize)) = 0;
|
|
||||||
}
|
|
||||||
result->fChecksum =
|
|
||||||
SkComputeChecksum64(reinterpret_cast<uint64_t*>(result->data()), size);
|
|
||||||
#endif
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -122,5 +105,5 @@ void SkFlatData::unflatten(void* result,
|
|||||||
facePlayback->setupBuffer(buffer);
|
facePlayback->setupBuffer(buffer);
|
||||||
}
|
}
|
||||||
unflattenProc(buffer, result);
|
unflattenProc(buffer, result);
|
||||||
SkASSERT(fAllocSize == SkAlign8((int32_t)buffer.offset()));
|
SkASSERT(fAllocSize == (int32_t)buffer.offset());
|
||||||
}
|
}
|
||||||
|
@ -156,16 +156,11 @@ public:
|
|||||||
|
|
||||||
static int Compare(const SkFlatData* a, const SkFlatData* b) {
|
static int Compare(const SkFlatData* a, const SkFlatData* b) {
|
||||||
size_t bytesToCompare = sizeof(a->fChecksum) + a->fAllocSize;
|
size_t bytesToCompare = sizeof(a->fChecksum) + a->fAllocSize;
|
||||||
#if SK_PREFER_32BIT_CHECKSUM
|
|
||||||
typedef uint32_t CompareType;
|
|
||||||
SkASSERT(SkIsAlign4(bytesToCompare));
|
SkASSERT(SkIsAlign4(bytesToCompare));
|
||||||
#else
|
|
||||||
typedef uint64_t CompareType;
|
const uint32_t* a_ptr = &(a->fChecksum);
|
||||||
SkASSERT(SkIsAlign8(bytesToCompare));
|
const uint32_t* b_ptr = &(b->fChecksum);
|
||||||
#endif
|
const uint32_t* stop = a_ptr + bytesToCompare / sizeof(uint32_t);
|
||||||
const CompareType* a_ptr = &(a->fChecksum);
|
|
||||||
const CompareType* b_ptr = &(b->fChecksum);
|
|
||||||
const CompareType* stop = a_ptr + bytesToCompare / sizeof(CompareType);
|
|
||||||
while(a_ptr < stop) {
|
while(a_ptr < stop) {
|
||||||
if (*a_ptr != *b_ptr) {
|
if (*a_ptr != *b_ptr) {
|
||||||
return (*a_ptr < *b_ptr) ? -1 : 1;
|
return (*a_ptr < *b_ptr) ? -1 : 1;
|
||||||
@ -178,6 +173,8 @@ public:
|
|||||||
|
|
||||||
int index() const { return fIndex; }
|
int index() const { return fIndex; }
|
||||||
void* data() const { return (char*)this + sizeof(*this); }
|
void* data() const { return (char*)this + sizeof(*this); }
|
||||||
|
// We guarantee that our data is 32bit aligned
|
||||||
|
uint32_t* data32() const { return (uint32_t*)this->data(); }
|
||||||
|
|
||||||
#ifdef SK_DEBUG_SIZE
|
#ifdef SK_DEBUG_SIZE
|
||||||
size_t size() const { return sizeof(SkFlatData) + fAllocSize; }
|
size_t size() const { return sizeof(SkFlatData) + fAllocSize; }
|
||||||
@ -199,11 +196,7 @@ private:
|
|||||||
int fIndex;
|
int fIndex;
|
||||||
int32_t fAllocSize;
|
int32_t fAllocSize;
|
||||||
// fChecksum must be defined last in order to be contiguous with data()
|
// fChecksum must be defined last in order to be contiguous with data()
|
||||||
#if SK_PREFER_32BIT_CHECKSUM
|
|
||||||
uint32_t fChecksum;
|
uint32_t fChecksum;
|
||||||
#else
|
|
||||||
uint64_t fChecksum;
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
Loading…
Reference in New Issue
Block a user