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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "bit_struct.h"
#include "gtest/gtest.h"
namespace art {
// A copy of detail::ValidateBitStructSize that uses EXPECT for a more
// human-readable message.
template <typename T>
static constexpr bool ValidateBitStructSize(const char* name) {
const size_t kBitStructSizeOf = BitStructSizeOf<T>();
const size_t kExpectedSize = (BitStructSizeOf<T>() < kBitsPerByte)
? kBitsPerByte
: RoundUpToPowerOfTwo(kBitStructSizeOf);
// Ensure no extra fields were added in between START/END.
const size_t kActualSize = sizeof(T) * kBitsPerByte;
EXPECT_EQ(kExpectedSize, kActualSize) << name;
return true;
}
#define VALIDATE_BITSTRUCT_SIZE(type) ValidateBitStructSize<type>(#type)
TEST(BitStructs, MinimumType) {
EXPECT_EQ(1u, sizeof(typename detail::MinimumTypeUnsignedHelper<1>::type));
EXPECT_EQ(1u, sizeof(typename detail::MinimumTypeUnsignedHelper<2>::type));
EXPECT_EQ(1u, sizeof(typename detail::MinimumTypeUnsignedHelper<3>::type));
EXPECT_EQ(1u, sizeof(typename detail::MinimumTypeUnsignedHelper<8>::type));
EXPECT_EQ(2u, sizeof(typename detail::MinimumTypeUnsignedHelper<9>::type));
EXPECT_EQ(2u, sizeof(typename detail::MinimumTypeUnsignedHelper<10>::type));
EXPECT_EQ(2u, sizeof(typename detail::MinimumTypeUnsignedHelper<15>::type));
EXPECT_EQ(2u, sizeof(typename detail::MinimumTypeUnsignedHelper<16>::type));
EXPECT_EQ(4u, sizeof(typename detail::MinimumTypeUnsignedHelper<17>::type));
EXPECT_EQ(4u, sizeof(typename detail::MinimumTypeUnsignedHelper<32>::type));
EXPECT_EQ(8u, sizeof(typename detail::MinimumTypeUnsignedHelper<33>::type));
EXPECT_EQ(8u, sizeof(typename detail::MinimumTypeUnsignedHelper<64>::type));
}
template <typename T>
size_t AsUint(const T& value) {
size_t uint_value = 0;
memcpy(&uint_value, &value, sizeof(value));
return uint_value;
}
struct CustomBitStruct {
CustomBitStruct() = default;
explicit CustomBitStruct(uint8_t data) : data(data) {}
static constexpr size_t BitStructSizeOf() {
return 4;
}
uint8_t data;
};
TEST(BitStructs, Custom) {
CustomBitStruct expected(0b1111u);
BitStructField<CustomBitStruct, /*lsb=*/4, /*width=*/4, uint8_t> f{};
EXPECT_EQ(1u, sizeof(f));
f = CustomBitStruct(0b1111u);
CustomBitStruct read_out = f;
EXPECT_EQ(read_out.data, 0b1111u);
EXPECT_EQ(AsUint(f), 0b11110000u);
}
BITSTRUCT_DEFINE_START(TestTwoCustom, /* size= */ 8)
BITSTRUCT_FIELD(CustomBitStruct, /*lsb=*/0, /*width=*/4) f4_a;
BITSTRUCT_FIELD(CustomBitStruct, /*lsb=*/4, /*width=*/4) f4_b;
BITSTRUCT_DEFINE_END(TestTwoCustom);
TEST(BitStructs, TwoCustom) {
EXPECT_EQ(sizeof(TestTwoCustom), 1u);
VALIDATE_BITSTRUCT_SIZE(TestTwoCustom);
TestTwoCustom cst{};
// Test the write to most-significant field doesn't clobber least-significant.
cst.f4_a = CustomBitStruct(0b0110);
cst.f4_b = CustomBitStruct(0b0101);
int8_t read_out = static_cast<CustomBitStruct>(cst.f4_a).data;
int8_t read_out_b = static_cast<CustomBitStruct>(cst.f4_b).data;
EXPECT_EQ(0b0110, static_cast<int>(read_out));
EXPECT_EQ(0b0101, static_cast<int>(read_out_b));
EXPECT_EQ(AsUint(cst), 0b01010110u);
// Test write to least-significant field doesn't clobber most-significant.
cst.f4_a = CustomBitStruct(0);
read_out = static_cast<CustomBitStruct>(cst.f4_a).data;
read_out_b = static_cast<CustomBitStruct>(cst.f4_b).data;
EXPECT_EQ(0b0, static_cast<int>(read_out));
EXPECT_EQ(0b0101, static_cast<int>(read_out_b));
EXPECT_EQ(AsUint(cst), 0b01010000u);
}
TEST(BitStructs, Number) {
BitStructNumber<uint16_t, /*lsb=*/4, /*width=*/4, uint16_t> bsn{};
EXPECT_EQ(2u, sizeof(bsn));
bsn = 0b1111;
uint32_t read_out = static_cast<uint32_t>(bsn);
uint32_t read_out_impl = bsn;
EXPECT_EQ(read_out, read_out_impl);
EXPECT_EQ(read_out, 0b1111u);
EXPECT_EQ(AsUint(bsn), 0b11110000u);
}
TEST(BitStructs, NumberNarrowStorage) {
BitStructNumber<uint16_t, /*lsb=*/4, /*width=*/4, uint8_t> bsn{};
EXPECT_EQ(1u, sizeof(bsn));
bsn = 0b1111;
uint32_t read_out = static_cast<uint32_t>(bsn);
uint32_t read_out_impl = bsn;
EXPECT_EQ(read_out, read_out_impl);
EXPECT_EQ(read_out, 0b1111u);
EXPECT_EQ(AsUint(bsn), 0b11110000u);
}
BITSTRUCT_DEFINE_START(TestBitStruct, /* size= */ 8)
BITSTRUCT_INT(/*lsb=*/0, /*width=*/3) i3;
BITSTRUCT_UINT(/*lsb=*/3, /*width=*/4) u4;
BITSTRUCT_UINT(/*lsb=*/0, /*width=*/7) alias_all;
BITSTRUCT_DEFINE_END(TestBitStruct);
TEST(BitStructs, Test1) {
TestBitStruct tst{};
// Check minimal size selection is correct.
EXPECT_EQ(1u, sizeof(TestBitStruct));
EXPECT_EQ(1u, sizeof(tst._));
EXPECT_EQ(1u, sizeof(tst.i3));
EXPECT_EQ(1u, sizeof(tst.u4));
EXPECT_EQ(1u, sizeof(tst.alias_all));
// Check operator assignment.
tst.i3 = -1;
tst.u4 = 0b1010;
// Check implicit operator conversion.
int8_t read_i3 = tst.i3;
uint8_t read_u4 = tst.u4;
// Ensure read-out values were correct.
EXPECT_EQ(static_cast<int8_t>(-1), read_i3);
EXPECT_EQ(0b1010, read_u4);
// Ensure aliasing is working.
EXPECT_EQ(0b1010111, static_cast<uint8_t>(tst.alias_all));
// Ensure the bit pattern is correct.
EXPECT_EQ(0b1010111u, AsUint(tst));
// Math operator checks
{
// In-place
++tst.u4;
EXPECT_EQ(static_cast<uint8_t>(0b1011), static_cast<uint8_t>(tst.u4));
--tst.u4;
EXPECT_EQ(static_cast<uint8_t>(0b1010), static_cast<uint8_t>(tst.u4));
// Copy
uint8_t read_and_convert = tst.u4++;
EXPECT_EQ(static_cast<uint8_t>(0b1011), read_and_convert);
EXPECT_EQ(static_cast<uint8_t>(0b1010), static_cast<uint8_t>(tst.u4));
read_and_convert = tst.u4--;
EXPECT_EQ(static_cast<uint8_t>(0b1001), read_and_convert);
EXPECT_EQ(static_cast<uint8_t>(0b1010), static_cast<uint8_t>(tst.u4));
// Check boolean operator conversion.
tst.u4 = 0b1010;
EXPECT_TRUE(static_cast<bool>(tst.u4));
bool succ = tst.u4 ? true : false;
EXPECT_TRUE(succ);
tst.u4 = 0;
EXPECT_FALSE(static_cast<bool>(tst.u4));
/*
// Disabled: Overflow is caught by the BitFieldInsert DCHECKs.
// Check overflow for uint.
tst.u4 = 0b1111;
++tst.u4;
EXPECT_EQ(static_cast<uint8_t>(0), static_cast<uint8_t>(tst.u4));
*/
}
}
BITSTRUCT_DEFINE_START(MixedSizeBitStruct, /* size= */ 32)
BITSTRUCT_UINT(/*lsb=*/0, /*width=*/3) u3;
BITSTRUCT_UINT(/*lsb=*/3, /*width=*/10) u10;
BITSTRUCT_UINT(/*lsb=*/13, /*width=*/19) u19;
BITSTRUCT_UINT(/*lsb=*/0, /*width=*/32) alias_all;
BITSTRUCT_DEFINE_END(MixedSizeBitStruct);
// static_assert(sizeof(MixedSizeBitStruct) == sizeof(uint32_t), "TestBitStructs#MixedSize");
TEST(BitStructs, Mixed) {
EXPECT_EQ(4u, sizeof(MixedSizeBitStruct));
MixedSizeBitStruct tst{};
// Check operator assignment.
tst.u3 = 0b111u;
tst.u10 = 0b1111010100u;
tst.u19 = 0b1010101010101010101u;
// Check implicit operator conversion.
uint8_t read_u3 = tst.u3;
uint16_t read_u10 = tst.u10;
uint32_t read_u19 = tst.u19;
// Ensure read-out values were correct.
EXPECT_EQ(0b111u, read_u3);
EXPECT_EQ(0b1111010100u, read_u10);
EXPECT_EQ(0b1010101010101010101u, read_u19);
uint32_t read_all = tst.alias_all;
// Ensure aliasing is working.
EXPECT_EQ(0b10101010101010101011111010100111u, read_all);
// Ensure the bit pattern is correct.
EXPECT_EQ(0b10101010101010101011111010100111u, AsUint(tst));
}
BITSTRUCT_DEFINE_START(TestBitStruct_u8, /* size= */ 8)
BITSTRUCT_INT(/*lsb=*/0, /*width=*/3) i3;
BITSTRUCT_UINT(/*lsb=*/3, /*width=*/4) u4;
BITSTRUCT_UINT(/*lsb=*/0, /*width=*/8) alias_all;
BITSTRUCT_DEFINE_END(TestBitStruct_u8);
TEST(BitStructs, FieldAssignment) {
TestBitStruct_u8 all_1s{};
all_1s.alias_all = 0xffu;
{
TestBitStruct_u8 tst{};
tst.i3 = all_1s.i3;
// Copying a single bitfield does not copy all bitfields.
EXPECT_EQ(0b111, tst.alias_all);
}
{
TestBitStruct_u8 tst{};
tst.u4 = all_1s.u4;
// Copying a single bitfield does not copy all bitfields.
EXPECT_EQ(0b1111000, tst.alias_all);
}
}
BITSTRUCT_DEFINE_START(NestedStruct, /* size= */ 2 * MixedSizeBitStruct::BitStructSizeOf())
BITSTRUCT_FIELD(MixedSizeBitStruct,
/*lsb=*/0,
/*width=*/MixedSizeBitStruct::BitStructSizeOf()) mixed_lower;
BITSTRUCT_FIELD(MixedSizeBitStruct,
/*lsb=*/MixedSizeBitStruct::BitStructSizeOf(),
/*width=*/MixedSizeBitStruct::BitStructSizeOf()) mixed_upper;
BITSTRUCT_UINT(/*lsb=*/0, /*width=*/ 2 * MixedSizeBitStruct::BitStructSizeOf()) alias_all;
BITSTRUCT_DEFINE_END(NestedStruct);
TEST(BitStructs, NestedFieldAssignment) {
MixedSizeBitStruct mixed_all_1s{};
mixed_all_1s.alias_all = 0xFFFFFFFFu;
{
NestedStruct xyz{};
NestedStruct other{};
other.mixed_upper = mixed_all_1s;
other.mixed_lower = mixed_all_1s;
// Copying a single bitfield does not copy all bitfields.
xyz.mixed_lower = other.mixed_lower;
EXPECT_EQ(0xFFFFFFFFu, xyz.alias_all);
}
{
NestedStruct xyz{};
NestedStruct other{};
other.mixed_upper = mixed_all_1s;
other.mixed_lower = mixed_all_1s;
// Copying a single bitfield does not copy all bitfields.
xyz.mixed_upper = other.mixed_upper;
EXPECT_EQ(0xFFFFFFFF00000000u, xyz.alias_all);
}
}
} // namespace art
|