Removed old tree unit test
[libcds.git] / tests / test-hdr / misc / bitop_st.cpp
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8     
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
29 */
30
31 #include "cppunit/cppunit_proxy.h"
32
33 #include <cds/algo/int_algo.h>
34 #include <cds/os/timer.h>
35
36 class bitop_ST : public CppUnitMini::TestCase
37 {
38 protected:
39     void bitop32()
40     {
41         uint32_t    n;
42         n = 0;
43         CPPUNIT_ASSERT_EX( cds::bitop::MSB(n) == 0, "n=" << n );
44         CPPUNIT_ASSERT_EX( cds::bitop::LSB(n) == 0, "n=" << n );
45         CPPUNIT_ASSERT_EX( cds::bitop::SBC(n) == 0, "n=" << n );
46         CPPUNIT_ASSERT_EX( cds::bitop::ZBC(n) == sizeof(n) * 8, "n=" << n );
47
48         int nBit = 1;
49         for ( n = 1; n != 0; n *= 2 ) {
50             CPPUNIT_ASSERT_EX( cds::bitop::MSB(n) == nBit, "n=" << n );
51             CPPUNIT_ASSERT_EX( cds::bitop::LSB(n) == nBit, "n=" << n );
52             CPPUNIT_ASSERT_EX( cds::bitop::MSBnz(n) == nBit - 1, "n=" << n );
53             CPPUNIT_ASSERT_EX( cds::bitop::LSBnz(n) == nBit - 1, "n=" << n );
54             CPPUNIT_ASSERT_EX( cds::bitop::SBC(n) == 1, "n=" << n );
55             CPPUNIT_ASSERT_EX( cds::bitop::ZBC(n) == sizeof(n) * 8 - 1, "n=" << n );
56
57             ++nBit;
58         }
59     }
60
61     void bitop64()
62     {
63         uint64_t n;
64         n = 0;
65         CPPUNIT_ASSERT_EX( cds::bitop::MSB(n) == 0, "n=" << n );
66         CPPUNIT_ASSERT_EX( cds::bitop::LSB(n) == 0, "n=" << n );
67         CPPUNIT_ASSERT_EX( cds::bitop::SBC(n) == 0, "n=" << n );
68         CPPUNIT_ASSERT_EX( cds::bitop::ZBC(n) == sizeof(n) * 8, "n=" << n );
69
70         int nBit = 1;
71         for ( n = 1; n != 0; n *= 2 ) {
72             CPPUNIT_ASSERT_EX( cds::bitop::MSB(n) == nBit, "n=" << n );
73             CPPUNIT_ASSERT_EX( cds::bitop::LSB(n) == nBit, "n=" << n );
74             CPPUNIT_ASSERT_EX( cds::bitop::MSBnz(n) == nBit - 1, "n=" << n );
75             CPPUNIT_ASSERT_EX( cds::bitop::LSBnz(n) == nBit - 1, "n=" << n );
76             CPPUNIT_ASSERT_EX( cds::bitop::SBC(n) == 1, "n=" << n );
77             CPPUNIT_ASSERT_EX( cds::bitop::ZBC(n) == sizeof(n) * 8 - 1, "n=" << n );
78
79             ++nBit;
80         }
81     }
82
83     void floor_ceil_pow2()
84     {
85         CPPUNIT_CHECK_EX( cds::beans::floor2(0) == 1, "floor2(0) = " << cds::beans::floor2(0) << ", expected 1" );
86         CPPUNIT_CHECK_EX( cds::beans::floor2(1) == 1, "floor2(1) = " << cds::beans::floor2(1) << ", expected 1" );
87         CPPUNIT_CHECK_EX( cds::beans::floor2(2) == 2, "floor2(2) = " << cds::beans::floor2(2) << ", expected 2" );
88         CPPUNIT_CHECK_EX( cds::beans::floor2(3) == 2, "floor2(3) = " << cds::beans::floor2(3) << ", expected 2" );
89         CPPUNIT_CHECK_EX( cds::beans::floor2(4) == 4, "floor2(4) = " << cds::beans::floor2(4) << ", expected 4" );
90         CPPUNIT_CHECK_EX( cds::beans::floor2(5) == 4, "floor2(5) = " << cds::beans::floor2(5) << ", expected 4" );
91         CPPUNIT_CHECK_EX( cds::beans::floor2(7) == 4, "floor2(7) = " << cds::beans::floor2(7) << ", expected 4" );
92         CPPUNIT_CHECK_EX( cds::beans::floor2(8) == 8, "floor2(8) = " << cds::beans::floor2(8) << ", expected 8" );
93         CPPUNIT_CHECK_EX( cds::beans::floor2(9) == 8, "floor2(9) = " << cds::beans::floor2(9) << ", expected 8" );
94
95         CPPUNIT_CHECK_EX( cds::beans::ceil2(0) == 1, "ceil2(0) = " << cds::beans::ceil2(0) << ", expected 1" );
96         CPPUNIT_CHECK_EX( cds::beans::ceil2(1) == 1, "ceil2(1) = " << cds::beans::ceil2(1) << ", expected 1" );
97         CPPUNIT_CHECK_EX( cds::beans::ceil2(2) == 2, "ceil2(2) = " << cds::beans::ceil2(2) << ", expected 2" );
98         CPPUNIT_CHECK_EX( cds::beans::ceil2(3) == 4, "ceil2(3) = " << cds::beans::ceil2(3) << ", expected 4" );
99         CPPUNIT_CHECK_EX( cds::beans::ceil2(4) == 4, "ceil2(4) = " << cds::beans::ceil2(4) << ", expected 4" );
100         CPPUNIT_CHECK_EX( cds::beans::ceil2(5) == 8, "ceil2(5) = " << cds::beans::ceil2(5) << ", expected 8" );
101         CPPUNIT_CHECK_EX( cds::beans::ceil2(7) == 8, "ceil2(7) = " << cds::beans::ceil2(7) << ", expected 8" );
102         CPPUNIT_CHECK_EX( cds::beans::ceil2(8) == 8, "ceil2(8) = " << cds::beans::ceil2(8) << ", expected 8" );
103         CPPUNIT_CHECK_EX( cds::beans::ceil2(9) == 16, "ceil2(9) = " << cds::beans::ceil2(16) << ", expected 16" );
104     }
105
106     CPPUNIT_TEST_SUITE(bitop_ST);
107         CPPUNIT_TEST(bitop32)
108         CPPUNIT_TEST(bitop64)
109         CPPUNIT_TEST(floor_ceil_pow2)
110     CPPUNIT_TEST_SUITE_END();
111 };
112
113 CPPUNIT_TEST_SUITE_REGISTRATION(bitop_ST);