Files
beast/test/core/empty_base_optimization.cpp

95 lines
2.0 KiB
C++
Raw Normal View History

2016-05-05 12:23:07 -04:00
//
2017-02-06 20:07:03 -05:00
// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
2016-05-05 12:23:07 -04:00
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
2017-07-20 08:01:46 -07:00
// Test that header file is self-contained.
#include <beast/core/detail/empty_base_optimization.hpp>
#include <beast/unit_test/suite.hpp>
2017-07-20 08:01:46 -07:00
namespace beast {
2016-05-05 12:23:07 -04:00
namespace detail {
2017-07-20 08:01:46 -07:00
class empty_base_optimization_test
: public beast::unit_test::suite
2017-07-20 08:01:46 -07:00
{
public:
2016-08-26 08:01:44 -04:00
template<class T>
2017-07-20 08:01:46 -07:00
class test1
2016-05-05 12:23:07 -04:00
: private empty_base_optimization<T>
2017-07-20 08:01:46 -07:00
{
2016-05-05 12:23:07 -04:00
using Base = empty_base_optimization<T>;
2017-07-20 08:01:46 -07:00
void* m_p;
public:
explicit test1 (T const& t)
: Base (t)
{}
T& member() {return Base::member();}
T const& member() const {return Base::member();}
};
2016-08-26 08:01:44 -04:00
template<class T>
2017-07-20 08:01:46 -07:00
class test2
{
void* m_p;
T m_t;
public:
explicit test2 (T const& t)
: m_t (t)
{}
T& member() {return m_t;}
T const& member() const {return m_t;}
};
struct Empty
{
operator bool() {return true;}
};
static
bool
2016-08-26 08:01:44 -04:00
test_one()
2017-07-20 08:01:46 -07:00
{
test1<int> t1(1);
test2<int> t2(2);
static_assert(sizeof(t1) == sizeof(t2), "don't optimize for int");
2016-08-26 08:01:44 -04:00
if(t1.member() != 1)
2017-07-20 08:01:46 -07:00
return false;
2016-08-26 08:01:44 -04:00
if(t2.member() != 2)
2017-07-20 08:01:46 -07:00
return false;
return true;
}
static
bool
2016-08-26 08:01:44 -04:00
test_two()
2017-07-20 08:01:46 -07:00
{
test1<Empty> t1((Empty()));
test2<Empty> t2((Empty()));
static_assert(sizeof(t1) < sizeof(t2), "do optimize for Empty");
2016-08-26 08:01:44 -04:00
if(t1.member() != true)
2017-07-20 08:01:46 -07:00
return false;
2016-08-26 08:01:44 -04:00
if(t2.member() != true)
2017-07-20 08:01:46 -07:00
return false;
return true;
}
void
2016-08-26 08:01:44 -04:00
run()
2017-07-20 08:01:46 -07:00
{
BEAST_EXPECT(test_one());
BEAST_EXPECT(test_two());
pass();
2017-07-20 08:01:46 -07:00
}
};
BEAST_DEFINE_TESTSUITE(empty_base_optimization,core,beast);
2017-07-20 08:01:46 -07:00
2016-05-05 12:23:07 -04:00
} // detail
2017-07-20 08:01:46 -07:00
} // beast