| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/system_wrappers/include/aligned_malloc.h" | 11 #include "webrtc/system_wrappers/include/aligned_malloc.h" |
| 12 | 12 |
| 13 #include <memory> | 13 #include <memory> |
| 14 | 14 |
| 15 #ifdef _WIN32 | 15 #ifdef _WIN32 |
| 16 #include <windows.h> | 16 #include <windows.h> |
| 17 #else | 17 #else |
| 18 #include <stdint.h> | 18 #include <stdint.h> |
| 19 #endif | 19 #endif |
| 20 | 20 |
| 21 #include "webrtc/test/gtest.h" | 21 #include "webrtc/test/gtest.h" |
| 22 #include "webrtc/typedefs.h" | 22 #include "webrtc/typedefs.h" |
| 23 | 23 |
| 24 namespace webrtc { | 24 namespace webrtc { |
| 25 | 25 |
| 26 // Returns true if |size| and |alignment| are valid combinations. | 26 // Returns true if |size| and |alignment| are valid combinations. |
| 27 bool CorrectUsage(size_t size, size_t alignment) { | 27 bool CorrectUsage(size_t size, size_t alignment) { |
| 28 std::unique_ptr<char, AlignedFreeDeleter> scoped( | 28 std::unique_ptr<char, AlignedFreeDeleter> scoped( |
| 29 static_cast<char*>(AlignedMalloc(size, alignment))); | 29 static_cast<char*>(AlignedMalloc(size, alignment))); |
| 30 if (scoped.get() == NULL) { | 30 if (scoped.get() == nullptr) { |
| 31 return false; | 31 return false; |
| 32 } | 32 } |
| 33 const uintptr_t scoped_address = reinterpret_cast<uintptr_t> (scoped.get()); | 33 const uintptr_t scoped_address = reinterpret_cast<uintptr_t> (scoped.get()); |
| 34 return 0u == scoped_address % alignment; | 34 return 0u == scoped_address % alignment; |
| 35 } | 35 } |
| 36 | 36 |
| 37 TEST(AlignedMalloc, GetRightAlign) { | 37 TEST(AlignedMalloc, GetRightAlign) { |
| 38 const size_t size = 100; | 38 const size_t size = 100; |
| 39 const size_t alignment = 32; | 39 const size_t alignment = 32; |
| 40 const size_t left_misalignment = 1; | 40 const size_t left_misalignment = 1; |
| 41 std::unique_ptr<char, AlignedFreeDeleter> scoped( | 41 std::unique_ptr<char, AlignedFreeDeleter> scoped( |
| 42 static_cast<char*>(AlignedMalloc(size, alignment))); | 42 static_cast<char*>(AlignedMalloc(size, alignment))); |
| 43 EXPECT_TRUE(scoped.get() != NULL); | 43 EXPECT_TRUE(scoped.get() != nullptr); |
| 44 const uintptr_t aligned_address = reinterpret_cast<uintptr_t> (scoped.get()); | 44 const uintptr_t aligned_address = reinterpret_cast<uintptr_t> (scoped.get()); |
| 45 const uintptr_t misaligned_address = aligned_address - left_misalignment; | 45 const uintptr_t misaligned_address = aligned_address - left_misalignment; |
| 46 const char* misaligned_ptr = reinterpret_cast<const char*>( | 46 const char* misaligned_ptr = reinterpret_cast<const char*>( |
| 47 misaligned_address); | 47 misaligned_address); |
| 48 const char* realigned_ptr = GetRightAlign(misaligned_ptr, alignment); | 48 const char* realigned_ptr = GetRightAlign(misaligned_ptr, alignment); |
| 49 EXPECT_EQ(scoped.get(), realigned_ptr); | 49 EXPECT_EQ(scoped.get(), realigned_ptr); |
| 50 } | 50 } |
| 51 | 51 |
| 52 TEST(AlignedMalloc, IncorrectSize) { | 52 TEST(AlignedMalloc, IncorrectSize) { |
| 53 const size_t incorrect_size = 0; | 53 const size_t incorrect_size = 0; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 74 } | 74 } |
| 75 | 75 |
| 76 TEST(AlignedMalloc, AlignTo128Bytes) { | 76 TEST(AlignedMalloc, AlignTo128Bytes) { |
| 77 size_t size = 100; | 77 size_t size = 100; |
| 78 size_t alignment = 128; | 78 size_t alignment = 128; |
| 79 EXPECT_TRUE(CorrectUsage(size, alignment)); | 79 EXPECT_TRUE(CorrectUsage(size, alignment)); |
| 80 } | 80 } |
| 81 | 81 |
| 82 } // namespace webrtc | 82 } // namespace webrtc |
| 83 | 83 |
| OLD | NEW |