Updated copyright
[libcds.git] / cds / compiler / gcc / ia64 / bitop.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
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 #ifndef CDSLIB_COMPILER_GCC_IA64_BITOP_H
32 #define CDSLIB_COMPILER_GCC_IA64_BITOP_H
33
34 //@cond none
35 namespace cds {
36     namespace bitop { namespace platform { namespace gcc { namespace ia64 {
37
38         // MSB - return index (1..32) of most significant bit in x. If x == 0 return 0
39 #        define cds_bitop_msb32_DEFINED
40         static inline int msb32( uint32_t nArg )
41         {
42             if ( !nArg )
43                 return 0;
44             uint64_t x = nArg;
45             x |= x >> 1;
46             x |= x >> 2;
47             x |= x >> 4;
48             x |= x >> 8;
49             x |= x >> 16;
50
51             uint64_t    nRes;
52             asm __volatile__( "popcnt %0=%1\n\t" : "=r" (nRes) : "r" (x));
53             return (int) nRes;
54         }
55
56         // It is not compiled on HP-UX. Why?..
57 #if CDS_OS_TYPE != CDS_OS_HPUX
58         // MSB - return index (0..31) of most significant bit in nArg.
59         // !!! nArg != 0
60 #        define cds_bitop_msb32nz_DEFINED
61         static inline int msb32nz( uint32_t nArg )
62         {
63             assert( nArg != 0 );
64             long double d = nArg;
65             long nExp;
66             asm __volatile__("getf.exp %0=%1\n\t" : "=r"(nExp) : "f"(d));
67             return (int) (nExp - 0xffff);
68         }
69
70         // MSB - return index (0..63) of most significant bit in nArg.
71         // !!! nArg != 0
72 #        define cds_bitop_msb64nz_DEFINED
73         static inline int msb64nz( uint64_t nArg )
74         {
75             assert( nArg != 0 );
76             long double d = nArg;
77             long nExp;
78             asm __volatile__("getf.exp %0=%1\n\t" : "=r" (nExp) : "f" (d));
79             return (int) (nExp - 0xffff);
80         }
81 #endif    // #if CDS_OS_TYPE != CDS_OS_HPUX
82
83     }} // namespace gcc::ia64
84
85     using namespace gcc::ia64;
86
87 }}}    // namespace cds::bitop::platform
88 //@endcond
89
90 #endif // #ifndef CDSLIB_COMPILER_GCC_IA64_BITOP_H