OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [libstdc++-v3/] [include/] [std/] [type_traits] - Blame information for rev 847

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// C++0x type_traits -*- C++ -*-
2
 
3
// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4
//
5
// This file is part of the GNU ISO C++ Library.  This library is free
6
// software; you can redistribute it and/or modify it under the
7
// terms of the GNU General Public License as published by the
8
// Free Software Foundation; either version 3, or (at your option)
9
// any later version.
10
 
11
// This library is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
// GNU General Public License for more details.
15
 
16
// Under Section 7 of GPL version 3, you are granted additional
17
// permissions described in the GCC Runtime Library Exception, version
18
// 3.1, as published by the Free Software Foundation.
19
 
20
// You should have received a copy of the GNU General Public License and
21
// a copy of the GCC Runtime Library Exception along with this program;
22
// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23
// .
24
 
25
/** @file include/type_traits
26
 *  This is a Standard C++ Library header.
27
 */
28
 
29
#ifndef _GLIBCXX_TYPE_TRAITS
30
#define _GLIBCXX_TYPE_TRAITS 1
31
 
32
#pragma GCC system_header
33
 
34
#ifndef __GXX_EXPERIMENTAL_CXX0X__
35
# include 
36
#else
37
 
38
#if defined(_GLIBCXX_INCLUDE_AS_TR1)
39
#  error C++0x header cannot be included from TR1 header
40
#endif
41
 
42
#include 
43
 
44
#if defined(_GLIBCXX_INCLUDE_AS_CXX0X)
45
#  include 
46
#else
47
#  define _GLIBCXX_INCLUDE_AS_CXX0X
48
#  define _GLIBCXX_BEGIN_NAMESPACE_TR1
49
#  define _GLIBCXX_END_NAMESPACE_TR1
50
#  define _GLIBCXX_TR1
51
#  include 
52
#  undef _GLIBCXX_TR1
53
#  undef _GLIBCXX_END_NAMESPACE_TR1
54
#  undef _GLIBCXX_BEGIN_NAMESPACE_TR1
55
#  undef _GLIBCXX_INCLUDE_AS_CXX0X
56
#endif
57
 
58
namespace std
59
{
60
  /**
61
   * @addtogroup metaprogramming
62
   * @{
63
   */
64
 
65
  // Primary classification traits.
66
 
67
  /// is_lvalue_reference
68
  template
69
    struct is_lvalue_reference
70
    : public false_type { };
71
 
72
  template
73
    struct is_lvalue_reference<_Tp&>
74
    : public true_type { };
75
 
76
  /// is_rvalue_reference
77
  template
78
    struct is_rvalue_reference
79
    : public false_type { };
80
 
81
  template
82
    struct is_rvalue_reference<_Tp&&>
83
    : public true_type { };
84
 
85
  // Secondary classification traits.
86
 
87
  /// is_reference
88
  template
89
    struct is_reference
90
    : public integral_constant::value
91
                                      || is_rvalue_reference<_Tp>::value)>
92
    { };
93
 
94
  // Reference transformations.
95
 
96
  /// remove_reference
97
  template
98
    struct remove_reference
99
    { typedef _Tp   type; };
100
 
101
  template
102
    struct remove_reference<_Tp&>
103
    { typedef _Tp   type; };
104
 
105
  template
106
    struct remove_reference<_Tp&&>
107
    { typedef _Tp   type; };
108
 
109
  template
110
           bool = !is_reference<_Tp>::value && !is_void<_Tp>::value,
111
           bool = is_rvalue_reference<_Tp>::value>
112
    struct __add_lvalue_reference_helper
113
    { typedef _Tp   type; };
114
 
115
  template
116
    struct __add_lvalue_reference_helper<_Tp, true, false>
117
    { typedef _Tp&   type; };
118
 
119
  template
120
    struct __add_lvalue_reference_helper<_Tp, false, true>
121
    { typedef typename remove_reference<_Tp>::type&   type; };
122
 
123
  /// add_lvalue_reference
124
  template
125
    struct add_lvalue_reference
126
    : public __add_lvalue_reference_helper<_Tp>
127
    { };
128
 
129
  template
130
           bool = !is_reference<_Tp>::value && !is_void<_Tp>::value>
131
    struct __add_rvalue_reference_helper
132
    { typedef _Tp   type; };
133
 
134
  template
135
    struct __add_rvalue_reference_helper<_Tp, true>
136
    { typedef _Tp&&   type; };
137
 
138
  /// add_rvalue_reference
139
  template
140
    struct add_rvalue_reference
141
    : public __add_rvalue_reference_helper<_Tp>
142
    { };
143
 
144
  // Scalar properties and transformations.
145
 
146
  template
147
           bool = is_integral<_Tp>::value,
148
           bool = is_floating_point<_Tp>::value>
149
    struct __is_signed_helper
150
    : public false_type { };
151
 
152
  template
153
    struct __is_signed_helper<_Tp, false, true>
154
    : public true_type { };
155
 
156
  template
157
    struct __is_signed_helper<_Tp, true, false>
158
    : public integral_constant(_Tp(-1) < _Tp(0))>
159
    { };
160
 
161
  /// is_signed
162
  template
163
    struct is_signed
164
    : public integral_constant::value>
165
    { };
166
 
167
  /// is_unsigned
168
  template
169
    struct is_unsigned
170
    : public integral_constant::value
171
                                      && !is_signed<_Tp>::value)>
172
    { };
173
 
174
  // Member introspection.
175
 
176
  /// is_trivial
177
  template
178
    struct is_trivial
179
    : public integral_constant
180
    { };
181
 
182
  /// is_standard_layout
183
  template
184
    struct is_standard_layout
185
    : public integral_constant
186
    { };
187
 
188
  /// is_pod
189
  // Could use is_standard_layout && is_trivial instead of the builtin.
190
  template
191
    struct is_pod
192
    : public integral_constant
193
    { };
194
 
195
  template
196
    typename add_rvalue_reference<_Tp>::type declval();
197
 
198
  template
199
    class __is_constructible_helper
200
    : public __sfinae_types
201
    {
202
      template
203
        static decltype(_Tp1(declval<_Args1>()...), __one()) __test(int);
204
 
205
      template
206
        static __two __test(...);
207
 
208
    public:
209
      static const bool __value = sizeof(__test<_Tp, _Args...>(0)) == 1;
210
    };
211
 
212
  template
213
    class __is_constructible_helper<_Tp, _Arg>
214
    : public __sfinae_types
215
    {
216
      template
217
        static decltype(static_cast<_Tp1>(declval<_Arg1>()), __one())
218
        __test(int);
219
 
220
      template
221
        static __two __test(...);
222
 
223
    public:
224
      static const bool __value = sizeof(__test<_Tp, _Arg>(0)) == 1;
225
    };
226
 
227
  /// is_constructible
228
  // XXX FIXME
229
  // The C++0x specifications require front-end support, see N2255.
230
  template
231
    struct is_constructible
232
    : public integral_constant
233
                               __is_constructible_helper<_Tp,
234
                                                         _Args...>::__value>
235
    { };
236
 
237
  /// has_trivial_default_constructor
238
  template
239
    struct has_trivial_default_constructor
240
    : public integral_constant
241
    { };
242
 
243
  /// has_trivial_copy_constructor
244
  template
245
    struct has_trivial_copy_constructor
246
    : public integral_constant
247
    { };
248
 
249
  /// has_trivial_assign
250
  template
251
    struct has_trivial_assign
252
    : public integral_constant
253
    { };
254
 
255
  /// has_trivial_destructor
256
  template
257
    struct has_trivial_destructor
258
    : public integral_constant
259
    { };
260
 
261
  /// has_nothrow_default_constructor
262
  template
263
    struct has_nothrow_default_constructor
264
    : public integral_constant
265
    { };
266
 
267
  /// has_nothrow_copy_constructor
268
  template
269
    struct has_nothrow_copy_constructor
270
    : public integral_constant
271
    { };
272
 
273
  /// has_nothrow_assign
274
  template
275
    struct has_nothrow_assign
276
    : public integral_constant
277
    { };
278
 
279
  // Relationships between types.
280
 
281
  /// is_base_of
282
  template
283
    struct is_base_of
284
    : public integral_constant
285
    { };
286
 
287
  template
288
           bool = (is_void<_From>::value || is_void<_To>::value
289
                   || is_function<_To>::value || is_array<_To>::value)>
290
    struct __is_convertible_helper
291
    { static const bool __value = (is_void<_From>::value
292
                                   && is_void<_To>::value); };
293
 
294
  template
295
    class __is_convertible_helper<_From, _To, false>
296
    : public __sfinae_types
297
    {
298
      static __one __test(_To);
299
      static __two __test(...);
300
 
301
    public:
302
      static const bool __value = sizeof(__test(declval<_From>())) == 1;
303
    };
304
 
305
  /// is_convertible
306
  // XXX FIXME
307
  // The C++0x specifications require front-end support, see N2255.
308
  template
309
    struct is_convertible
310
    : public integral_constant
311
                               __is_convertible_helper<_From, _To>::__value>
312
    { };
313
 
314
  /// is_explicitly_convertible
315
  template
316
    struct is_explicitly_convertible
317
    : public is_constructible<_To, _From>
318
    { };
319
 
320
  template
321
    struct __aligned_storage_msa
322
    {
323
      union __type
324
      {
325
        unsigned char __data[_Len];
326
        struct __attribute__((__aligned__)) { } __align;
327
      };
328
    };
329
 
330
  /**
331
   *  @brief Alignment type.
332
   *
333
   *  The value of _Align is a default-alignment which shall be the
334
   *  most stringent alignment requirement for any C++ object type
335
   *  whose size is no greater than _Len (3.9). The member typedef
336
   *  type shall be a POD type suitable for use as uninitialized
337
   *  storage for any object whose size is at most _Len and whose
338
   *  alignment is a divisor of _Align.
339
  */
340
  template
341
           __alignof__(typename __aligned_storage_msa<_Len>::__type)>
342
    struct aligned_storage
343
    {
344
      union type
345
      {
346
        unsigned char __data[_Len];
347
        struct __attribute__((__aligned__((_Align)))) { } __align;
348
      };
349
    };
350
 
351
 
352
  // Define a nested type if some predicate holds.
353
  // Primary template.
354
  /// enable_if
355
  template
356
    struct enable_if
357
    { };
358
 
359
  // Partial specialization for true.
360
  template
361
    struct enable_if
362
    { typedef _Tp type; };
363
 
364
 
365
  // A conditional expression, but for types. If true, first, if false, second.
366
  // Primary template.
367
  /// conditional
368
  template
369
    struct conditional
370
    { typedef _Iftrue type; };
371
 
372
  // Partial specialization for false.
373
  template
374
    struct conditional
375
    { typedef _Iffalse type; };
376
 
377
 
378
  // Decay trait for arrays and functions, used for perfect forwarding
379
  // in make_pair, make_tuple, etc.
380
  template
381
           bool _IsArray = is_array<_Up>::value,
382
           bool _IsFunction = is_function<_Up>::value>
383
    struct __decay_selector;
384
 
385
  // NB: DR 705.
386
  template
387
    struct __decay_selector<_Up, false, false>
388
    { typedef typename remove_cv<_Up>::type __type; };
389
 
390
  template
391
    struct __decay_selector<_Up, true, false>
392
    { typedef typename remove_extent<_Up>::type* __type; };
393
 
394
  template
395
    struct __decay_selector<_Up, false, true>
396
    { typedef typename add_pointer<_Up>::type __type; };
397
 
398
  /// decay
399
  template
400
    class decay
401
    {
402
      typedef typename remove_reference<_Tp>::type __remove_type;
403
 
404
    public:
405
      typedef typename __decay_selector<__remove_type>::__type type;
406
    };
407
 
408
 
409
  // Utility for constructing identically cv-qualified types.
410
  template
411
    struct __cv_selector;
412
 
413
  template
414
    struct __cv_selector<_Unqualified, false, false>
415
    { typedef _Unqualified __type; };
416
 
417
  template
418
    struct __cv_selector<_Unqualified, false, true>
419
    { typedef volatile _Unqualified __type; };
420
 
421
  template
422
    struct __cv_selector<_Unqualified, true, false>
423
    { typedef const _Unqualified __type; };
424
 
425
  template
426
    struct __cv_selector<_Unqualified, true, true>
427
    { typedef const volatile _Unqualified __type; };
428
 
429
  template
430
           bool _IsConst = is_const<_Qualified>::value,
431
           bool _IsVol = is_volatile<_Qualified>::value>
432
    class __match_cv_qualifiers
433
    {
434
      typedef __cv_selector<_Unqualified, _IsConst, _IsVol> __match;
435
 
436
    public:
437
      typedef typename __match::__type __type;
438
    };
439
 
440
 
441
  // Utility for finding the unsigned versions of signed integral types.
442
  template
443
    struct __make_unsigned
444
    { typedef _Tp __type; };
445
 
446
  template<>
447
    struct __make_unsigned
448
    { typedef unsigned char __type; };
449
 
450
  template<>
451
    struct __make_unsigned
452
    { typedef unsigned char __type; };
453
 
454
  template<>
455
    struct __make_unsigned
456
    { typedef unsigned short __type; };
457
 
458
  template<>
459
    struct __make_unsigned
460
    { typedef unsigned int __type; };
461
 
462
  template<>
463
    struct __make_unsigned
464
    { typedef unsigned long __type; };
465
 
466
  template<>
467
    struct __make_unsigned
468
    { typedef unsigned long long __type; };
469
 
470
 
471
  // Select between integral and enum: not possible to be both.
472
  template
473
           bool _IsInt = is_integral<_Tp>::value,
474
           bool _IsEnum = is_enum<_Tp>::value>
475
    class __make_unsigned_selector;
476
 
477
  template
478
    class __make_unsigned_selector<_Tp, true, false>
479
    {
480
      typedef __make_unsigned::type> __unsignedt;
481
      typedef typename __unsignedt::__type __unsigned_type;
482
      typedef __match_cv_qualifiers<_Tp, __unsigned_type> __cv_unsigned;
483
 
484
    public:
485
      typedef typename __cv_unsigned::__type __type;
486
    };
487
 
488
  template
489
    class __make_unsigned_selector<_Tp, false, true>
490
    {
491
      // With -fshort-enums, an enum may be as small as a char.
492
      typedef unsigned char __smallest;
493
      static const bool __b0 = sizeof(_Tp) <= sizeof(__smallest);
494
      static const bool __b1 = sizeof(_Tp) <= sizeof(unsigned short);
495
      static const bool __b2 = sizeof(_Tp) <= sizeof(unsigned int);
496
      typedef conditional<__b2, unsigned int, unsigned long> __cond2;
497
      typedef typename __cond2::type __cond2_type;
498
      typedef conditional<__b1, unsigned short, __cond2_type> __cond1;
499
      typedef typename __cond1::type __cond1_type;
500
 
501
    public:
502
      typedef typename conditional<__b0, __smallest, __cond1_type>::type __type;
503
    };
504
 
505
  // Given an integral/enum type, return the corresponding unsigned
506
  // integer type.
507
  // Primary template.
508
  /// make_unsigned
509
  template
510
    struct make_unsigned
511
    { typedef typename __make_unsigned_selector<_Tp>::__type type; };
512
 
513
  // Integral, but don't define.
514
  template<>
515
    struct make_unsigned;
516
 
517
 
518
  // Utility for finding the signed versions of unsigned integral types.
519
  template
520
    struct __make_signed
521
    { typedef _Tp __type; };
522
 
523
  template<>
524
    struct __make_signed
525
    { typedef signed char __type; };
526
 
527
  template<>
528
    struct __make_signed
529
    { typedef signed char __type; };
530
 
531
  template<>
532
    struct __make_signed
533
    { typedef signed short __type; };
534
 
535
  template<>
536
    struct __make_signed
537
    { typedef signed int __type; };
538
 
539
  template<>
540
    struct __make_signed
541
    { typedef signed long __type; };
542
 
543
  template<>
544
    struct __make_signed
545
    { typedef signed long long __type; };
546
 
547
 
548
  // Select between integral and enum: not possible to be both.
549
  template
550
           bool _IsInt = is_integral<_Tp>::value,
551
           bool _IsEnum = is_enum<_Tp>::value>
552
    class __make_signed_selector;
553
 
554
  template
555
    class __make_signed_selector<_Tp, true, false>
556
    {
557
      typedef __make_signed::type> __signedt;
558
      typedef typename __signedt::__type __signed_type;
559
      typedef __match_cv_qualifiers<_Tp, __signed_type> __cv_signed;
560
 
561
    public:
562
      typedef typename __cv_signed::__type __type;
563
    };
564
 
565
  template
566
    class __make_signed_selector<_Tp, false, true>
567
    {
568
      // With -fshort-enums, an enum may be as small as a char.
569
      typedef signed char __smallest;
570
      static const bool __b0 = sizeof(_Tp) <= sizeof(__smallest);
571
      static const bool __b1 = sizeof(_Tp) <= sizeof(signed short);
572
      static const bool __b2 = sizeof(_Tp) <= sizeof(signed int);
573
      typedef conditional<__b2, signed int, signed long> __cond2;
574
      typedef typename __cond2::type __cond2_type;
575
      typedef conditional<__b1, signed short, __cond2_type> __cond1;
576
      typedef typename __cond1::type __cond1_type;
577
 
578
    public:
579
      typedef typename conditional<__b0, __smallest, __cond1_type>::type __type;
580
    };
581
 
582
  // Given an integral/enum type, return the corresponding signed
583
  // integer type.
584
  // Primary template.
585
  /// make_signed
586
  template
587
    struct make_signed
588
    { typedef typename __make_signed_selector<_Tp>::__type type; };
589
 
590
  // Integral, but don't define.
591
  template<>
592
    struct make_signed;
593
 
594
  /// common_type
595
  template
596
    struct common_type;
597
 
598
  template
599
    struct common_type<_Tp>
600
    { typedef _Tp type; };
601
 
602
  template
603
    struct common_type<_Tp, _Up>
604
    { typedef decltype(true ? declval<_Tp>() : declval<_Up>()) type; };
605
 
606
  template
607
    struct common_type<_Tp, _Up, _Vp...>
608
    {
609
      typedef typename
610
        common_type::type, _Vp...>::type type;
611
    };
612
  // @} group metaprogramming
613
 
614
  /// declval
615
  template
616
    struct __declval_protector
617
    {
618
      static const bool __stop = false;
619
      static typename add_rvalue_reference<_Tp>::type __delegate();
620
    };
621
 
622
  template
623
    inline typename add_rvalue_reference<_Tp>::type
624
    declval()
625
    {
626
      static_assert(__declval_protector<_Tp>::__stop,
627
                    "declval() must not be used!");
628
      return __declval_protector<_Tp>::__delegate();
629
    }
630
}
631
 
632
#endif  // __GXX_EXPERIMENTAL_CXX0X__
633
 
634
#endif  // _GLIBCXX_TYPE_TRAITS

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.