src/hotspot/share/metaprogramming/isFloatingPoint.hpp
author kbarrett
Tue, 27 Feb 2018 18:17:57 -0500
changeset 49177 eebf559c9e0d
parent 47216 71c04702a3d5
child 53244 9807daeb47c4
permissions -rw-r--r--
8196882: VS2017 Hotspot Defined vsnprintf Function Causes C2084 Already Defined Compilation Error Summary: Add os::vsnprintf and os::snprintf. Reviewed-by: lfoltan, stuefe, mlarsson
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46649
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     1
/*
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     4
 *
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     7
 * published by the Free Software Foundation.
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     8
 *
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    13
 * accompanied this code).
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    14
 *
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    18
 *
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    21
 * questions.
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    22
 *
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    23
 */
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    24
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    25
#ifndef SHARE_VM_METAPROGRAMMING_ISFLOATINGPOINT_HPP
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    26
#define SHARE_VM_METAPROGRAMMING_ISFLOATINGPOINT_HPP
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    27
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    28
#include "metaprogramming/integralConstant.hpp"
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    29
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    30
// This metafunction returns true iff the type T (irrespective of CV qualifiers)
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    31
// is a floating point type.
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    32
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    33
template <typename T> struct IsFloatingPoint: public FalseType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    34
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    35
template <> struct IsFloatingPoint<float>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    36
template <> struct IsFloatingPoint<const float>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    37
template <> struct IsFloatingPoint<volatile float>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    38
template <> struct IsFloatingPoint<const volatile float>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    39
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    40
template <> struct IsFloatingPoint<double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    41
template <> struct IsFloatingPoint<const double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    42
template <> struct IsFloatingPoint<volatile double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    43
template <> struct IsFloatingPoint<const volatile double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    44
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    45
template <> struct IsFloatingPoint<long double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    46
template <> struct IsFloatingPoint<const long double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    47
template <> struct IsFloatingPoint<volatile long double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    48
template <> struct IsFloatingPoint<const volatile long double>: public TrueType {};
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    49
439ffb1e05ec 8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff changeset
    50
#endif // SHARE_VM_METAPROGRAMMING_ISFLOATINGPOINT_HPP