summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/20_util/aligned_union/1.cc
blob: fbf1ab15c8f51fb41c8142146643b1b9d82048b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// { dg-options " -std=gnu++11 " }
// { dg-do compile }

// 2014-04-16 Rüdiger Sonderfeld  <ruediger@c-plusplus.de>

// Copyright (C) 2014-2016 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the terms
// of the GNU General Public License as published by the Free Software
// Foundation; either version 3, or (at your option) any later
// version.

// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this library; see the file COPYING3.  If not see
// <http://www.gnu.org/licenses/>.

// C++11 [meta.trans.other] 20.9.7.6: aligned_union

#include <type_traits>
#include <testsuite_tr1.h>

struct MSAlignType { } __attribute__((__aligned__));

template<typename...T>
  struct mymax
  {
    static const std::size_t alignment = 0;
    static const std::size_t size = 0;
  };

template<typename L,  typename...T>
  struct mymax<L, T...>
  {
    static const std::size_t alignment = alignof(L) > mymax<T...>::alignment
      ? alignof(L) : mymax<T...>::alignment;
    static const std::size_t size = sizeof(L) > mymax<T...>::size
      ? sizeof(L) : mymax<T...>::size;
  };

void test01()
{
  using std::aligned_union;
  using std::alignment_of;
  using std::size_t;
  using namespace __gnu_test;

  const size_t max_a = mymax<char, short, int, double, int[4],
                             ClassType, MSAlignType>::alignment;
  const size_t max_s = mymax<char, short, int, double, int[4],
                             ClassType, MSAlignType>::size;

  typedef aligned_union<0, char, short, int, double, int[4],
                        ClassType, MSAlignType> au_type;
  static_assert(au_type::alignment_value == max_a, "Alignment value");
  static_assert(sizeof(au_type::type) >= max_s, "Storage size");

  typedef aligned_union<max_s+100, char, short, int, double, int[4],
                        ClassType, MSAlignType> au_type2;
  static_assert(sizeof(au_type2::type) >= max_s+100,
                "Storage size (at least len)");
}

int main()
{
  test01();
}