2012-01-07 03:49:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2012-05-17 14:28:11 +00:00
|
|
|
|
2016-06-05 20:14:21 +00:00
|
|
|
#include "SkRandom.h"
|
2012-01-07 03:49:13 +00:00
|
|
|
#include "SkUtils.h"
|
2014-01-24 20:56:26 +00:00
|
|
|
#include "Test.h"
|
2012-01-07 03:49:13 +00:00
|
|
|
|
|
|
|
static void set_zero(void* dst, size_t bytes) {
|
|
|
|
char* ptr = (char*)dst;
|
|
|
|
for (size_t i = 0; i < bytes; ++i) {
|
|
|
|
ptr[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_ALIGNMENT 64
|
|
|
|
#define MAX_COUNT ((MAX_ALIGNMENT) * 32)
|
|
|
|
#define PAD 32
|
|
|
|
#define TOTAL (PAD + MAX_ALIGNMENT + MAX_COUNT + PAD)
|
|
|
|
|
|
|
|
#define VALUE16 0x1234
|
|
|
|
#define VALUE32 0x12345678
|
|
|
|
|
2016-02-25 01:59:16 +00:00
|
|
|
static void compare16(skiatest::Reporter* r, const uint16_t base[],
|
|
|
|
uint16_t value, int count) {
|
2012-01-07 03:49:13 +00:00
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
if (base[i] != value) {
|
2016-02-25 01:59:16 +00:00
|
|
|
ERRORF(r, "[%d] expected %x found %x\n", i, value, base[i]);
|
|
|
|
return;
|
2012-01-07 03:49:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-25 01:59:16 +00:00
|
|
|
static void compare32(skiatest::Reporter* r, const uint32_t base[],
|
|
|
|
uint32_t value, int count) {
|
2012-01-07 03:49:13 +00:00
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
if (base[i] != value) {
|
2016-02-25 01:59:16 +00:00
|
|
|
ERRORF(r, "[%d] expected %x found %x\n", i, value, base[i]);
|
|
|
|
return;
|
2012-01-07 03:49:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_16(skiatest::Reporter* reporter) {
|
|
|
|
uint16_t buffer[TOTAL];
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-01-07 03:49:13 +00:00
|
|
|
for (int count = 0; count < MAX_COUNT; ++count) {
|
|
|
|
for (int alignment = 0; alignment < MAX_ALIGNMENT; ++alignment) {
|
|
|
|
set_zero(buffer, sizeof(buffer));
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-01-07 03:49:13 +00:00
|
|
|
uint16_t* base = &buffer[PAD + alignment];
|
|
|
|
sk_memset16(base, VALUE16, count);
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2016-02-25 01:59:16 +00:00
|
|
|
compare16(reporter, buffer, 0, PAD + alignment);
|
|
|
|
compare16(reporter, base, VALUE16, count);
|
|
|
|
compare16(reporter, base + count, 0, TOTAL - count - PAD - alignment);
|
2012-01-07 03:49:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_32(skiatest::Reporter* reporter) {
|
|
|
|
uint32_t buffer[TOTAL];
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-01-07 03:49:13 +00:00
|
|
|
for (int count = 0; count < MAX_COUNT; ++count) {
|
|
|
|
for (int alignment = 0; alignment < MAX_ALIGNMENT; ++alignment) {
|
|
|
|
set_zero(buffer, sizeof(buffer));
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-01-07 03:49:13 +00:00
|
|
|
uint32_t* base = &buffer[PAD + alignment];
|
|
|
|
sk_memset32(base, VALUE32, count);
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2016-02-25 01:59:16 +00:00
|
|
|
compare32(reporter, buffer, 0, PAD + alignment);
|
|
|
|
compare32(reporter, base, VALUE32, count);
|
|
|
|
compare32(reporter, base + count, 0, TOTAL - count - PAD - alignment);
|
2012-01-07 03:49:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test sk_memset16 and sk_memset32.
|
|
|
|
* For performance considerations, implementations may take different paths
|
|
|
|
* depending on the alignment of the dst, and/or the size of the count.
|
|
|
|
*/
|
2013-12-12 21:11:12 +00:00
|
|
|
DEF_TEST(Memset, reporter) {
|
2012-01-07 03:49:13 +00:00
|
|
|
test_16(reporter);
|
|
|
|
test_32(reporter);
|
2013-12-12 21:11:12 +00:00
|
|
|
}
|