1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
/*
* Copyright (c) 2016, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Intel Corporation nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "rose/validate_mask.h"
#include "gtest/gtest.h"
#define ONES32 0xffffffffu
union RoseLookaroundMask32 {
m256 a256;
u8 a8[32];
};
struct ValidateMask32TestInfo {
RoseLookaroundMask32 data;
u32 valid_mask;
RoseLookaroundMask32 and_mask;
RoseLookaroundMask32 cmp_mask;
u32 neg_mask;
};
struct ValidateMask32InitInfo {
int idx;
u8 data;
u8 and_mask;
u8 cmp_mask;
u8 neg_mask;
};
static const ValidateMask32InitInfo testBasicIdx[][33] = {
{
{1, 0x34, 0xf8, 0x30, 0},
{2, 0x34, 0xf8, 0x30, 0},
{8, 0x23, 0xff, 0x23, 0},
{9, 0x34, 0xf8, 0x30, 0},
{10, 0x41, 0xdf, 0x41, 0},
{11, 0x63, 0xdd, 0x41, 0},
{12, 0x61, 0xdd, 0x41, 0},
{13, 0x41, 0xdf, 0x41, 0},
{14, 0x61, 0xdf, 0x41, 0},
{15, 0x41, 0xdf, 0x41, 0},
{16, 0x43, 0xdd, 0x41, 0},
{17, 0x61, 0xdd, 0x41, 0},
{23, 0x63, 0xdd, 0x41, 0},
{24, 0x4f, 0xfc, 0x4c, 0},
{25, 0x4d, 0xfc, 0x4c, 0},
{26, 0x4d, 0xfc, 0x4c, 0},
{-1, 0, 0, 0, 0},
},
{
{11, 0, 0xff, 0x55, 1},
{12, 0, 0xff, 0x36, 1},
{13, 0, 0xfe, 0x34, 1},
{14, 0x4d, 0xfe, 0x4c, 0},
{15, 0x41, 0xbf, 0x01, 0},
{16, 0x53, 0xdf, 0x73, 1},
{17, 0x4b, 0, 0, 0},
{18, 0, 0x2c, 0x2c, 1},
{-1, 0, 0, 0, 0},
},
{
{15, 0x46, 0xdf, 0x46, 0},
{16, 0x4f, 0xdf, 0x46, 1},
{17, 0x6f, 0xff, 0x6f, 0},
{18, 0x31, 0xfe, 0x30, 0},
{19, 0x34, 0xf8, 0x30, 0},
{20, 0x66, 0xc0, 0x40, 0},
{21, 0x6f, 0xf0, 0x60, 0},
{22, 0x6f, 0, 0, 0},
{23, 0x46, 0xdf, 0x44, 1},
{24, 0x4f, 0xdf, 0x46, 1},
{25, 0x6f, 0xff, 0x4f, 1},
{26, 0x31, 0xfe, 0x30, 0},
{27, 0x34, 0xf8, 0x34, 1},
{28, 0x66, 0xc0, 0x60, 1},
{29, 0x6f, 0xf0, 0x6f, 1},
{30, 0x6f, 0, 0x60, 1},
{-1, 0, 0, 0, 0},
},
{
{31, 0x4a, 0x80, 0, 0},
{-1, 0, 0, 0, 1},
},
{
{12, 0x2b, 0x3d, 0x2d, 1},
{13, 0x2b, 0x3d, 0x4c, 1},
{23, 0x4a, 0x88, 0x0a, 1},
{-1, 0, 0, 0, 0},
},
};
static void initTestInfo(ValidateMask32TestInfo &t) {
t.data.a256 = zeroes256();
t.valid_mask = 0xffffffff;
t.and_mask.a256 = zeroes256();
t.cmp_mask.a256 = zeroes256();
t.neg_mask = 0;
};
static
int testBasicInit(ValidateMask32TestInfo *testB) {
int len = 0;
ValidateMask32TestInfo t;
for (size_t i = 0; i < ARRAY_LENGTH(testBasicIdx); i++) {
initTestInfo(t);
for (const auto &line: testBasicIdx[i]) {
if (line.idx < 0) {
break;
}
int index = line.idx;
t.data.a8[index] = line.data;
t.and_mask.a8[index] = line.and_mask;
t.cmp_mask.a8[index] = line.cmp_mask;
t.neg_mask |= line.neg_mask << index;
}
testB[i] = t;
len++;
}
return len;
}
TEST(ValidateMask32, testMask32_1) {
ValidateMask32TestInfo testBasic[20];
int test_len = testBasicInit(testBasic);
for (int i = 0; i < test_len; i++) {
const auto t = testBasic[i];
EXPECT_EQ(1, validateMask32(t.data.a256, t.valid_mask,
t.and_mask.a256, t.cmp_mask.a256,
t.neg_mask));
}
}
TEST(ValidateMask32, testMask32_2) {
ValidateMask32TestInfo testBasic[20];
int test_len = testBasicInit(testBasic);
for (int left = 0; left <= 32; left++) {
for (int right = 0; right + left < 32; right++) {
u32 valid_mask = ONES32 << (left + right) >> left;
for (int i = 0; i < test_len; i++) {
const auto &t = testBasic[i];
int bool_result;
bool_result = !(valid_mask & t.neg_mask);
EXPECT_EQ(bool_result, validateMask32(t.data.a256,
valid_mask,
t.and_mask.a256,
t.cmp_mask.a256,
0));
bool_result = (valid_mask & t.neg_mask) == valid_mask;
EXPECT_EQ(bool_result, validateMask32(t.data.a256,
valid_mask,
t.and_mask.a256,
t.cmp_mask.a256,
ONES32));
}
}
}
}
TEST(ValidateMask32, testMask32_3) {
ValidateMask32TestInfo testBasic[20];
testing::internal::Random neg_mask_rand(451);
int test_len = testBasicInit(testBasic);
for (int left = 0; left <= 32; left++) {
for (int right = 0; right + left < 32; right++) {
u32 valid_mask = ONES32 << (left + right) >> left;
for (int i = 0; i < test_len; i++) {
const auto &t = testBasic[i];
int bool_result;
for (int j = 0; j < 5000; j++) {
u32 neg_mask = neg_mask_rand.Generate(1u << 31);
bool_result = (neg_mask & valid_mask) ==
(t.neg_mask & valid_mask);
EXPECT_EQ(bool_result, validateMask32(t.data.a256,
valid_mask,
t.and_mask.a256,
t.cmp_mask.a256,
neg_mask));
}
}
}
}
}
|