aboutsummaryrefslogtreecommitdiff
path: root/cutl/compiler/type-info.ixx
blob: bf0987c91f0a03ce83968bab5c81f33f3bd0ca32 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// file      : cutl/compiler/type-info.ixx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

namespace cutl
{
  namespace compiler
  {
    // base_info
    //

    inline
    base_info::
    base_info (type_id const& type_id)
        : type_id_ (type_id), type_info_ (0)
    {
    }

    inline
    type_info_t const& base_info::
    type_info () const
    {
      // We need to do delayed lookup because of the unpredictable
      // order in which type information may be added.
      //
      // @@ MT-unsafe
      //
      if (type_info_ == 0)
        type_info_ = &(lookup (type_id_));

      return *type_info_;
    }

    // type_info
    //

    inline
    type_info::
    type_info (type_id_t const& tid)
        : type_id_ (tid)
    {
    }

    inline
    type_id_t type_info::
    type_id () const
    {
      return type_id_;
    }

    inline
    type_info::base_iterator type_info::
    begin_base () const
    {
      return bases_.begin ();
    }


    inline
    type_info::base_iterator type_info::
    end_base () const
    {
      return bases_.end ();
    }

    inline
    void type_info::
    add_base (type_id_t const& tid)
    {
      bases_.push_back (base_info (tid));
    }

    //
    //
    inline type_info const&
    lookup (std::type_info const& tid)
    {
      return lookup (type_id (tid));
    }

    template <typename X>
    inline type_info const&
    lookup (X const volatile& x)
    {
      return lookup (typeid (x));
    }

    template<typename X>
    inline type_info const&
    lookup ()
    {
      return lookup (typeid (X));
    }
  }
}