author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46649 | hotspot/test/native/metaprogramming/test_decay.cpp@439ffb1e05ec |
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 |
#include "precompiled.hpp" |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
26 |
#include "memory/allocation.hpp" |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
27 |
#include "metaprogramming/decay.hpp" |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
28 |
#include "metaprogramming/isSame.hpp" |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
29 |
#include "utilities/debug.hpp" |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
30 |
|
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
31 |
class TestDecay: AllStatic { |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
32 |
class A: AllStatic {}; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
33 |
|
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
34 |
typedef const volatile A cvA; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
35 |
typedef const volatile A& cvAref; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
36 |
typedef const volatile A* cvAptr; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
37 |
typedef const volatile A* const volatile cvAptrcv; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
38 |
typedef A& Aref; |
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 |
typedef Decay<cvAref>::type rr_cvAref; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
41 |
static const bool decay_cvAref_is_A = IsSame<rr_cvAref, A>::value; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
42 |
STATIC_ASSERT(decay_cvAref_is_A); |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
43 |
|
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
44 |
typedef Decay<cvAptrcv>::type rr_cvAptrcv; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
45 |
static const bool decay_cvAptrcv_is_cvAptr = IsSame<rr_cvAptrcv, cvAptr>::value; |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
46 |
STATIC_ASSERT(decay_cvAptrcv_is_cvAptr); |
439ffb1e05ec
8183927: Hotspot needs C++ type_traits metaprogramming utilities
eosterlund
parents:
diff
changeset
|
47 |
}; |