henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Karl Wiberg | 29e7bee | 2018-03-22 14:11:52 +0100 | [diff] [blame] | 11 | #include "rtc_base/memory/aligned_malloc.h" |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 12 | |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 13 | #include <memory> |
| 14 | |
kwiberg | 77eab70 | 2016-09-28 17:42:01 -0700 | [diff] [blame] | 15 | #ifdef _WIN32 |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 16 | #include <windows.h> |
| 17 | #else |
| 18 | #include <stdint.h> |
| 19 | #endif |
| 20 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 21 | #include "test/gtest.h" |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 22 | |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 23 | namespace webrtc { |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 24 | |
| 25 | // Returns true if |size| and |alignment| are valid combinations. |
| 26 | bool CorrectUsage(size_t size, size_t alignment) { |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 27 | std::unique_ptr<char, AlignedFreeDeleter> scoped( |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 28 | static_cast<char*>(AlignedMalloc(size, alignment))); |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 29 | if (scoped.get() == NULL) { |
| 30 | return false; |
| 31 | } |
Karl Wiberg | 79eb1d9 | 2017-11-08 12:26:07 +0100 | [diff] [blame] | 32 | const uintptr_t scoped_address = reinterpret_cast<uintptr_t>(scoped.get()); |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 33 | return 0u == scoped_address % alignment; |
| 34 | } |
| 35 | |
| 36 | TEST(AlignedMalloc, GetRightAlign) { |
| 37 | const size_t size = 100; |
| 38 | const size_t alignment = 32; |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 39 | const size_t left_misalignment = 1; |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 40 | std::unique_ptr<char, AlignedFreeDeleter> scoped( |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 41 | static_cast<char*>(AlignedMalloc(size, alignment))); |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 42 | EXPECT_TRUE(scoped.get() != NULL); |
Karl Wiberg | 79eb1d9 | 2017-11-08 12:26:07 +0100 | [diff] [blame] | 43 | const uintptr_t aligned_address = reinterpret_cast<uintptr_t>(scoped.get()); |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 44 | const uintptr_t misaligned_address = aligned_address - left_misalignment; |
Karl Wiberg | 79eb1d9 | 2017-11-08 12:26:07 +0100 | [diff] [blame] | 45 | const char* misaligned_ptr = |
| 46 | reinterpret_cast<const char*>(misaligned_address); |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 47 | const char* realigned_ptr = GetRightAlign(misaligned_ptr, alignment); |
henrike@webrtc.org | 46d4073 | 2012-10-03 16:50:37 +0000 | [diff] [blame] | 48 | EXPECT_EQ(scoped.get(), realigned_ptr); |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | TEST(AlignedMalloc, IncorrectSize) { |
| 52 | const size_t incorrect_size = 0; |
| 53 | const size_t alignment = 64; |
| 54 | EXPECT_FALSE(CorrectUsage(incorrect_size, alignment)); |
| 55 | } |
| 56 | |
| 57 | TEST(AlignedMalloc, IncorrectAlignment) { |
| 58 | const size_t size = 100; |
| 59 | const size_t incorrect_alignment = 63; |
| 60 | EXPECT_FALSE(CorrectUsage(size, incorrect_alignment)); |
| 61 | } |
| 62 | |
| 63 | TEST(AlignedMalloc, AlignTo2Bytes) { |
| 64 | size_t size = 100; |
| 65 | size_t alignment = 2; |
| 66 | EXPECT_TRUE(CorrectUsage(size, alignment)); |
| 67 | } |
| 68 | |
| 69 | TEST(AlignedMalloc, AlignTo32Bytes) { |
| 70 | size_t size = 100; |
| 71 | size_t alignment = 32; |
| 72 | EXPECT_TRUE(CorrectUsage(size, alignment)); |
| 73 | } |
| 74 | |
| 75 | TEST(AlignedMalloc, AlignTo128Bytes) { |
| 76 | size_t size = 100; |
| 77 | size_t alignment = 128; |
| 78 | EXPECT_TRUE(CorrectUsage(size, alignment)); |
| 79 | } |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 80 | |
| 81 | } // namespace webrtc |