mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 7 | |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 8 | #include "Test.h" |
tfarina@chromium.org | e4fafb1 | 2013-12-12 21:11:12 +0000 | [diff] [blame] | 9 | #include "TestClassDef.h" |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 10 | #include "SkChunkAlloc.h" |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 11 | #include "SkUtils.h" |
| 12 | |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 13 | static void test_chunkalloc(skiatest::Reporter* reporter) { |
| 14 | size_t min = 256; |
| 15 | SkChunkAlloc alloc(min); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 16 | |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 17 | REPORTER_ASSERT(reporter, 0 == alloc.totalCapacity()); |
reed@google.com | 6757a3c | 2013-06-19 19:25:36 +0000 | [diff] [blame] | 18 | REPORTER_ASSERT(reporter, 0 == alloc.totalUsed()); |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 19 | REPORTER_ASSERT(reporter, 0 == alloc.blockCount()); |
| 20 | REPORTER_ASSERT(reporter, !alloc.contains(NULL)); |
| 21 | REPORTER_ASSERT(reporter, !alloc.contains(reporter)); |
| 22 | |
| 23 | alloc.reset(); |
| 24 | REPORTER_ASSERT(reporter, 0 == alloc.totalCapacity()); |
reed@google.com | 6757a3c | 2013-06-19 19:25:36 +0000 | [diff] [blame] | 25 | REPORTER_ASSERT(reporter, 0 == alloc.totalUsed()); |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 26 | REPORTER_ASSERT(reporter, 0 == alloc.blockCount()); |
| 27 | |
| 28 | size_t size = min >> 1; |
| 29 | void* ptr = alloc.allocThrow(size); |
| 30 | REPORTER_ASSERT(reporter, alloc.totalCapacity() >= size); |
reed@google.com | 6757a3c | 2013-06-19 19:25:36 +0000 | [diff] [blame] | 31 | REPORTER_ASSERT(reporter, alloc.totalUsed() == size); |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 32 | REPORTER_ASSERT(reporter, alloc.blockCount() > 0); |
| 33 | REPORTER_ASSERT(reporter, alloc.contains(ptr)); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 34 | |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 35 | alloc.reset(); |
| 36 | REPORTER_ASSERT(reporter, !alloc.contains(ptr)); |
reed@google.com | 6757a3c | 2013-06-19 19:25:36 +0000 | [diff] [blame] | 37 | REPORTER_ASSERT(reporter, 0 == alloc.totalCapacity()); |
| 38 | REPORTER_ASSERT(reporter, 0 == alloc.totalUsed()); |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | /////////////////////////////////////////////////////////////////////////////// |
| 42 | |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 43 | static void set_zero(void* dst, size_t bytes) { |
| 44 | char* ptr = (char*)dst; |
| 45 | for (size_t i = 0; i < bytes; ++i) { |
| 46 | ptr[i] = 0; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | #define MAX_ALIGNMENT 64 |
| 51 | #define MAX_COUNT ((MAX_ALIGNMENT) * 32) |
| 52 | #define PAD 32 |
| 53 | #define TOTAL (PAD + MAX_ALIGNMENT + MAX_COUNT + PAD) |
| 54 | |
| 55 | #define VALUE16 0x1234 |
| 56 | #define VALUE32 0x12345678 |
| 57 | |
| 58 | static bool compare16(const uint16_t base[], uint16_t value, int count) { |
| 59 | for (int i = 0; i < count; ++i) { |
| 60 | if (base[i] != value) { |
| 61 | SkDebugf("[%d] expected %x found %x\n", i, value, base[i]); |
| 62 | return false; |
| 63 | } |
| 64 | } |
| 65 | return true; |
| 66 | } |
| 67 | |
| 68 | static bool compare32(const uint32_t base[], uint32_t value, int count) { |
| 69 | for (int i = 0; i < count; ++i) { |
| 70 | if (base[i] != value) { |
| 71 | SkDebugf("[%d] expected %x found %x\n", i, value, base[i]); |
| 72 | return false; |
| 73 | } |
| 74 | } |
| 75 | return true; |
| 76 | } |
| 77 | |
| 78 | static void test_16(skiatest::Reporter* reporter) { |
| 79 | uint16_t buffer[TOTAL]; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 80 | |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 81 | for (int count = 0; count < MAX_COUNT; ++count) { |
| 82 | for (int alignment = 0; alignment < MAX_ALIGNMENT; ++alignment) { |
| 83 | set_zero(buffer, sizeof(buffer)); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 84 | |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 85 | uint16_t* base = &buffer[PAD + alignment]; |
| 86 | sk_memset16(base, VALUE16, count); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 87 | |
sugoi@google.com | 54f0d1b | 2013-02-27 19:17:41 +0000 | [diff] [blame] | 88 | REPORTER_ASSERT(reporter, |
| 89 | compare16(buffer, 0, PAD + alignment) && |
| 90 | compare16(base, VALUE16, count) && |
| 91 | compare16(base + count, 0, TOTAL - count - PAD - alignment)); |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | static void test_32(skiatest::Reporter* reporter) { |
| 97 | uint32_t buffer[TOTAL]; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 98 | |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 99 | for (int count = 0; count < MAX_COUNT; ++count) { |
| 100 | for (int alignment = 0; alignment < MAX_ALIGNMENT; ++alignment) { |
| 101 | set_zero(buffer, sizeof(buffer)); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 102 | |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 103 | uint32_t* base = &buffer[PAD + alignment]; |
| 104 | sk_memset32(base, VALUE32, count); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 105 | |
sugoi@google.com | 54f0d1b | 2013-02-27 19:17:41 +0000 | [diff] [blame] | 106 | REPORTER_ASSERT(reporter, |
| 107 | compare32(buffer, 0, PAD + alignment) && |
| 108 | compare32(base, VALUE32, count) && |
| 109 | compare32(base + count, 0, TOTAL - count - PAD - alignment)); |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 110 | } |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Test sk_memset16 and sk_memset32. |
| 116 | * For performance considerations, implementations may take different paths |
| 117 | * depending on the alignment of the dst, and/or the size of the count. |
| 118 | */ |
tfarina@chromium.org | e4fafb1 | 2013-12-12 21:11:12 +0000 | [diff] [blame] | 119 | DEF_TEST(Memset, reporter) { |
mike@reedtribe.org | c52b192 | 2012-01-07 03:49:13 +0000 | [diff] [blame] | 120 | test_16(reporter); |
| 121 | test_32(reporter); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 122 | |
reed@google.com | ebd2496 | 2012-05-17 14:28:11 +0000 | [diff] [blame] | 123 | test_chunkalloc(reporter); |
tfarina@chromium.org | e4fafb1 | 2013-12-12 21:11:12 +0000 | [diff] [blame] | 124 | } |