Flutter Engine
The Flutter Engine
MemsetTest.cpp
Go to the documentation of this file.
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 */
7
8#include "src/core/SkMemset.h"
9#include "tests/Test.h"
10
11#include <cstddef>
12#include <cstdint>
13
14static void set_zero(void* dst, size_t bytes) {
15 char* ptr = (char*)dst;
16 for (size_t i = 0; i < bytes; ++i) {
17 ptr[i] = 0;
18 }
19}
20
21#define MAX_ALIGNMENT 64
22#define MAX_COUNT ((MAX_ALIGNMENT) * 32)
23#define PAD 32
24#define TOTAL (PAD + MAX_ALIGNMENT + MAX_COUNT + PAD)
25
26#define VALUE16 0x1234
27#define VALUE32 0x12345678
28
29static void compare16(skiatest::Reporter* r, const uint16_t base[],
30 uint16_t value, int count) {
31 for (int i = 0; i < count; ++i) {
32 if (base[i] != value) {
33 ERRORF(r, "[%d] expected %x found %x\n", i, value, base[i]);
34 return;
35 }
36 }
37}
38
39static void compare32(skiatest::Reporter* r, const uint32_t base[],
40 uint32_t value, int count) {
41 for (int i = 0; i < count; ++i) {
42 if (base[i] != value) {
43 ERRORF(r, "[%d] expected %x found %x\n", i, value, base[i]);
44 return;
45 }
46 }
47}
48
50 uint16_t buffer[TOTAL];
51
52 for (int count = 0; count < MAX_COUNT; ++count) {
53 for (int alignment = 0; alignment < MAX_ALIGNMENT; ++alignment) {
54 set_zero(buffer, sizeof(buffer));
55
56 uint16_t* base = &buffer[PAD + alignment];
58
59 compare16(reporter, buffer, 0, PAD + alignment);
61 compare16(reporter, base + count, 0, TOTAL - count - PAD - alignment);
62 }
63 }
64}
65
67 uint32_t buffer[TOTAL];
68
69 for (int count = 0; count < MAX_COUNT; ++count) {
70 for (int alignment = 0; alignment < MAX_ALIGNMENT; ++alignment) {
71 set_zero(buffer, sizeof(buffer));
72
73 uint32_t* base = &buffer[PAD + alignment];
75
76 compare32(reporter, buffer, 0, PAD + alignment);
78 compare32(reporter, base + count, 0, TOTAL - count - PAD - alignment);
79 }
80 }
81}
82
83/**
84 * Test SkOpts::memset16 and SkOpts::memset32.
85 * For performance considerations, implementations may take different paths
86 * depending on the alignment of the dst, and/or the size of the count.
87 */
91}
reporter
Definition: FontMgrTest.cpp:39
int count
Definition: FontMgrTest.cpp:50
#define PAD
Definition: MemsetTest.cpp:23
static void test_32(skiatest::Reporter *reporter)
Definition: MemsetTest.cpp:66
#define MAX_ALIGNMENT
Definition: MemsetTest.cpp:21
static void test_16(skiatest::Reporter *reporter)
Definition: MemsetTest.cpp:49
static void compare16(skiatest::Reporter *r, const uint16_t base[], uint16_t value, int count)
Definition: MemsetTest.cpp:29
#define VALUE16
Definition: MemsetTest.cpp:26
static void compare32(skiatest::Reporter *r, const uint32_t base[], uint32_t value, int count)
Definition: MemsetTest.cpp:39
static void set_zero(void *dst, size_t bytes)
Definition: MemsetTest.cpp:14
DEF_TEST(Memset, reporter)
Definition: MemsetTest.cpp:88
#define MAX_COUNT
Definition: MemsetTest.cpp:22
#define VALUE32
Definition: MemsetTest.cpp:27
#define TOTAL
Definition: MemsetTest.cpp:24
#define ERRORF(r,...)
Definition: Test.h:293
uint8_t value
void(* memset16)(uint16_t[], uint16_t, int)
void(* memset32)(uint32_t[], uint32_t, int)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
dst
Definition: cp.py:12