author | coleenp |
Mon, 16 Oct 2017 22:36:06 -0400 | |
changeset 47634 | 6a0c42c40cd1 |
parent 47216 | 71c04702a3d5 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
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_ENABLEIF_HPP |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
26 |
#define SHARE_VM_METAPROGRAMMING_ENABLEIF_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 "memory/allocation.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 metaprogramming tool allows explicitly enabling and disabling overloads |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
31 |
// of member functions depending on whether the condition B holds true. |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
32 |
// For example typename EnableIf<IsPointer<T>::value>::type func(T ptr) would |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
33 |
// only become an overload the compiler chooses from if the type T is a pointer. |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
34 |
// If it is not, then the template definition is not expanded and there will be |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
35 |
// no compiler error if there is another overload of func that is selected when |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
36 |
// T is not a pointer. Like for example |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
37 |
// typename EnableIf<!IsPointer<T>::value>::type func(T not_ptr) |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
38 |
|
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
39 |
template <bool B, typename T = void> |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
40 |
struct EnableIf: AllStatic {}; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
41 |
|
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
42 |
template <typename T> |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
43 |
struct EnableIf<true, T>: AllStatic { |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
44 |
typedef T type; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
45 |
}; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
46 |
|
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
47 |
#endif // SHARE_VM_METAPROGRAMMING_ENABLEIF_HPP |