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 | |
Henrik Kjellander | 98f5351 | 2015-10-28 18:17:40 +0100 | [diff] [blame] | 11 | #include "webrtc/system_wrappers/include/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 | |
kwiberg | 77eab70 | 2016-09-28 17:42:01 -0700 | [diff] [blame] | 21 | #include "webrtc/test/gtest.h" |
pbos@webrtc.org | acaf3a1 | 2013-05-27 15:07:45 +0000 | [diff] [blame] | 22 | #include "webrtc/typedefs.h" |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 23 | |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 24 | namespace webrtc { |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 25 | |
| 26 | // Returns true if |size| and |alignment| are valid combinations. |
| 27 | bool CorrectUsage(size_t size, size_t alignment) { |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 28 | std::unique_ptr<char, AlignedFreeDeleter> scoped( |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 29 | static_cast<char*>(AlignedMalloc(size, alignment))); |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 30 | if (scoped.get() == NULL) { |
| 31 | return false; |
| 32 | } |
| 33 | const uintptr_t scoped_address = reinterpret_cast<uintptr_t> (scoped.get()); |
| 34 | return 0u == scoped_address % alignment; |
| 35 | } |
| 36 | |
| 37 | TEST(AlignedMalloc, GetRightAlign) { |
| 38 | const size_t size = 100; |
| 39 | const size_t alignment = 32; |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 40 | const size_t left_misalignment = 1; |
kwiberg | bfefb03 | 2016-05-01 14:53:46 -0700 | [diff] [blame] | 41 | std::unique_ptr<char, AlignedFreeDeleter> scoped( |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 42 | static_cast<char*>(AlignedMalloc(size, alignment))); |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 43 | EXPECT_TRUE(scoped.get() != NULL); |
| 44 | const uintptr_t aligned_address = reinterpret_cast<uintptr_t> (scoped.get()); |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 45 | const uintptr_t misaligned_address = aligned_address - left_misalignment; |
| 46 | const char* misaligned_ptr = reinterpret_cast<const char*>( |
| 47 | misaligned_address); |
| 48 | const char* realigned_ptr = GetRightAlign(misaligned_ptr, alignment); |
henrike@webrtc.org | 46d4073 | 2012-10-03 16:50:37 +0000 | [diff] [blame] | 49 | EXPECT_EQ(scoped.get(), realigned_ptr); |
henrike@webrtc.org | cd9adf7 | 2012-09-29 03:49:36 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | TEST(AlignedMalloc, IncorrectSize) { |
| 53 | const size_t incorrect_size = 0; |
| 54 | const size_t alignment = 64; |
| 55 | EXPECT_FALSE(CorrectUsage(incorrect_size, alignment)); |
| 56 | } |
| 57 | |
| 58 | TEST(AlignedMalloc, IncorrectAlignment) { |
| 59 | const size_t size = 100; |
| 60 | const size_t incorrect_alignment = 63; |
| 61 | EXPECT_FALSE(CorrectUsage(size, incorrect_alignment)); |
| 62 | } |
| 63 | |
| 64 | TEST(AlignedMalloc, AlignTo2Bytes) { |
| 65 | size_t size = 100; |
| 66 | size_t alignment = 2; |
| 67 | EXPECT_TRUE(CorrectUsage(size, alignment)); |
| 68 | } |
| 69 | |
| 70 | TEST(AlignedMalloc, AlignTo32Bytes) { |
| 71 | size_t size = 100; |
| 72 | size_t alignment = 32; |
| 73 | EXPECT_TRUE(CorrectUsage(size, alignment)); |
| 74 | } |
| 75 | |
| 76 | TEST(AlignedMalloc, AlignTo128Bytes) { |
| 77 | size_t size = 100; |
| 78 | size_t alignment = 128; |
| 79 | EXPECT_TRUE(CorrectUsage(size, alignment)); |
| 80 | } |
andrew@webrtc.org | d617a44 | 2014-02-20 21:08:36 +0000 | [diff] [blame] | 81 | |
| 82 | } // namespace webrtc |
| 83 | |