Initial commit

This commit is contained in:
Martin Felis
2021-11-11 21:22:24 +01:00
commit b78045ffe7
812 changed files with 421882 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
add_executable(test_memory
allocator_tests.cc)
target_link_libraries(test_memory
ozz_base
gtest)
add_test(NAME test_memory COMMAND test_memory)
set_target_properties(test_memory PROPERTIES FOLDER "ozz/tests/base")
add_executable(test_unique_ptr
unique_ptr_tests.cc)
target_link_libraries(test_unique_ptr
ozz_base
gtest)
add_test(NAME test_unique_ptr COMMAND test_unique_ptr)
set_target_properties(test_unique_ptr PROPERTIES FOLDER "ozz/tests/base")
@@ -0,0 +1,154 @@
//----------------------------------------------------------------------------//
// //
// ozz-animation is hosted at http://github.com/guillaumeblanc/ozz-animation //
// and distributed under the MIT License (MIT). //
// //
// Copyright (c) Guillaume Blanc //
// //
// Permission is hereby granted, free of charge, to any person obtaining a //
// copy of this software and associated documentation files (the "Software"), //
// to deal in the Software without restriction, including without limitation //
// the rights to use, copy, modify, merge, publish, distribute, sublicense, //
// and/or sell copies of the Software, and to permit persons to whom the //
// Software is furnished to do so, subject to the following conditions: //
// //
// The above copyright notice and this permission notice shall be included in //
// all copies or substantial portions of the Software. //
// //
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR //
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL //
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER //
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING //
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER //
// DEALINGS IN THE SOFTWARE. //
// //
//----------------------------------------------------------------------------//
#include "gtest/gtest.h"
#include "ozz/base/maths/math_ex.h"
#include "ozz/base/memory/allocator.h"
TEST(Allocate, Memory) {
void* p = ozz::memory::default_allocator()->Allocate(12, 1024);
EXPECT_TRUE(p != nullptr);
EXPECT_TRUE(ozz::IsAligned(p, 1024));
// Fills allocated memory.
memset(p, 0, 12);
ozz::memory::default_allocator()->Deallocate(p);
}
TEST(MallocCompliance, Memory) {
{ // Allocating 0 byte gives a valid pointer.
void* p = ozz::memory::default_allocator()->Allocate(0, 1024);
EXPECT_TRUE(p != nullptr);
ozz::memory::default_allocator()->Deallocate(p);
}
{ // Freeing of a nullptr pointer is valid.
ozz::memory::default_allocator()->Deallocate(nullptr);
}
}
struct AlignedInts {
AlignedInts() {
for (int i = 0; i < array_size; ++i) {
array[i] = i;
}
}
AlignedInts(int _i0) {
array[0] = _i0;
for (int i = 1; i < array_size; ++i) {
array[i] = i;
}
}
AlignedInts(int _i0, int _i1) {
array[0] = _i0;
array[1] = _i1;
for (int i = 2; i < array_size; ++i) {
array[i] = i;
}
}
AlignedInts(int _i0, int _i1, int _i2) {
array[0] = _i0;
array[1] = _i1;
array[2] = _i2;
for (int i = 3; i < array_size; ++i) {
array[i] = i;
}
}
static const int array_size = 517;
alignas(64) int array[array_size];
};
TEST(NewDelete, Memory) {
AlignedInts* ai0 = ozz::New<AlignedInts>();
ASSERT_TRUE(ai0 != nullptr);
for (int i = 0; i < ai0->array_size; ++i) {
EXPECT_EQ(ai0->array[i], i);
}
ozz::Delete(ai0);
AlignedInts* ai1 = ozz::New<AlignedInts>(46);
ASSERT_TRUE(ai1 != nullptr);
EXPECT_EQ(ai1->array[0], 46);
for (int i = 1; i < ai1->array_size; ++i) {
EXPECT_EQ(ai1->array[i], i);
}
ozz::Delete(ai1);
AlignedInts* ai2 = ozz::New<AlignedInts>(46, 69);
ASSERT_TRUE(ai2 != nullptr);
EXPECT_EQ(ai2->array[0], 46);
EXPECT_EQ(ai2->array[1], 69);
for (int i = 2; i < ai2->array_size; ++i) {
EXPECT_EQ(ai2->array[i], i);
}
ozz::Delete(ai2);
AlignedInts* ai3 = ozz::New<AlignedInts>(46, 69, 58);
ASSERT_TRUE(ai3 != nullptr);
EXPECT_EQ(ai3->array[0], 46);
EXPECT_EQ(ai3->array[1], 69);
EXPECT_EQ(ai3->array[2], 58);
for (int i = 3; i < ai3->array_size; ++i) {
EXPECT_EQ(ai3->array[i], i);
}
ozz::Delete(ai3);
}
class TestAllocator : public ozz::memory::Allocator {
public:
TestAllocator() : hard_coded_address_(&hard_coded_address_) {}
void* hard_coded_address() const { return hard_coded_address_; }
private:
virtual void* Allocate(size_t _size, size_t _alignment) {
(void)_size;
(void)_alignment;
return hard_coded_address_;
}
virtual void Deallocate(void* _block) { (void)_block; }
void* hard_coded_address_;
};
TEST(AllocatorOverride, Memory) {
TestAllocator test_allocator;
ozz::memory::Allocator* previous =
ozz::memory::SetDefaulAllocator(&test_allocator);
ozz::memory::Allocator* current = ozz::memory::default_allocator();
void* alloc = current->Allocate(1, 1);
EXPECT_EQ(alloc, test_allocator.hard_coded_address());
current->Deallocate(alloc);
EXPECT_EQ(ozz::memory::SetDefaulAllocator(previous), current);
}
@@ -0,0 +1,146 @@
//----------------------------------------------------------------------------//
// //
// ozz-animation is hosted at http://github.com/guillaumeblanc/ozz-animation //
// and distributed under the MIT License (MIT). //
// //
// Copyright (c) Guillaume Blanc //
// //
// Permission is hereby granted, free of charge, to any person obtaining a //
// copy of this software and associated documentation files (the "Software"), //
// to deal in the Software without restriction, including without limitation //
// the rights to use, copy, modify, merge, publish, distribute, sublicense, //
// and/or sell copies of the Software, and to permit persons to whom the //
// Software is furnished to do so, subject to the following conditions: //
// //
// The above copyright notice and this permission notice shall be included in //
// all copies or substantial portions of the Software. //
// //
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR //
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, //
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL //
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER //
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING //
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER //
// DEALINGS IN THE SOFTWARE. //
// //
//----------------------------------------------------------------------------//
#include "ozz/base/memory/unique_ptr.h"
#include "ozz/base/gtest_helper.h"
TEST(Construction, unique_ptr) {
{ const ozz::unique_ptr<int> pi; }
{ const ozz::unique_ptr<int> pi(ozz::New<int>()); }
}
TEST(Reset, unique_ptr) {
{
ozz::unique_ptr<int> pi;
pi.reset(nullptr);
pi.reset(ozz::New<int>());
}
{
ozz::unique_ptr<int> pi(ozz::New<int>());
pi.reset(ozz::New<int>());
pi.reset(nullptr);
}
}
struct A {
int i;
};
TEST(Dereference, unique_ptr) {
{
const ozz::unique_ptr<int> pi;
EXPECT_TRUE(pi.get() == nullptr);
EXPECT_FALSE(pi);
}
{
const ozz::unique_ptr<int> pi(ozz::New<int>(46));
EXPECT_EQ(*pi, 46);
EXPECT_TRUE(pi.get() != nullptr);
EXPECT_TRUE(pi);
}
{
const ozz::unique_ptr<A> pa(ozz::New<A>());
pa->i = 46;
EXPECT_EQ((*pa).i, 46);
}
}
TEST(Bool, unique_ptr) {
{
const ozz::unique_ptr<int> pi;
EXPECT_TRUE(!pi);
EXPECT_FALSE(pi);
}
{
const ozz::unique_ptr<int> pi(ozz::New<int>(46));
EXPECT_FALSE(!pi);
EXPECT_TRUE(pi);
}
}
TEST(Swap, unique_ptr) {
{
int* i = ozz::New<int>(46);
ozz::unique_ptr<int> pi;
ozz::unique_ptr<int> pii(i);
EXPECT_TRUE(pi.get() == nullptr);
EXPECT_TRUE(pii.get() == i);
pi.swap(pii);
EXPECT_TRUE(pii.get() == nullptr);
EXPECT_TRUE(pi.get() == i);
}
{
int* i = ozz::New<int>(46);
ozz::unique_ptr<int> pi;
ozz::unique_ptr<int> pii(i);
EXPECT_TRUE(pi.get() == nullptr);
EXPECT_TRUE(pii.get() == i);
swap(pi, pii);
EXPECT_TRUE(pii.get() == nullptr);
EXPECT_TRUE(pi.get() == i);
}
}
TEST(Release, unique_ptr) {
int* i = ozz::New<int>(46);
{
ozz::unique_ptr<int> pi(i);
int* ri = pi.release();
EXPECT_EQ(i, ri);
}
ozz::Delete(i);
}
struct B : public A {};
TEST(Upcast, unique_ptr) {
ozz::unique_ptr<A> a = ozz::unique_ptr<B>();
a = ozz::unique_ptr<B>();
}
TEST(make_unique, unique_ptr) {
{ // No argument
EXPECT_TRUE(ozz::make_unique<int>());
EXPECT_EQ(*ozz::make_unique<int>(), 0);
}
{ // 1 argument
EXPECT_TRUE(ozz::make_unique<int>(46));
EXPECT_EQ(*ozz::make_unique<int>(46), 46);
}
{ // N arguments
auto p5 =
ozz::make_unique<std::tuple<int, int, int, int, int>>(0, 1, 2, 3, 4);
EXPECT_TRUE(p5);
EXPECT_EQ(*p5, std::make_tuple(0, 1, 2, 3, 4));
}
}